form:not(.login-form) *:not(textarea) {
    text-transform: uppercase;
}


/* Evitar transformar texto dentro del select visible */
form:not(.login-form) select {
    text-transform: none;
}

/* Transformar texto dentro de las opciones */
form:not(.login-form) select option {
    text-transform: uppercase;
}


/* Card moderna destacada */
.ticket-card {
    padding: 0.75rem;
    /* reduce padding general */
    font-size: 0.9rem;
    /* letras un poco más pequeñas */
    line-height: 1.2;
    /* menos espacio entre líneas */
    min-height: auto;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);

}


.badgebtnp {
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
    animation: pulse 1.5s infinite;
}


/* Badges por estado */
.badge-estado {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

/* Colores de los badges según el estado */
.estado-abierto {
    background-color: #d1f7c4;
    color: #2e7d32;
}

.estado-en_progreso {
    background-color: #fff3cd;
    color: #856404;
}

.estado-pendiente {
    background-color: #ffe0e0;
    color: #c62828;
}

.estado-resuelto {
    background-color: #cce5ff;
    color: #004085;
}

.estado-cerrado {
    background-color: #e2e3e5;
    color: #6c757d;
}

.estado-reabierto {
    background-color: #fce5cd;
    color: #e65100;
}

.estado-cancelado {
    background-color: #f8d7da;
    color: #721c24;
}

.estado-sugerencia {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Footer de la card */
.ticket-footer {
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Meta-info del footer */
.ticket-footer .meta-info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.color-azul-custom {
    color: #084c7c !important;
    font-weight: 500;
}

input[type="radio"]:checked {
    accent-color: #eb6e38 !important;
}

/* Evitar transformar inputs de texto para que usuario escriba normalmente */
form:not(.login-form) input[type="text"],
form:not(.login-form) input[type="password"],
form:not(.login-form) input[type="email"],
form:not(.login-form) input[type="number"] {
    text-transform: none;
}

#drop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4d4d4d75;
    /* azul transparente */
    display: none;
    /* oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    text-align: center;
    transition: opacity 0.3s ease;
}

#drop-overlay.active {
    display: flex;
}

.drop-overlay-content i {
    font-size: 80px;
    margin-bottom: 20px;
}

.drop-overlay-content p {
    font-size: 22px;
    font-weight: bold;
}


body {
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #8699ae;
    overflow-x: hidden;
    /*text-transform: uppercase;*/

}

input[readonly] {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
    cursor: not-allowed;
    pointer-events: none;
}

.border-apariencia {
    border: 1px solid #ff660070 !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #606873;
    font-weight: 300;
    /*text-transform: uppercase;*/

}

.fila-seleccionada-cliente {
    background-color: #eb6e3859 !important;
    color: black !important;
}

.fila-seleccionada-cliente:hover {
    cursor: pointer;
    background-color: #eb6e387e !important;
}

.fila-seleccionada-poliza {
    background-color: #eb6e3859 !important;
    color: black !important;
}

.fila-seleccionada-poliza:hover {
    cursor: pointer;
    background-color: #eb6e387e !important;
}

.fila-seleccionada-recibo {
    background-color: #eb6e3859 !important;
    color: black !important;
}

.fila-seleccionada-recibo:hover {
    cursor: pointer;
    background-color: #eb6e387e !important;
}

.fila-seleccionada-siniestro {
    background-color: #eb6e3859 !important;
    color: black !important;
}

.fila-seleccionada-siniestro:hover {
    cursor: pointer;
    background-color: #eb6e387e !important;
}


.bandera-idioma {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    /*width: 35px;*/
    /*height: 25px;*/
    object-fit: cover;
    cursor: pointer;
    margin-right: 10px;
    vertical-align: middle;

}

.usuario .dropdown-menu a {
    text-decoration: none;
    padding-right: 5px;
}


.text-orange {
    color: #eb6e38 !important;
}

.text-success {
    color: #0a7e7d !important;
}

.text-danger {
    color: #e8423a !important;
}

.bg-success-light {
    background: rgba(10, 126, 125, 0.1);
}

/* tabla hover */
tbody tr:hover {
    cursor: pointer;
    background-color: #aaaaaa49 !important;
}

.bg-danger-light {
    background: rgba(232, 66, 58, 0.1);
}

.bg-orange-light {
    background: #ffd8c9;
}

.bg-orange-light2 {
    background: #fcede9;
}

.bg-orange {
    background: #eb6e38 !important;
}

.bg-success {
    background: #0a7e7d !important;
}

html,
body {
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    position: absolute;
    top: 7vh;
    left: 0;
    width: 280px;
    max-height: calc(100vh - 86px);
    background: #fff;
    padding: 30px 20px;
    padding-top: 0;
    overflow-y: auto;
    display: none;
    z-index: 9;
}


.contenedorcentral.hiddenMenu {
    margin-left: 0;
    width: 100%;
}


.rotated {
    transform: rotate(180deg);
    position: fixed;
    left: 0;
    margin-left: 0px;
}

#contenedor_flechita {
    position: fixed;
    top: 50%;
    left: 0;
    margin-left: 285px;
    transform: translateY(-50%);
    z-index: 12;
    /*background: red;*/
    height: 100%;
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
}

.input-group {
    flex-wrap: wrap;
}

#flechitaMenu:hover {
    color: #eb6e38;
    transform: scale(1.1);
    /* Aumenta el tamaño al 110% */
    transition: transform 0.3s ease;
}

