#loader-container {
  position: absolute;
  background-color: rgb(242, 242, 242);
  top: 81px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  opacity: 1;
  transition: all linear 50ms;
  pointer-events: none;
}

#loader-container.hide {
  opacity: 0;
  z-index: 0;
}

#loader {
  border: 16px solid #fff;
  border-top-width: 16px;
  border-top-style: solid;
  border-top-color: rgb(243, 243, 243);
  border-top: 16px solid #197689;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: auto;
  position: relative;
  top: 33%;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=spiner.css.map */