#ak-project-loader {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 950;
  background: rgba(32, 32, 32, 0.817);
  backdrop-filter: blur(2px);
}

#ak-project-loader[data-open="0"] {
  display: none;
}

#ak-project-loader[data-open="1"] {
  display: flex;
  opacity: 0;
  animation: akLoaderReveal 0s 160ms forwards;
}

.ak-loader__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  animation: wave 2s ease-in infinite;
}

@keyframes wave {
  0% {
    box-shadow:
      0 0 0 0px rgba(255, 255, 255, 1),
      0 0 0 20px rgba(255, 255, 255, 0.2),
      0 0 0 40px rgba(255, 255, 255, 0.6),
      0 0 0 60px rgba(255, 255, 255, 0.4),
      0 0 0 80px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow:
      0 0 0 80px rgb(255, 255, 255),
      0 0 0 60px rgba(255, 255, 255, 0.2),
      0 0 0 40px rgba(255, 255, 255, 0.4),
      0 0 0 20px rgba(255, 255, 255, 0.6),
      0 0 0 0px rgba(255, 255, 255, 1);
  }
}
    

@keyframes akspin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes akLoaderReveal {
  to { opacity: 1; }
}