* {
    box-sizing: border-box;
	margin: 0px;
    padding: 0px;
    transition: all 0.4s ease-in-out 0s;
    font-family: 'Roboto', sans-serif;
    font-display: swap;
    color: #828282;
}
body{
    overflow-x: hidden;
    overflow-y: auto;
}
h1,h2,h3,h4,h5{
    font-weight: 400;
}
ul{
    list-style: none;
}
a {
    text-decoration: none;
    color: #828282;
}
/* FLEX */
.flex-container {
    display: flex;
}
.wrap {
    flex-wrap: wrap;
}
.flex-column {
    flex-direction: column;
}
.flex-center {
    justify-content: center;
}
.flex-between {
    justify-content: space-between;
}
.flex-even {
    justify-content: space-evenly;
}
.flex-end {
    justify-content: flex-end;
}
.flex-vcenter {
    align-items: center;
}
/* COLORES */
.white{
    background-color: #fff !important;
}
.gray{
    background-color: #f8f9fa !important;
}
.gray2{
    background-color: #dfdfdf !important;
}
.primary{
    background-color: #114896 !important;
}
.accent{
    background-color: #08387C !important;
}
.grey-data{
    background-color: #d6d8db !important;
}
.blue-data{
    background-color: #b8daff !important;
}
.green-data{
    background-color: #c3e6cb !important;
}
.yellow-data{
    background-color: #ffeeba !important;
}
.red-data{
    background-color: #f5c6cb !important;
}
.purple-data{
    background-color: #e8cce8 !important;
}
.single.selected{
    background-color: #114896 !important;
}
.selected{
    background-color: #114896 !important;
}
.grey-data.selected{
    background-color: #b4b0b0 !important;
}
.blue-data.selected{
    background-color: #3e42ff !important;
}
.green-data.selected{
    background-color: #27ae64 !important;
}
.yellow-data.selected{
    background-color: #f2c64c !important;
}
.red-data.selected{
    background-color: #eb576b !important;
}
.purple-data.selected{
    background-color: #6f238b !important;
}
.white-text{
    color: #fff !important;
}
.accent-text{
    color: #114896 !important;
}
.accent-text.req{
    font-size: 11px !important;
}
small{
    position: relative;
    display: inline-block;
    font-size: 9px;
    color: silver;
}
small.error{
    color: red;
}
/* GENERALES */
.img-responsive{
    width: 100%;
    height: auto;
}
.ma-20{
    margin: 20px !important;
}
.mx-20{
    margin-left: 20px !important;
    margin-right: 20px !important;
}
.my-20{
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
.mt-20{
    margin-top: 20px !important;
}
.mb-20{
    margin-bottom: 20px !important;
}
.ml-20{
    margin-left: 20px !important;
}
.mr-20{
    margin-right: 20px !important;
}
.ma-15{
    margin: 15px !important;
}
.mx-15{
    margin-left: 15px !important;
    margin-right: 15px !important;
}
.my-15{
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}
.mt-15{
    margin-top: 15px !important;
}
.mb-15{
    margin-bottom: 15px !important;
}
.ml-15{
    margin-left: 15px !important;
}
.mr-15{
    margin-right: 15px !important;
}
.text-left{
    text-align: left !important;
}
.text-center{
    text-align: center !important;
}
.text-right{
    text-align: right !important;
}
.capitalize{
    text-transform: capitalize;
}
.titulo{
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.texto{
    font-size: 12px !important;
}
.ellipsis {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.block-ellipsis {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main-container{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 120px;
    min-height: calc(100vh - 125px);
    transition: all 0.4s ease;
}
.main-container.menu__abierto{
    max-height: 80vh;
    overflow: hidden !important;
}
.main-container.torres{
    margin-top: 80px;
}
.sec-container{
    width: 100%;
    max-width: 1280px;
    padding: 0 10px;
    margin-left: auto;
    margin-right: auto;
    /* border: 1px solid blue; */
}
.tabla-container{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.sec-btn{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    min-width: 90px;
    height: 30px;
    border-radius: 4px;
    padding: 0 6px;
    background-color: #114896;
    border: 1px solid #114896;
    color: #fff !important;
    font-size: 13px;
    line-height: 26px;
    font-family: 'Roboto', sans-serif !important;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
.sec-btn span{
    color: #fff !important;
}
.sec-btn .sec-btn__icon{
    color: #fff;
    line-height: 26px !important;
}
.sec-btn:hover,
.sec-btn:active{
    background-color: #08387C;
}
.sec-btn.outline{
    background-color: rgba(29, 106, 207, 0);
    color: #114896 !important;
}
.sec-btn.outline:hover,
.sec-btn.outline:active{
    background-color: rgba(29, 106, 207, 0.4);
}
.sec-btn.disabled,
.sec-btn.outline.disabled{
    background-color: rgba(17, 72, 150, 0.7);
    border: 1px solid rgba(0, 123, 255, 0);
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: not-allowed;
}
.sec-btn.disabled span,
.sec-btn.disabled .sec-btn__icon{
    color: rgba(255, 255, 255, 0.7);
}
input, select,textarea {
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    width: 100%;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    background-color: #fff;
    padding: 0 9px;
    font-size: 12px;
    color: #828282 !important;
    border: 1px solid #bdbdbd;
    margin: 0;
}
textarea{
    height: unset;
    min-height: 30px;
}
input::placeholder,
input[type="tel"]::placeholder,
input::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder {
    color: #b4b0b0;
}
.select{
    position: relative;
}
.select input.select,
.select select{
    margin: 0;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.6);
}

.select select:disabled,
.select select[disabled="disabled"]{
    opacity: 0.6 !important;

}
.select::after{
    position: absolute;
    z-index: -1;
    right: 5px;
    line-height: 30px;
    font-family: 'secom';
    content: "\e906";
    color: #828282;
}
.select.datalist::after{
    top: 0px;
}
.select.datalist input::placeholder,
.select.datalist input::-webkit-input-placeholder {
    color: #828282;
}
::placeholder {
    color: #828282;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #828282;
}
::-ms-input-placeholder {
    color: #828282;
}
.filtros-checkbox label{
    font-size: 13px;
    cursor: pointer;
}
input.checkbox,
.drawer-form__input input.checkbox,
.filtros-checkbox input{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    position: relative;
    margin-left: 10px !important;
    width: 20px !important;
    height: 20px !important;
    padding: 0 !important;
    border-radius: 3px;
    color: #bdbdbd !important;
    border: 1px solid #bdbdbd;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
input.checkbox:checked::after,
.drawer-form__input input.checkbox:checked::after,
.filtros-checkbox input:checked::after {
    content: "";
    width: 14px !important;
    height: 14px !important;
    border-radius: 2px !important;
    background-color: #828282 !important;
    position: absolute !important;
    left: 2px !important;
    top: 2px !important;
}
input.checkbox[disabled]{
    background-color: #dddddd;
    cursor: not-allowed;
}
.status-adeudo{
    font-size: 9px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 100;
    padding: 3px;
    padding-bottom: 1px;
    border-radius: 2px;
    color: #fff !important;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.4);
}
.status-adeudo.regular{
    background-color: forestgreen !important;
}
.status-adeudo.deudor{
    background-color: orange !important;
}
.status-adeudo.reincidente{
    background-color: crimson !important;
}
/* HEADER */
.header{
    position: fixed;
    top: 0px !important;
    width: 100%;
    height: 50px;
    z-index: 4;
    background-color: #f8f9fa;
    border-bottom: 1px solid #bdbdbd;
}
.header__content{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}
.header--menu{
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
}
.header--menu__option{
    /* border: 1px solid red; */
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    color: #b4b0b0;
}
.header--menu__option>a{
    /* border: 1px solid blue; */
    color: #b4b0b0;
    line-height: 45px;
}
.header--menu__option:hover,
.header--menu__option:active,
.header--menu__option:hover>a,
.header--menu__option:active>a{
    color: #114896;
}
.header--submenu{
    position: absolute;
    list-style: none;
    top: 49.5px;
    height: auto;
    left: 0px;
    display: none;
    min-width: 95px;
    background-color: #f8f9fa;
    z-index: 4;
    box-shadow: 0px 3px 5px -3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 3px 5px -3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 3px 5px -3px rgba(0,0,0,0.5);;
}
.header--submenu.submenu--open{
    display: inline-block;
}
.header--submenu__option{
    display: none;
    text-transform: none;
    transition: none;
}
.header--submenu__option a{
    display: block;
    line-height: 30px;
    white-space: nowrap;
    padding: 0 10px;
    color: #828282;
}
.header--submenu.submenu--open .header--submenu__option{
    display: block;
}
.header--submenu__option:hover,
.header--submenu__option:active{
    background-color: #a7d0ff;
}
.header__btn{
    display: none;
    cursor: pointer;
    font-size: 24px;
}
/* DRAWER MENU */
.drawer-menu {
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: grid;
    grid-template-areas: 'OVERLAY MENU';
    grid-template-columns: calc(100% - 280px) 280px;
    background-color: rgba(0, 0, 0, 0.5);
}
#menu__opener:checked~.drawer-menu {
    transform: translateX(0px);
    opacity: 1;
}
.drawer-menu__btn{
    padding: 0 15px;
    padding-top: 10px;
    cursor: pointer;
}
.drawer-menu__header{
    position: absolute;
    width: 100%;
    height: 90px;
    border-bottom: 1px solid #dddddd;
}
.drawer-menu__logo img{
    max-width: 100px;
}
.drawer-menu__list {
    position: relative;
    display: block;
    flex-flow: column wrap;
    width: 280px;
    transform: translateX(280px);
    opacity: 0;
    transition: all 500ms cubic-bezier(0.4, 0.0, 0.2, 1);
    transition-delay: 0;
    contain: content;
    grid-area: 'MENU';
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}
#menu__opener:checked~.drawer-menu .drawer-menu__list {
    transform: translateX(0px);
    opacity: 1;
}
.drawer-menu__items{
    margin-top: 90px;
    height: calc(100% - 90px);
    overflow-y: auto;
}
.drawer-menu__item {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    display: block;
    padding: 10px 15px;
    border-top: 1px solid #dfdfdf;
    transition: all .3s ease;
}
.drawer-menu__item.drawer--menu__btn--options {
    cursor: auto;
}
.drawer-menu__item:hover {
    background-color: #f8f9fa !important;
}
.drawer-menu__item.active {
    background-color: #114896 !important;
    color: #fff;
}
.drawer-menu__item:active,
.drawer-menu__item.active:hover,
.drawer-menu__item.active:active {
    background-color: #08387C !important;
    color: #fff !important;
}
.drawer-menu__submenu{
    list-style: none;
    top: 40px;
    width: 100%;
    background-color: #f8f9fa;
    transition-timing-function: ease;
    transition: all .3s ease;
}
.drawer-menu__submenu--item{
    text-transform: none;
    display: inline-block;
    width: 100%;
    padding-left: 40px;
    padding-right: 10px;
    /* opacity: 0; */
    line-height: 30px;
    font-size: 12px;
}
.drawer-menu__submenu--item:hover{
    background-color: rgba(167, 208, 255, 0.3);
}
.drawer-menu__submenu--item:active{
    background-color: rgba(167, 208, 255, 0.8);
}
.drawer-menu__overlay {
    display: block;
    grid-area: 'OVERLAY';
    cursor: pointer;
    transition-delay: 300ms;
    transition-timing-function: ease-in-out;
    opacity: 0;
}
#menu__opener:checked~.drawer-menu .drawer-menu__overlay {
    opacity: 1;
}
#menu__opener:not(:checked)~.drawer-menu .drawer-menu__overlay {
    pointer-events: none;
    transition-delay: 100ms;
    transition-duration: 200ms;
}
/* DRAWER FORMULARIOS */
.drawer-form{
    position: fixed;
    z-index: 9;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    transform: translateX(-100%);
    display: grid;
    opacity: 0;
}
.drawer-form.form-open{
    transform: translateX(0px);
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}
.drawer-form.form-open.windows{
    transform: translateX(15px);
}
.drawer-form__container{
    position: relative;
    z-index: 10;
    display: block;
    flex-flow: column wrap;
    width: 300px;
    height: 100vh;
    opacity: 0;
    transform: translateX(-300px);
    transition: all 500ms cubic-bezier(0.4, 0.0, 0.2, 1);
    background-color: #fff;
    border-right: 1px solid #dfdfdf;
    box-sizing: border-box;
    overflow: hidden;
}
.drawer-form__overlay{
    position: absolute;
    z-index: 9;
    display: block;
    width: 100%;
    transform: translateX(-300px);
    height: 100vh;
    cursor: pointer;
}
.drawer-form.form-open .drawer-form__container,
.drawer-form.form-open .drawer-form__overlay{
    opacity: 1;
    transform: translateX(0px);
    transition-duration: 300ms;
}
.drawer-form__header{
    height: 60px;
    padding: 0 12px;
    font-size: 20px;
    border-bottom: 1px solid #dddddd;
}
.drawer-form__header h2,
#formDrawerTitulo{
    font-weight: 400;
    font-size: 22px;
    width: calc(100% - 30px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.formDrawerCerrar{
    cursor: pointer;
}
.drawer-menu__content{
    padding: 15px;
    height: calc(100% - 65px);
    overflow-y: auto;
}
.drawer-text{
    font-size: 12px;
    line-height: 22px;
}
.upp{
    text-transform: uppercase !important;
}
.drawer-form__input input,
.drawer-form__input input.select,
.drawer-form__input textarea,
.drawer-form__input .select{
    width: calc(100% - 120px);
}
.drawer-form__input input.select{
    display: block;
    width: 100%;
}
.drawer-form__input label{
    width: 120px !important;
    font-size: 10px;
    text-transform: uppercase;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
/* TOOLBAR/FILTROS */
.toolbar{
    position: fixed;
    width: 100%;
    height: 50px;
    top: 50px;
    z-index: 3;
}
.toolbar__container{
    position: relative;
    max-width: 1280px;
    padding: 0 10px;
    margin: 0 auto;
}
.toolbar__filtros{
    position: absolute;
    right: 10px;
}
.filtros__btns{
    height: 40px;
    background-color: #fff;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
    overflow: hidden;
}
.filtros__btn{
    position: relative;
    z-index: 3;
    width: 35px;
    height: 35px;
    border: none;
    background-color: #fff;
    font-size: 24px;
    line-height: 1.2;
    cursor: pointer;
    margin: 5px;
    margin-left: 25px;
}
.filtros__btn .icon-search{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
}
.filtros__btn:hover{
    background-color: #f8f9fa;
}
.filtros__btns .sec-btn{
    margin: 0 10px;
}
.filtros__caja{
    position: absolute;
    z-index: 3;
    top: 0px;
    right: 0px;
    width: 200px;
    max-height: calc(100vh - 120px);
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    opacity: 0;
    transform: translateY(-102%);
    transition-timing-function: ease;
    transition: all .3s ease;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 1px 2px 5px -1px rgba(0,0,0,0.5);
    -webkit-box-shadow: 1px 2px 5px -1px rgba(0,0,0,0.5);
    -moz-box-shadow: 1px 2px 5px -1px rgba(0,0,0,0.5);
}
.filtros__caja.filtros-open{
    opacity: 1;
    transform: translateY(0px);
}
.filtros__caja-header{
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #dddddd;
}
.filtros__caja-header #btnCerrarFiltros{
    font-size: 22px;
    cursor: pointer;
}
.filtros__caja-content{
    width: 100%;
    height: 100%;
    padding: 15px;
}
.filtros__caja-content input,
.filtros__caja-content .select,
.filtros__caja-content .sec-btn{
    margin: 7px 0;
    width: 100%;
}
/* MODAL */
#dialogUsuario4{
    display: none;
}
.dialog{
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transition: all 0.3s ease 0s;
    background-color: rgba(0, 0, 0, 0.5);
}
.dialog-contenedor{
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dialog-contenido{
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}
#historialDialog{
    display: flex;
}
#historialDialog .dialog-contenido{
    width: 100%;
    max-width: 1200px;
    height: 100%;
}
#historialDialog .dialog-content{
    height: calc(100% - 100px);
    overflow-y: auto;
}
#historialDialog .ajustes-historial__datos{
    flex-wrap: wrap;
    padding: 15px;
}
#historialDialog .ajustes-historial__dato{
    font-size: 12px;
    line-height: 1.5;
    margin-right: 10px;
    display: inline-flex;
}
#historialDialog .tabla{
    padding: 0 10px;
    overflow: unset !important;
}
#historialDialog .tabla-header{
    position: relative;
    width: 100%;
    margin: 0;
}
#historialDialog .tabla-row:first-of-type {
    margin-top: 0px;
}
#eliminarDialog .dialog-content{
    padding: 20px 15px;
}
.dialog-header{
    font-size: 20px;
    border-bottom: 1px solid #dddddd;
}
.dialog-cerrar{
    cursor: pointer;
}
.dialog-footer{
    border-top: 1px solid #dddddd;
}
.dialog-header,
.dialog-footer{
    height: 50px;
    padding: 10px 15px;
}
/* TABLAS */
.tabla{
    width: 100%;
    padding: 0 10px;
    height: 100%;
    min-height: 150px;
    padding-bottom: 5px;
    overflow-x: hidden;
    overflow-y: auto;
}
.tabla-header,
.tabla-row__cells{
    list-style: none;
    border-radius: 3px;
    overflow: hidden;
    background-color: #f8f9fa;
}
.tabla-header{
    display: flex;
    position: absolute;
    margin-left: calc((100% - 1282px)/2);
    margin-right: calc((100% - 1280px)/2);
    z-index: 1;
    width: calc(100% - 20px);
    max-width: 1260px;
    background-color: #828282;
}
.tabla-row{
    margin-bottom: 10px;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}
