.hidden {
  display: none !important;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-text-fill-color: #000;
  box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  -webkit-text-fill-color: #000;
  box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

:focus-visible {
  outline: none;
}

input:focus {
  --tw-ring-color: none !important;
}

#main {
  height: 1500px;
}

.spinner-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  flex-direction: column;
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
}
.spinner-wrap .spinner-block {
  width: inherit;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: row;
  flex-wrap: wrap;
}
.spinner-wrap .spinner-block .loader-block {
  width: 50%;
  height: 100%;
  position: relative;
  filter: url(#gooey);
}
.spinner-wrap .spinner-block .loader-block div {
  position: absolute;
  top: 15%;
  border: 0;
  border-radius: 50%;
  background: #01c0ff;
  width: 6rem;
  height: 6rem;
  animation: loading 4s infinite;
  transform: scale(0.1);
  opacity: 0;
  display: inline-block;
}
.spinner-wrap .spinner-block .loader-block div:nth-child(1) {
  animation-delay: 0.5s;
}
.spinner-wrap .spinner-block .loader-block div:nth-child(2) {
  animation-delay: 1s;
}
.spinner-wrap .spinner-block .loader-block div:nth-child(3) {
  animation-delay: 1.5s;
}
.spinner-wrap .spinner-block .loader-block div:nth-child(4) {
  animation-delay: 2s;
}
.spinner-wrap .spinner-block svg {
  display: none;
}
.spinner-wrap .typing-txt-block {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
}
.spinner-wrap .typing-txt-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spinner-wrap .typing-txt-block ul li {
  opacity: 1;
  white-space: nowrap;
}
.spinner-wrap .typing-txt-block ul li span {
  opacity: 0;
  display: inline-block;
  animation: typing 0.5s forwards;
}
.spinner-wrap .typing-txt-block .loading-percent .now-percent {
  font-weight: inherit;
}

.spinner-section {
  position: absolute;
  top: 0;
}

.spinner-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  flex-direction: column;
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
}
.spinner-wrap .spinner-block {
  width: inherit;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: row;
  flex-wrap: wrap;
}
.spinner-wrap .spinner-block .loader-block {
  width: 50%;
  height: 100%;
  position: relative;
  filter: url(#gooey);
}
.spinner-wrap .spinner-block .loader-block * {
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 0;
  left: 0;
  transform: none;
  border: 0;
  border-radius: 50%;
  background-color: #01c0ff;
  width: 4rem;
  height: 4rem;
  animation: loading 4s infinite;
  transform: scale(0.1);
  opacity: 0;
  display: inline-block;
}
.spinner-wrap .spinner-block .loader-block *:nth-child(1) {
  animation-delay: 0.5s;
}
.spinner-wrap .spinner-block .loader-block *:nth-child(2) {
  animation-delay: 1s;
}
.spinner-wrap .spinner-block .loader-block *:nth-child(3) {
  animation-delay: 1.5s;
}
.spinner-wrap .spinner-block .loader-block *:nth-child(4) {
  animation-delay: 2s;
}
.spinner-wrap .spinner-block svg {
  display: none;
}
.spinner-wrap .typing-txt-block {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: auto;
}
.spinner-wrap .typing-txt-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spinner-wrap .typing-txt-block ul li {
  opacity: 1;
  white-space: nowrap;
}
.spinner-wrap .typing-txt-block ul li span {
  opacity: 0;
  display: inline-block;
  animation: typing 0.5s linear;
}
.spinner-wrap .typing-txt-block .typing-txt-block__typing span {
  opacity: 0;
  animation: typing 0.5s forwards;
}

@keyframes typing {
  to {
    opacity: 1;
  }
}
@keyframes loading {
  50% {
    transform: scale(1.25);
    left: 50%;
    opacity: 1;
  }
  100% {
    transform: scale(0.1);
    left: 100%;
    opacity: 0;
  }
}