/* Modal global */

.global-modal {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: none;
    z-index: 999999;
}

/* Cuando está activo */

.global-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fondo oscuro */

.global-modal__overlay {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.65);
}

/* Caja del modal */

.global-modal__content {

    position: relative;
    z-index: 2;

    width: 600px;
    max-width: 90%;

    max-height: 90vh;
    overflow-y: auto;

    background: #ffffff;

    border-radius: 12px;

    padding: 40px;

    box-sizing: border-box;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);

}

/* Botón cerrar */

.global-modal__close {

    position: absolute;

    top: 15px;
    right: 20px;

    border: none;
    background: transparent;

    font-size: 32px;

    cursor: pointer;

    line-height: 1;

}

.modal-header {
    margin-bottom: 15px;
    text-align: center;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}