#preload-splash {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111827;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

#preload-splash .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#preload-splash .spinner {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 3px solid rgba(17, 24, 39, 0.15);
  border-top-color: var(--primary, rgba(17, 24, 39, 0.85));
  animation: acadpro-spin 0.9s linear infinite;
}

@keyframes acadpro-spin {
  to {
    transform: rotate(360deg);
  }
}

html[data-branding-pending="1"] #preload-splash {
  display: flex;
}