.no-margin-left {
    margin-left: 0 !important;
}

.itemmenu i {
    float: right;
    font-size: 20px;
    color: #606873;
    margin-top: -3px;
}

.navbar {
    padding: 0px;
}

.navbar ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.navbar ul li a {
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    color: #606873;
    font-weight: 500;
    padding: 15px 0px;
    display: block;
    width: 100%;
    text-decoration: none;
    border-bottom: solid thin #ccd2dc;
}

.navbar ul li a:hover {
    color: #eb6e38;
    display: block;
    text-decoration: none;
}

.navbar ul li ul {
    margin-top: 0px;
}

.navbar ul li ul li a {
    padding: 15px 20px;
    padding-right: 0px;
    font-size: 14px;
    font-weight: 300;
    color: #8699ae;
    text-transform: none;
    border-radius: 5px;
    border: 0px;
}

.navbar ul li ul li ul {
    padding-left: 20px;
}

.dropdown-item.active {
    color: #fff !important;
    background: #eb6e38 !important;
}

.itemmenu.seleccionado {
    color: #eb6e38;
    font-weight: 400;
}

.itemmenu.seleccionadoA {
    color: green;
    font-weight: 400;
}

.dropdown-item.seleccionado {
    color: #eb6e38;
    font-weight: 400;
}

header {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    z-index: 11;
    height: 7vh;
}

.logoheader {
    width: 250px;
    display: inline-block;
    padding: 20px;
    position: relative;
}

.botonmenumobile {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
}

header form {
    display: inline-block;
    width: 330px;
    position: relative;
}

header form button[type="submit"] {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #8699ae;
    border: 0px;
    background: none;
}

header form button[type="submit"] i {
    font-size: 30px;
}

