/* CSS propios  -------------------------------------------------- */

body {
    font-family: Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400 !important;
    line-height: 1.3;
    color: #2b3a42;
    text-align: left;
    /* Font smoothing para Chrome y Safari (WebKit) */
    -webkit-font-smoothing: antialiased;
    /* Font smoothing para macOS en Firefox */
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #e89c50;
    text-decoration: none;
    background-color: transparent;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    background-color: #f0f4f8; /* Color de fondo inicial */
    border: 2px solid #08b1d8; /* Borde del checkbox */
    border-radius: 3px; /* Borde redondeado */
    cursor: pointer;
    position: relative;
    outline: none;
    vertical-align: bottom;
    margin-right: 5px;
}

    input[type="checkbox"]:checked {
        background-color: #e89c50; /* Color de fondo cuando está marcado */
        border-color: #e89c50; /* Cambia el color del borde */
    }


b, strong {
    font-weight: 700;
}

::selection {
    background: #08b1d8; /* Color de fondo cuando se selecciona el texto */
    color: white; /* Color del texto seleccionado */
}

::-moz-selection {
    background: #08b1d8; /* Color de fondo cuando se selecciona el texto en Firefox */
    color: white; /* Color del texto seleccionado en Firefox */
}


/** quita los border cuando hace focus con el mouse **/
:focus {
    outline: 1px solid #2b3a42;
}

    /*Con suporte, eliminamos ouline cuando no sea estrictamente necesario */
    :focus:not(:focus-visible) {
        outline: 0;
    }


/*Con soporte, añadimos ouline solo cuando el navegador lo considere necesario */
:focus-visible {
    outline: 1px solid #2b3a42;
}

::-moz-focus-inner, :active, :focus {
    outline: none !important;
    -moz-outline-style: none !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: #08b1d8;
}

    .navbar-dark .navbar-nav .nav-link.active {
    color: #f0f4f8;
    text-decoration: underline;
    text-underline-offset: 5px;
    }


/***************** PRELOADER ***********************/
.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 364px;
    height: 364px;
    position: absolute;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px);
}

    .lds-ripple .lds-pos {
        position: absolute;
        border: 2px solid #2962FF;
        opacity: 1;
        border-radius: 50%;
        -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
        animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
    }

        .lds-ripple .lds-pos:nth-child(2) {
            -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
        }

@-webkit-keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}
/***************** END PRELOADER ***********************/
/*******************************************************/

/************************ SCROLL **********************/
body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}
/******************** END SCROLL ************ **********/
/*******************************************************/

/********************* GENERALES **********************/

main > .container {
    padding: 70px 15px 0;
}


