#yce-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #F0F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.35s ease;
}

noscript #yce-page-loader {
  display: none !important;
}

#yce-page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

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

.yce-spinner {
  width: 42px;
  height: 42px;
  border: 3.5px solid #D1DCF5;
  border-top-color: #003087;
  border-radius: 50%;
  animation: yce-spin 0.75s linear infinite;
}
