.loader {
  display: block;
  border-radius: 0.6em;
  background-color: rgba(255,255,255,0.99);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  -webkit-animation: dim 0.5s 0.5s infinite alternate;
  -moz-animation: dim 0.5s 0.5s infinite alternate;
  -o-animation: dim 0.5s 0.5s infinite alternate;
  animation: dim 0.5s 0.5s infinite alternate;
}
.loader:before {
  content: '';
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 0.6em;
  background-color: rgba(255,255,255,0.99);
  right: 1em;
  -webkit-animation: dim 1s infinite alternate;
  -moz-animation: dim 1s infinite alternate;
  -o-animation: dim 1s infinite alternate;
  animation: dim 1s infinite alternate;
}
.loader:after {
  content: '';
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 0.6em;
  background-color: rgba(255,255,255,0.99);
  left: 1em;
  top:0;
  -webkit-animation: dim 1s 1s infinite alternate;
  -moz-animation: dim 1s 1s infinite alternate;
  -o-animation: dim 1s 1s infinite alternate;
  animation: dim 1s 1s infinite alternate;
}
/* Keyframes */
@-moz-keyframes dim {
  from {
    background-color: rgba(255,255,255,0.99);
  }
  to {
    background-color: rgba(255,255,255,0.52);
  }
}
@-webkit-keyframes dim {
  from {
    background-color: rgba(255,255,255,0.99);
  }
  to {
    background-color: rgba(255,255,255,0.52);
  }
}
@-o-keyframes dim {
  from {
    background-color: rgba(255,255,255,0.99);
  }
  to {
    background-color: rgba(255,255,255,0.52);
  }
}
@keyframes dim {
  from {
    background-color: #fff;
  }
  to {
    background-color: rgba(255,255,255,0.52);
  }
}

/*circle loader*/

.box {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #bac2a3;
  left: 50%;
  margin-left: -40px;
  top: 50%;
  margin-top: -40px; }

.loading:before {
  content: '';
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  top: 50%;
  margin-top: -0.6em;
  left: 50%;
  margin-left: -0.6em;
  border-radius: 50%;
  border-width: 2px 1px;
  border-style: solid;
  border-color: #7F846B rgba(255, 255, 255, 0.3);
  -webkit-animation: spin 3s infinite;
  -moz-animation: spin 3s infinite;
  animation: spin 3s infinite; }

.loading:after {
  content: '';
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  top: 50%;
  margin-top: -2px;
  left: 50%;
  margin-left: -2px;
  border-radius: 50%;
  background-color: #7F846B;
  -webkit-animation: pulse 6s infinite, borderPulse 6s infinite;
  -moz-animation: pulse 6s infinite, borderPulse 6s infinite;
  animation: pulse 6s infinite, borderPulse 6s infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(1080deg); } }
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg); }
  50% {
    -moz-transform: rotate(360deg); }
  100% {
    -moz-transform: rotate(1080deg); } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg); } }
@-webkit-keyframes pulse {
  0% {
    background-color: rgba(255, 255, 255, 0.52); }
  13% {
    background-color: rgba(255, 255, 255, 0.52); }
  15% {
    background-color: rgba(127, 132, 107, 0.95); }
  28% {
    background-color: rgba(127, 132, 107, 0.95); }
  30% {
    background-color: rgba(255, 255, 255, 0.52); }
  43% {
    background-color: rgba(255, 255, 255, 0.52); }
  45% {
    background-color: rgba(127, 132, 107, 0.95); }
  70% {
    background-color: rgba(127, 132, 107, 0.95); }
  74% {
    background-color: rgba(255, 255, 255, 0.52); }
  100% {
    background-color: rgba(127, 132, 107, 0.95); } }
@-moz-keyframes pulse {
  0% {
    background-color: rgba(255, 255, 255, 0.52); }
  13% {
    background-color: rgba(255, 255, 255, 0.52); }
  15% {
    background-color: rgba(127, 132, 107, 0.95); }
  28% {
    background-color: rgba(127, 132, 107, 0.95); }
  30% {
    background-color: rgba(255, 255, 255, 0.52); }
  43% {
    background-color: rgba(255, 255, 255, 0.52); }
  45% {
    background-color: rgba(127, 132, 107, 0.95); }
  70% {
    background-color: rgba(127, 132, 107, 0.95); }
  74% {
    background-color: rgba(255, 255, 255, 0.52); }
  100% {
    background-color: rgba(127, 132, 107, 0.95); } }
@keyframes pulse {
  0% {
    background-color: rgba(255, 255, 255, 0.52); }
  13% {
    background-color: rgba(255, 255, 255, 0.52); }
  15% {
    background-color: rgba(127, 132, 107, 0.95); }
  28% {
    background-color: rgba(127, 132, 107, 0.95); }
  30% {
    background-color: rgba(255, 255, 255, 0.52); }
  43% {
    background-color: rgba(255, 255, 255, 0.52); }
  45% {
    background-color: rgba(127, 132, 107, 0.95); }
  70% {
    background-color: rgba(127, 132, 107, 0.95); }
  74% {
    background-color: rgba(255, 255, 255, 0.52); }
  100% {
    background-color: rgba(127, 132, 107, 0.95); } }
@-webkit-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 #7F846B, 0 0 0 1px rgba(255, 255, 255, 0.98); }
  40% {
    box-shadow: 0 0 0 1px #7F846B, 0 0 0 2px rgba(255, 255, 255, 0.98); } }
@-moz-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 #7F846B, 0 0 0 1px rgba(255, 255, 255, 0.98); }
  50% {
    box-shadow: 0 0 0 1px #7F846B, 0 0 0 2px rgba(255, 255, 255, 0.98); } }
@keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 #7F846B, 0 0 0 1px rgba(255, 255, 255, 0.98); }
  50% {
    box-shadow: 0 0 0 1px #7F846B, 0 0 0 2px rgba(255, 255, 255, 0.98); } }

/*# sourceMappingURL=loading.css.map */