.contenedorcentral {
    background: #f5f6fa;
    width: 100%;
    margin-left: 0px;
    height: 93vh;
    /*height: auto;*/
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

h1 {
    font-size: 25px;
    margin-bottom: 30px;
}

.form-control {
    background-color: #fff;
    border-radius: 25px;
    border: solid thin rgba(218, 217, 217, 0.83);
    padding: 5px 10px;
    padding: .25rem .5rem;
    font-size: .875rem;
    height: 31px;
    min-width: 150px;

}

.form-control:focus {
    border: solid thin rgba(110, 109, 109, 0.83);
    box-shadow: none;
    outline: none !important;
    background-color: #fff;
}

.input-group .form-control {
    border-right: 0px;
}


.dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    background-color: #f5f6fa !important;
    border-radius: 25px !important;
    border: 0px !important;
    font-size: 13px !important;
    padding: 20px !important;
    height: 47px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dataTables_length select {
    padding: 5px 20px !important;
}

.dataTables_length select:focus,
.dataTables_wrapper .dataTables_filter input:focus {
    outline: none !important;
}

table.dataTable th input[type="checkbox"] {
    width: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

.dt-type-numeric {
    text-align: left !important;
}

.dt-type-date {
    text-align: left !important;
}

.iconosheader a {
    margin-left: 45px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.iconosheader a i {
    font-size: 30px;
    color: #8699ae;
    vertical-align: middle;
}

.iconosheader a span {
    position: absolute;
    top: -5px;
    right: -3px;
    width: 15px;
    height: 15px;
    color: #fff;
    background: #eb6e38;
    border-radius: 100%;
    font-size: 10px;
    text-align: center;
}

.resalta-rojo {
    color: red !important;
}

.resalta-verde {
    color: forestgreen !important;
}

.resalta-morado {
    color: purple !important;
}

.usuario {
    display: inline-block;
    padding-left: 45px;
    margin-left: 45px;
    border-left: solid thin #ccd2dc;
}

.usuario i {
    color: #8699ae;
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
}

.usuario .la-user {
    font-size: 30px;
    color: #8699ae;
}

#userDropdown:after {
    display: none;
}

.usuario .dropdown-menu {
    padding: 20px;
    border: 0px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.usuario .dropdown-menu li {
    margin-bottom: 5px !important;
}

.usuario .dropdown-menu a {
    font-size: 13px;
    margin: 0px !important;
    color: #8699ae;
    padding: 0px !important;

}

.usuario .dropdown-menu a:hover,
.usuario .dropdown-menu a:focus,
.usuario .dropdown-menu a:active {
    background: none !important;
    color: #eb6e38;
}

.btn {
    font-size: 16px;
    padding: 3px 40px;
    border-radius: 25px;
    border: 0px !important;
    height: 31px;
}

.btn-docs {
    font-size: 16px;
    padding: 3px 10px;
    border-radius: 25px;
    border: 0px !important;
    height: 31px;
}

.form-checkbox-input {
    background: #eb6e38 !important;
}


.btn-primary {
    background: #eb6e38 !important;
    color: #fff !important;
    white-space: normal !important;
    word-wrap: break-word;
    text-align: center;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #606873 !important;
}

.btn-secondary {
    background: #0A7E7D !important;
    color: #fff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: #0E4F4D !important;
}

.btn-success {
    background: #49AD33 !important;
    color: #fff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background: #2A7717 !important;
}

.btn-danger {
    background: #E5221F !important;
    color: #fff !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background: #B71C1C !important;
}

.btn-warning {
    background: #FCBE13 !important;
    color: #fff !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background: #D1A330 !important;
}

.btn-info {
    background: #024B7F !important;
    color: #fff !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    background: #083D5E !important;
}

.usuario .dropdown-menu a.btn-primary {
    font-size: 13px !important;
    padding: 5px 20px !important;
    margin-bottom: 10px !important;
    margin-top: 10px !important;
    height: auto !important;
}

.usuario .dropdown-menu a.btn-primary:hover {
    background: #606873 !important;
}

.itemmenudrop {
    display: none;
}

.botonbuscadormobile {
    font-size: 30px;
    color: #8699ae;
    display: none;
    cursor: pointer;
}

@media (max-width: 1230px) {
    header form {
        width: 200px;
    }
}

.contenedorcentral_emergente {
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 100vh;
}

/* Títulos */
.contenedorcentral_emergente h1,
.contenedorcentral_emergente h2,
.contenedorcentral_emergente h3 {
    color: #1a202c;
    margin-top: 0;
    font-weight: 500;
}


@media (min-width: 1200px) {
    .contenedorcentral {
        width: calc(100% - 250px);
        margin-left: 250px;
        padding: 50px;
        padding-top: 100px;
    }

    .contenedorcentral_emergente {
        width: 100%;
        /*margin:500px;*/
        padding: 50px;
        /*padding-top:150px;*/
    }

    .sidebar {
        display: block !important;

        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

@media (max-width: 1100px) {
    .iconosheader a {
        margin-left: 15px;
    }

    .usuario {
        padding-left: 15px;
        margin-left: 15px;
    }

    .botonbuscadormobile {
        display: block;
    }

    header form {
        position: absolute;
        top: 30px;
        left: 0px;
        background: #fff;
        border-radius: 5px;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
        padding: 20px;
        width: 300px;
        display: none;
        z-index: 1;
    }

    header form button[type="submit"] {
        right: 40px;
        top: 30px;
    }
}

@media (max-width: 1360px) {
    .usuario {
        padding-left: 15px;
        margin-left: 15px;
    }

    .iconosheader a {
        margin-left: 15px;
    }
}

@media (max-width: 740px) {
    .logoheader {
        width: 140px;
        padding: 0px;
    }

    .logoheader img {
        width: 100px;
    }

    header {
        padding: 20px;
    }

    .buscador {
        display: inline-block;
        vertical-align: middle;
    }

    .iconosheader {
        display: inline-block !important;
        vertical-align: middle;
    }

    .botonmenumobile {
        top: 0px;
        right: 0px;
    }


    .contenedorcentral {
        padding-top: 90px;
    }

    .sidebar {
        top: 70px;
    }
}

@media (max-width: 912px) {
    .ecorredorlogo {
        display: none !important;
    }


}

@media (max-width: 780px) {

    .buscador,
    .currentlang,
    .currentuser {
        display: none !important;
    }


}

.logoheader img {
    max-width: 100%;
}

@media (max-width: 500px) {
    .iconosheader a {
        display: none !important;
    }


    .sidebar {
        top: 70px;
    }

    .usuario {
        padding-left: 8px;
        margin-left: 8px;
    }
}

.fila-seleccionada2 {
    background-color: #e8e4e4 !important;
}

/*home*/

.card2 {
    padding: 0px;
    border: 0px;

    background-color: white !important;
}

.card {
    padding: 0px;
    border: 0px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 15px;
}

.stattitle {
    font-size: 14px;
    color: #606873;
    font-weight: 500;
}

.statquant {
    font-size: 33px;
    font-weight: 500;
}

.cajastat {
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
    display: inline-block;
}

.text-right {
    text-align: right;
}

.iconoventastotales {
    font-size: 25px;
}

.textoventastotales {
    color: #60626e;
    font-size: 11px;
    font-weight: 400;
}

.valign-top {
    vertical-align: top;
}

.card-title {
    font-size: 16px;
    color: #606873;
    margin-bottom: 20px;
    font-weight: 500;
}

.notificacion {
    font-size: 12px;
    font-weight: 500;
    padding: 0.8rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Alinea correctamente el contenido */
    box-sizing: border-box;
    margin: 0 auto 10px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(95% - 20px);
    cursor: pointer;
    width: 95%;
    height: 4rem;
}

.notificacion i {
    font-size: 20px;
    margin-right: 10px;
}

.notificacion:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.novedad {
    color: #fff !important;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding: 22px 16px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    width: 140px;
}

.novedad h4 {
    font-size: 12px;
    color: #fff !important;
    font-weight: 400;
    margin-bottom: 0px;
}

.novedad i {
    font-size: 25px;
    margin-bottom: 5px;
}

.nav-tabs .nav-link {
    background: #fff;
    font-weight: 500;
    font-size: 16px;
    color: #606873;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    border: 0px !important;
    padding: 10px 30px;
}

.nav-tabs {
    border: 0px;
}

.nav-tabs li {
    margin-right: 8px;
}

.nav-tabs .nav-link.active {
    background: #eb6e38;
    color: #fff;
}

.tab-content>.tab-pane {
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    -webkit-border-radius: 10px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topleft: 0;
    border-radius: 10px;
    border-top-left-radius: 0;
    position: relative;
}

.nav-tabs.tabspeq .nav-link {
    font-size: 12px;
    padding: 10px;
}

.notificaciongeneral {
    font-size: 12px;
    color: #8a99ad;
    margin-bottom: 10px;
}

.notificaciongeneral span {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    background: #8a99ad;
    margin-right: 10px;
}

.button-circle {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background: #eb6e38;
    color: #fff;
    display: inline-block;
    margin: 5px;
    margin-left: 0px;
    vertical-align: middle;
    text-align: center;
    border: 0px;
    line-height: 35px;
    text-decoration: none;
    position: relative;
}

.button-circle i {
    font-size: 25px;
    line-height: 46px;
}

.button-circle.peq {
    width: 28px;
    height: 28px;
    margin-left: 5px;
    line-height: 28px;
}

.button-circle.peq i {
    font-size: 17px;
    line-height: 28px;
}

.button-circle:hover::after {
    content: attr(data-title);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0s;
}


.input-group-text {
    padding-right: 0px;
    -webkit-border-top-left-radius: 25px;
    -webkit-border-bottom-left-radius: 25px;
    -moz-border-radius-topleft: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    font-size: 20px;
    border: 0px;
    background: #f5f6fa;
    color: #8a99ad;
}

.form-inline .form-control {
    padding: 5px 10px;
    height: 30px;
    font-size: 10px;
}

.form-inline .input-group-text {
    padding: 10px;
    padding-right: 0px;
    height: 30px;
    font-size: 15px;
}

.form-inline .input-group:last-child {
    width: 28px;
}

.datepicker td,
.datepicker th {
    font-size: 13px;
    color: #8a99ad;
}

.datepicker-dropdown {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    border: 0px;
    padding: 15px;
}

.datepicker-dropdown.datepicker-orient-top:before,
.datepicker-dropdown.datepicker-orient-top:after {
    display: none !important;
}

select {
    background: #f5f6fa url(../img/flechaselect.svg) no-repeat right 10px center;
    background-size: 9px 5px;
    padding: 5px 20px !important;
}

.alertaeiac a.btn-primary {
    font-size: 13px !important;
    padding: 5px 20px !important;
    margin-top: 10px !important;
    height: auto !important;
}

.alertaeiac {
    font-size: 12px;
    color: #606873;
    font-weight: 400;
    margin-bottom: 20px;
}

.alertaeiac:last-child {
    margin-bottom: 0px;
}

strong {
    font-weight: 600;
}

.alertaeiac strong {
    font-weight: 400;
}

.alertaeiac div div div {
    color: #8a99ad;
    font-weight: 300;
}

.alertaeiac .la-arrow-right {
    color: #8a99ad;
    font-size: 18px;
}

.alertaeiac .la-calendar {
    font-size: 18px;
    vertical-align: middle;
}

@media (max-width: 800px) {

    .nav-tabs li,
    .nav-tabs li button {
        width: 100%;
    }

    .nav-tabs li {
        margin-right: 0px;
        margin-bottom: 8px;
    }

    .tab-content>.tab-pane {
        border-top-right-radius: 0px;
        padding: 15px;
    }
}

.col-form-label {
    width: 150px;
    font-weight: 400;
    font-size: 14px;
    color: #606873;
}

.multi-npol {
    color: #00c44e;
}

#tablaContenido {
    overflow-x: auto;
    width: 100%;
}

#tablaContenido .tabla-aseguradoras {
    min-width: 1200px;
    /* o ajusta según columnas */
}

.form-label {
    font-weight: 400;
    font-size: 14px;
    color: #606873;
    margin: 0px !important;
    /* Arreglar para que col-form-label tengan la misma altura */
    padding-top: calc(.375rem + var(--bs-border-width));
    padding-bottom: calc(.375rem + var(--bs-border-width));
}

.form-check-label {
    font-weight: 400;
    font-size: 14px;
    color: #606873;
}

.form-check-input {
    width: 1em;
    height: 1em;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 0.25em;
    transition: all 0.2s ease-in-out;
}

.form-check-input:checked {
    background-color: #eb6e38 !important;
    border-color: #eb6e38 !important;
}

.form-check-input:focus {
    box-shadow: none !important;
}

textarea {
    height: 166px !important;
    border-radius: 20px !important;
    resize: none !important;
}

.logo-compania {
    height: 35px;
    object-fit: contain;
}

.companialogo {
    background-color: transparent !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.seccion-scroll {
    scroll-margin-top: 80px;
    /* ajusta según la altura de tu header */
}

.companialogo:hover {
    background-color: #aaaaaa34 !important;
}

.companialogo.active {
    background-color: #eb6e38 !important;
}

.btn-outline-info:hover,
.btn-outline-warning:hover {
    color: #fff !important;
}

/* Solo afecta a la tabla con clase .tabla-aseguradoras */
table.tabla-aseguradoras thead th,
table.tabla-aseguradoras tbody td {
    vertical-align: middle !important;
    text-align: center;
    padding: 0.5rem 0.75rem;
}

table.tabla-aseguradoras td,
table.tabla-aseguradoras th,
table.tabla-aseguradoras tr {
    cursor: default !important;
}

.cursor-default {
    cursor: default !important;
}

table.tabla-aseguradoras tbody tr td>.d-flex {
    height: 100%;
    align-items: center !important;
    justify-content: center !important;
}

table.tabla-aseguradoras tbody tr td i {
    line-height: 1;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

table.tabla-aseguradoras tbody tr td button.btn-sm {
    padding: 0.25rem 0.5rem;
    line-height: 1;
    vertical-align: middle;
}

table.tabla-aseguradoras tbody tr {
    height: 56px;
}

.btn-outline-info:hover i,
.btn-outline-warning:hover i {
    color: #fff !important;
}

.companialogo.active:hover {
    background-color: #d95e28 !important;
}

.is-invalid {
    border-color: #dc3545;
}

.card-seleccionada {
    border: 2px solid #eb6e38;
    /* color rojo bootstrap danger */
}

.background-scroll {
    background-color: rgb(255, 255, 255) !important;
    transition: background-color 0.2s ease !important;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1) !important;
    border-radius: 0.7rem !important;
    z-index: 1000 !important;
}

.nav-link.active.border-warning {
    border-left-color: #eb6e38 !important;
}

.text-multi {
    color: #eb6e38 !important;
}

.sticky-top-custom {
    position: sticky;
    top: 0;
    background-color: transparent;
    z-index: 1030;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    margin: 0px !important;
    padding: 1rem !important;
}

#tablaContenido {
    opacity: 1;
    transition: opacity 0.4s ease;
}

#tablaContenido.fade-out {
    opacity: 0;
}

#menuTipos {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-contextual-opcion {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: left;
}

tr.fila-seleccionada {
    background-color: #31280e88 !important;
    outline: 2px solid #ffc107;
    transition: background-color 0.2s ease-in-out;
}

tr.fila-seleccionada:hover {
    background-color: #31280e88 !important;
}

.menu-contextual-opcion:hover {
    background-color: #f2f2f2;
}

.menu-contextual-opcion i {
    font-size: 16px;
    color: #666;
    transition: color 0.2s;
}

.menu-contextual-opcion:hover i {
    color: #000;
}

#menuTipos li {
    width: 100%;
}

