/* Popup confirmación salir del pago */
.popup-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 10060;
}

.inner-div {
    padding: 20px;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 335px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-section-confirm {
    margin-bottom: 20px;
}

    .image-section-confirm img {
        width: 51.8px;
        height: 60px;
    }

.confirmation-text h2 {
    font-family: 'Red Hat Display';
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: rgba(61, 61, 61, 1);
    text-align: center;
    margin-bottom: 20px;
}

.confirmation-text p {
    font-family: 'Red Hat Display';
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    color: rgba(61, 61, 61, 1);
    text-align: center;
    margin-bottom: 20px;
}

.button-group-pop {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

    .button-group-pop .btn-primary-nw,
    .button-group-pop .btn-secondary-nw {
        padding: 12px;
        border-radius: 58px;
        border: none;
        cursor: pointer;
        width: 100%;
        font-family: 'Red Hat Display';
        font-size: 14px;
        font-weight: 700;
        line-height: 19.6px;
        text-align: center;
    }

    .button-group-pop .btn-primary-nw {
        background-color: #065EA6;
        color: #ffffff;
    }

    .button-group-pop .btn-secondary-nw {
        background-color: #ffffff;
        color: #065EA6;
        border: 1px solid #065EA6;
    }

/* Aviso de regreso al comercio */
.popup-overlay-re {
    display: flex;
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10070;
}

.inner-div-re {
    padding: 20px;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 335px;
    height: auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .inner-div-re p {
        font-family: 'Red Hat Display';
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
        text-align: center;
        color: rgba(61, 61, 61, 1);
        margin-bottom: 20px;
    }

.logo-container-re {
    width: 175px;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

    .logo-container-re img {
        max-width: 100%;
        height: auto;
    }
