@import "./menu.css";

/*Cargamos los tipos de leta*/

/*BOLD*/
@font-face {
    font-family: "Lato";
    src: url("../fonts//Lato/Lato-Bold.ttf");
    font-weight: bold;
}

/*BLACK*/
@font-face {
    font-family: "Lato";
    src: url("../fonts//Lato/Lato-Black.ttf");
    font-weight: 900;
}

/*SEMI BOLD*/
@font-face {
    font-family: "FiraSans";
    src: url("../fonts//FiraSans/FiraSans-SemiBoldItalic.ttf");
    font-style: italic;
    font-weight: 600;
}

/*REGULAR - 300 */
@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato/Lato-Regular.ttf");
    font-weight: 300;
}

/*MEDIUM - 400*/
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSans/FiraSans-Medium.ttf");
    font-weight: 400;
}

@keyframes success-slide {
    0% {
        bottom: -10vh;
    }

    8% {
        bottom: 2vh;
    }

    90% {
        bottom: 2vh;
    }

    100% {
        bottom: -10vh;
    }
}

/*VARIABLES GLOBALES*/
:root {
    --waitBg: rgba(242, 245, 247, .85);
    --waitColor: #0092D5;
    --fotColor: #9B9B9B;
    --firstBtnBg: #0092D5;
    --firstBtnColor: #FFFFFF;
    --firstBtnDisBg: #B7BEC2;
    --secondBtnBg: #FFFFFF;
    --secondBtnColor: #0092D5;
    --errColor: #FE0303;
    --successBg: #49A648;
    --successColor: #FDFDFD;
    --searchBg: #FFFFFF;
    --searchColor: #4A4A4A;
    --searchIc: #0092D5;
    --pageCntBg: #F2F5F7;
    --pageTblBg: #FFFFFF;
    --pageTblBgHov: #d5d5dd;
    --pageTblColor: #4A4A4A;
    --pageTblIcColor: #0092D5;
    --pageTblHeaderBg: #0092D5;
    --pageTblHeaderColor: #FFFFFF;
    --pageTblRowBgAlt: #F2F5F7;
    --pageTblSel: #FFFFFF;
    --pageTblColorSel: #0092D5;
    --addBtnBg: #0092D5;
    --addBtnColor: #FFFFFF;
    --popupInptBg: #FFFFFF;
    --popupBg: rgba(242, 245, 247, .85);
    --popupBoxBg: #FFFFFF;
    --popupInptColor: #4A4A4A;
    --popupTitColor: #0092D5;
    --popupFrmLblColor: #0092D5;
    --popupTxtColor: #4A4A4A;
    --popupDateLblColor: #A5A5A5;
    --popupHeadColor: #4A4A4A;
    --popupHeadColorActv: #0092D5;
    --popupHeadColorDis: #D7D7D7;
    --switchBg: #B7BEC2;
    --switchActvBg: #0092D5;
    --switchColor: #FFFFFF;
    --disabledOption: #B7BEC2;
    --bgInptDisabled:#F3F6F7;
    --colorInptDis:#A8A8A8;
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-size: 16px;
    background-color: var(--loginBgBox);
}

.waitScreen {
    z-index: 200;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--waitBg);
    color: var(--waitColor);
    display: flex;
    align-items: center;
    transition: all .3s;
    opacity: 0;
    justify-content: center;
}

select option[disabled] {
    color: var(--disabledOption);
}

/*Manejo de vista con el menu lateral*/
.pageBody {
    display: flex;
    flex-direction: row;
}

.pageCnt {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--pageCntBg);
}

/*hsata acá*/
/*Popups*/
.popup {
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 100;
    background-color: var(--popupBg);
    transition: all .3s;
    opacity: 0;
    align-items: center;
    justify-content: center;
    display: none;
    left: 0;
    top: 0;
}

.popupScroll::-webkit-scrollbar,
.popupSctScroll::-webkit-scrollbar {
    width: 7px;
    background: var(--menuBg);
}

.popupScroll::-webkit-scrollbar-track,
.popupSctScroll::-webkit-scrollbar-track {
    border-radius: 10px;
}

.popupScroll::-webkit-scrollbar-thumb,
.popupSctScroll::-webkit-scrollbar-thumb {
    background: var(--menuScrollBar);
    border-radius: 10px;
}