#tablaContenido.fade-in {
    opacity: 1;
}

.accordion-item {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 0px !important;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: none !important;
    font-size: 18px;
    font-weight: 500;
    color: #606873 !important;
    ;
    border: 0px !important;
    border-radius: 0px;
    box-shadow: none !important;
    padding: 15px !important;
    /*text-transform: uppercase;*/


}

.accordion-body {
    border-top: solid thin #ccd2dc;
    padding: 30px;
}

.accordion-button h2 {
    font-size: 18px;
    font-weight: 500;
}

.accordion-button:focus {
    border: 0px;
    box-shadow: none;
}

@media (max-width: 800px) {
    .accordion-body {
        padding: 15px;
    }
}

/*tablas*/
.buscadorcard {
    position: relative;
}

.buscadorcard button[type="submit"] {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #8699ae;
    border: 0px;
    background: none;
}

.buscadorcard button[type="submit"] i {
    font-size: 30px;
}

.botoninfo {
    margin-right: 15px;
}

.botoninfo i {
    font-size: 25px;
}

.radioinput {
    border-radius: 100% !important;
}

.form-check.d-inline-block {
    vertical-align: middle;
}

.dataTables_filter {
    font-size: 0px;
}


.card-body {
    overflow-x: auto;
}

/*.card-body-minitablas {*/
/*  min-height: 480px !important;*/
/*  max-height: 480px !important;*/
/*}*/