.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(222, 226, 230, 0.60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.imgHeaderLogo {
    border: none;
    background-image: url("../../../img/logo-text.png");
    background-repeat: no-repeat;
    font-size: 0;
    width: 0px;
    height: 0px;
    padding: 24px 99px 24px 99px;
    border-style: none;
}

.footer {
    background-color: #2b3a42;
}

    .footer > .container {
        padding-right: 15px;
        padding-left: 15px;
        color: rgba(255,255,255,.5);
    }

    .footer > .container-fluid {
        color: rgba(255,255,255,.5);
    }

code {
    font-size: 80%;
}

/* Centrar al centro de la pantalla */
.abs-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.font-775 {
    font-size: 0.775rem !important;
}

.hideMessageError {
    display: none;
    opacity: 0;
    transition: visibility 0s linear 10s, opacity 0.33s linear;
}

.abs-center-img {
    min-height: 80vh !important;
}

.msjError {
    text-align: left;
    padding: 1rem 2.5rem 0rem 2.5rem;
}

.notifIcono {
    background: url("../../../img/notification.png") no-repeat center;
    font-size: 0;
    width: 0px;
    height: 0px;
    padding: 0px;
    border: 0px solid transparent;
    cursor: pointer;
}

.notifIcono-off {
    background: url("../../../img/notification-off.png") no-repeat center;
    font-size: 0;
    width: 0px;
    height: 0px;
    padding: 0px;
    border: 0px solid transparent;
    cursor: pointer;
}

a.footer-link:link {
    color: rgba(255,255,255,.5);
}

a.footer-link:hover {
    color: rgba(255,255,255,.5);
    text-decoration: none;
}

a.footer-link:visited {
    color: rgba(255,255,255,.5);
    text-decoration: none;
}

.textMov {
    color: #d86c08;
    font-weight: 700;
}

/* badge notificaciones */


.badge {
    background-color: #777;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    min-width: 10px;
    padding: 3px 7px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.radius-0 {
    border-radius: 0 !important;
}

span.badge-dark {
    background: #DC3543 !important;
}

.badge.badge-corner {
    color: #fff !important;
    position: absolute !important;
    right: -6px !important;
    top: -8px !important;
}

span.badge-aqua {
    background: #27d7e7 none repeat scroll 0 0 !important;
}

span.badge-dark {
    background: #555 none repeat scroll 0 0 !important;
}

span.badge-purple {
    background: #9b6bcc none repeat scroll 0 0 !important;
}

span.badge-yellow {
    background: #f1c40f none repeat scroll 0 0 !important;
}

.size-20 {
    font-size: 18px !important;
    line-height: 26px !important;
}

.btn {
    -moz-user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857;
    margin-right: 0px;
    padding: 6px 6px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}


span.badge-green {
    background: #2ecc71 none repeat scroll 0 0 !important;
}

span.badge-red {
    background: #e74c3c none repeat scroll 0 0 !important;
}

.radius-3 {
    border-radius: 3px !important;
}

label.txtForm {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

/****************** END GENERALES **********************/
/*******************************************************/
/****************** BACKGROUNDS ***********************/
.bg-dark {
    background-color: #2b3a42 !important;
}

.bg-light {
    background-color: #e3e9ea !important;
}
/****************** END BACKGROUNDS ********************/
/*******************************************************/

/********************* BOTONES *************************/
/* Botón Primario */ 
.btn-primary {
    background-color: #08b1d8;
    color: white;
    border: none;
}
/* Botón Secundario */

.btn-secondary, .btn-secondary:hover, .btn-secondary:active {
    background-color: #067a9e !important;
    color: white;
    border: none;
}
/* Botón de Acento */

.btn-accent {
    background-color: #06e8fb;
    color: white;
    border: none;
}
/* Botón Complementario */

.btn-complementary {
    background-color: #d86c08;
    color: white;
    border: none;
}
/* Botón Neutro Claro */

.btn-light {
    background-color: #f0f4f8;
    color: #08b1d8;
    border: 1px solid #08b1d8;
}
/* Botón Neutro Oscuro */

.btn-dark {
    background-color: #2b3a42;
    color: white;
    border: none;
}
.boton-outline {
    color: #2b3a42;
    border-color: #6f7d95;
}

.btn-outline {
    color: #99c357;
    border-color: #99c357;
}

.btn-success {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #fff;
}


.btn-danger {
    background-color: #d9534f;
    border-color: #d43f3a;
    color: #fff;
}

.btn-info {
    background-color: #5bc0de;
    border-color: #46b8da;
    color: #fff;
}

.btn-mov {
    background-color: #067a9e !important;
    border-color: #067a9e !important;
    color: #fff !important;
    cursor: default !important;
}

.btn-warning {
    background-color: #f0ad4e;
    border-color: #eea236;
    color: #fff;
}

.btn-clean {
    color: #9aa0a9;
}



.btn-default {
    background-color: #fff;
    border-color: #ccc;
    color: #333;
}

.boton-outline:hover {
    color: #fff;
    background-color: #067a9e;
    border-color: #067a9e
}

.boton-outline.focus,
.boton-outline:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.boton-outline.disabled,
.boton-outline:disabled {
    color: #067a9e;
    background-color: transparent
}

.boton-outline:not(:disabled):not(.disabled).active,
.boton-outline:not(:disabled):not(.disabled):active,
.show > .boton-outline.dropdown-toggle {
    color: #fff;
    background-color: #067a9e;
    border-color: #067a9e
}

    .boton-outline:not(:disabled):not(.disabled).active:focus,
    .boton-outline:not(:disabled):not(.disabled):active:focus,
    .show > .boton-outline.dropdown-toggle:focus {
        box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
    }

.btn:hover {
    color: #cecece;
    text-decoration: none;
}

.btn_ancho {
    width: 140px !important;
}



/********************* END BOTONES **********************/
/*******************************************************/


/***************** MARGINS & PADDINGS ******************/
.mt-0 {
    margin-top: 0px !important;
}

table.dataTable.mt-0 {
    margin-top: 0px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}

.p-t-20 {
    padding-top: 20px;
}

.p-b-20 {
    padding-bottom: 20px;
}

.p-b-30 {
    padding-bottom: 30px;
}
/***************** END MARGINS & PADDINGS *****************/
/**********************************************************/


/******************** ANCHOS & ALTOS **********************/
.w-45 {
    width: 45px;
}

.vh-40 {
    max-height: 40vh !important
}

.vh-70 {
    max-height: 70vh !important
}

.h-30 {
    height: 30px;
}

.min-vh-75 {
    min-height: 75vh;
}

.min-vh-50 {
    min-height: 50vh;
}

.min-vh-55 {
    min-height: 55vh;
}

.min-vh-59 {
    min-height: 59vh;
}

/******************** END ANCHOS & ALTOS ****************/
/*******************************************************/
/******************** FORMULARIOS ***********************/
.form-control {
     border: 0.15px solid #dee2e6;
 
}

.form-control-sm {
    border-radius: 0rem !important;
    font-size: 0.7rem !important;
    padding: 0rem 0.5rem;
}

.form-control-inline {
    display: inline !important;
}

/** estilo personalizado del select */
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
    font-size: .7rem !important;
    height: calc(1.5em + .5rem + 4px) !important;
    line-height: 1.5 !important;
    border-radius: .0rem !important;
}


    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #6c757d !important;
        opacity: 1 !important;
        list-style: none;
        margin: 0;
        padding: 0 5px;
        font-size: .75rem !important;
        height: calc(1.5em + .5rem + 2px) !important;
        line-height: 1.5;
    }



.select2-container--default .select2-search--dropdown .select2-search__field {
    color: #6c757d !important;
    opacity: 1 !important;
    border: 0px solid #ced4da !important;
}


.select2-results__option {
    color: #6c757d !important;
    opacity: 1 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #343a40 !important;
    color: white !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
    font-size: 0.75rem;
}

.select2-results__option[aria-selected] {
    font-size: 0.75rem;
}

/**  end estilo personalizado del select */



/* estilo al scroll del sel select */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #A9A9A9;
    border: 2px solid #A9A9A9;
}