.popupScroll::-webkit-scrollbar-thumb:hover,
.popupSctScroll::-webkit-scrollbar-thumb:hover {
    background: var(--menuScrollBar);
}

.popupBox {
    width: 90%;
    max-width: 420px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: var(--popupBoxBg);
    padding: 4.5vh 30px;
    display: flex;
    flex-direction: column;
}

.popupHdCnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.popupHdCnt .popupTit {
    margin-bottom: 0;
}

.popupTit {
    font-style: italic;
    font-weight: 600;
    font-family: 'FiraSans';
    text-align: left;
    font-size: 1.45rem;
    color: var(--popupTitColor);
    margin-bottom: 10px;
}

.popupDateLblCnt {
    text-align: right;
}

.popupDateLbl {
    color: var(--popupDateLblColor);
    font-family: 'Lato';
    font-size: .75rem;
}

.popupSubHdCnt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    margin-bottom: 10px;
}

.popupMsgSct {
    margin-top: 1.5vh;
    min-height: 8.5vh;
    font-family: 'Lato';
    font-weight: 400;
    font-size: .875rem;
    width: 100%;
    color: var(--popupTxtColor);
}
.popupMsgSctB{
    font-family: 'Lato';
    font-weight: 400;
    font-size: .875rem;
    width: 100%;
    color: var(--popupTxtColor);
    font-weight: bold;
    min-height: auto;
    margin-top: 0;
    width: auto;
}

.popupBtnSct {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    width: 100%;
    justify-content: center;
}

.popupBtnSct button {
    max-width: 190px;
}

.popMidCnt {
    /*Tamaño de estilos simliar a los botones*/
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: 100%;
    align-items: flex-end;
}

.popInptFrm {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.popInptLbl {
    font-family: 'Lato';
    font-weight: 300;
    color: var(--popupFrmLblColor);
    font-size: .75rem;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    width: calc(100% - 10px);
}

.popInptCnt {
    border: 1px solid #D7D7D7;
    border-radius: 6px;
    height: 40px;
    width: 100%;
    position: relative;
}

.popInptCnt:has(input[readonly],input[disabled],select[disabled],textarea[disabled]) {
    border-color: transparent;
}

.popInptCnt:not(:has(.popLblLeft)):has(select)::after, .popInptCnt>.popLblLeft:has(select)::after {
    content: "\f078";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    font-size: 0.75rem;
    pointer-events: none;
    position: absolute;
    right: 5px;
    bottom: 0;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
}

.popInptCnt:has(.textarea) {
    margin: 0;
    height: auto;
    width: calc(100% - 2px);
}

.optList {
    position: absolute;
    overflow-y: auto;
    max-height: 18vh;
    max-width: 20vw;
    z-index: 3;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 5px 12px 0px rgb(65 65 65 / 28%);
}

.optList option {
    min-height: 25px;
    font-size: .875rem;
    font-family: 'Lato';
    font-weight: 400;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    word-break: break-word;
    width: calc(100% - 20px);
    white-space: break-spaces;
    border-bottom: 1px solid var(--colorInptDis);
    cursor: pointer;
}

.optList option:hover{
    background-color: var(--pageTblRowBgAlt);
}

.optList option[disabled] {
    color: var(--disabledOption);
    opacity: .8;
    pointer-events: none;
}

.popInptCnt select.popInpt {
    padding: 0px 10px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 20px;
}

.popInptCnt:has(.errMsgLbl) {
    border-color: var(--errColor);
}

.popInptCnt:has(.popLblLeft) {
    display: flex;
    flex-direction: row;
}

.poupDelItemLbl:has(.errMsgLbl) {
    border-color: var(--errColor);
}

/*Mensaje exitoso global*/
.successMsgBox {
    position: fixed;
    z-index: 450;
    bottom: -10vh;
    display: flex;
    width: 91.5%;
    font-family: 'Lato';
    font-size: .875rem;
    left: 2.5%;
    height: 7vh;
    max-height: 60px;
    min-height: 30px;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--successBg);
    border-radius: 6px;
    opacity: 0.9;
    color: var(--successColor);
    font-weight: 400;
    padding-left: 2.5%;
    animation: success-slide;
}