.tablas {
    padding-top: 30px;
    max-width: 100%;
}

.tabla-panel td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dataTables_length,
.dataTables_filter {
    margin-bottom: 20px;
}

.dataTables_length label {
    font-weight: 400;
    font-size: 15px;
    color: #606873;
}

.dataTables_filter label {
    position: relative;
}

.dataTables_filter label:after {
    content: '';
    background: url(../img/search.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 10px;
    width: 30px;
    height: 30px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
    border: 0px;
}

table.dataTable>thead>tr>th {
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    color: #606873;
    padding: 5px !important;
}

table.dataTable>tbody>tr>td {
    font-size: 13px;
    line-height: 13px;
    padding: 5px !important;
    font-weight: 400;
    color: #606873;
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/

}

table.dataTable>tbody>tr:nth-child(odd) {
    background: #f5f6fa;
}

table.dataTable.no-footer {
    border-bottom: 0px;
}

.dataTables_info {
    font-size: 15px;
    font-weight: 400;
    color: #606873 !important;
    padding-top: 30px !important;
}

.dataTables_paginate {
    padding-top: 30px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #606873 !important;
    background: #f5f6fa !important;
    border-radius: 100%;
    font-size: 13px;
    /*width:25px;*/
    width: auto;
    /*height:25px;*/
    height: auto;

    font-weight: 400;
    border: 0px !important;
    display: inline-block;
    /*min-width:0px !important;*/
    padding: 0px;
    text-align: center;
    line-height: 25px;
    margin: 0px 4px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #fff !important;
    background: #eb6e38 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
    color: #fff !important;
    background: #eb6e38 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
    font-size: 13px;
    /*font-weight:400;*/
    color: #606873 !important;
    width: auto;
    height: auto;
    background: none !important;
    border-radius: 0px;
    /*  display: none;*/
}

.card-body-minitablas .dt-container .dt-length,
.card-body-minitablas .dt-container .dt-search,
.card-body-minitablas .dt-container .dt-info,
.card-body-minitablas .dt-container .dt-processing,
.card-body-minitablas .dt-container .dt-paging {
    color: inherit;
    font-size: 13px;
}


.dataTables_wrapper {
    overflow-x: auto;
}

/*login*/

.cajalogin {
    width: 550px;
    max-width: 95%;
    margin: 0 auto;
}

.loginwrapper {
    background: #f5f6fa;
    height: 100vh;
    display: flex;
    align-items: center;
}

.olvida a {
    text-align: right;
    font-size: 14px;
    display: block;
    text-decoration: none;
    color: #eb6e38;
}

.cajalogin .card-body {
    padding: 100px 40px;
}

.mostrarpass {
    height: 100%;
    border: solid thin rgba(218, 217, 217, 0.83);
    border-left: 0px;
    background-color: #fff;
    -webkit-border-top-right-radius: 25px;
    -webkit-border-bottom-right-radius: 25px;
    -moz-border-radius-topright: 25px;
    -moz-border-radius-bottomright: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding-right: 20px;
    padding-left: 20px;
}

.input-group:focus-within .mostrarpass {
    border: solid thin rgba(110, 109, 109, 0.83);
}

.iconopass {
    font-size: 25px;
    color: #606873;
    line-height: 20px;
}

.status {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
}

.yellow {
    background-color: yellow;
}

.red {
    background-color: red;
}

.green {
    background-color: green;
}


#cambiar-modo {
    position: relative;
    text-align: center;
}