/* scroll para firefox */
* {
    scrollbar-width: 6px;
    scrollbar-color: #F5F5F5;
}
/* end estilo al scroll del sel select */


.input-group-text.primary {
    color: rgb(255, 255, 255);
    background-color: rgb(50, 118, 177) !important;
    border-color: rgb(40, 94, 142);
}

.input-group-text.success {
    color: rgb(255, 255, 255);
    background-color: rgb(92, 184, 92);
    border-color: rgb(76, 174, 76);
}

.input-group-text.info {
    color: rgb(255, 255, 255);
    background-color: rgb(57, 179, 215);
    border-color: rgb(38, 154, 188);
}

.input-group-text.warning {
    color: rgb(255, 255, 255);
    background-color: rgb(240, 173, 78);
    border-color: rgb(238, 162, 54);
}

.input-group-text.danger {
    color: rgb(255, 255, 255);
    background-color: rgb(217, 83, 79);
    border-color: rgb(212, 63, 58);
}

.form-group-03 {
    margin-bottom: 0.3rem !important;
}

.input_deuda {
    float: left;
    width: 50%;
}


/******************** END FORMULARIOS ******************/
/*******************************************************/


/******************** IFRAMES **************************/
/* ratio personalizado para los iframes */
.embed-responsive-1by1-principal::before {
    /* padding-top: 150%; */
}
/* ratio personalizado para los iframes de confirmacion*/
.embed-responsive-1by1-alertas::before {
    padding-top: 30%;
}

.iframe-container {
    /*overflow: hidden;*/
    padding-top: 72%;
    position: relative;
}

    .iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        border: 0;
        width: 100%;
        height: 100%;
    }


.iframe-container-inf {
    /*overflow: hidden;*/
    padding-top: 31%;
    position: relative;
}

    .iframe-container-inf iframe {
        position: absolute;
        top: 0;
        left: 0;
        border: 0;
        width: 100%;
        height: 100%;
    }

.iframe-container-modal {
    /*overflow: hidden;*/
    padding-top: 47%;
    position: relative;
}

    .iframe-container-modal iframe {
        position: absolute;
        top: 0;
        left: 0;
        border: 0;
        width: 100%;
        height: 100%;
    }

.iframe-submenu-container {
    overflow: hidden;
    position: relative;
    height: 90vh;
}

    /*
@media (max-width: 767px) {
    .iframe-submenu-container {
        height: 120vh;
    }
}
*/

    .iframe-submenu-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        border: 0;
        width: 100%;
        height: 100%;
    }

@media (max-height: 669px) {
    .embed-responsive-1by1::before {
        padding-top: 80%;
    }

    .iframe-container-modal {
        padding-top: 45%;
        position: relative;
    }

    .iframe-container-inf {
        /*overflow: hidden;*/
        padding-top: 27%;
        position: relative;
    }
}

@media (max-width: 575px) {
    .iframe-container {
        padding-top: 160%;
        position: relative;
    }

    .iframe-container-inf {
        padding-top: 95%;
        position: relative;
    }
}

@media (min-height: 768px) {
    .iframe-container-modal {
        padding-top: 90%;
        position: relative;
    }
}

@media (min-height: 575px) and (max-height: 767px) {
    .iframe-container-modal {
        padding-top: 90%;
        position: relative;
    }
}

.border-iframe {
    border: 1px solid #dee2e6 !important;
}

/******************** END IFRAMES **********************/
/*******************************************************/



/******************** DATATABLES ***********************/
/*******************************************************/
/** background tabla */

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #2b3a42;
}

.resizeTabla {
    width: 100%;
    transition: all 0.15s;
    overflow-x: hidden;
}

div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
    margin-top: 0 !important;
    border: none;
}

table.dataTable > tbody > tr.child ul.dtr-details > li {
    border-bottom: 1px solid transparent !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(216, 227, 235, 0.6);
}
/****/

thead.gris {
    background-color: #e3e9ea;
}

thead.grisModal {
    background-color: #e3e9ea;
    line-height: 12px;
}

thead.verde {
    background-color: #D6D997;
}