.successMsgBox span:first-child {
    padding-right: 1.5%;
}

.popInpt {
    width: 100%;
    max-width: none;
    margin: 0;
    height: 100%;
    padding: 0;
    border: none;
    color: var(--popupInptColor);
    font-family: 'Lato';
    font-weight: 400;
    font-size: .875rem;
    outline: none;
    border-radius: inherit;
    background-color: var(--popupInptBg);
}

.popInpt::placeholder {
    color: #D7D7D7;
}

.popInpt.textarea {
    display: block;
    resize: none;
    height: 20px;
    width: calc(100% - 20px);
    padding: 9px 10px;
}


.popInpt[type="text"], .popInpt[type="password"] {
    padding: 0px 10px;
    width: calc(100% - 20px);
}

.popInpt[type="date"] {
    text-indent: 5px;
}


.popInpt[type="number"]::-webkit-outer-spin-button,
.popInpt[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Firefox */
.popInpt[type="number"] {
    padding: 0px 10px;
    width: calc(100% - 20px);
    -moz-appearance: textfield;
    appearance: textfield;
    /*-webkit-appearance: none;*/
}

.popInpt[readonly], .popInpt[disabled] {
    background-color: var(--bgInptDisabled);
    color: var(--colorInptDis);
    opacity: 1;
}

.readPwd {
    position: absolute;
    bottom: 0;
    height: 100%;
    display: flex;
    right: 4%;
    align-items: center;
    color: #D7D7D7;
    font-size: 1rem;
}

.popLblLeft {
    background-color: #D7D7D7;
    width: 50%;
    height: 100%;
    font-family: 'Lato';
    font-weight: 400;
    color: var(--popupInptColor);
    font-size: .875rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    position: relative;
}

.popLblLeft~input[type="number"],
.popLblLeft~input[type="text"] {
    width: calc(50% - 20px);
}

.popSwitchFrm {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.popSwitchFrm .popInptLbl {
    padding-bottom: 2px;
    width: auto;
}

.popSwitchFrm .popInptCnt {
    border: none;
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.poupDelItemLbl {
    width: 100%;
    color: var(--popupTxtColor);
    font-family: 'Lato';
    font-weight: bold;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F7F8;
    border-color: #D7D7D7;
    margin-bottom: 4vh;
    border: 1px solid #D7D7D7;
    border-radius: 6px;
    height: 38px;
    position: relative;
    text-align: center;
}

/*Header del popup pestañas*/
.popupBarHeadTbl {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
}

.popupBarHead {
    position: absolute;
    transition: all .3s;
    width: auto;
    height: 100%;
    background-color: var(--popupHeadColorActv);
}

.popupHeadMenu {
    position: relative;
    margin-right: auto;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 2vh;
}

.popupHMenuTbl {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    column-gap: 15px;
}

.popupHMenuOpt {
    padding: 10px 5px;
    font-weight: 400;
    font-size: .875rem;
    font-family: 'Lato';
    cursor: pointer;
}

.popupHMenuOpt[selected="1"] {
    cursor: auto;
    color: var(--popupHeadColorActv);
    border-color: var(--popupHeadColorActv);
}

.popupHMenuOpt[disabled] {
    cursor: auto;
    color: var(--popupHeadColorDis);
    border-color: var(--popupHeadColorDis);
}

.popupHideVw {
    max-width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
}

.popupFullCnt {
    left: 0%;
    flex-direction: row;
    display: flex;
    position: relative;
    transition: all .3s;
}

.popupw200 {
    width: 200%;
}

.popupw300 {
    width: 300%;
}

.popupFrmCnt {
    margin-right: 5px;
    margin-left: 5px;
}

.popupw200 .popupFrmCnt {
    width: calc(50% - 10px);
}

.popupw300 .popupFrmCnt {
    width: calc(33.333333% - 10px);
}

.botLine {
    border-bottom: 1px solid #DCE0E4;
    margin-bottom: 15px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 18px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--switchBg);
    -webkit-transition: transform .4s;
    transition: transform .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 15px;
    left: 2px;
    bottom: 2px;
    background-color: var(--switchColor);
    -webkit-transition: transform .4s;
    transition: transform .4s;
}

input:checked+.slider {
    background-color: var(--switchActvBg);
}


input:checked+.slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 33px;
}

.slider.round:before {
    border-radius: 50%;
}

input[type="checkbox"][disabled]+.slider {
    cursor: auto;
    background-color: var(--bgInptDisabled);
}

input[type="checkbox"][disabled]+.slider:before {
    background-color: #FFF;
}


/*hsata acá*/

/*ESTILO PARA BOTONES GLOBAL*/

/*REF "fm" para firstmodel */
.fmBtn {
    cursor: pointer;
    display: flex;
    color: var(--firstBtnColor);
    background-color: var(--firstBtnBg);
    border-radius: 10px;
    width: calc(100% - 1.6px);
    border: 1px solid var(--firstBtnBg);
    height: 40px;
    align-items: center;
    justify-content: center;
    font-family: 'Lato';
    font-weight: bold;
    text-transform: uppercase;
    font-size: .87rem;
}

/*REF "sm" para secondmodel */
.smBtn {
    cursor: pointer;
    display: flex;
    color: var(--secondBtnColor);
    background-color: var(--secondBtnBg);
    border-radius: 10px;
    width: calc(100% - 1.6px);
    border: 1px solid var(--secondBtnColor);
    height: 40px;
    align-items: center;
    justify-content: center;
    font-family: 'Lato';
    font-weight: bold;
    text-transform: uppercase;
    font-size: .87rem;
    outline: none;
}

.fmBtn[inactive] {
    background-color: var(--firstBtnDisBg);
    border-color: var(--firstBtnDisBg);
    cursor: auto;
}

/*Box general para error en INPT*/
.errmsgSct {
    display: none;
    flex-direction: row;
    color: var(--errColor);
    margin-bottom: 10px;
    margin-top: -10px;
    align-items: center;
}

.errmsgSct i {
    font-size: .75rem;
}

.errmsgSct:has(.errMsgLbl) {
    display: flex;
}

.errmsgSct .errMsgLbl {
    position: relative;
    width: auto;
}

.errMsgLbl {
    /*top: 100%;
    left: 5px;*/
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: .75rem;
    text-align: left;
    font-weight: 400;
    font-family: 'Lato';
    width: calc(100% - 5px);
    padding-left: 5px;
    color: var(--errColor);
    outline: none;
}

.filterCnt .errMsgLbl, .popInpt.textarea+.errMsgLbl, .popLblLeft+.popInpt+.errMsgLbl, .poupDelItemLbl .errMsgLbl, .popLblLeft~.popInpt~.errMsgLbl{
    top: 100%;
    left: 5px;
    position: absolute;
}

.tblMsgErr {
    position: relative;
    height: auto;
    padding-bottom: 10px;
}

.tblMsgErr .errMsgLbl {
    top: 0;
    left: 0;
    width: max-content;
    position: relative;
}

/*FOOTER GLOBAL CSS*/
footer {
    width: 100%;
    height: 40px;
    text-align: center;
    color: var(--fotColor);
    font-family: 'Lato';
    font-weight: 300;
    font-size: .75rem;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*ESTILOS GLOBALES PARA LOS MODULOS CMS DE LA APLICACION*/
/*TABLE*/
.pgSctTbl {
    padding: 15px;
    height: calc(100% - 88px);
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    background-color: var(--pageTblBg);
    border-radius: 8px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.03);
}

.orderCol[colval] {
    cursor: pointer;
}

.orderColMult {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 3px;
}

.orderColMult span{
    font-size: .670rem;
}

.tblSct {
    width: 100%;
    height: 87%;
    padding-bottom: 0;
    overflow: auto;
}

.tblSct table, .tblSct .table {
    width: 100%;
    border-spacing: 0;
    height: 100%;
}

.tblSct thead, .tblSct .thead {
    display: table;
    /*Se resta el scrollbar del header*/
    width: 100%;
}

.tblSct thead tr, .tblSct .thead .tr{
    display: table;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--pageTblHeaderBg);
    color: var(--pageTblHeaderColor);
    font-family: 'Lato';
    font-weight: bold;
    font-size: .875rem;
    height: 30px;
}

