/* Loader */
#loader {
  position: fixed;

  height: 100vh;
  width: 100vw;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.control {
  height: 100vh;
  width: 100vw;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .spinner {
  width: 20vh;
  height: 20vh;

  background-image: url(/logo.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  animation: barAnimation 1s linear 1 forwards;
} */

#loader p {
  color: var(--ThemeColor-);
}

.barRail {
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translate(-50%, -0%);
  width: 98vw;
  height: 1vh;
  background-color: #353535;

  border-radius: 10vh;
  transition: 0.4s !important;
  animation: barAnimation 1s ease-in-out 1 forwards;
}

.bar {
  height: 100%;
  width: 0%;
  background-color: var(--ThemeColor-);
  border-radius: 10vh;

  position: relative;
  transition: 0.4s !important;
}

.bar p {
  position: absolute;
  right: 0;
  top: -3vh;
  opacity: 0;

  animation: barAnimation 1s ease-in-out 1 forwards;
}

@keyframes barAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.controlTC {
  position: fixed;
  height: 100dvh;
  width: 100dvw;
  z-index: 9999;

  pointer-events: none;
}

.top {
  bottom: 0;
  left: 0;
  height: 100vh;
  width: 100vw;

  background-color: #1e1e1e;
  opacity: 1;
}

.bottom {
  top: 0px;
  left: 0;
  height: 100vh;
  width: 100vw;

  background-color: #1e1e1e;
  opacity: 1;
}