.tdcolor {
    color: #fd7e14;
}

.tabla_mora {
    padding-left: 3px;
    padding-right: 3px;
}

#idGrillaModal table.dataTable thead th, #idGrillaModal td {
    padding-top: .15rem !important;
    padding-bottom: .15rem !important;
}

#idGrillaModal_paginate {
    padding-top: 0.5rem !important;
}

#idGrillaModal_wrapper div.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

    #idGrillaModal_wrapper div.row .col-sm-12 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

#idGrillaModal_wrapper .table td, .table th {
    padding-bottom: .2rem;
    padding-top: 0.2rem;
}


#idGrillaModal2 table.dataTable thead th, #idGrillaModal2 td {
    padding-top: .15rem !important;
    padding-bottom: .15rem !important;
}

#idGrillaModal2_wrapper div.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

    #idGrillaModal2_wrapper div.row .col-sm-12 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

#idGrillaModal2_wrapper .table td, .table th {
    padding-bottom: .2rem;
    padding-top: 0.2rem;
}


#idGrillaMovimientos table.dataTable thead th, #idGrillaMovimientos td {
    padding-top: .15rem !important;
    padding-bottom: .15rem !important;
}


#idGrillaMovimientos_wrapper div.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}


    #idGrillaMovimientos_wrapper div.row .col-sm-12 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }


#idGrillaMovimientos_wrapper .table td, .table th {
    padding-bottom: .2rem;
    padding-top: 0.2rem;
}

#idGrillaConfirmar1 table.dataTable thead th, #idGrillaConfirmar1 td {
    padding-top: .15rem !important;
    padding-bottom: .15rem !important;
}

#idGrillaConfirmar1_wrapper div.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

    #idGrillaConfirmar1_wrapper div.row .col-sm-12 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

#idGrillaConfirmar1_wrapper .table td, .table th {
    padding-bottom: .2rem;
    padding-top: 0.2rem;
}


#idGrillaConfirmar2 table.dataTable thead th, #idGrillaConfirmar2 td {
    padding-top: .15rem !important;
    padding-bottom: .15rem !important;
}

#idGrillaConfirmar2_wrapper div.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

    #idGrillaConfirmar2_wrapper div.row .col-sm-12 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

#idGrillaConfirmar2_wrapper .table td, .table th {
    padding-bottom: .2rem;
    padding-top: 0.2rem;
}

td {
    border-spacing: 0;
    /*white-space: nowrap;*/
    white-space: pre-wrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    padding: .3rem .35rem !important;
    font-size: 12px;
}


/*  datatables */
table.dataTable thead th, table.dataTable thead td {
    border: 1px solid #ddd;
    border-left: none;
    vertical-align: bottom;
    border-bottom: 2px solid rgb(222, 226, 230);
    padding-bottom: 0.35rem;
    padding-top: 0.35rem;
    font-size: 12px;
}

table.dataTable.stripe tbody tr.even, table.dataTable.display tbody tr.even {
    background-color: #fff;
    padding-bottom: 0.35rem;
    padding-top: 0.35rem;
}

.datatables_length {
    padding-bottom: 15px;
}

table.dataTable {
    border-left: 1px solid #ddd;
}

.dataTables_wrapper select,
.dataTables_wrapper input {
    border: 1px solid #ddd;
    padding: 1.4em;
}

div.dataTables_wrapper div.dataTables_info {
    font-size: 11px;
}

table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
    background-color: #067a9e !important;
}


table.dataTable.display tbody > tr.even.selected > .sorting_1,
table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_1 {
    background-color: #067a9e !important;
}


table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
    top: auto !important;
    background-color: #0275d8 !important;
    height: 12px !important;
    width: 12px !important;
    border-radius: 12px !important;
    line-height: 12px !important;
}


table.dataTable.display tbody > tr.odd.selected > .sorting_1,
table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_1 {
    background-color: #067a9e !important;
}

table.dataTable.display tbody > tr.selected:hover > .sorting_1,
table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_1 {
    background-color: #15A4FA
}

table.dataTable.display tbody > tr:hover > .selected,
table.dataTable.display tbody > tr > .selected:hover,
table.dataTable.order-column.hover tbody > tr:hover > .selected,
table.dataTable.order-column.hover tbody > tr > .selected:hover {
    background-color: #15A4FA
}


table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
    padding-left: 23px !important;
    padding-right: 0.35rem !important;
    padding-bottom: 0.3rem !important;
    padding-top: 0.3rem !important;
}