.tblSct tbody,
.tblSct .tbody {
    /* to enable vertical scrolling */
    display: block;
    height: calc(100% - 30px);
    overflow-y: auto;
    /* keeps the scrollbar even if it doesn't need it; display purpose */
}

.tblSct tbody::-webkit-scrollbar,
.tblSct .tbody::-webkit-scrollbar {
    width: 7px;
    background: var(--menuBg);}

.tblSct tbody::-webkit-scrollbar-track,
.tblSct .tbody::-webkit-scrollbar-track {
    border-radius: 10px;
}

.tblSct tbody::-webkit-scrollbar-thumb,
.tblSct .tbody::-webkit-scrollbar-thumb {
    background: var(--menuScrollBar);
    border-radius: 10px;
}

.tblSct tbody::-webkit-scrollbar-thumb:hover,
.tblSct .tbody::-webkit-scrollbar-thumb:hover{
    background: var(--menuScrollBar);
}

.tblSct tbody tr {
    color: var(--pageTblColor);
    background-color: var(--pageTblBg);
    font-family: 'Lato';
    font-weight: 400;
    font-size: .875rem;
    height: 38px;
    display: table;
    width: 100%;
    box-sizing: border-box;
}

.tblSct .tbody>div{
    background-color: var(--pageTblBg);
}

