@font-face {
  font-family: "Roboto";
  src: url("../files/fonts/Roboto/Roboto-VariableFont_wdth\,wght.ttf");
  font-style: normal;
  letter-spacing: 1px;
}

@font-face {
  font-family: "Inter";
  src: url("../files/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf");
  font-style: normal;
}

.preloader {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  background: #fff;
}

.spectacledcoder-layout {
  margin: auto;
  display: flex;
  width: 250px;
}
.spectacledcoder-grid {
  margin: auto;
  margin-right: 1px;
  width: 50px;
  height: 50px;
  display: grid;
  gap: 0px;
  grid-template-columns: auto auto;
  animation: rotate 2s linear 0s infinite;
}
.item1 {
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 0%;
  background-color: #f13939;
}
.item2 {
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 0%;
  background-color: #000;
}
.item3 {
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 0%;
  background-color: #000;
}
.item4 {
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 0%;
  background-color: #f13939;
}
@keyframes rotate {
  0% {
    rotate: 0deg;
    transform: scale(0.6);
  }
  50% {
    rotate: 100deg;
    transform: scale(0.4);
  }
  100% {
    rotate: 360deg;
    transform: scale(0.6);
  }
}
.spectacledcoder-loader-h {
  margin: auto;
  margin-left: 5px;
}
.disclaimer {
  position: absolute;
  bottom: 20px;
  left: 0;
  margin-left: auto;
  right: 0;
  margin-right: auto;
  width: fit-content;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.disclaimer a {
  text-decoration: none;
  font-weight: 900;
}
.disclaimer a:hover {
  text-decoration: overline;
}

.preloaderPane {
  position: absolute;
  inset: 0;
  display: flex;
}

.preloaderBox {
  flex: 1;
  background: #fff;
  opacity: 1;
}

.preloader._inactive .preloaderBox {
  opacity: 1;
  animation: hideContent 0.5s 1.8s ease-in-out 1 forwards;
}

.preloader._inactive .preloaderBox:nth-child(2) {
  animation-delay: 1.6s;
}

.preloader._inactive .preloaderBox:nth-child(3) {
  animation-delay: 1.4s;
}

.preloader._inactive .preloaderBox:nth-child(4) {
  animation-delay: 1.2s;
}

.preloader._inactive .preloaderBox:nth-child(5) {
  animation-delay: 1s;
}

.preloader._inactive .preloaderBox:nth-child(6) {
  animation-delay: 0.8s;
}

.preloader._inactive .preloaderBox:nth-child(7) {
  animation-delay: 0.6s;
}

.preloader._inactive .preloaderBox:nth-child(8) {
  animation-delay: 0.4s;
}

@keyframes hideContent {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