#cambiar-modo i {
    display: block;
    margin: 0 auto;
}

#cambiar-modo span {
    display: none;
}

.card-producto {
    transition: transform 0.3s, border-color 0.3s;
    /* Agregar transiciones suaves */
    border: 1px solid transparent;
    /* Ocultar el borde por defecto */
}

.card-producto:hover {
    transform: scale(1.1);
    border-color: #eb6e38;
    color: #eb6e38;
}

.card-producto:hover .card-title,
.card-producto:hover .card-text,
.card-producto:hover .card-text i {
    color: #eb6e38;
}


#tabla-clientes-venta {
    width: 50% !important;
    border-collapse: collapse;
}

#tabla-clientes-venta th,
#tabla-clientes-venta td {
    border: 1px solid lightgrey;
    padding: 8px;
    text-align: center;
    background: white;
}


.abre-modal {
    color: #eb6e38 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.abre-modal:hover {
    text-decoration: underline !important;
}

/*.novedades-container {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));*/
/*    gap: 10px;*/
/*    padding: 20px; !* Añadido padding al contenedor *!*/
/*}*/

.novedades-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Dos columnas con igual ancho */
    gap: 10px;
    /* Ajustar el espacio entre tarjetas */
    margin: 0 auto;
    /* Centrado horizontal */
}

.novedad {
    display: flex;
    /* Agregado */
    justify-content: center;
    /* Agregado */
    align-items: center;
    /* Agregado */
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 80%;
}

.novedad:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.itemmenu.active {
    color: #eb6e38;
}

.container-video {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.card-video {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding-left: 20px;
}

.card-body-video {
    display: flex;
    align-items: center;
}

.video-list {
    flex: 1;
    list-style-type: none;
    padding-left: 0;
}

.video-list li {
    margin-bottom: 10px;
}

.video-list li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.video-list li a:hover {
    color: #eb6e38;
}

#video-container {
    text-align: center;
    flex: 2;
}

#video-frame {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 8px;
}

.card-charts {
    height: 100%;
    width: 100%;
}


.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 2s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