.tblSct .tbody .tr{
    color: var(--pageTblColor);
    background-color: transparent;
    font-family: 'Lato';
    font-weight: 400;
    font-size: .875rem;
    height: 38px;
    display: table;
    width: 100%;
    box-sizing: border-box;
}

.tblSct tbody tr:nth-child(2n),
.tblSct .tbody>div:nth-child(2n) {
    background-color: var(--pageTblRowBgAlt);
}

.tblSct tbody tr:hover, .tblSct .tbody>div:hover {
    background-color: var(--pageTblBgHov);
    cursor: pointer;
}

.tblSct .tr>div{
    vertical-align: middle;
    text-align: center;
    word-break: break-all;
    display: table-cell;
}

.tblSct th,
.tblSct td {
    vertical-align: middle;
    text-align: center;
    word-break: break-all;
}
/*

/***TABLE CNT SCROLL*****
.tblSct::-webkit-scrollbar {
    width: 7px;
    background: var(--menuBg);
}

.tblSct::-webkit-scrollbar-track {
    border-radius: 10px;
}

.tblSct::-webkit-scrollbar-thumb {
    background: var(--menuScrollBar);
    border-radius: 10px;
}

.tblSct::-webkit-scrollbar-thumb:hover {
    background: var(--menuScrollBar);
}

.tblSct table {
    width: 100%;
    border-spacing: 0;
}

.tblSct thead tr {
    background-color: var(--pageTblHeaderBg);
    color: var(--pageTblHeaderColor);
    font-family: 'Lato';
    font-weight: bold;
    font-size: .875rem;
    height: 30px;
}

.tblSct th,
.tblSct td {
    vertical-align: middle;
    text-align: center;
    word-break: break-all;
}
*/
.cell3{
    width: 3%;
}

.cell4{
    width: 4%;
}

.cell5{
    width: 5%;
}

.cell6{
    width: 6%;
}

.cell7{
    width: 7%;
}

.cell8 {
    width: 8%;
}

.cell9{
    width: 9%;
}

.cell10 {
    width: 10%;
}

.cell12 {
    width: 12%;
}

.cell12Mid {
    width: 12.5%;
}

.cell14{
    width: 14%;
}

.cell15 {
    width: 15%;
}

.cell16 {
    width: 16%;
}

.cell18 {
    width: 18%;
}

.cell20 {
    width: 20%;
}

.cell25 {
    width: 25%;
}

.cell30 {
    width: 30%;
}

.cell35 {
    width: 35%;
}

.cell40 {
    width: 40%;
}

.cell45 {
    width: 45%;
}

.cell50 {
    width: 50%;
}

.cell55 {
    width: 55%;
}

.cell70 {
    width: 70%;
}

.cell80{
    width: 80%;
}

.cell100 {
    width: 100%;
}

.aCenter{
    text-align: center;
}

.aRight {
    text-align: right;
}

th.aRight,
td.aRight,
.tr>div.aRight{
    padding-right: 10px;
    text-align: right;
}

th.aLeft,
td.aLeft,
.tr>div.aLeft {
    padding-left: 10px;
    text-align: left;
}

