body {
  font-size: 13pt;
}

.navbar {
  background-color: #0F2A3E;
}

.nav-item {
  font-size: 1.25em;
}

.navbar-brand img {
  height: 40px;
}

.navbar-brand {
  padding-left: 10px;
  color: #FFF;
}

/** FULL LOADER **/

#full-loader {
  display: none;
  background-color: #0f2a3d;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  vertical-align: middle;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: auto;
  top: 50%;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFF;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/** LOADING **/
#loader {
  height: 5px;
  width: 100%;
  position: fixed;
  overflow: hidden;
  background-color: transparent;
  display: none;
  z-index: 9999;
  top: 0px;  
}

#loader > div {
  display: block;
  position: absolute;
  content: "";
  width: 0%;
  height: 5px;
  background-color: #f1c40f;  
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.percentage-positive,
.percentage-negative {
  font-weight: bold;
}

.percentage-positive > .fa {
  color: green;
}

.percentage-negative > .fa {
  color: red;
}

#lastMonth-title {
  color: #FFF;
  text-align: center !important;
  text-transform: uppercase;
  background-color: rgb(15,42,61);
  font-size: 2em !important;
  padding: 20px 10px 20px 10px;
  background-size: 50px;
  font-weight:400 !important;
}

#no-data {
  background-color: #FFF;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  position: fixed;
  display: none; 
}

#no-data > div {
  text-align: center;
  height: 40px;
  line-height: 40px;
  top: 50%;
  z-index: 2;
  position: absolute;
  width: 100%;
}

#report-view-trigger {
  position: fixed;
  bottom: 10px;
  left: 10px;
}
