@charset "UTF-8";

/* Loading */

#loading {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 100vw;
  height: 100dvh;
  background-color: #000;
}

#loading .loading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#loading .bar {
  position: relative;
  width: 300px;
  height: 4px;
  margin-top: 12px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 10%);
}

#loading .bar .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 3px;
  background-color: #FFFC00;
  transition: width .1s;
}

#loading .text {
  display: flex;
}

#loading .text .dots {
  display: flex;
  align-items: flex-end;
}

#loading .text p {
  margin: 0;
  line-height: 1;
  color: #FFFC00;
  font-size: 1.25em;
}

#loading .text p span {
  display: inline-block;
  animation: spin 1.8s cubic-bezier(.77, 0, .175, 1) infinite;
  transform-origin: center center;
  will-change: transform;
}

#loading .text p span:nth-child(1) {
  animation-delay: 0.05s;
}

#loading .text p span:nth-child(2) {
  animation-delay: 0.1s;
}

#loading .text p span:nth-child(3) {
  animation-delay: 0.15s;
}

#loading .text p span:nth-child(4) {
  animation-delay: 0.2s;
}

#loading .text p span:nth-child(5) {
  animation-delay: 0.25s;
}

#loading .text p span:nth-child(6) {
  animation-delay: 0.3s;
}

#loading .text p span:nth-child(7) {
  animation-delay: 0.35s;
}

@keyframes spin {

  0%,
  16.67% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}


#loading .text .icon {
  width: 2px;
  height: 2px;
  margin-left: 5px;
  background: #FFFC00;
  animation: dot-blink 1s linear infinite;
}

#loading .text .icon:nth-child(2) {
  animation-delay: 0.2s;
}

#loading .text .icon:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#loading .num {
  margin-top: 3px;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
}

#loading .num span {
  display: inline-block;
  line-height: 1.4285714285714286;
  margin-right: 4px;
  font-size: 1.75rem;
}