/* paginador tabla */
.pagination {
    font-size: 12px !important;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    /* background-color:   ; */
    border-color: #e89c50;
    background-color: #e89c50;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .60rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #067a9e;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
/*******/


div.dataTables_wrapper div.dataTables_info {
    padding-left: 0.85em;
    padding-bottom: 0.85em;
    text-align: left !important;
}


table.dataTable tr.dtrg-group th {
    background-color: #A7CBDE !important;
    text-align: left !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    font-size: 0.75rem !important;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/fonts/glyphicons-halflings-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
    font-family: 'Glyphicons Halflings' !important; /* Usa Glyphicons Halflings */
    content: '\e080' !important; /* Código Unicode para el ícono "chevron-right" */
    vertical-align: middle !important;
    font-weight: normal;
    color: #919191 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important; /* Elimina cualquier sombreado */

    top: 4px !important;
}



/******************** END DATATABLES *******************/
/*******************************************************/


/********************* MODALES ************************/

/** boton cerrar modal **/

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}



    .modal-header .close {
        margin-left: 5px !important;
        padding-left: 5px !important;
    }

.ml-alertas {
    margin-left: 0;
    height: 20px;
}

.mascara-bk {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1040;
    background-color: #000;
    display: block;
    opacity: 0.35;
    width: 99.60%;
    height: 100%;
}

.modal-backdrop {
    display: none;
}

/* Original: @media (min-width: 992px) { */
@media (min-width: 750px) {
    .modal-cuad {
        max-width: 700px;
        margin: 1.75rem auto;
        min-height: calc(100% - 3.5rem);
    }
}

.modal-alertas {
    max-width: 400px;
}

.lh1 {
    /**line-height: 1rem; /** line-heigth para tablas que estan en una modal **/
}




/********************* END MODALES *********************/
/*******************************************************/
/******************* AYUDA DINÁMICA *******************/
/** boton de ayuda dinamica en la modal **/
.ayuda {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

    .ayuda:hover {
        color: #000;
        text-decoration: none
    }

    .ayuda:not(:disabled):not(.disabled):focus,
    .ayuda:not(:disabled):not(.disabled):hover {
        opacity: .75
    }

button.ayuda {
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-top: 0.7px;
}

a.ayuda.disabled {
    pointer-events: none
}

.popover {
    min-width: 300px;
    max-width: 600px;
}

@media (max-width: 767px) {
    button.ayuda {
        margin-right: 12px;
        height: 50px;
        padding-top: 12px;
    }
}

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: rgba(216, 227, 235, 0.6);
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.popover-body {
    background-color: #fcf8e3
}

.titulo_objetivo {
    font-family: sans-serif;
    font-size: 0.80rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212ee9;
    text-align: left;
}

.texto_objetivo {
    font-family: sans-serif;
    font-size: 0.80rem;
    font-weight: 400;
    line-height: 1.5;
    color: #343a40;
    text-align: justify;
}

.texto_ayuda {
    font-family: sans-serif;
    font-size: 0.80rem;
    font-weight: 400;
    line-height: 1.5;
    color: #343a40;
    text-align: justify;
}

/******************* END AYUDA DINÁMICA *******************/
/*********************************************************/

/********************* MENU ******************************/
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 0px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
/********************* END MENU ******************************/
/*************************************************************/


/******************** PESTAÑAS ******************************/

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #dee2e6;
    border-color: #dee2e6;
    border-bottom-color: #d86c08;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    padding: 6px;
    margin-top: 10px;
}

.nav-tabs .nav-link {
    padding: 6px;
    margin-top: 10px;
}

.nav-link {
    padding: 0.7rem 1rem;
}

/*
.card-header-tabs {
    margin-left: 0rem; 
}
*/

.card-body {
    padding: 0.90rem;
}


.haberesTab {
    border-radius: 4px;
}

#haberesGrilla {
    overflow-x: hidden;
    display: block;
    width: 100%;
    max-height: 480px;
    min-height: 220px;
}

#haberesDiv {
    position: fixed;
    bottom: 0.5rem;
    right: 1rem;
    max-width: 200px;
}

@media (max-width:468px) {
    #haberesGrilla {
        overflow-x: hidden;
        display: block;
        width: 100%;
        max-height: 180px;
        min-height: 100px;
    }

    #haberesDivIzq {
        padding-right: 0px;
        padding-bottom: 2.5rem;
    }

    #haberesDiv {
        position: initial;
        max-width: 100%;
        /*
        position: fixed;
        bottom: 0.5rem;
        right: 1rem;
        max-width: 150px;
        */
    }
}


/******************** END PESTAÑAS *************************/
/***********************************************************/


/******************** PANELES ******************************/
#sidebar-wrapper-paneles {
    width: 17rem;
    min-height: 87vh;
    margin-left: -17rem; /* -15 * 16px = -240px */
    -webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;
}

#sidebar-wrapper.small {
    min-height: 87vh;
    margin-left: -15rem;
    -webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;
}

#sidebar-wrapper-paneles .sidebar-heading-paneles {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

#sidebar-wrapper-paneles .list-group-paneles {
    width: 20rem;
}

#page-content-wrapper-paneles {
    min-width: 99vw;
    width: 17rem;
}

#wrapper.toggled #sidebar-wrapper-paneles {
    margin-left: 0;
}


@media (min-width: 768px) {
    #sidebar-wrapper {
        min-height: 99vh !important;
    }
}

