#initial-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
}

.wp-spinner {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.wp-spinner span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9296AA;

  left: 50%;
  top: 50%;

  transform-origin: center;
}

.wp-spinner span:nth-child(1) {
  left: 21px;
  top: 0;
}

.wp-spinner span:nth-child(2) {
  left: 35px;
  top: 7px;
}

.wp-spinner span:nth-child(3) {
  left: 41px;
  top: 21px;
}

.wp-spinner span:nth-child(4) {
  left: 35px;
  top: 35px;
}

.wp-spinner span:nth-child(5) {
  left: 21px;
  top: 41px;
}

.wp-spinner span:nth-child(6) {
  left: 7px;
  top: 35px;
}

.wp-spinner span:nth-child(7) {
  left: 0;
  top: 21px;
}

.wp-spinner span:nth-child(8) {
  left: 7px;
  top: 7px;
}

.wp-spinner span {
  animation: wp-spinner 0.8s linear infinite;
}

.wp-spinner span:nth-child(1) { animation-delay: -0s; }
.wp-spinner span:nth-child(2) { animation-delay: -0.1s; }
.wp-spinner span:nth-child(3) { animation-delay: -0.2s; }
.wp-spinner span:nth-child(4) { animation-delay: -0.3s; }
.wp-spinner span:nth-child(5) { animation-delay: -0.4s; }
.wp-spinner span:nth-child(6) { animation-delay: -0.5s; }
.wp-spinner span:nth-child(7) { animation-delay: -0.6s; }
.wp-spinner span:nth-child(8) { animation-delay: -0.7s; }

@keyframes wp-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

 @media (prefers-reduced-motion: reduce) {
   .wp-spinner span {
     animation: none;
     opacity: 0.6;
   }
 }
