/* Signacore Quote Loader Add-on */
.sgq-submit-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 8, 120, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sgq-submit-loader-overlay.is-active {
  display: flex;
}

.sgq-submit-loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px 38px;
  background: linear-gradient(135deg, #0031FF 0%, #06065C 100%);
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  text-align: center;
}

.sgq-submit-loader-logo {
  width: 96px;
  height: auto;
  display: block;
  animation: sgq-logo-spin 1.1s linear infinite;
  transform-origin: center center;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.28));
}

.sgq-submit-loader-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes sgq-logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .sgq-submit-loader-box {
    width: calc(100% - 48px);
    padding: 28px 22px;
  }

  .sgq-submit-loader-logo {
    width: 78px;
  }
}
