.fx-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 480ms ease;
}

.fx-loading-overlay.is-hiding {
  opacity: 0;
  pointer-events: none;
}

.fx-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  opacity: 0;
  transform: translateY(8px);
  animation: fx-loading-fade-in 420ms ease forwards;
  animation-delay: 80ms;
}

.fx-loading-icon {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.fx-loading-text {
  margin: 0;
  font-family: "Griun Simsimche", cursive;
  font-size: 28px;
  letter-spacing: 2px;
  color: #242424;
}

.fx-loading-dots {
  display: inline-block;
  width: 1.4em;
  text-align: left;
}

@keyframes fx-loading-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-loading-overlay {
    transition: none;
  }

  .fx-loading-inner {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
