.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  opacity: 1;
}

.spinner {
  width: 140px;
  height: 140px;
  position: relative;
  top: 50%;
  left: 50%;
  margin-left: -70px;
  margin-top: -70px;
}

.no-loader .loader {
  display: none !important;
}

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

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

.bounce-logo-geo {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 58px;
  right: 58px;
  background: url(/storage/img/logo-simples.png) top left no-repeat;
  background-size: 24px;
  opacity: .5;
}

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

  50% {
    -webkit-transform: scale(1);
  }
}

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

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}