body {
  margin: 0;
}

#loading-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-logo {
  width: 70%;
  min-width: 26rem;
  max-width: 40rem;
  position: absolute;
  top: 20%;
}

#loading-logo img {
  width: 100%;
}

.loading {
  position: absolute;
  left: calc(50% - 24px);
  top: 45%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid transparent;
}

.loading .effect-1,
.loading .effect-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgb(247, 181, 2);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}

.loading .effect-2 {
  animation: rotateOpacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgb(255, 246, 115);
  -webkit-animation: rotateOpacity 1s ease infinite 0.2s;
  animation: rotateOpacity 1s ease infinite 0.2s;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effects {
  transition: all 0.3s ease;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotateOpacity {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.1;
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 1;
  }
}

/* @keyframes zoom-in-zoom-out {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5, 1.5);
  }

  100% {
    transform: translate(-50%, -50%) scale(1, 1);
  }
} */

@media only screen and (max-width: 600px) {
  div[style*="z-index: 2000000000"] {
    left: unset !important;
    transform: scale(0.9);
  }
}

@media only screen and (max-width: 512px) {
  .loading {
    top: 35%;
    width: 45px;
    height: 45px;
  }
}

@media only screen and (max-height: 600px) {
  #loading-logo {
    min-width: 15rem;
    max-width: 25rem;
    position: absolute;
    top: 10%;
  }

  .loading {
    top: 25%;
  }
}