@media (max-width: 766px) {
    #wrapper #sidebar-wrapper {
        min-height: 99vh;
    }

    #wrapper #sidebar-wrapper-paneles {
        left: -20rem;
        width: 17rem;
    }
}

#sidebar-wrapper .list-group-cuad {
    width: 15rem;
}

#wrapper.toggledSmall #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {

    #sidebar-wrapper-paneles {
        margin-left: 0;
        width: 17rem;
    }

    #page-content-wrapper-paneles {
        min-width: 0;
        width: 100%;
    }

    #wrapper.toggled #sidebar-wrapper-paneles {
        margin-left: -17rem;
    }

    #sidebar-wrapper.small {
        margin-left: 0;
    }

    #wrapper.toggledSmall #sidebar-wrapper {
        margin-left: -15rem;
    }
}

#sidebar-wrapper-paneles .paneles {
    width: 17rem;
}

.panel {
    margin-bottom: 0px;
    background-color: #fff;
    border: 0px solid transparent;
    border-radius: 0px;
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .05);
    box-shadow: 0 0px 0px rgba(0, 0, 0, .05)
}

.panel-body, .panel-body:link {
    padding: 5px 5px 5px 15px;
    display: none;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
    font-size: 0.85rem;
}

    .panel-body a:link {
        color: #212529;
        text-decoration: none;
        background-color: transparent;
    }

    .panel-body a:hover {
        color: #212529;
        text-decoration: none;
        background-color: transparent;
    }

    .panel-body a:visited {
        color: #212529;
        text-decoration: none;
        background-color: transparent;
    }


    .panel-body:hover {
        cursor: pointer;
        background-color: rgb(196, 196, 196);
    }

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
    border-top: 0px solid #ddd
}

.panel-heading {
    padding: 8px 12px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px
}

    .panel-heading > .dropdown .dropdown-toggle {
        color: inherit
    }

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: inherit
}

    .panel-title > a {
        color: inherit
    }

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}


.panel-default {
    border-color: #ddd
}

    .panel-default > .panel-heading {
        color: #333;
        background-color: #f5f5f5;
        border-color: #ddd
    }

        .panel-default > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #ddd
        }

    .panel-default > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #ddd
    }

.panel-primary {
    border-color: #428bca
}

    .panel-primary > .panel-heading {
        color: #fff;
        background-color: #428bca;
        border-color: #428bca
    }

        .panel-primary > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #428bca
        }

    .panel-primary > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #428bca
    }

.panel-success {
    border-color: #d6e9c6
}

    .panel-success > .panel-heading {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6
    }

        .panel-success > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #d6e9c6
        }

    .panel-success > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #d6e9c6
    }

.panel-info {
    border-color: #bce8f1
}

    .panel-info > .panel-heading {
        color: #31708f;
        background-color: #d9edf7;
        border-color: #bce8f1
    }

        .panel-info > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #bce8f1
        }

    .panel-info > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #bce8f1
    }

.panel-warning {
    border-color: #faebcc
}

    .panel-warning > .panel-heading {
        color: #8a6d3b;
        background-color: #fcf8e3;
        border-color: #faebcc
    }

        .panel-warning > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #faebcc
        }

    .panel-warning > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #faebcc
    }

.panel-danger {
    border-color: #ebccd1
}

    .panel-danger > .panel-heading {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1
    }

        .panel-danger > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #ebccd1
        }

    .panel-danger > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #ebccd1
    }

.panel-izquierda {
    border-color: #dee2e6;
    cursor: pointer;
}

    .panel-izquierda > .panel-heading {
        color: rgba(255,255,255, 0.5);
        background-color: #2b3a42;
        border-color: #eee;
    }

        .panel-izquierda > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #dee2e6
        }

    .panel-izquierda > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #dee2e6;
    }


.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.clickable {
    cursor: pointer;
}

.panel-heading span {
    margin-top: -20px;
    font-size: 15px;
}


/******************** END PANELES **************************/
/***********************************************************/


/******* modal detalle de movimiento  ********************/
.top_grp_boton {
    margin-top: 1rem !important;
}

.top_grp_boton_abajo {
    margin-top: 3rem !important;
}


/** oculta cabecera movimientos en responsive ***/
/* (1366x768) WXGA Display */

@media (min-device-width: 1365px) {
    .det_oculta {
        display: block !important;
    }

    .top_grp_boton {
        margin-top: 1rem !important;
    }

    .top_grp_boton_abajo {
        margin-top: 1fbadgerem !important;
    }
}

@media (max-device-width: 1366px) {

    /* .det_oculta {
        display: none !important;
    }
    */
    .top_grp_boton {
        margin-top: 1rem !important;
    }

    .top_grp_boton_abajo {
        margin-top: 0.5rem !important;
    }
}



/********** end modal detalle de movimiento  **************/



