@import url(https://fonts.googleapis.com/css?family=Montserrat);

.overlay-loader.fade-loader {
  opacity: 0;
}

.overlay-loader {
  z-index: 2000;
  height: 100vh;
  width: 100%;
  background: white;
  position: absolute;
  opacity: 1;
  transition: opacity 500ms;
}

.wrap-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.spinner {
  width: 90px;
  height: 90px;
  margin: 100px auto;
  background-color: #00AB61;

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}