.ga-loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.ga-loader-modal {
  max-width: 360px;
}

.ga-loader-title {
  font-family: 'Michroma', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px 0;
}

.ga-loader-text {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px 0;
}

.ga-loader-spinner {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 3px solid rgba(148, 163, 184, 0.4);
  border-top-color: rgba(34, 197, 94, 0.9);
  margin: 8px auto 12px;
  animation: gaSpin 0.7s linear infinite;
}

@keyframes gaSpin {
  to {
    transform: rotate(360deg);
  }
}