/********** Css para impresion ****************************/
@media print {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px
    }

    table.dataTable {
        clear: both;
        margin-top: 6px !important;
        margin-bottom: 6px !important;
        max-width: none !important;
        border-collapse: separate !important;
        border-spacing: 0;
    }

    thead.gris {
        background-color: #e3e9ea;
    }

    thead.verde {
        background-color: #D6D997;
    }
}

@media (min-width: 577px) and (max-width:1367px) {
    .col-lg-cuad-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

.vh78 {
    height: 78vh !important;
}


@media (max-width: 576px) {
    .col-cuad {
        display: none;
    }

    .col-cuad-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-cuad-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        padding-right: 0px;
        padding-left: 0px;
    }

    .col-cuad-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-cuad-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-cuad-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-cuad-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
}

.btn-icono {
    background-color: transparent;
    outline: none !important;
    box-shadow: none !important;
    color: #6c757d;
    padding-bottom: 0px;
}

.subtitle-process {
    color: #363636;
    font-weight: 600;
}


hr.style5 {
    background-color: #fff;
    border-top: 2px dotted #8c8b8b;
}


.form-control-plaintext.form-control-xs {
    padding-right: 0;
    padding-left: 0
}

.form-control-xs {
    height: calc(1.5em + .463rem + 2px);
    padding: .25rem .5rem;
    font-size: .775rem;
    line-height: 1;
    border-radius: .0rem
}

.form-control-no-border {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #d86c08;
    /* background-color: #fff; */
    /* background-clip: padding-box; */
    /* border: 1px solid #ced4da; */
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 700;
    padding-left: 0px !important;
}


.form-group.required .control-label:after {
    content: " * ";
    color: red;
}

/* toast para ventanas de alert */
.toast-header-alert {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #721c24;
    background-color: #f8d7da;
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-color: #f5c6cb;
}

.toast-header-primary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #004085;
    background-color: #cce5ff;
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-color: #e2e3e5;
}

.toast-header-secondary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #383d41;
    background-color: #e2e3e5;
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-color: #d6d8db;
}

.toast-header-succes {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #155724;
    background-color: #d4edda;
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-color: #d4edda;
}

.toast-header-warning {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #856404;
    background-color: #fff3cd;
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-color: #ffeeba;
}

.toast-header-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #0c5460;
    background-color: #d1ecf1;
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-color: #bee5eb;
}

.toast-header-light {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #818182;
    background-color: #fefefe;
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-color: #fdfdfe;
}

.toast-header-dark {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #1b1e21;
    background-color: #d6d8d9;
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-color: #c6c8ca;
}

.toast-center {
    top: 40%;
    left: 50%;
    position: fixed;
    transform: translate(-50%, 0px);
    z-index: 9999;
    width: 80%;
}

.abs-center-100 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}



@media (max-width: 767px) {
    .modal.modal-fullscreen, .bootstrap-fs-modal .modal {
        box-shadow: 0px 0px 0px 100px white;
    }

        .modal.modal-fullscreen .modal-dialog, .bootstrap-fs-modal .modal .modal-dialog {
            margin: 0;
            height: 100%;
            max-width: 100%;
        }

            .modal.modal-fullscreen .modal-dialog .modal-content, .bootstrap-fs-modal .modal .modal-dialog .modal-content {
                border-style: none;
                border-radius: 0;
                height: 100%;
            }

                .modal.modal-fullscreen .modal-dialog .modal-content .modal-header, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-header {
                    justify-content: flex-start;
                    min-height: 50px;
                    line-height: 50px;
                    padding: 0;
                    background-color: #f8f8f8;
                }

                    .modal.modal-fullscreen .modal-dialog .modal-content .modal-header .modal-title, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-header .modal-title {
                        white-space: nowrap;
                        line-height: 50px;
                        font-size: 1.1rem;
                    }

                    .modal.modal-fullscreen .modal-dialog .modal-content .modal-header .close, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-header .close {
                        float: none;
                        order: -1;
                        margin: 0;
                        padding: 0;
                        margin-right: 12px;
                        height: 50px;
                        color: transparent;
                        text-shadow: none;
                        opacity: 1;
                        padding-top: 14px;
                    }

                        .modal.modal-fullscreen .modal-dialog .modal-content .modal-header .close:before, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-header .close:before {
                            border-style: solid;
                            border-color: #d86c08;
                            border-width: 0.15em 0.15em 0 0;
                            content: '';
                            display: inline-block;
                            height: 0.5em;
                            left: 0.55em;
                            position: relative;
                            top: 0.28em;
                            transform: rotate(-45deg);
                            vertical-align: top;
                            width: 0.5em;
                            transform: rotate(-135deg);
                        }

                .modal.modal-fullscreen .modal-dialog .modal-content .modal-footer, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-footer {
                    position: absolute;
                    top: 0;
                    right: 0;
                    padding: 0;
                    margin: 0 10px 0 0;
                    height: 50px;
                    min-height: 50px;
                    line-height: 50px;
                    background-color: #f8f8f8;
                }

                    .modal.modal-fullscreen .modal-dialog .modal-content .modal-footer .btn, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-footer .btn {
                        border: none;
                        background-color: transparent;
                        margin: 0 0 0 10px;
                        padding: 0;
                        outline: none;
                        box-shadow: none;
                        font-size: 1.0rem;
                        color: #d86c08;
                    }

                        .modal.modal-fullscreen .modal-dialog .modal-content .modal-footer .btn:hover, .modal.modal-fullscreen .modal-dialog .modal-content .modal-footer .btn:active, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-footer .btn:hover, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-footer .btn:active {
                            text-decoration: underline;
                        }

                        .modal.modal-fullscreen .modal-dialog .modal-content .modal-footer .btn[data-dismiss="modal"], .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-footer .btn[data-dismiss="modal"] {
                            display: none;
                        }

                    .modal.modal-fullscreen .modal-dialog .modal-content .modal-footer .material-icons, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-footer .material-icons {
                        vertical-align: middle;
                    }

                    .modal.modal-fullscreen .modal-dialog .modal-content .modal-footer .fa, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-footer .fa {
                        vertical-align: middle;
                        font-size: 1.25em;
                    }

                .modal.modal-fullscreen .modal-dialog .modal-content .modal-body, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-body {
                    flex-shrink: 3;
                    overflow: auto;
                    -webkit-overflow-scrolling: touch;
                }

    .modal.modal-fullscreen-bottom-footer .modal-dialog .modal-content .modal-footer, .modal-fullscreen-bottom-footer .modal .modal-dialog .modal-content .modal-footer {
        position: inherit;
        top: inherit;
        right: inherit;
        padding: 15px;
        margin: 0;
    }

        .modal.modal-fullscreen-bottom-footer .modal-dialog .modal-content .modal-footer .btn, .modal-fullscreen-bottom-footer .modal .modal-dialog .modal-content .modal-footer .btn {
            margin: 0 0 0 18px;
        }
}

