﻿.custom-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro com transparência */
  display: none;
  z-index: 1000;
}

.spinner-container {
    width: 100%;
    height: 100%;
}

.spinner {
  width: 60px; height: 60px;
  border: 8px solid rgba(255,255,255,0.3);
  border-top-color: var(--primary2);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}