html,
body {
  /* background-color: #1b1d24; */
  background-color: #222430;
}

#preloader {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background-color: #1b1d24; */
  background-color: #222430;
}

.ants-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: 3px solid rgba(0, 102, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0066ff;
  letter-spacing: 2px;
  /* text-transform: uppercase; */
  text-shadow: 0 0 10px #0066ff;
  box-shadow: 0 0 20px rgba(0, 0, 0, .15);
}

.ants-spinner::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  border-top: 3px solid #0066ff;
  border-right: 3px solid #0066ff;
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}

.ants-spinner span {
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: 50%;
  width: 50%;
  height: 4px;
  background: transparent;
  transform-origin: left;
  animation: animate 2s linear infinite;
}

.ants-spinner span::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00aeff;
  top: -6px;
  right: -8px;
  box-shadow: 0 0 20px 5px #0066ff;
}

.ants-spinner-text {
  margin-top: 150px;
  color: #fefefe;
  font-size: 35px;
  font-family: sans-serif;
  text-align: center;
  text-shadow: 0 0 10px #0066ff;
}

@media screen and (max-width: 991px) {
  .ants-spinner-text {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .ants-spinner-text {
    font-size: 22px;
  }
}

@keyframes animateC {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate {
  0% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(405deg);
  }
}