#searchResults {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 12;
    padding: 0;
}

#searchResults ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: 12;
}

#searchResults li {
    padding: 5px;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s;
    z-index: 12;
}

#searchResults li a {
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: 500;
    z-index: 12;
}

.accordion-button.multiacordeon::after {
    filter: brightness(0) invert(1);
}

#searchResults li a:hover {
    color: #f36224;
}

#searchResults li:hover {
    background-color: #f1f1f1;
    z-index: 12;
}

.cursor-pointer {
    cursor: pointer !important;
}

.imgUpload {
    width: 100%;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.2s ease;

}

.progress {
    display: flex;
    height: 0.7rem !important;
    /* ajusta si quieres */
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.leyendaCabBackgroud {
    background-color: #eb6e38 !important;
}

.leyendaCab {
    color: rgb(4, 75, 127) !important;
}

#card-multitar .card-body {
    overflow-x: auto;
    padding: 0.5rem;
    /* un poco de padding para que no quede pegado */
}

.nav-item>div[id^="dAvion"] {
    height: auto;
    /* No forzar altura fija */
    margin-bottom: 0.2rem;
    /* Menos separación */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.nav-item>div[id^="dAvion"] img {
    max-width: 100px;
    /* Puedes ajustar tamaño si quieres */
    height: auto;
    display: block;
}


.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transition: width .6s ease;

    background-color: rgb(235, 106, 44) !important;
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent) !important;
    background-size: 1rem 1rem !important;
}

.imgUpload:hover {
    opacity: 1;
    background-color: rgba(179, 175, 175, 0.151);

}

#dAvion1,
#dAvion2,
#dAvion3,
#dAvion4,
#dAvion5 {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s ease;
}

.foto-perfil {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    /* Esto hace que la imagen sea redonda */

    margin-right: 10px;
    vertical-align: middle;
}

.foto-perfil2 {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5%;
    /* Esto hace que la imagen sea redonda */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#btn-subirFotoPerfil:hover .overlay {
    opacity: 1;
}

.usu_nombre {
    color: #eb6e38;
    font-weight: 600;
}


.usuarioCuenta .dropdown-menu a.btn-primary {
    font-size: 13px !important;
    padding: 5px 20px !important;
    margin-bottom: 10px !important;
    margin-top: 10px !important;
    height: auto !important;
}

.usuarioCuenta .dropdown-menu a.btn-primary:hover {
    background: #606873 !important;
}

.usuarioCuenta .dropdown-menu {
    padding: 20px;
    border: 0px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.usuarioCuenta .dropdown-menu li {
    margin-bottom: 5px !important;
}

.usuarioCuenta .dropdown-menu a {
    font-size: 13px;
    margin: 0px !important;
    color: #8699ae;
    padding: 0px !important;

}

.usuarioCuenta .dropdown-menu a:hover,
.usuarioCuenta .dropdown-menu a:focus,
.usuarioCuenta .dropdown-menu a:active {
    background: none !important;
    color: #eb6e38;
}

.usuarioCuenta .dropdown-menu a {
    text-decoration: none;
    padding-right: 5px;
}

.text-hide {
    font-size: 0;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    display: none;
}

.text-hide2 {
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

form .mb-3 {
    margin-bottom: 5px !important;
}

.accordion-collapse.m-4 {
    margin: 15px !important;
}


@media (min-width: 1200px) {
    .menusidebarflecha {
        width: 2% !important;
    }

    .contenidocentral {
        width: 98% !important;
    }

    .sidebar.hidden {
        transform: translateX(-100%);
    }
}

div.dt-container div.dt-layout-cell {
    font-size: 13px;
}

input[type=text]:read-only,
textarea:read-only {
    background-color: #f5f6fa;
    pointer-events: none;
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #eb6e38;
    border-color: #eb6e38;
}

.page-link.active:hover {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #eb6e38;
    border-color: #eb6e38;
}

.page-link {
    color: #0c0c0c;
}

.page-link:hover {
    color: #eb6e38;
}

.modal-dialog-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.modal-content-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centrar horizontalmente */
}

.modal-body-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centrar contenido del cuerpo */
    justify-content: center;
    /* Centrar verticalmente */
    height: 100%;
    /* Asegurar que ocupe todo el espacio disponible */
}

/* Contenedor del spinner y temporizador */
.timer-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    /* Igual al tamaño del spinner */
    height: 120px;
    /* Igual al tamaño del spinner */
}

/* Spinner en forma de círculo */
.spinner-timer {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #eb6e38;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Temporizador centrado dentro del spinner */
.timer {
    position: absolute;
    font-size: 17px;
    color: #eb6e38;
    /* Color del temporizador */
    animation: none;
}

/* Animación de spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.timer-title {
    font-weight: 400;
    user-select: none;
    /* Para navegadores modernos */
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
    /* Para Internet Explorer/Edge */
}


#logoutModal {
    z-index: 1060;
    /* un valor más alto que otros modales */
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #343a40;
}

