@import url("./menu.css");
/*FONTS DEFINICIONES*/

/*ROBOTO*/

/*BOLD*/
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/static/Roboto-Bold.ttf");
    font-weight: bold;
}
/*REGULAR*/
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/static/Roboto-Regular.ttf");
    font-weight: 400;
}
/*MEDIUM*/
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/static/Roboto-Medium.ttf");
    font-weight: 500;
}

/*VARIABLES GLOBALES*/
:root {
    --waitBg: rgba(0, 0, 0, 0.41);
    --waitColor: #FFF;
    --secFontColor: #EA8B1D;
    --fotColor: #9B9B9B;
    --fBtnBg: #EA8B1D;
    --fBtnColor: #FFFFFF;
    --sBtnBg: #F8F8F8;
    --sBtnColor: #EA8B1D;
    --bgContent: #F8F8F8;
    --fontColor: #3C424A;
    --lblPopInpt : rgba(60, 66, 74, .5);
    --arrowDis: #3c424a80;
    --popBoxBg: #FFFFFF;
    --popCntBg: rgba(0, 0, 0, 0.65);
    --errMsgColor: #eb0000;
    --switchColor: #FFFFFF;
    --switchBg: #F8F8F8;
    --switchActvBg: #EA8B1D;
    --icColor: #9A9DA1;
}

html {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

input::placeholder,
textarea::placeholder {
    color: var(--icColor);
}

select[disabled]{
    opacity: 1;
}

/*Ojito para formularios de contraseña*/
.readPwd {
    color: var(--icColor);
    font-size: .95rem;
    cursor: pointer;
}

/*Retutilización de visual en complejidad de clave*/
.frmMsgErr {
    background-color: #EDEDED;
    border-radius: 6px;
    width: calc(100% - 20px);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--fontColor);
    font-family: 'Roboto';
    font-size: .875rem;
    padding: 10px;
    margin-top: 5px;
}

.frmPwdCondList {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 2px;
    padding-top: 5px;
}

.frmMsgErr i {
    color: #9A9DA1;
    padding-right: 5px;
}

/*WAIT SCREEN*/
.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;
}

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

/*ESTILOS GLOBALES REUTILIZABLES*/
.pageCnt{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
}

.contentSct {
    width: auto;
    height: auto;
    flex-grow: 1;
    background-color: var(--bgContent);
}

.content {
    display: flex;
    align-items: center;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100% - 115px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
}

.fBtn{
    background-color: var(--fBtnBg);
    color: var(--fBtnColor);
    font-weight: 500;
    font-family: 'Roboto';
    border-radius: 6px;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    cursor: pointer;
}

.sBtn {
    background-color: var(--sBtnBg);
    color: var(--sBtnColor);
    font-weight: 500;
    font-family: 'Roboto';
    border-radius: 6px;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    cursor: pointer;
}

