.tab {
    text-align: center;
    display: inline-block;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    /*             margin-right: 10px; */
    cursor: pointer;
    margin: 0 25px 0 25px;
}

    .tab.active {
        background-color: #0D8359;
        color: white;
    }
/* Estilo para el contenido de las pestañas */
.tab-content {
    display: none;
    padding: 20px;
}

    .tab-content.active {
        display: block;
    }

/* Personaliza estilos adicionales si es necesario */
.navbar-nav {
    display: flex;
    justify-content: space-between;
    width: 90%;
    text-align: center;
}

.nav-item {
    margin: 0 10px;
}

.navbar {
    text-align: center !important;
    justify-content: center;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: block;
    /*background-color: var(--gray-00);*/
}

.navbarHeader {
    text-align: center !important;
    justify-content: center;
    display: flex;
    justify-content: space-around;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

hr.custom-hr {
    border-top: 1px solid lightgray;
    width: 100%;
    margin: 20px auto;
}

/* Estilo general de la tabla */
table {
    width: 100%; /* Ancho de la tabla */
    border-collapse: collapse; /* Elimina los bordes entre las celdas */
}

/* Estilo de los encabezados de la tabla */
th {
    background-color: #f2f2f2; /* Color de fondo de los encabezados */
    text-align: center; /* Alineación del texto en los encabezados */
    padding: 10px; /* Espacio interior de las celdas */
    border: 1px solid #ddd; /* Borde alrededor de las celdas */
}

/* Estilo de las filas de datos */
tr {
    border: 1px solid #ddd; /* Borde alrededor de las celdas */
}

/* Estilo de las celdas de datos */
td {
    padding: 10px; /* Espacio interior de las celdas */
    border: 1px solid #ddd; /* Borde alrededor de las celdas */
    text-align: center; /* Alineación del texto en las celdas */
}

/* Estilo de la columna de precios */
.precio {
    font-weight: bold; /* Texto en negrita */
    white-space: nowrap;
    font-size: 14px;
}

/* Estilo de la fila de total */
.total {
    background-color: #f2f2f2; /* Color de fondo de la fila de total */
    font-weight: bold; /* Texto en negrita */
}

ul,
ol,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*#demo {
    width: 400px;
    margin: 30px auto;
}
*/
.panelBorder3 {
    border-left: 2px solid #adb5bd; /* Borde izquierdo */
    border-right: 2px solid #adb5bd; /* Borde derecho */
    border-bottom: 2px solid #adb5bd; /* Borde inferior */
    border-top: none; /* Sin borde superior */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* Sombreado en la parte inferior */
    /*text-align: -webkit-center;*/
    margin: 30px auto;
    height: 100%;
    text-align: left;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

p {
    margin: 0;
}

input {
    margin: 10px 0;
    height: 28px;
    width: 80px;
    padding: 0 6px;
    border: 1px solid #ccc;
    outline: none;
}


.txGreen {
    color: #0D8359 !important;
}

.txGrey {
    color: darkslategrey !important;
}

#idMsjEncabezado {
    padding:20px;
}
/*-----------------------------------------------------*/
.payment-form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.CirculoVerde {
    display: inline-block;
    background-color: #0D8359;
    color: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin: 0 25px 0 25px;
}


/* Estilos para el modal */
#modalPay .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto;
}

#modalPay .modal-content {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

#modalPay .modal-body {
    padding: 20px;
}

#modalPay img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

#loadingmessage {
    font-size: 18px;
    color: #333;
}

.swal-button-container .swal-button {
    background-color: transparent !important;  
    color: #218c74;  
    border: 2px solid #218c74;  
    border-radius: 5px;   
    padding: 10px 20px;  
    font-size: 16px;  
    font-weight: bold;  
    text-transform: capitalize;   
    cursor: pointer;   
    transition: background-color 0.3s ease, color 0.3s ease;   
}

.swal-button-container{
    margin: 5px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

    .swal-button-container .swal-button:hover {
        background-color: #198754 !important;
        color: white;
    }

/* Estilo para el texto del modal */
.modal-text-style {
    text-align: justify;
    font-size: 14px; 
    margin: 15px; 
    line-height: 1.6; 
}

.modal-alert-style {
    text-align: center;
    font-size: 16px;
    margin: 15px;
    line-height: 1.6;
}

.modal-error-img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 10px auto;
    border-radius: 50%;
    border: 2px solid red;
    padding: 10px;
    box-sizing: border-box;
}

.modal-error-icon img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-img {
    width: 70%;
    max-width: 220px;
    margin-left: 50px;
    display: flex;
}

a.button-map-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; 
    font-size: 16px; 
    font-weight: bold; 
    color: white; 
    background-color: #1c1c1c; 
    border: 1px solid #fff; 
    border-radius: 10px; 
    padding: 10px 16px; 
    transition: all 0.3s ease; 
    border: 1px solid var(--gray-00);
}

.button-map-custom i {
    margin-right: 8px; 
}

a.button-map-custom:hover {
    background-color: #2e2e2e; 
    color: #e2e2e2; 
    border-color: #e2e2e2; 
}