/* Ajustes para el encabezado sticky */
.table-responsive-scroll thead {
    position: sticky;
    top: 0;
    background-color: #343a40;
    /* Fondo sólido para el encabezado */
    color: white;
    /* Color del texto */
    z-index: 10;
    /* Asegura que esté encima de las filas */
    padding: 10px 0;
    /* Espaciado interno */
    border: 1px solid #343a40;

}

.custom-checkbox {
    display: none;
}

.custom-container {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    /* Fondo inicial */
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-container i {
    font-size: 1.2rem;
    color: #333;
    /* Color oscuro inicial */
    font-weight: 600;
    transition: color 0.3s ease;
}

.custom-container span {
    transition: color 0.3s ease;
}

.custom-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(235, 110, 56, 0.3);
    background: rgba(235, 110, 56, 0.8);
    /* Mismo color que en el hover original */
}

.custom-container:hover i,
.custom-container:hover span {
    color: #fff;
}

/* Estado seleccionado */
.custom-checkbox:checked+.custom-container {
    background: linear-gradient(145deg, #eb6e38, #d65a2d);
    /* Fondo degradado original */
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.4);
}

.custom-checkbox:checked+.custom-container:hover {
    transform: translateY(-5px);
    background: rgba(235, 110, 56, 0.9);
    /* Hover en estado seleccionado */
    box-shadow: 0 12px 24px rgba(235, 110, 56, 0.5);
}

.custom-checkbox:checked+.custom-container i,
.custom-checkbox:checked+.custom-container span {
    color: #fff;
    /* Iconos y texto blancos en estado seleccionado */
}

/* Diseño adaptativo */
.custom-container {
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
}

.hover-producto {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-producto:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Mayor sombra */
}

.producto-card .card-body {
    transition: transform 0.3s ease;
}

.producto-card .card-body:hover {
    transform: scale(1.05);
}

.icono-container i {
    transition: color 0.3s ease;
}

.icono-container i:hover {
    color: #eb6e38;
}

.titulo-producto {
    font-size: 1.25rem;
}

.descripcion-producto {
    font-size: 1rem;
}


.error {
    color: red;
}

/*bocadillos de la tabla de ficha de emision*/
.color-info {
    color: #3498db;
    /* Azul para información */
}

.color-danger {
    color: #e74c3c;
    /* Rojo para advertencias */
}

.color-warning {
    color: #f39c12;
    /* Amarillo para advertencias suaves */
}

.readonly {
    background: #f5f6fa;
}

.tblCTACOL td {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tblCTACOL th td {
    text-align: center;
    vertical-align: middle;

}

.filaTot {
    background-color: #cbe6ec9d !important;
    font-weight: 600;

}

.texto-rojo td {
    color: red !important;
    font-weight: bold;
}

.table-responsive {
    overflow-x: scroll !important;
    display: block;
    overflow-y: auto !important;
}


.numpol-dropdown {
    position: absolute;
    z-index: 999;
    border: 1px solid #ccc;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    box-sizing: border-box;

}

.numpol-dropdown div {
    padding: 6px 10px;
    cursor: pointer;
}

.numpol-dropdown div:hover {
    background-color: #f0f0f0;
}

.iframe-tariSegPorDias {
    width: 100%;
    height: calc(100vh - 300px);
    overflow: hidden;
}

.iframe-tariSegPorDias iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/*EL BUENO*/
@media print {

    /* 1. Ocultar elementos de la interfaz de usuario */
    nav,
    footer,
    .modal,
    #contenedor_flechita,
    .menusidebarflecha,
    .d-none.d-xl-block,
    .btn,
    .acciones,
    .no-print,
    input[type="button"],
    input[type="submit"] {
        display: none !important;
    }

    /* 2. Anular propiedades que impiden la paginación */
    html,
    body {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        position: static !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 3. Forzar que se impriman los colores y fondos */
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    /* 4. Anular las propiedades para los contenedores principales */
    .contenedorcentral,
    .row,
    .col-xl-11,
    .col-lg-12 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        position: static !important;
        height: auto !important;
        max-height: none !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    /* 5. Estilos de impresión */
    .card,
    .panel {
        box-shadow: none !important;
        border: none !important;
        page-break-after: auto;
    }

    /* Solo muestra la activa */
    .tab-pane.active {
        display: block !important;
    }

    /* Solo muestra la que está abierta */
    .accordion-collapse.show {
        display: block !important;
    }

    table:not(.dataTable) {
        width: 100% !important;
        table-layout: fixed !important;
    }

    /* Estilos para las celdas de las tablas que NO tienen la clase 'dataTable' */
    table:not(.dataTable) th,
    table:not(.dataTable) td {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
        padding: 4px 2px !important;
        text-align: center !important;
        font-size: 9pt !important;
        line-height: 1.2 !important;
        vertical-align: top !important;
    }

    /*!* Estilos específicos para las cabeceras de las tablas que NO tienen la clase 'dataTable' *!*/
    table:not(.dataTable) thead th {
        background-color: #f2f2f2 !important;
        color: #333 !important;
        font-weight: bold !important;
    }

}