@media (min-width: 768px) {
    .modal.modal-fullscreen .modal-dialog .modal-content, .bootstrap-fs-modal .modal .modal-dialog .modal-content {
        max-height: calc(100vh - 60px);
    }

        .modal.modal-fullscreen .modal-dialog .modal-content .modal-body, .bootstrap-fs-modal .modal .modal-dialog .modal-content .modal-body {
            flex-shrink: 3;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }

    .modal-lg {
        max-width: 800px;
    }

    .modal-xl {
        max-width: 950px;
    }
}

/*# sourceMappingURL=bootstrap-fs-modal.css.map */

.embed-responsive {
    height: 100%;
}

.form-check-input {
    margin-top: 0.2rem;
}


@media (max-width: 460px) {
    .font_tit_comp {
        font-size: 2rem;
    }

    .font_subt_comp {
        font-size: 0.75rem;
    }

    #thOculta {
        display: none;
        border-color: #FFFFFF;
    }
}


.custom-file-input ~ .custom-file-label::after {
    content: "Seleccionar archivo" !important;
}

@media (max-width: 460px) {
    textarea.textarea-responsive {
        height: 20em !important;
    }

    .custom-file-input ~ .custom-file-label::after {
        content: "Archivo" !important;
    }
}


.breadcrumbs {
    color: #d86c08;
    font-weight: 600;
}

.saldoN {
    text-align: left;
    color: red;
}

.saldoP {
    text-align: left;
    color: green;
}

.bolded {
    font-weight: 600;
}

.disabledDiv {
    pointer-events: none;
    opacity: 0.4;
}

.overflow-y-hidden {
    overflow-y: hidden !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

.overflow-y-auto {
    overflow-y: auto !important;
}

.overflow-x-auto {
    overflow-x: auto !important;
}

/*
.border-l-0 {
    border-left: none !improtant;
}
*/


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/** Modulo Reporte de Errores ***/

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.btn-blink {
    animation: blink 2s infinite;
    font-size: 0.65rem;
    padding: 0px 5px;
}

.bubble {
    display: inline-block;
    background-color: #EED;
    border-radius: 6px;
    padding: 7px 10px;
    color: #721c24;
    margin: 3px 15px 3px 2px;
    border: 1px solid #EED;
    width: 100%;
    max-width: 800px;
}

    .bubble h6 {
        margin-top: 0;
        font-size: 13px;
        font-weight: bold;
    }

    .bubble p {
        margin: 0;
        font-size: 14px;
    }

.bubble-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bubble small {
    display: block;
    margin-top: 5px;
    color: #6c757d;
}

.bubble .status {
    font-weight: bold;
    color: #155724;
}

.bubble .unread {
    color: #dc3545;
}

.description {
    font-style: italic;
    margin-bottom: 10px;
}

.image-preview {
    margin-top: 10px;
    max-width: 80px;
    height: auto;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}

.image-input {
    margin-top: 10px;
}

.separator {
    width: 2%;
    border-left: 1px solid #ccc;
    margin: 0 5px;
}

.scrollable-div {
    height: 30vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 5px;
    padding: 00px;
}