/**Estilos globales asociados a las tablas dentro de los modulos**/
.tblBox {
    background-color: #fcfcfc;
    border: 1px solid #DADADA;
    border-radius: 4px;
    opacity: 1;
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

/*Head sección de buscar, filtros y boton agregar*/
.searchSct{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

.searchCnt {
    display: flex;
    height: 100%;
    padding: 0 5px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.searchBox {
    background-color: transparent;
    border-radius: 4px;
    opacity: 1;
    width: 120px;
    transition: all .2s;
    height: 32px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 10px;
}

.searchBox i:last-child {
    display: none;
}

.searchBox[active]{
    width: 300px;
    background-color: #f5f7f8;
}

.searchBox[active] i:last-child {
    display: block;
}

.searchBox i {
    color: var(--icColor);
    padding: 0 5px;
    font-size: 0.825rem;
}

.search+i{
    padding-right: 10px;
}

.search {
    font-size: 0.875rem;
    font-family: 'Roboto';
    font-weight: 400;
    flex-grow: 1;
    width: auto;
    background: transparent;
    border: none;
    padding: 0 5px;
    outline: none;
    color: var(--fontColor);
    caret-color: var(--secFontColor);
}

.filtCnt {
    min-width: 100px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: 40px;
    align-items: center;
    position: relative;
}

.filtIcBtn {
    width: auto;
    color: var(--icColor);
    padding: 3px 5px;
    margin-right: 10px;
    font-size: 0.825rem;
    cursor: pointer;
    height: 12px;
}

.addBtn{
    margin-right: 10px;
    display: flex;
    width: auto;
    flex-direction: row;
    column-gap: 5px;
    padding: 5px 0px;
    padding-right: 15px;
    padding-left: 10px;
    cursor: pointer;
    color: var(--secFontColor);
    font-family: 'Roboto';
    font-size: .875rem;
    font-weight: 400;
    border-right: 1px solid #DADADA;
    align-items: center;
}

.disabledAdd {
    color: #ececec;
}

/*Sección de la tabla header, rows, celdas*/
.table{
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

.thead {
    background-color: #EEF2F5;
    width: 100%;
}

.tr{
    border-top: 1px solid #DADADA;
}

.thead .tr{
    width: 100%;
    height: 43px;
}

.thead .th {
    color: var(--fontColor);
    font-family: 'Roboto';
    font-size: .875rem;
    vertical-align: middle;
}

.tbody .tr {
    width: 100%;
    height: 43px;
}

.tbody .tr:last-child {
    border-bottom: 1px solid #DADADA;
}

.tbody .tr[itemid]:hover{
    background-color: #FDF2E6;
    border-color: #E9D3BB;
    cursor: pointer;
}

.tbody .td {
    color: var(--fontColor);
    font-family: 'Roboto';
    font-size: .875rem;
    vertical-align: middle;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tbody .td.psvSpaces {
    white-space-collapse: preserve;
    text-wrap-mode: nowrap;
}

.statusAct {
    background-color: rgb(0 172 78 / 20%);
    border-radius: 16px;
    color: #00AC4E;
    display: flex;
    height: 30px;
    align-items: center;
    padding: 0 10px;
    width: max-content;
}

.statusDis {
    background-color: rgb(60 66 74 / 20%);
    border-radius: 16px;
    color: #3C424A;
    display: flex;
    height: 30px;
    align-items: center;
    padding: 0 10px;
    width: max-content;
}

.orderCol{
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.orderCol[colval]{
    cursor: pointer;
}

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

.cellLeft {
    padding: 0;
    padding-left: 2%;
    text-align: left;
}

.cellRight {
    padding: 0;
    padding-right: 2%;
    text-align: right;
}

.cellCenter {
    padding: 0;
    padding-left: 1%;
    padding-right: 1%;
    text-align: center;
}

.cellRight .orderCol {
    justify-content: flex-end;
}

.cellLeft .orderCol {
    justify-content: flex-start;
}

.cellCenter .orderCol {
    justify-content: center;
}

.cell6 {
    width: 6%;
}

.cell8 {
    width: 8%;
}

.cell10 {
    width: 10%;
}

.cell12 {
    width: 12%;
}

.cell13 {
    width: 13%;
}

.cell15 {
    width: 15%;
}

.cell18 {
    width: 18%;
}

.cell20{
    width: 20%;
}

.cell22 { 
    width: 22%;
}

.cell25 {
    width: 25%;
}

.cell28 {
    width: 28%;
}

.cell30 {
    width: 30%;
}

.cell35 {
    width: 35%;
}

.cell40 {
    width: 40%;
}

.cell50 {
    width: 50%;
}

.cell60 {
    width: 60%;
}

.cell65 {
    width: 65%;
}

.cell70 {
    width: 70%;
}

.cell75 {
    width: 75%;
}

.cell80 {
    width: 80%;
}

.cell100 {
    width: 100%;
}

.tbody .tr[itemid]:hover .btnRowCnt{
    visibility: visible;
}

.btnRowCnt {
    visibility: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.btnRowCnt span {
    border-radius: 4px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    color: var(--secFontColor);
    cursor: pointer;
}

.btnRowCnt span:hover{
    background-color: #fbe6cf;
}



/*Footer de la tabla*/
.paginationCnt {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, .5);
    /*border-top: 1px solid #DADADA;*/
    border-radius: 4px;
    column-gap: 20px;
    padding-right: 10px;
    height: 43px;
    align-items: center;
}

.numofrecCnt{
    color: var(--fontColor);
    font-family: 'Roboto';
    font-weight: 400;
    font-size: .875rem;
}

select.numofrecPag {
    font-family: 'Roboto';
    font-weight: 400;
    background: #F8F8F8;
    border: none;
    padding: 5px 10px;
    margin-left: 15px;
    outline: none;
}

.recordsCnt {
    color: var(--fontColor);
    font-family: 'Roboto';
    font-weight: 400;
    font-size: .875rem;
}

.arrowsCnt span {
    padding: 0 6px;
    color: var(--fontColor);
}

.arrowsCnt span[disabled]{
    pointer-events: none;
    color: var(--arrowDis);
}

/*Filtro popup dentro de la tabla*/
.filtBox {
    position: absolute;
    width: 340px;
    max-height: 559px;
    top: 0;
    transition: all .2s;
    overflow: hidden;
    height: 0;
    display: flex;
    align-items: flex-start;
    z-index: 2;
}

.filtBoxScroll {
    border: 1px solid #DADADA;
    background-color: #FFFFFF;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    max-height: 556px;
    width: 100%;
}

.filtHead {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: 39px;
    align-items: center;
    padding: 0 5px;
    border-bottom: 1px solid #DADADA;
}

.filtHead i {
    color: var(--icColor);
    font-size: .825rem;
    cursor: pointer;
}

.filtHeadTit {
    color: #3C424A;
    font-family: Roboto;
    font-size: .875rem;
    text-align: left;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    column-gap: 15px;
}

.filtRowSct {
    padding: 12px 5px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #DADADA;
}

.filtTbl {
    flex-grow: 1;
}

.filtRowLbl {
    color: var(--fontColor);
    font-family: 'Roboto';
    font-size: .75rem;
    text-align: left;
    padding-bottom: 10px;
    font-weight: bold;
}

.filtRowDate{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 15px;
}

.filtInptCnt {
    background-color: #F8F8F8;
    border-radius: 4px;
    width: 100%;
    height: 35px;
}

.filtInpt {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    height: 100%;
    color: var(--fontColor);
    font-family: 'Roboto';
    font-weight: 400;
    font-size: .875rem;
}

.filtBtnCnt{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.filtBtnCnt>.fBtn{
    font-weight: 400;
    text-transform: uppercase;
}

/*Asignación de filtros cómo etiquetas al header*/
.clearFilt{
    cursor: pointer;
    color: var(--secFontColor);
    font-family: 'Roboto';
    font-size: .75rem;
    font-weight: 400;
    margin-left: 10px;
}

.filtTag {
    background-color: #EEF2F5;
    border-radius: 16px;
    width: auto;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    column-gap: 15px;
    color: var(--fontColor);
    font-weight: 400;
    font-family: 'Roboto';
    font-size: .875rem;
    margin: 5px 2.5px;
}

.filtTag>span {
    white-space-collapse: preserve;
    text-wrap-mode: nowrap;
}

.filtTag i {
    color: var(--icColor);
    font-size: .75rem;
    cursor: pointer;
}

/*Estilos de toast box*/
.toastBox {
    top: 0;
    z-index: 2000;
    width: max-content;
    position: fixed;
    max-width: 400px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(0, 172, 78, 80%);/*rgba(27 197 189 / 80%);*/
    animation: showToast .5s ease-in-out;
    right: 15px;
    display: flex;
    padding: 5px 15px;
    color: #FFFFFF;
    top: 20px;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-family: 'Roboto';
    font-size: 1rem;
    column-gap: 10px;
    transition: right .5s ease-out, opacity .3s ease-out;
}

.toastBox:hover{
    background-color: rgb(0, 172, 78);
}

@keyframes showToast {
    0% {
        right: -410px;
    }

    100% {
        right: 15px;
    }
}

/*Estilos de popup ventana emergente de edición/creación de formularios*/
.popupCnt {
    width: /*calc(100vw - 284px);*/ 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: /*284px;*/ 0;
    transition: all .3s;
    background-color: var(--popCntBg);
    opacity: 0;
    z-index: 2;
}

.popupSubCnt {
    width:100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    transition: all .3s;
    background-color: var(--popCntBg);
    opacity: 0;
    z-index: 5;
}

.popSessCnt {
    z-index: 10;
}

.icWarnSess {
    margin-top: 10px;
    width: 100%;
    height: 65px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/warning.svg);
}

/*
.closed+.contentSct .popupCnt{
    width: calc(100vw - 65px);
    left: 65px;
}
*/

.popupBox {
    background-color: var(--popBoxBg);
    border: 1px solid #DADADA;
    border-radius: 16px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    width: 95%;
    max-width: 360px;
    height: auto;
    padding: 30px 45px;
    position: relative;
    display: none;
}

.popupBox#deleteFrm {
    max-width: 400px !important;
}

.sessionBox {
    max-width: 390px !important;
    padding: 30px 30px;
}

.popupClose, .popupCloseTop {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.popupHd{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.popupTit {
    color: var(--fontColor);
    font-weight: bold;
    font-family: 'Roboto';
    font-size: 1.5rem;
    width: 100%;
    text-align: left;
}

.popupErrMsg{
    padding-top: 10px;
    width: 100%;
    text-align: left;
    font-family: 'Roboto';
    font-size: .75rem;
    color: var(--errMsgColor);
}

.inptErrBox {
    border-color: var(--errMsgColor) !important;
}

.inptErrBox .ck.ck-content{
    border-color: var(--errMsgColor) !important;
}

.inptErrBox input, .inptErrBox select {
    color: var(--errMsgColor) !important;
}

.popupDataFrm {
    padding: 15px 0px;
    padding-top: 5px;
}

.popupDataGrp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.popupDataGrp>div {
    width: calc(50% - 7.5px);
}

.popupInptCnt[disabled] {
    background-color: #F8F8F8;
}

.popupInptCnt {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 5px;
    padding: 5px 0px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.popInptDaterange {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 15px;
    align-items: center;
}

.popInptDaterange span {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 0.75rem;
    color: rgb(60 66 74 / 50%);
}

.popInptDaterange .popInpt {
    flex-grow: 1;
}

.popInptLbl {
    color: var(--lblPopInpt);
    font-family: 'Roboto';
    font-size: .75rem;
    text-align: left;
    padding-left: 3px;
}

.popInpt {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    margin: 0;
    min-height: 25px;
    padding: 0;
    display: block;
    position: relative;
}

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

.popInpt input,
.popInpt select,
.popInpt textarea {
    background-color: transparent;
    color: var(--fontColor);
    font-family: 'Roboto';
    font-size: 1rem;
    border: 0;
    padding: 0;
    margin: 0;
    outline: none;
    width: calc(100% - 3px);
    appearance: none;
    -webkit-appearance: none;
    height: 100%;
    padding-left: 3px;
}

.popInptSrch, .popInptPwd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    margin: 0;
    min-height: 25px;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 5px;
}

.popInptSrch i {
    color: var(--icColor);
    font-size: .875rem;
}

.popInptSrch i.fa-xmark {
    cursor: pointer;
}
.popInptSrch input:disabled~i.fa-xmark{
    cursor: auto;
    pointer-events: none;
}

.popInptSrch input, .popInptPwd input{ 
    background-color: transparent;
    color: var(--fontColor);
    font-family: 'Roboto';
    font-size: 1rem;
    border: 0;
    padding: 0;
    margin: 0;
    outline: none;
    width: calc(100% - 3px);
    appearance: none;
    -webkit-appearance: none;
    height: 100%;
    padding-left: 3px;
}

.popInpt textarea {
    display: block;
    resize: none;
    height: 20px;
    padding: 5px 0;
    max-height: 150px;
    padding-left: 3px;
    width: calc(100% - 3px);
}

.popInpt textarea::-webkit-scrollbar {
    width: 7px;
    background: #F8F8F8;
}

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

.popInpt textarea::-webkit-scrollbar-thumb {
    background: #EEF2F5;
    border-radius: 10px;
}

.popInpt textarea::-webkit-scrollbar-thumb:hover {
    background: #EEF2F5;
}

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

.popInpt input:disabled, 
.popInpt select:disabled,
.popInptSrch input:disabled,
.popInpt textarea:disabled {
    color: var(--fontColor);
}

.ck.ck-focused:not(.ck-editor__nested-editable){
    border-color: var(--fBtnBg) !important;
}
.ck.ck-content.ck-editor__editable.ck-read-only{
    /*opacity: .5 !important;*/
}

.popInpt.popInptPhone {
    display: flex;
    flex-direction: row;
    column-gap: 1px;
}

.popInpt.popInptPhone input:first-child {
    width: 40px;
    text-align: left;
}

.popInpt.popInptPhone input:last-child {
    padding-left: 0;
}

/* The switch - the box around the slider */
.popupSwchCnt {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.popupSwchCnt .popInptLbl {
    color: var(--fontColor);
    font-weight: bold;
    min-width: 55px;
    font-size: .875rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 18px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--lblPopInpt);
    -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);
}

.slider.round {
    border-radius: 33px;
}

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

input[type="checkbox"][disabled]+.slider {
    cursor: auto;
    background-color: rgba(60, 66, 74, .2);
}

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

.popupBtnCnt{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    column-gap: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.popupBtnCnt button {
    border: none;
}

.popupBtnCnt .sBtn{
    background-color: transparent;
}

.popupDelMsg {
    color: var(--fontColor);
    font-family: 'Roboto';
    font-size: 1rem;
    text-align: left;
    margin-top: 35px;
}

.popupDelWarn {
    background-color: #FBE9D3;
    border-radius: 6px;
    width: calc(100% - 30px);
    text-align: left;
    font-family: 'Roboto';
    color: var(--secFontColor);
    font-size: .75rem;
    padding: 15px 15px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.popupDelWarn span {
    text-transform: lowercase;
}

.popupDataHead {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 50px;
}

.popfrmHeadSct {
    height: 100%;
    flex-grow: 1;
    text-transform: uppercase;
    color: #666B70;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .5s;
    text-align: center;
}

.popfrmHeadSct[active]{
    color: var(--fBtnBg);
    background-color: #FDF2E6;
}

.popfrmHeadSct[disabled]{
    pointer-events:none;
    opacity: .4;
}

.popfrmHeadLine {
    position: absolute;
    height: 2px;
    background-color: var(--fBtnBg);
    bottom: 0;
    transition: all .3s;
}

.popupDataHide{
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.popFullviewSct{
    display: flex;
    flex-direction: row;
    transition: all .3s;
    justify-content: space-around;
}

.popFullviewSct .viewCnt{
    overflow: hidden;
    transition: all .3s;
}

.fview100 {
    width: 100%;
}

.ck.ck-content::-webkit-scrollbar {
    width: 7px;
    background: #F8F8F8;
}

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

.ck.ck-content::-webkit-scrollbar-thumb {
    background: #EEF2F5;
    border-radius: 10px;
}

.ck.ck-content::-webkit-scrollbar-thumb:hover {
    background: #EEF2F5;
}

.ck.ck-powered-by {
    display: none !important;
}

.popInptLbl.expandBtnCnt {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.expandBtn, .expandBtnSel {
    margin-right: 10px;
    display: flex;
    width: auto;
    flex-direction: row;
    column-gap: 5px;
    padding-left: 25px;
    cursor: pointer;
    color: var(--secFontColor);
    font-family: 'Roboto';
    font-weight: 400;
    align-items: center;
}

.popInptXpanded, .popInptXpandedS {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100% !important;
    z-index: 5;
    background-color: #ffffff;
}

.popInptXpandedS {
    top: 25px;
    overflow-y: auto;
    color: var(--fontColor);
    font-family: 'Roboto';
    font-weight: 400;
    font-size: .9rem;
}

.vscomp-ele[disabled]+.popInptXpandedS {
    background-color: #F8F8F8;
}

/*SELECT DE BUSQUEDA LISTA*/
.optList {
    top:100%;
    position: absolute;
    overflow-y: auto;
    max-height: 20vh;
    z-index: 3;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgb(234 139 29 / 25%), 0 3px 1px -2px rgb(234 139 29 / 25%), 0 1px 5px 0 rgb(234 139 29 / 25%);
}

.optList .srchSelectOpt {
    min-height: 30px;
    font-size: .875rem;
    font-family: 'Roboto';
    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,
.optList .srchSelectOpt:hover {
    background-color: #FBE9D3;;
}

.optList option[disabled],
.optList .srchSelectOpt[disabled] {
    color: var(--colorInptDis);
    opacity: .7;
    pointer-events: none;
}

/*CONFIGURACIÓN DE VIRTUAL SELECT PARA SELECCION MULTIPLE*/
.boxscroll {
    position: relative;
}

.pop-comp-wrapper {
    z-index: 3 !important;
    box-shadow: 0 2px 2px 0 rgb(234 139 29 / 25%), 0 3px 1px -2px rgb(234 139 29 / 25%), 0 1px 5px 0 rgb(234 139 29 / 25%);
}

.vscomp-option.selected {
    background-color: #FFFFFF;
}

.vscomp-option.focused {
    background-color: #FBE9D3;
}

.vscomp-option {
    align-content: center;
}

.boxscroll .vscomp-dropbox-wrapper {
    background-color: transparent;
}

.vscomp-wrapper {
    font-size: .9rem;
}

.vscomp-wrapper input{
    font-size: .9rem;
}

.disabledClassUser{
    background-color: #ececec;
    opacity: .45;
}

.disabledClass {
    background-color: #ececec;
    opacity: .45;
    pointer-events: none;
}

.popupInptCnt .vscomp-wrapper.focused .vscomp-toggle-button,
.popupInptCnt .vscomp-wrapper:focus .vscomp-toggle-button {
    box-shadow: none;
}

.popupInptCnt .vscomp-toggle-button {
    background: transparent;
    border: none;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 3px;
    box-shadow: none;
    /*height: calc(100% + .8px);*/
}

.popupInptCnt[disabled] .vscomp-toggle-button {
    border: none;
}

.vscomp-ele[disabled] .vscomp-wrapper {
    opacity: 1;
    background-color: transparent;
    color: var(--colorInptDis);
    pointer-events: none;
}

.vscomp-ele[disabled] .vscomp-value{
    color: var(--fontColor);
}

.vscomp-arrow {
    width: max-content;
    right: 5px;
}

.vscomp-arrow::after {
    content: "";
    height: 8px;
    margin-top: -6px;
    /* width: 8px; */
    content: "\f078";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    font-size: .75rem;
    border: none;
    transform: none;
    width: auto;
    color: var(--fontColor);
}

.vscomp-wrapper .checkbox-icon::after {
    transition-duration: 0s;
    border: 2px solid #888;
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 2px;
}
.vscomp-wrapper .checkbox-icon.checked::after,
.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after {
    border: none;
    content: "\f00c";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    font-size: .75rem;
    color: #FFFFFF;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    transform: none;
    background-color: var(--secFontColor);
    justify-content: center;
}

.vscomp-option-description {
    font-size: .65rem;
}

/*SELECTOR DE STATUS GLOBAL PARA FORMULARIOS DE EVALUACIONES*/
.statusSel.popInpt {
    border: none;
    width: 90%;
    height: auto;
    min-height: auto;
    padding-left: 10px;
}

.statusEvalCnt {
    width: max-content;
    display: flex;
    align-items: center;
    background-color: #E1E2E3;
    justify-content: space-between;
    border-radius: 25px;
    padding: 5px;
    min-width: 135px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.statusEvalCntClose {
    background-color: #CCEEDC;
}

span.statusIc {
    font-size: .8rem;
    color: #9A9DA1;
    padding: 0;
    height: 12px;
    display: flex;
    align-items: flex-end;
}

.statusEvalCntClose span.statusIc {
    color: #00AC4E;
}

.statusSel select {
    font-size: .875rem;
}

.statusEvalCntClose .statusSel select {
    color: #00AC4E;
}

.statusEvalCntClose .popInpt:has(select)::after {
    color: #00AC4E;
}

.readOnlyRow {
    background-color: #dadada8f;
}

.viewExpandedOpt {
    display: flex;
    flex-direction: column;
    padding-right: 5px;
    padding-bottom: 3px;
}

.viewExpandedOpt span {
    font-size: .645rem;
}