.ul-no-style {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.link-no-style {
    text-decoration: none;
    color: inherit;
}

.container-button-social-network {
    font-size: 14px !important;
    display: inline-flex;
}

.Blanco{
    font-size: 14px !important;
}

.btn-social-network {
    border: none;
    padding: 10px;
    color: inherit;
    font-size: 24px !important;
    text-decoration: none;
    display: flex;
    justify-content: center;
    transition: background-color 0.3s ease;
}

    .btn-social-network:hover {
        background-color: #495057; /* Cambia el color al pasar el mouse */
    }

    h2{
        font-size: 16px !important;
    }

.footer-custom-row{
    margin-right: 25px;
    margin-left: 20px;
}

@media (min-width: 768px) {
    .divLogo {
        width: 20%;
    }

    .divFollow {
        position: relative;
        left: -50px;
        width: 30%;
    }
}

@media (max-width: 470px) {
    .panelBorder3 {
        padding: 10px; /* Reducir el espacio interno */
        max-width: 2000px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Reducir el sombreado */
        text-align: center; /* Alinear el texto al centro */
        width: 340px;
    }

    #demo {
        width: 340px;
        max-width: 600px;
        margin: 3px auto;
        padding: 10px;
    }

    .button-container {
        justify-content: center !important;
        flex: 1 1 auto;
    }

    .row.mt-3 {
        flex-wrap: wrap;
    }

    .button-container button {
        margin: 5px;
        width: 40%;
    }

    .txGrey {
        font-size: 11px;
    }

    .tab {
        font-size: 12px;
    }

    .btn-social-network {
        font-size: 22px !important;
    }

    .footer-img{
        max-width: 160px !important;
        display: inline-flex;
        margin-left: 0px;
        width: 60%;
    }

    .footer-custom-row {
        gap: 25px;
    }

    .print-term-conditions {
        margin: 0 auto;
        padding: 20px;
        text-align: justify;
    }
}

@media (max-width: 400px) {
    .panelBorder3 {
        padding: 10px; /* Reducir el espacio interno */
        max-width: 2000px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Reducir el sombreado */
        text-align: center; /* Alinear el texto al centro */
        width: 340px;
        margin-left: calc(-.7* var(--bs-gutter-x));
        margin-right: calc(-.7* var(--bs-gutter-x));
    }

    #demo {
        width: 340px;
        max-width: 600px;
        margin: 3px auto;
        padding: 10px;
        margin-left: calc(-.7* var(--bs-gutter-x));
        margin-right: calc(-.7* var(--bs-gutter-x));
    }

    .button-container {
        justify-content: center !important;
        flex: 1 1 auto;
    }

    .row.mt-3 {
        flex-wrap: wrap;
    }

    .button-container button {
        margin: 5px;
        width: 40%;
    }

    .txGrey {
        font-size: 11px;
    }

    .tab {
        font-size: 12px;
    }

    .btn-social-network {
        font-size: 19px !important;
    }

    .Blanco {
        font-size: 13px !important;
    }

    .footer-img {
        max-width: 160px !important;
        display: inline-flex;
        margin-left: 0px;
        width: 60%;
    }

    .footer-custom-row {
        gap: 25px;
    }
}

@media (max-width: 380px) {
    .panelBorder3 {
        padding: 10px; /* Reducir el espacio interno */
        max-width: 2000px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Reducir el sombreado */
        text-align: center; /* Alinear el texto al centro */
        width: 340px;
        margin-left: calc(-.99* var(--bs-gutter-x));
        margin-right: calc(-.99* var(--bs-gutter-x));
    }

    #demo {
        width: 340px;
        max-width: 600px;
        margin: 3px auto;
        padding: 10px;
        margin-left: calc(-.99* var(--bs-gutter-x));
        margin-right: calc(-.99* var(--bs-gutter-x));
    }

    .button-container {
        justify-content: center !important;
        flex: 1 1 auto;
    }

    .row.mt-3 {
        flex-wrap: wrap;
    }

    .button-container button {
        margin: 5px;
        width: 40%;
    }

    .txGrey {
        font-size: 11px;
    }

    .tab {
        font-size: 12px;
    }

    .btn-social-network {
        font-size: 16px !important;
    }

    .link-no-style{
        font-size: 13px;
    }

    .Blanco{
        font-size: 13px !important;
    }

    .footer-img {
        max-width: 160px !important;
        display: inline-flex;
        margin-left: 0px;
        width: 45%;
    }

    .footer-custom-row {
        gap: 25px;
    }
}

@media (min-width: 700px) and (max-width: 800px) {
    .panelBorder3 {
        width: 350px;
    }
}

@media (width: 768px) {
    .divFollow{
        position: relative;
        left: 10px;
        width: 30%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 50%
    }

    .footer-img{
        width: auto;
        max-width: 220px;
        margin-left: 20px;
        display: flex;
    }

    .custom-address{
        position: relative;
        left: 10px;
    }

    .btn-social-network{
        font-size: 20px !important;
    }
}

@media (width: 800px) {
    .divFollow {
        position: relative;
        left: 10px;
        width: 30%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 50%
    }

    .footer-img {
        width: auto;
        max-width: 220px;
        margin-left: 20px;
        display: flex;
    }

    .custom-address {
        position: relative;
        left: 10px;
    }

    .btn-social-network {
        font-size: 20px !important;
    }
}

    

