body {
  overflow-y: hidden;
}

.loading-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0,0,0,.6);
  max-width: 910px;
  width: 100%;
  height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-logo {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-20px, -20px);
}

.loading {
  position: relative;
  width: 80px;
  height: 80px;
  border: 2px solid #01C3B1;
  border-top-color: #0087D6;
  border-right-color: #0087D6;
  border-bottom-color: #0087D6;
  border-radius: 100%;

  animation: circle infinite 0.75s linear;
}

@keyframes circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}