.popup-med-email-support {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%; /* Ocupa todo el ancho para el fondo, pero el contenido será más pequeño */
    height: 100%; /* Ocupa todo el alto para el fondo */
    overflow: auto;
    background: rgba(0, 0, 0, 0.5); /* Un fondo oscuro semitransparente, ajusta según necesites */
    justify-content: center;
    align-items: center; /* Centra el contenido vertical y horizontalmente */
}

.popup-med-container-email-support {
    background: var(--c-background-primary);
    padding: 20px;
    box-sizing: border-box;
    width: 600px;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    opacity: 0;
    animation: animarFadeIn 0.3s forwards;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.close-btn-email-support {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 30px; /* Ajusta el tamaño del ícono de cierre si es necesario */
    font-weight: bold;
    cursor: pointer;
}

@keyframes animarFadeIn {
    to {
        opacity: 1;
    }
}