#tblCntnt {
    --mainColor: #525252;
    --mainColor2: #BDBDBD;
    --mainColor3: #5f5f5f;
    --txtColor: #fff;
    --txtColor2: #000;
    --txtColor3: #C3C3C3;
    --btnAccent: #60BD82;
    --pad1: 6px;
    --pad2: 8px;
    --brdrRad: 5px;
    --brdrRad2: 3px;
    --selClr: #ffffff3b;
    --shadow: 4px 4px 4px 0px rgba(6, 11, 15, 0.4);
}

#tblCntnt table {
    border-collapse: collapse;
}

#tblCntnt .trng {
    width: 17px;
    height: 17px;
    display: block;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, var(--txtColor) 50%, var(--txtColor) 100%);
    position: absolute;
    right: 1px;
    bottom: 1px;

}

#tblCntnt th {
    height: 20px;
    background-color: var(--mainColor3);
    min-width: 67px;
    color: var(--txtColor);
    position: relative;
    text-align: center;
    border-right: 0.2px solid var(--txtColor);
    font-weight: normal;
    position: relative;
    padding-right: 23px;
}
#tblCntnt th>.btnFltr{
    background-color: #dbdbdb;
    color: #000;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-radius: 2px;
    cursor: pointer;
}
#tblCntnt th .panel{
    background-color: #a7a7a7;
    text-align: left;
    color: #000;
    min-width: 300px;
    min-height: 20px;
    position: absolute;
    right: 0px;
    top: 100%;
    box-shadow: var(--shadow);
    padding: 5px;
    /* border-radius: 2px; */
    /* cursor: pointer; */
}

#tblCntnt th .panel>*{
    position: relative;
}
#tblCntnt th .panel .panel{
    position: absolute;
    left: calc(100% + 6px);
    top:0px;

}


#tblCntnt th .panelCntnt{
    width: 100%;
    height: 250px;
    background-color: #fff;
    overflow: scroll;
}
#tblCntnt th  input[type="text"]{
    width: calc(100% - 5px);
    margin-bottom: 10px;
    height: 25px;
}
#tblCntnt th label{
    width: 100%;
    display: block;
    cursor: pointer;
}
.btnFltrs{
    display: block;
    width: fit-content;
    /* height: 28px; */
    background-color: #a7a7a7;
    padding: 8px;
    border-radius: 4px;
    float: left;
    margin: 10px;
    cursor: pointer;
    border: solid 1px #000;
}

#tblCntnt th .rszCol {
    /* background-color: #1b046c; */
    display: block;
    position: absolute;
    right: -8px;
    width: 16px;
    height: 100%;
    top: 0px;
    z-index: 5;
    cursor: col-resize;
}

#tblCntnt td .rszRow {
    /* background-color: #1b046c; */
    display: block;
    position: absolute;
    bottom: -8px;
    width: 100%;
    height: 16px;
    left: 0px;
    z-index: 50;
    cursor: row-resize;
}

#tblCntnt th:first-child {
    color: var(--txtColor);
    background-color: var(--mainColor);
    min-width: 40px;
    top: 0px;
    left: 0px;
    position: sticky;
    z-index: 100;

}

#tblCntnt tr>td:first-child {
    background-color: var(--mainColor3);
    color: var(--txtColor);
    min-width: 40px;
    text-align: center;
    border-bottom: 0.2px solid var(--txtColor);
    position: sticky;
    left: 0px;

}

#tblCntnt tr>td {
    border-right: 0.2px solid var(--mainColor3);
}

#tblCntnt tr {
    position: relative;
    border-bottom: 0.2px solid var(--mainColor3);
}


#tblCntnt {
    width: 100vw;
    height: calc(100vh - 75px);
    overflow-x: scroll;
    overflow-x: scroll;
    position: relative;
}

#tblCntnt thead {
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 10;
}

#tblCntnt .selCel {
    background-color: #0095110d;
}
#tblCntnt .selCelL{
    border-left: 2px solid #009511;
}
#tblCntnt .selCelR{
    border-right: 2px solid #009511;
}
#tblCntnt .selCelT{
    border-top: 2px solid #009511;
}
#tblCntnt .selCelB{
    border-bottom: 2px solid #009511;
}
#tblCntnt .selCel:focus{
    background-color: #fff;
}
#tblCntnt * {
    outline: none;
}
td.post,
td.pre
{
    display: block;
    width: 100%;
    /* min-height: 400px; */
    background-color: #096d09 !important;
}