
/* ---------- Loader ---------- */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-neutral);
  z-index: 9999;
  /*transition: opacity 0.7s ease-out;*/
}
#rotate-inner {
  animation: spin 1.4s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#count {
  margin-top: 1.5rem;
  font-size: 1.875rem; /* text-3xl */
  font-weight: 600;
  color: var(--clr-primary);
}
