/*Loading*/
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Asegúrate de que esté por encima de otros elementos */
}

#loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    /* Crea un círculo de carga */
    border-top: 4px solid #ffffff;
    /* Punto de inicio del círculo */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    /* Agrega una animación de giro */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.my-swal-popup {
    width: 80% !important;
    max-width: 500px;
    height: 400px !important;
}

.my-swal-title {
    font-size: 40px !important;
    padding: 0 1rem;
}

.my-swal-content {
    font-size: 18px !important;
}

.icono-swal {
    font-size: 15px;
}

@media (max-width: 1200px) {
    .margenSuperior {
      margin-top: 60px;
    }
}

@media (min-width: 1200px) {
  .margenSuperior {
    margin-top: 25px;
  }
}