/* [project]/components/loading/LoadingModal.css [app-client] (css) */
.loading-overlay {
  z-index: 9999;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #0009;
  justify-content: center;
  align-items: center;
  animation: .2s ease-out fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.loading-container {
  background: linear-gradient(145deg, #0f0f0f, #000);
  border: 1px solid #ffffff14;
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  animation: .25s ease-out scaleIn;
  overflow: hidden;
  box-shadow: 0 0 50px #000000e6;
}

.loading-header {
  text-align: center;
  color: #fff;
  letter-spacing: .5px;
  background: linear-gradient(90deg, #4f46e5, #9333ea, #4f46e5);
  padding: 16px;
  font-weight: 600;
}

.loading-body {
  text-align: center;
  color: #cbd5e1;
  padding: 28px 24px;
}

.loading-message {
  opacity: .9;
  margin-top: 18px;
  font-size: 14px;
}

.loading-extra {
  margin-top: 12px;
}

.premium-spinner {
  border: 4px solid #6366f1;
  border-color: #6366f1 #a855f7 #ffffff1a #ffffff1a;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  animation: .8s linear infinite spin;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=components_loading_LoadingModal_0~u_ceh.css.map*/