/*Area do tab para separar depois*/

.scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox 64 */
    -ms-overflow-style: none;
    white-space: nowrap;
}

.scroll::-webkit-scrollbar {
    display: none;
}


ul.tabs {
    position: relative;
    margin: 0px;
    padding: 0px;
    width:inherit;
    list-style: none;
    justify-content: center;
    display: inline-flex;
    border-bottom: 1px solid #F5F5F5;
    /*background-color: brown;*/
}

ul.tabs li {
    cursor: pointer;
    background: none;
    display: inline-block;
    padding: 10px 10px;
    margin-right: 20px;
    width:220px;
    /*background-color: green;*/
}

ul.tabs li:last-child{
    margin-right:0px;
}

ul.tabs li .elem {
    display: flex;
    height:30px;
    align-items: center;
    justify-content: center;
    /*background-color:red;*/
}


ul.tabs li .elem .texto {
    font-size: 14px;
    color: #666666;
    font-weight:800;
    align-self:flex-end;
    margin-left: 20px;
    margin-bottom:0;
    margin-right:0;
    margin-top:0;
}

ul.tabs li .elem .tam {
    text-align: center;
    width: 21px;
    margin-top:8px;
}

ul.tabs li .elem .folhaElectr {
    width: 25px;
    margin-top:9px;
}

ul.tabs li .elem .semDivida {
    text-align: center;
    width: 13px;
    margin-top:5px;
}

ul.tabs li .elem .comDivida {
    text-align: center;
    width: 20px;
    margin-top:7px;
}

        ul.tabs li.current {
            background: white;
            color: blue;
            /*background-color: yellow;*/
            border-bottom: 2px solid #33AADD;
        }

            ul.tabs li.current .elem .texto {
                font-size: 14px;
                color: #333333;
                font-weight: 900;
            }


.tab-content {
    display: none;
    background: white;

    padding-top:15px;
    padding-bottom:15px;
}

    .tab-content.current {
        display: inherit;
        border: 1px;
        border-color: green;
    }


/*Tabela*/

table {
    width: 100%;
}

table, th, td {
    border: 0px;
    border-collapse: collapse;
}

    table tr:last-child {
        border-bottom: 2px solid #33AADD;
        border-top: 2px solid #33AADD;
        background-color: white !important;
        font-weight: 700;
    }

th, td {
    padding: 6px;
    text-align: center;
    font-size:12px;
}

tr th:first-child, tr td:first-child{
    text-align:left;
}

tr th:nth-child(4), tr th:last-child {
    font-weight: 100;
    color: #666666;
    cursor: pointer;
    font-size: 12px !important;
    width:30px;
}

tr th:first-child{
    min-width:100px;
}

tr th:nth-child(n+5):nth-child(-n+16) {
    min-width:81px;
}

table#t01 tr:nth-child(even) {
    background-color: #F5F5F5;
}

table#t01 tr:nth-child(odd) {
    background-color: #fff;
}

table#t01 th {
    background-color: white;
    color: #333333;
}


/*Fazer download*/

.fazer-download{
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.fazer-download .texto{
    font-size:12px;
    margin-left:8px;
    margin-top:2px;
}

.fazer-download .tam{
    width:16px;
}

.barra-hr {
    margin-bottom:13px;
    height: 4px;
    width: 100%;
    background-color: #F5F5F5;
}


.divisor {
    width: 1px;
    height: 100%;
    background-color: #CCCCCC;
}


.tabela-texto-mobile{
    display:none;
}

.esconder-mes-E-valor {
    display:none;
}

.erro {
    border: 1.8px dashed #33AADD !important;
}

@media screen and (max-width: 992px) {

    ul.tabs {
        width: auto;
    }

}


@media screen and (max-width: 900px) {

    ul.tabs {
        width: auto;
    }

}

@media screen and (max-width: 591px) {
    /*Area do tab para separar depois*/

    ul.tabs {
        margin: 0px;
        padding: 0px;
        width:auto;
        display: inline-flex;
        border-bottom: 0px;
    }

    ul.tabs li {
        width: 170px;
    }

    ul.tabs li .elem {
        display: grid;
        height:50px;
        grid-template-rows: 2fr 2fr;
        grid-template-columns: 2fr;
    }

    ul.tabs li .elem .texto {
        font-size: 14px;
        margin-top:3px;
        margin: 0 !important;
        text-align: center;
    }

    .filtro {
        display:none;
    }

    ul.tabs li .elem .tam {
        margin: 0px auto;
        width: 24px;
    }

    ul.tabs li .elem .folhaElectr {
        margin: 0px auto;
        width: 29px;
    }

    ul.tabs li .elem .semDivida {
        margin: 0px auto;
        width: 17px;
    }

    ul.tabs li .elem .comDivida {
        margin: 0px auto;
        width: 26px;
    }

    ul.tabs li.current .elem .texto {
        font-size: 14px;
        color: #333333;
        font-weight: 900;
    }

    th, td {
        font-size: 13.5px;
    }

    tr th:nth-child(3), tr td:nth-child(n) {
        text-align: right;
    }

    tr td:first-child {
        text-align: left !important;
    }

    .tab-content .barra-hr {
        display: flex;
    }

}