.tblBtns {
    max-width: 70px;
    height: 100%;
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tblbtnIc {
    display: flex;
    cursor: pointer;
    min-width: 15px;
    text-align: center;
    color: var(--pageTblIcColor);
    height: 100%;
    align-items: center;
    justify-content: center;
}

.tblbtnIc[disabled]{
    color: var(--firstBtnDisBg);
    pointer-events: none;
}

/*Seccion de paginado dentro de la seccion de la tabla*/
.pagSct {
    height: 12%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}

.pagNumofrec {
    color: var(--pageTblColor);
    font-size: .72rem;
    font-family: 'Lato';
    font-weight: 400;
    padding-bottom: 3px;
}

.pagBox {
    height: 35px;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    flex-direction: row;
    align-items: center;
    background-color: var(--pageTblRowBgAlt);
}

.pagBoxNums {
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--pageTblColor);
}

span.pagArrow {
    width: 20px;
    display: inline-block;
    text-align: center;
    font-size: .74rem;
    padding: 0px 10px;
    color: var(--pageTblColorSel);
    cursor: pointer;
}

.arrowDis span.pagArrow {
    color: rgb(24 25 25 / 30%);
    cursor: auto;
}

span.pagNum {
    width: 20px;
    display: inline-block;
    text-align: center;
    font-size: .75rem;
    padding: 7px 5px;
    font-family: 'Lato';
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
}

.pagBoxPrev span.pagArrow:first-child {
    padding-right: 0px;
}

.pagBoxNext span.pagArrow:last-child {
    padding-left: 0px;
}

span.pagNum[selected="1"] {
    background-color: var(--pageTblSel);
    color: var(--pageTblColorSel);
    /*Evitamos que pulse el que esta seleccionado*/
    pointer-events: none;
}


/*HEAD*/

.pgSctHead {
    display: flex;
    align-items: center;
    width: 100%;
    height: 38px;
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: space-between;
}

.filterCnt {
    width: 100%;
    display: flex;
    column-gap: 1.5%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
}

.searchSct {
    display: flex;
    width: 25%;
    height: 100%;
    background-color: var(--searchBg);
    border-radius: 6px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.03);
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.searchStatus {
    width: 20%;
}

.searchSct:has(select)::after {
    content: "\f078";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    font-size: 0.75rem;
    pointer-events: none;
    position: absolute;
    right: 5px;
    bottom: 0;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
}

/*
.searchSct:has(.errMsgLbl) .errMsgLbl {
    width: max-content;
}*/
.searchDaterange span {
    background-color: #D7D7D7;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: 'Lato';
    font-weight: 400;
    padding-left: 5px;
    padding-right: 5px;
}

.pageSect input[type="date"] {
    border: none;
    font-family: 'Lato';
    font-weight: 400;
    font-size: .875rem;
    outline: none;
}

input[type="time"]{
    border: none;
    font-family: 'Lato';
    font-weight: 400;
    font-size: .875rem;
    outline: none;
    text-align: center;
}

.searchSct select {
    width: 100%;
    height: 80%;
    border: none;
    outline: none;
    padding-left: 10px;
    font-size: .875rem;
    font-family: 'Lato';
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--searchBg);
}

.searchInpt {
    font-size: .875rem;
    font-family: 'Lato';
    font-weight: 400;
    outline: none;
    border: none;
    padding-left: 10px;
    width: calc(100% - 45px);
}

.searchInpt::placeholder {
    color: #D7D7D7;
}

.searchIc {
    color: var(--searchIc);
    padding-right: 5px;
    padding-left: 5px;
    font-size: .75rem;
    width: 25px;
    text-align: center;
}

.addBtn {
    width: 130px;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 10px;
    align-items: center;
    justify-content: space-between;
    color: var(--addBtnColor);
    background-color: var(--addBtnBg);
    border-radius: 10px;
    text-align: center;
    font-size: .875rem;
    cursor: pointer;
}

.addBtn i {
    width: 20%;
    font-size: 1rem;
}

.addBtn span {
    width: 80%;
    font-family: 'Lato';
    font-weight: bold;
}

.addBtn[disabled] {
    background-color: var(--firstBtnDisBg);
    border-color: var(--firstBtnDisBg);
    cursor: auto;
    pointer-events: none;
}