﻿
.text-min-azul {
    color: var(--brand-blue-500, #263184);
    text-align: center;
    text-overflow: ellipsis;
    /* text-overflow: ellipsis; */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.bg-gris {
    border-radius: 0px 0px 0px 0px;
    border: 1px solid var(--grey-grey-100, #EBEBEB);
    background: var(--grey-grey-50, #F7F7F7);
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
}

.bor-grey {
    border-radius: 12px;
    border: 1px solid var(--grey-grey-100, #EBEBEB);
    background: var(--extra-white, #FFF);
    padding: 10px;
    margin: 5px;
}

.checkazul:checked[type="checkbox"] {
    background-image: url(~/assets/img/iconos/icon_check.svg);
    background-color: #263184 !important;
    border: #263184;
}

#btnPagar {
    width: 70%; /* Establece el ancho del botón */
    display: block; /* Permite que el margen automático funcione */
    margin: 0 auto; /* Centra horizontalmente el botón */
}

@media screen and (max-width: 768px) {
    #btnPagar {
        width: 100% !important; /* Ancho al 100% en pantallas pequeñas */
    }
    .contenedorInputPresu {
        width: 100% !important;
    }
}

#cbxCorreo, #cbxCelular {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    background-color: white;
}

    #cbxCorreo:checked, #cbxCelular:checked {
        border-color: #263184;
        background-color: white;
    }

        #cbxCorreo:checked::after, #cbxCelular:checked::after {
            content: '';
            width: 15px;
            height: 15px;
            background-color: #263184;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            /* Borde blanco interno */
            box-shadow: inset 0 0 0 2.5px white !important;
        }
        

/* Clases únicas para el modal de constancia de pago */
.modal-constancia-pago {
    padding: 0 15px;
}
.modal-dialog-centered {
    justify-content: center;
    display: flex;
    margin: auto; /* Centra horizontal y verticalmente */
}

/* Media queries para responsive */
@media (max-width: 576px) {
    /* Modal */
    .modal-constancia-pago .modal-content {
        width: 100% !important;
        margin: 0 auto;
    }

    /* Grupos de input */
    .modal-constancia-pago .d-flex {
        padding: 0 10px;
    }

    /* Input correo */
    .modal-constancia-pago #txtCorreoReciboPago {
        width: 100%;
    }

    /* Input celular */
    .modal-constancia-pago #txtCelularReciboPago {
        width: 100%;
    }

    /* Ajuste del margen para el label SMS */
    .modal-constancia-pago .font-14[style*="margin-right"] {
        margin-right: 4.5vw !important;
    }
    .checkBoxSMS {
        width: 34vw !important;
    }

    .checkBoxCorreo {
        width: 34vw !important;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .modal-constancia-pago .modal-content {
        width: 440px !important;
        margin: 0 auto;
    }

    .modal-constancia-pago .font-14[style*="margin-right"] {
        margin-right: 5.5vw !important;
    }
}

@media (min-width: 769px) {
    .modal-constancia-pago .modal-content {
        width: 480px !important;
        margin: 0 auto;
    }
}