.ctwpml-preparing-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  /* acima do modal ML e overlays do tema */
  z-index: 9999999;
  display: none;
}

.ctwpml-preparing-overlay.is-visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctwpml-preparing-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.ctwpml-preparing-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}

.ctwpml-preparing-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(52, 131, 250, 0.18);
  border-top-color: #3483fa;
  animation: ctwpmlPreparingSpin 0.8s linear infinite;
}

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