.tabla-row.single{
    margin-bottom: -1.5px;
}
.tabla-row:first-of-type{
    margin-top: 50px;
}
.tabla-row__cells{
    display: flex;
    position: relative;
    border: 1px solid #828282;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-top-right-radius: 0;
    -webkit-border-top-right-radius: 0;
}
.tabla-cell{
    padding: 17px 10px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    width: 12%;
    min-width: 70px;
}
/* .tabla-cell .ellipsis,
.tabla-cell .block-ellipsis {
    border: 1px solid red;
} */
.tabla-cell .mobile-label {
    display: none;
}
.tabla-cell i{
    font-size: 16px;
    margin-right: 3px;
}
.tabla-cell a:hover,
.tabla-cell i:hover{
    color: #114896;
    cursor: pointer;
}
.tabla-cell a{
    padding: 2px 5px;
    border: 1px solid #828282;
    border-radius: 3px;
}
.tabla-cell .total{
    display: inline-block;
    padding: 2px 3px 0px 3px;
    margin-left: -3px;
    border: 1px solid rgba(143, 143, 143, 0.55);
    border-radius: 2px;
    font-weight: bold;
    line-height: 1.2;
}
.tabla-cell a:hover{
    border-color: #114896;
    background-color: rgba(17, 72, 150, 0.2);
}
.selected .tabla-cell em,
.selected .tabla-cell strong,
.selected .tabla-cell u,
.selected .tabla-cell s,
.selected .tabla-cell b,
.selected .tabla-cell span,
.selected .tabla-cell a,
.selected .tabla-cell strong,
.selected .tabla-cell p,
.selected .tabla-cell i{
    color: #fff !important;
    border-color: #fff;
}
.selected .tabla-cell a:hover,
.selected .tabla-cell i:hover{
    color: #a7d0ff !important;
    border-color: #a7d0ff;
}
.tabla-cell.sm{
    width: 6%;
}
.tabla-cell.md{
    width: 15%;
}
.tabla-cell.lg{
    width: 25%;
}
.tabla-cell.xl{
    width: 90%;
}
.tabla-cell__enlace:hover{
    color: #08387C;
}
.tabla-header__cell{
    display: inline-block;
    height: 40px;
    padding: 10px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.tabla-row__btns{
    margin-bottom: -1px;
    display: inline-flex;
    border: 1px solid #828282;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.tabla-row__btn{
    position: relative;
    height: 30px;
    width: 30px;
    background-color: #114896;
    border: none;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}
.tabla-row__btn i{
    color: #fff;
    line-height: 1.5;
}
.tabla-row__btn-tooltip{
    position: absolute;
    bottom: 35px;
    right: 0;
    z-index: 1;
    min-width: 90px;
    height: 26px;
    padding: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s all ease;
    visibility: hidden;
    border-radius: 3px;
    background-color: rgba(34, 34, 34, 0.7);
    line-height: 1;
    font-size: 10px;
    color: #fff;
    text-transform: capitalize;
}
.tabla-row__btn-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 10px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(34, 34, 34, 0.7) transparent transparent transparent;
}
.tabla-row__btn:hover .tabla-row__btn-tooltip{
    visibility: visible;
}
.tabla-row__btn:hover,
.tabla-row__btn:active{
    background-color: #08387C;
}
.tabla-row__btn.disabled,
.tabla-row__btn:disabled{
    background-color: #bdbdbd;
    cursor: not-allowed;
}
.tabla-row__btn.disabled:hover,
.tabla-row__btn:disabled:hover{
    background-color: #bdbdbd;
}
.no-data{
    height: 80px;
    width: 100%;
    max-width: 1255px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid orange;
    color: orange;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* PAGINADOR */
.paginador{
    width: 100%;
    margin: 10px 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.paginador__btn{
    width: 32px;
    height: 35px;
    border: 1px solid #bdbdbd;
    background-color: #fff;
    color: #114896;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -1px;
    cursor: pointer;
}
.paginador__btn:first-of-type,
.paginador__btn:last-of-type,
.paginador__btn.control{
    width: 30px;
}
.paginador__btn:first-of-type a,
.paginador__btn:last-of-type a,
.paginador__btn.control a{
    font-size: 13px;
}
.paginador__btn i{
    color: #114896;
}
.paginador__btn.control a,
.page-item.paginador__btn a{
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 2.4;
    font-size: 12px;
    letter-spacing: -.7px;
}
.paginador__btn.control,
.paginador__btn a{
    color: #114896 !important;
}
.paginador__btn.control:hover,
.paginador__btn.activo,
.paginador__btn.active{
    border: 1px solid #08387C !important;
    background-color: #114896 !important;
    color: #fff !important;
}
.paginador__btn.control:focus,
.paginador__btn.control:active{
    background-color: #08387C;
}
.paginador__btn:hover,
.paginador__btn:active{
    background-color: #08387C !important;
    color: #fff;
}
.paginador__btn.active a,
.paginador__btn:hover a,
.paginador__btn:active a{
    color: #fff !important;
}
/* tabs */
.tabs{
    width: 100%;
    height: 40px;
    background-color: #fff;
    display: flex;
}
.tabs .tab{
    display: flex;
    align-items: center;
    width: 50%;
    height: 40px;
    padding: 10px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 12px;
    color: #828282;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    overflow: hidden;
}
.tabs .tab:hover{
    background-color: #f8f9fa;
}
.tabs .tab.active{
    background-color: #114896;
    border-color: #114896;
    color: #fff;
}
.tabs .tab.active a,
.tabs .tab.active span{
    color: #fff;
}
.tabs-contenido{
    margin-top: -1px;
    background-color: #f8f9fa;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    overflow: hidden;
}
.tab-contenido{
    /* display: none; */
    padding-top: 10px;
    border: 1px solid #e0e0e0;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
/* ADEUDOS */
.adeudo-indicador {
    width: 96px;
    height: 45px;
    border: 1px solid #bdbdbd;
    margin: -1px;
    font-size: 11px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tabla.adeudos .tabla-cell{
    padding: 10px;
}
.tabla-row__datos,
.tabla.adeudos .tabla-cell {
    font-size: 14px !important;
}
.historial-tabla__header,
.historial-tabla__row{
    list-style: none;
    font-size: 11px;
    line-height: 24px;
}
.historial-tabla__header{
    font-size: 8.5px;
}
.historial-tabla__cell{
    width: 100%;
    text-align: left;
    font-size: 9px;
    letter-spacing: -.5px;
    border-bottom: 1px solid #828282;
}
.historial-tabla__cell.md{
    width: 85%;
}
.tabla-cell__dato-lectura{
    border: none !important;
}
/* PAGOS */
.pagos-total b,
.pagos-total span{
    color: #fff;
    font-size: 11px;
    line-height: 1;
}
.pagos-total{
    height: 30px;
    width: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #27ae64;
    line-height: .9;
    text-align: center;
    border-radius: 3px;
    margin-left: 15px;
}
/* LECTURAS */
.lecturas.main-container{
    margin-top: 100px;
    padding: 0 10px;
}
.lecturas-container{
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}
.lecturas-tabs{
    z-index: 3 !important;
}
.lecturas-tabs__header{
    line-height: 40px;
    font-size: 15px;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}
#btnTabs,
.lecturas-tabs__header i{
    cursor: pointer;
    display: none;
}
.lecturas-tabs__list{
    height: calc(100% - 65px);
    overflow-y: auto;
    list-style: none;
}
.lecturas-tabs.tabs{
    width: 250px;
    height: 100%;
    max-height: calc(100vh - 140px);
    background-color: rgba(255, 255, 255, 0.247);
}
.lecturas-tabs__fechas{
    padding: 15px;
    justify-content: space-between;
}
.lecturas-tabs__fechas input{
    width: 30%;
}
.lecturas-tab.tab{
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 0;
    border-top: 1px solid #dfdfdf;
}
.lecturas-tab.tab a{
    width: 100%;
    height: 100%;
    padding: 10px;
}
.lecturas-tab.tab:hover{
    background-color: #e0e0e0;
    border: none;
}
.lecturas-tab.tab.active:hover{
    background-color: #08387C;
}
.lecturas-filtros{
    width: 100%;
    height: 50px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #828282;
}
.lecturas-filtros__input{
    max-width: 150px;
    margin-right: 15px;
}
.lecturas.tabs-contenido{
    width: 100%;
    height: unset;
    border-left: 1px solid #e0e0e0;
}
.lecturas-tab__contenido.tab-contenido{
    border: none;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
}
.lecturas-ficha{
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #d6d8db;
    border-radius: 4px;
    overflow: auto;
}
.lecturas-ficha__img{
    position: relative;
    width: 100%;
    padding-top: 83%;
    background-color: darkgray;
    overflow-y: hidden;
}
.lecturas-ficha__img img{
    position: absolute;
    top: 0;
}
.lecturas-ficha__datos{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lecturas-ficha__dato,
.lecturas-ficha__input{
    margin-bottom: 15px;
    font-size: 12px;
}
.lecturas-ficha__input label{
    width: 100px;
}
.lecturas-ficha__input input,
.lecturas-ficha__input .select{
    width: calc(100% - 100px);
}
.lecturas.select select{
    z-index: 1;
}
.lecturas.select::after{
    z-index: 0;
}
.lecturas-btn{
    width: 100%;
    max-width: 150px;
}
.lecturas-btn.success{
    background-color: #27ae64;
    border: 1px solid #27ae64;
}
.lecturas-btn.success:hover,
.lecturas-btn.success:active{
    background-color: #1e9152;
    border: 1px solid #1e9152;
}
.lecturas-btn.error{
    background-color: #cf0000;
    border: 1px solid #cf0000;
}
.lecturas-btn.error:hover,
.lecturas-btn.error:active{
    background-color: #a80303;
    border: 1px solid #a80303;
}
/* edificios */
.tabla.edificios .tabla-cell a{
    padding: 3px 6px;
}
.departamentos .tabla{
    max-height: calc(100vh - 250px);
}
.tabla.recibos .tabla-row .tabla-row__cells{
    transition: all 0s ease;
}
.tabla.recibos .tabla-row:hover .tabla-row__cells{
    background-color: #114896;
}
.tabla.recibos .tabla-row:hover .tabla-cell b,
.tabla.recibos .tabla-row:hover .tabla-cell span,
.tabla.recibos .tabla-row:hover .tabla-cell a,
.tabla.recibos .tabla-row:hover .tabla-cell p,
.tabla.recibos .tabla-row:hover .tabla-cell i{
    color: #fff !important;
}
/* AVISOS */
#editorAvisos{
    max-height: 250px !important;
}
/* MENSAJES */
.mensajes.tabs-contenido .tabla{
    min-height: 150px;
    max-height: calc(100vh - 240px);
}
.tabs-contenido .tabla-header{
    border-radius: 0;
    margin: 0;
}
/* CONFIGURACION */
.configuracion{
    padding: 0 10px;
}
.config.tabs-contenido .tab-contenido{
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #f8f9fa;
    overflow-y: auto;
}
.config-texto{
    font-size: 13px;
    margin-bottom: 40px;
}
.config-input {
    margin-bottom: 15px;
}
.config-input label{
    width: 100%;
    max-width: 180px;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 10px;
}
.config-input input{
    text-align: right;
}
.config-tarifas{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.config-tarifas__item{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.config-container{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
/* mi cuenta */
.micuenta-container{
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.micuenta-container .config-input input{
    text-align: left;
}
/* PERFIL CLIENTE */
.perfil.main-container{
    padding: 10px;
    padding-bottom: 25px;
}
.perfil-tabs .tab-contenido {
    padding: 10px;
}
.perfil-inicio__usuario{
    padding: 10px;
}
.perfil-inicio__grupo{
    width: calc(50% - 20px);
    margin: 10px;
}
.perfil-inicio__seccion .upp{
    line-height: 2;
}
.perfil-inicio__seccion .contenedor{
    padding: 10px;
}
.perfil-lista__item{
    line-height: 2 !important;
    padding-left: 10px;
    margin-top: -.5px;
}
.perfil-lista__item:nth-child(even){
    background-color: #f8f9fa;
}
.perfil-lista__item:hover{
    background-color: #114896 !important;
    color: #fff;
}
.perfil-lista__item:hover p,
.perfil-lista__item:hover i{
    color: #fff !important;
}
.perfil-lista__item i{
    cursor: pointer;
}
.perfil-lista__label{
    width: 160px;
    padding-right: 9px;
    font-weight: 700;
    text-align: right;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.perfil-lista__dato{
    width: calc(100% - 150px);
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.avisos-lista .perfil-lista__item:hover,
.pagos-lista .perfil-lista__item:hover{
    cursor: pointer;
}
.avisos-lista .perfil-lista__item p:first-of-type,
.pagos-lista .perfil-lista__item p:first-of-type{
    width: 70%;
}
.calculadora-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}
.calculadora-container a{
    display: block;
    margin: 10px 0;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.perfil .tab-contenido.tabla{
    background-color: #fff;
    min-height: 150px;
    padding: 0;
    padding-top: 10px;
}
.perfil .tab-contenido.tabla .tabla-header{
    max-width: 1260px;
    width: calc(100% - 42px);
}

@media screen and (max-height: 800px) { /* --------------------------------alturaFiltros---- */
    .filtros__caja-content{
        max-height: calc(100% - 30px);
        overflow-y: auto;
    }
}
@media screen and (max-width: 1280px) { /* --------------------------------1280---- */
    .tabla-header{
        margin-left: 0;
        margin-right: 0;
    }
}
@media screen and (max-width: 960px) { /* --------------------------------960---- */
    .status-adeudo{
        position: absolute;
        right: 3px;
        bottom: 3px;
    }
    .header__btn{
        display: block;
    }
    .header--menu{
        display: none;
    }
    .tabla{
        display: flex;
        flex-wrap: wrap;
        padding-top: 25px;
    }
    .tabla-header{
        display: none;
    }
    .tabla-row{
        width: 50%;
        padding: 5px;
        margin: 0;
    }
    .tabla-row:first-of-type{
        margin-top: 0;
    }
    .tabla-row__cells{
        flex-direction: column;
    }
    .tabla-cell,
    .tabla-cell.sm,
    .tabla-cell.md,
    .tabla-cell.lg,
    .tabla-cell.xl{
        flex-direction: row;
        padding: 0;
        font-size: 12px;
        line-height: 24px;
        width: 100%;
        margin-top: -.5px;
    }
    .tabla-cell .total{
        margin-left: 0px;
    }
    .tabla-cell i{
        line-height: 24px;
    }
    .tabla-cell a{
        padding: 0 5px;
    }
    .tabla-cell .mobile-label {
        display: inline-block;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-transform: capitalize;
        width: 72px;
        background-color: #828282;
        color: #fff;
        text-align: right;
        padding: 0 7px;
        font-size: 10px;
        margin-right: 5px;
        line-height: 20px;
    }
    .tabla-cell div {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: calc(100% - 77px);
    }
    .tabla.adeudos .tabla-cell {
        line-height: 24px;
    }
    .tabla-cell div p {
        margin-right: 5px;
    }
    .tabla-cell .ellipsis,
    .tabla-cell .block-ellipsis {
        width: fit-content;
    }
    .tabla-cell .block-ellipsis {
        display: inline-block;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .selected .tabla-cell b,
    .selected .tabla-cell span,
    .selected .tabla-cell p,
    .selected .tabla-cell i{
        color: #fff !important;
    }
    /* ADEUDOS */
    .tabla.adeudos .tabla-cell{
        padding: 0px;
    }
    /* lecturas */
    .lecturas-tabs.tabs{
        position: fixed;
        background-color: #fff;
        height: 100vh;
        max-height: 100vh;
        top: 0;
        z-index: 4;
        opacity: 0;
        transform: translateX(-250px);
        transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    .lecturas-tabs.tabs.tabs-open{
        transform: translateX(-10px);
        opacity: 1;
        border-right: 1px solid #e0e0e0;
        z-index: 99 !important;
        -webkit-box-shadow: 3px 0px 3px 0px rgba(0,0,0,0.3);
        -moz-box-shadow: 3px 0px 3px 0px rgba(0,0,0,0.3);
        box-shadow: 3px 0px 3px 0px rgba(0,0,0,0.3);
    }
    #btnTabs,
    .lecturas-tabs__header i{
        display: inline-block;
    }
    /* edificios */
    .tabla.edificios .tabla-cell a{
        padding: 0 6px;
        margin-bottom: 3px;
    }
    .tabla-cell div.item-checkbox{
        width: 100%;
        justify-content: end;
        padding-right: 5px;
    }
    .checkbox.item-recibo{
        margin-top: 4px;
    }
}
@media screen and (max-width: 750px) { /* --------------------------------750---- */
    /* ADEUDOS */
    .toolbar__indicadores{
        z-index: 4;
    }
    .adeudo-indicador {
        width: 18%;
        height: 30px;
        font-size: 9px;
    }
    .toolbar.adeudos .toolbar__filtros{
        top: 29px;
    }
    .filtros__btn{
        width: 40px;
        height: 40px;
        margin: 0px;
        margin-left: 25px;
    }
    .filtros__caja-header{
        height: 40px;
    }
    .filtros__caja-header #btnCerrarFiltros{
        font-size: 19px;
        cursor: pointer;
    }
}
@media screen and (max-width: 650px) { /* --------------------------------650---- */
    .status-adeudo{
        font-size: 8px;
    }
    .dialog-contenedor{
        padding: 15px;
    }
    /* TABLAS */
    .tabla{
        justify-content: center;
    }
    .tabla-row {
        width: 85%;
    }
    .tabla-row__datos,
    .tabla-cell b,
    .tabla-cell span,
    .tabla-cell p{
        font-size: 12px !important;
    }
    /* CONFIGURACIONES */
    .config-tarifas .items-container{
        flex-direction: column;
        align-items: center;
    }
    .config-tarifas__item{
        width: 100%;
        margin-bottom: 30px;
    }
    /* PERFIL CLIENTE */
    .perfil-inicio{
        flex-direction: column-reverse;
    }
    .perfil-inicio__grupo{
        width: calc(100% - 20px);
    }
}
@media screen and (max-width: 500px) { /* --------------------------------500---- */
    .adeudo-indicador {
        font-size: 8px;
        letter-spacing: -.5px;
        line-height: 1;
    }
    .tabla-row {
        width: 100%;
    }
    .lecturas-tabs__fechas{
        flex-direction: column;
    }
    .lecturas-tabs__fechas input{
        width: 100%;
        margin-bottom: 10px;
    }
    .lecturas-btn{
        max-width: 110px;
    }
}
@media screen and (max-width: 360px) { /* --------------------------------360---- */
    .tabla-row__datos,
    .tabla-cell b,
    .tabla-cell span,
    .tabla-cell p{
        font-size: 10px !important;
    }

    .config-input label{
        font-size: 10px;
    }
    .perfil-lista__label{
        width: 110px;
        font-size: 10px !important;
    }
    .perfil-lista__dato {
        width: calc(100% - 110px);
    }
    .perfil-cliente__checkbox{
        max-width: 120px;
    }
    .perfil-cliente__checkbox label{
        font-size: 9px;
    }
    .ocultar{
        display: none;
    }
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .select.datalist{
        position: relative;
    }
    .select.datalist::before{
        position: absolute;
        display: block;
        content: '';
        width: 9px;
        height: 20px;
        background-color: #fff;
        z-index: 1;
        right: 14px;
        bottom: 2.5px;
    }
}
