@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes loadingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.response-modal {
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: fixed;
  z-index: 4;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.response-modal .loading-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 40px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.response-modal .loading-content .loading-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
  font-size: 40px;
  color: #fff;
}
.response-modal .loading-content .loading-icon .loading-spin {
  width: 40px;
  height: 40px;
  animation: loadingSpin 1.5s linear infinite;
}
.response-modal .loading-content .loading-text {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}
.response-modal .loading-content .loading-subtext {
  font-size: 14px;
  color: #475569;
}

.response-modal.show {
  display: flex;
}/*# sourceMappingURL=loading.css.map */