@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
    --cor-principal: #dc3545;
    --cor-tabela: #dc3545;
    --cor-ordem: #fe751b;
    --fonte-logo: 25px;
}

body {
    padding: 0;
    margin: 0;
    background: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    position: relative;
    overflow-x: hidden;
    color: #000;
}

.uppercase {
    text-transform: uppercase;
}

a {
    text-decoration: none;
}

.blocoFormulario a {
    color: #1a78c9;
}

img {
    max-width: 100%;
}

textarea {
    resize: vertical;
}


.span_link {
    text-decoration: underline;
    cursor: pointer;
    color: var(--cor-principal);
}

.logomarca img {
    max-width: 200px;
    /*max-height: 45px;*/
}

.selects2 {
    position: relative;
}

.txt-topo-admin {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #1a78b9;
}

.tituloTopo {
    font-size: 23px;
    color: #1a78b9;
}

.blocoConteudo {
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    padding: 0 15px;
}

.blocoLateral {
    min-width: 222px;
    margin-top: 35px;
}

.blocoGrafico {
    width: 80%;
    margin-top: 5px;
    position: relative;
}


.bloco-modelo-1 {
    padding: 15px 15px;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}

.bloco-modelo-1 .titulo-bloco {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 15px;
    color: #113075;
}

.bloco-modelo-1 .txt-valor {
    font-size: 35px;
    margin-bottom: 7px;
    color: #113075;
    font-weight: bold;
}

.bloco-modelo-2 {
    padding: 11px 15px;
    margin-bottom: 15px;
}

.fundo-azul-relatorio {
    background: #9AD8E2 !important;
}

.fundo-cinza-relatorio {
    background: #e9e8e8 !important;
}

.fundo-verde-relatorio {
    background: #b3f37f85 !important;
}

.fundo-vermelho-relatorio {
    background: #f5858559 !important;
}

.fundo-azul-escuro-relatorio {
    background: #113075 !important;
}

.fundo-azul-escuro-relatorio .titulo-bloco,
.fundo-azul-escuro-relatorio .txt-valor {
    color: #fff !important;
}

.bloco-modelo-2 .titulo-bloco {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
    color: #515151;
}

.bloco-modelo-2 .txt-valor {
    font-size: 19px;
    margin-bottom: 7px;
    color: #515151;
    font-weight: bold;
}

.bloco-modelo-2 .txt-valor span {
    font-size: 55%;
}

.bloco-modelo-1 .txt-valor span {
    font-size: 55%;
}

.bloco-rodape {
    padding: 20px;
    text-align: center;
    color: #afacac;
    font-size: 16px;
}

.filtroTopo {
    background: #fff;
    border: 1px solid #ccc;
    display: inline-flex;
    padding: 5px 7px;
    color: #b5b3b3;
    font-size: 15px;
    margin-left: auto;
}

.filtroPeriodo {
    font-size: 15px;
    color: #113075;
    font-weight: bold;
    margin-left: 12px;
}

.topo-componente {
    position: relative;
}

.blocotextoTopo {
    display: flex;
    padding: 25px 20px;
    flex-wrap: wrap;
}

.botoesTopo {
    display: flex;
    flex-wrap: wrap;
}

.botao_padra_top {
    color: #fff;
    font-size: 13px;
    padding: 9px 13px;
    margin: 4px 3px;
    background: #9c9a9a;
    cursor: pointer;
}

.botao_padra_top.ativo {
    background: #ffd400;
}

.botoesTopo2 {
    display: flex;
    flex-wrap: wrap;
}

.container {
    width: 96.5%;
    max-width: 1920px;
    /* min-width: 1100px; */
    margin-right: auto;
    margin-left: auto;
}

.topo-principal .menu {
    display: flex;
    width: 85%;
    justify-content: center;
}

.topo-principal ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topo-principal {
    background: #fff;
    border-bottom: 2px solid var(--cor-principal);
}

.menu li>a {
    color: #1a78b9;
    display: block;
    font-size: 15px;
    padding: 31px 14px;
    position: relative;
}

.menu li.active>a,
.menu>li>a:hover {
    color: var(--cor-principal);
}

.menu>li.active>a::after,
.menu>li:hover>a::after {
    content: '';
    background: var(--cor-principal);
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.menu li>.submenu {
    display: none;
    position: absolute;
    background: #Fff;
    box-sizing: border-box;
    list-style: none;
    min-width: 160px;
    max-width: 305px;
    text-align: left;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    z-index: 3;
}

.menu li:hover>.submenu {
    display: block;
}

.menu li>.submenu li {
    list-style: none;
    padding: 0;
    position: relative;
    border-bottom: 1px solid #dddddd;
}

.menu li>.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-align: left;
    /* white-space: nowrap; */
}

.menu li>.submenu li a:hover {
    text-decoration: none;
    color: var(--cor-principal);
}

.menu li>.submenu.sub-sub {
    border-top: 2px solid var(--cor-principal);
    top: 25px;
    right: -30%;
    position: absolute;
}

.menu li>.submenu_2col {
    flex-wrap: wrap;
    width: 470px;
}

.menu li:hover>.submenu_2col {
    display: flex;
}

.menu li>.submenu_2col li {
    width: 49.74%;
    display: block;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.topo-principal .logomarca {
    padding: 12px 10px;
    color: var(--cor-principal);
    font-size: var(--fonte-logo);
    text-align: center;
    font-weight: bold;
    max-width: 100px;
}

.botao_padra_1 {
    color: #fff !important;
    font-size: 16px;
    padding: 12px 23px;
    margin: 4px 5px;
    background: #c7c7c7;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.botao_padra_1.btn_verde {
    padding: 12px 40px;
}

.botoesTopo {
    margin-left: auto;
}

.btn_azul {
    background: #78ded9;
}

.btn_vermelho {
    background: #f53c3c;
}

.btn_laranja {
    background: #f79e18;
}

.btn_verde {
    background: #41c731;
}

.btn_verde2 {
    background: #41c731;
}

.blocoTabela {
    overflow-x: auto;
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.tabela_padrao {
    width: 100%;
}

.tabela_padrao thead tr>td {
    background: var(--cor-tabela);
    color: #fff;
    font-size: 15px;
    padding: 8px 5px;
}

.tabela_padrao tbody tr>td {
    background: #fff;
    border: 1px solid #dedbdb;
    position: relative;
    padding: 5px;
}

.tabela_padrao tbody tr:hover td {
    background: #f7f7f7;
}

.tabela_padrao tbody tr>td,
.tabela_padrao tbody tr>td a {
    color: #515151;
}

.tabela_padrao tbody tr>td a {
    text-decoration: underline;
    color: #1a78c9;
}
.tabela_padrao .campo-padrao {
    min-width: 100px;
}

.tabela_padrao .txt_extra_top {
    font-size: 11px;
    text-align: center;
    position: absolute;
    top: 8px;
    width: 100%;
}

.tabela_padrao .txt_qtd,
.tabela_padrao .txt_extra_bottom {
    font-size: 11px;
    text-align: center;
    position: absolute;
    bottom: 2px;
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.campo_padrao {
    /* height: 27px; */
    border: 1px solid #dedbdb;
    color: #6f6f6f;
    margin-left: 5px;
    margin-top: 2px;
    margin-bottom: 4px;
    padding: 10px 8px;
    background: #ece8e8;
    width: 15.86%;
}

.filtroUmaLinha {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.filtroConteudo {
    margin: 20px 0;
}

.btn_filtro {
    height: 21px;
    background: #9c9c9c;
    color: #ffff;
    padding: 10px 24px;
    margin-left: 15px;
    cursor: pointer;
}

.blocoFormulario {
    margin-top: 25px;
}

.blocoFormulario .informacao {
    border: 1px solid #c5bebe;
    background: #fff;
}

.blocoFormulario .tituloBloco {
    background: var(--cor-principal);
    color: #fff;
    /* font-weight: bold; */
    padding: 10px 10px;
    font-size: 17px;
    cursor: pointer;
    position: relative;
}

.blocoFormulario .informacao .blocoTipoCliente {
    background: #e4fbfa;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
}

.blocoFormulario .informacao .blocoTipoCliente .txtCampo {
    margin-right: 15px;
    margin-bottom: 0;
    margin-top: 2px;
}

.txtCampo {
    margin-bottom: 6px;
    color: #515151;
}
.txtCam2row .txtCampo {
    min-height: 35px;
    display: flex;
    align-items: center;
}

.radioDiv input {
    display: none;
}

.radioDiv .radio-sty {
    border: 2px solid #113075;
    height: 17px;
    width: 17px;
    display: inline-flex;
    margin-right: 9px;
    position: relative;
    background: #e6e6e6;
}

.radioDiv {
    display: inline-flex;
    font-size: 14px;
    cursor: pointer;
    color: #515151;
}

.radioDiv input[type=radio]:checked+.radio-sty span {
    background: #113075;
}

.radioDiv input[type=radio]+.radio-sty span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #bcf9f6;
}


.radioDiv label {
    cursor: pointer;
    display: inline-flex;
    margin-right: 20px;
}

.radioDiv label .txt {
    padding: 3px 0;
}

.linhaCompleta {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    margin: 7px 15px;
}

.campo-padrao {
    background: #e6e6e6;
    border: 1px solid #e6e6e6;
    width: 100%;
    padding: 12px 6px;
    font-size: 15px;
    color: #515151;
    font-family: 'Muli', sans-serif;
    box-sizing: border-box;
}

.linha {
    margin: 5px 10px;
}

.input-div {
    display: flex;
}

.blocoFormulario .informacao .blocoDadosCobranca {
    padding: 16px 20px;
}

.blocoFormulario .informacao .tituloCobranca {
    background: #d2d2d2;
    color: #6f6f6f;
    font-weight: bold;
    padding: 10px 10px;
}

.blocoFormulario .informacao .blocoEnderecoCobranca {
    border-bottom: 2px solid #e6e6e6;
}

.blocoFormulario .informacao .blocoCobrancaAuto {
    padding: 16px 26px;
}

.blocoFormulario .informacao .txtInfoCampo {
    background: #e6e6e6;
    font-size: 16px;
    margin-right: 20px;
    padding: 1px 10px;
}

.txt-sem-resultado {
    text-align: center;
    font-size: 13px;
    margin: 10px 0;
}

.mais-div-conteudo {
    margin: 8px 27px;
    font-size: 13px;
    text-decoration: underline;
    color: #113075;

}

.mais-div-conteudo .txt {
    cursor: pointer;
}

.selectize-control.campo-padrao .selectize-input {
    background: #e6e6e6;
    border: 1px solid #e6e6e6;
    width: 100%;
    padding: 12px 6px;
    font-size: 15px;
    color: #515151;
    font-family: 'Muli', sans-serif;
}

.selectize-control.campo-padrao {
    width: 100%;
    padding: 0;
    display: flex;
    color: #515151;
}

.campo-padrao .selectize-dropdown,
.campo-padrao .selectize-input,
.campo-padrao .selectize-input input {
    font-size: 15px;
    color: #515151 !important;
    font-family: 'Muli', sans-serif;
}

.campo-padrao .selectize-input input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-size: 15px;
    color: #515151 !important;
    font-family: 'Muli', sans-serif;
}

.blocoDadosLancamento {
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
}

.blocoDadosLancamento .txtCampo {
    margin-right: 15px;
    margin-bottom: 0;
    margin-top: 2px;
}

.blocoResumoFinanceiro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.blocoResumoFinanceiro .blocoM1 {
    width: 30%;
}

.blocoResumoFinanceiro .blocoM2 {
    width: 40%;
}

.blocoResumoFinanceiro .blocoM1 .tituloTxt {
    background: #ece8e8;
    color: #fe751b;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    padding: 7px 0;
}

.blocoResumoFinanceiro .blocoM1 .info .txt {
    color: #888484;
    font-size: 12px;
    justify-content: center;
    display: flex;
    padding: 8px 0;
}

.blocoResumoFinanceiro .blocoM1 .info .txt:nth-child(odd) {
    /* background: #ece8e8; */
}

.blocoResumoFinanceiro .blocoM1 .txtlinha {
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #ccc;
}

.blocoResumoFinanceiro .blocoM2 .txtlinha .tituloTxt {
    background: #fe751b;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    padding: 8px 0;
}

.blocoResumoFinanceiro .blocoM2 .txtlinha .txt {
    color: #888484;
    font-size: 16px;
    justify-content: center;
    display: flex;
    padding: 10px 0;
}

.blocoResumoFinanceiro .blocoM2 .txtlinha .txt:nth-child(odd) {
    background: #fe751b;
    color: #fff;
}

.blocoResumoFinanceiro .blocoM2 .txtlinha {
    margin: 0 20px 15px;
    background: #fff;
    border: 1px solid #ccc;
}

.blocoResumoFinanceiro .txtPagamento {
    background: #ece8e8;
    margin: 0 20px;
    padding: 8px 15px;
    border: 1px solid #ccc;
}

.blocoResumoFinanceiro .txtPagamento .tituloTxt {
    color: #888484;
    text-align: center;
    margin-bottom: 8px;
}

.blocoResumoFinanceiro .txtPagamento .blocosInfoPagamentos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.blocoResumoFinanceiro .txtPagamento .bInfoPagamento {
    color: #fff;
    font-size: 13px;
    padding: 11px 8px;
    margin: 4px 8px;
    min-width: 80px;
    text-align: center;
    cursor: pointer;
}

.blocoCaixaSty {
    background: #fff;
    border: 1px solid #ccc;
    padding: 9px 0;
    position: relative;
    padding-top: 10px;
    margin-top: 15px;
}
.blocoCaixaStyTitle{
    position: absolute;
    color: #747171;
    font-weight: bold;
    top: -9px;
    left: 9px;
    background: #fff;
    padding: 0 10px;
}

.pag_verde {
    background: #22da27 !important;
}

.pag_amarelo {
    background: #ecdd27 !important;
}

.pag_laranja {
    background: #e4830b !important;
}

.pag_cinza {
    background: #bfb9b9 !important;
}

.pag_vermelho {
    background: #ff0000 !important;
}

.blocoFormulario .tituloBloco::after {
    content: '\f107';
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    position: absolute;
    right: 15px;
}

.btn_x_retirar {
    color: red;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    margin: 35px auto 0;
}

.botoes {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.botoes .bt {
    font-size: 15px;
    cursor: pointer;
    background: #e6e6e6;
    padding: 10px;
    border-radius: 10px;
}

.active-bt {
    background: var(--cor-principal) !important;
    color: #fff !important;
}

.config-item .icon-cog {
    display: block;
    margin-top: 3px;
}

.botMobile {
    /*position: relative;*/
    width: 100%;
    /*height: 70px;*/
    display: none;
}

.btnMenuMobile {
    position: absolute;
    padding: 17px;
    left: 0;
    top: 0;
}

.iconeHamburger {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
    background: none;
}

.iconeHamburger:before {
    top: 0;
}

.iconeHamburger span {
    top: 50%;
    transform: translateY(-50%);
}

.iconeHamburger:after {
    bottom: 0;
}

.iconeHamburger::after,
.iconeHamburger::before,
.iconeHamburger span {
    content: ' ';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--cor-principal);
    left: 0;
    position: absolute;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.menuMobile .iconeHamburger:before {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menuMobile .iconeHamburger span {
    opacity: 0;
}

.menuMobile .iconeHamburger:after {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menuMobile .iconeHamburger:before,
.menuMobile .iconeHamburger:after {
    top: 10px;
    margin-top: -10%;
}

.menuMobile #banner,
.menuMobile #meio,
.menuMobile #rodape {
    display: none;
}

.img-gesto {
    position: absolute;
    width: 100%;
    display: flex;
    z-index: 99;
    top: 50px;
    justify-content: center;
}


.bloco-lista-checkbox {
    display: flex;
    flex-wrap: wrap;
}

.bloco-lista-checkbox label {
    /* width: 154px; */
    margin: 6px;
    margin-right: 17px;
    cursor: pointer;
    width: 31%;
}


.paginacao {
    text-align: center;
    padding: 7px;
}

.paginacao .item {
    display: inline-block;
    margin: 0 5px 0 0;
    color: #515151;
    background: transparent;
    padding: 5px 10px 5px 10px;
    border: 1px solid #dedbdb;
    text-transform: uppercase;
    font-size: 13px;
}

.paginacao .ultimo {
    margin-right: 0;
}

.paginacao .texto {
    background: #e6e6e6;
    color: #666;
    cursor: default;
}

.paginacao .link:hover {
    background: #adacac;
    text-decoration: underline;
    color: #fff;
}

.paginacao .seta {
    vertical-align: 0;
    line-height: 15px;
    font-size: 15px;
}

.popupSistema1 {
    max-width: 600px;
    width: 90%;
}

.popupSistema1 .txt-aviso {
    text-align: center;
    font-size: 15px;
    color: #272727;
    font-weight: bold;
}

.popupSistema1 .txt-aviso2 {
    text-align: center;
    font-size: 13px;
    color: red;
}

.botao-popup {
    padding: 10px 7px;
    display: block;
    width: 280px;
    background: #22da27;
    text-align: center;
    color: #fff;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.botao-popup:hover {
    background: #17c41b;
}



.selectize-dropdown-content .txt1-op {
    text-align: justify;
}

.selectize-dropdown-content .txt-menor {
    font-size: 10px;
}

.txt-topo-usuario {
    font-weight: bold;
    position: absolute;
    top: 11px;
    right: 24px;
    font-size: 13px;
}

.txt-topo-nome {
    color: var(--cor-principal);
}

.txt-topo-btn {
    background: red;
    padding: 3px 13px;
    color: #fff;
    display: block;
    margin-top: 4px;
    width: 63px;
}

@media (max-width: 768px) {
    .blocotextoTopo {
        padding: 25px 0;
    }

    .botoesTopo a,
    .botoesTopo span {
        width: 100%;
        margin: 5px 0 !important;
        text-align: center;
    }

    .filtroUmaLinha input,
    .filtroUmaLinha select,
    .filtroUmaLinha>div {
        width: 100% !important;
        box-sizing: border-box;
    }

    .campo_padrao,
    .filtroUmaLinha .selects2 {
        margin: 0 0 4px 0 !important;
    }

    .btn_filtro {
        width: 100px;
        text-align: center;
        margin: 0 auto;
    }

    .blocotextoTopo>div {
        width: 100%;
    }

    .linha {
        width: 100% !important;
    }

    .topo-principal .flex {
        flex-direction: column;
        position: relative;
    }

    .botMobile {
        display: block;
        z-index: 999;
    }

    .menu>li>.submenu {
        display: block;
        position: inherit;
        margin: 0 15px;
        box-shadow: 1px 5px 13px rgb(0 0 0 / 31%);
        border-radius: 3px;
    }

    .menuMobile .topo-principal .menu {
        opacity: 1;
        transform: translateX(0) scale(1);
        padding-bottom: 15px;
    }

    .topo-principal .menu {
        flex-direction: column;
        width: 100%;
        z-index: 9999;
        background: #fff;
        box-shadow: 1px 5px 13px rgb(0 0 0 / 31%);
        border-radius: 3px;
        position: absolute;
        margin: 0;
        left: 0;
        top: 72px;
        opacity: 0;
        transform: scale(0);
        transition: visibility .2s step-start, z-index .2s step-start, opacity .2s ease-in-out, transform .2s ease-in-out;
    }

    .topo-principal {
        min-height: 60px;
    }

    .menu>li>a {
        padding: 10px 14px;
        border-bottom: 2px solid var(--cor-principal);
    }

    .menu .config>a {
        /* border: none; */
        text-align: center;
    }

    .menu>li>.submenu {
        margin: 15px;
    }

    .login {
        padding: 0 10px;
    }

    .linha {
        margin: 5px 0;
    }

    .topo-principal .logomarca {
        margin: 0 90px 0 50px;
    }

    .txt-topo-usuario {
        right: 3px;
    }

    .tituloTopo {
        margin-bottom: 18px;
    }
}


.bloco_legenda {
    justify-content: center;
    display: flex;
}

.bloco_legenda .caixa-legenda {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #9a9a9a;
}

.bloco_legenda label {
    display: flex;
    margin: 0 10px;
}

.bloco_legenda label .txt {
    margin-left: 5px;
    margin-top: 3px;
}

.td_vermelho {
    background: #c20000 !important;
}

.td_amarelo {
    background: #ffb300 !important;
}

.td_laranja {
    background: #ff5000 !important;
}

.td_txt_branco {
    color: #fff !important;
}

.warehouse-2 {
    background: #ffdb2c !important;
}

.btn-remove {
    color: red;
    text-decoration: underline;
    cursor: pointer;
}
em.btn-remove {
    text-decoration: none;
    font-size: 16px;
}

.transp_fedex {
    background: #4D148C !important;
    color: #fff !important;
    font-weight: bold;
}


.delivery_Expedited {
    background: #ff8300 !important;
    color: #fff !important;
    font-weight: bold;
}

.delivery_NextDay {
    background: #86009f !important;
    color: #fff !important;
    font-weight: bold;
}

.delivery_SecondDay {
    background: #0066ff !important;
    color: #fff !important;
    font-weight: bold;
}

.tag-replacement {
    border-radius: 10px;
    padding: 3px;
    font-weight: bold;
    text-align: center;
    background: #8b8b8b;
    color: #fff;
}

.td_filtro_ordem {
    cursor: pointer;
    position: relative;
    padding-right: 23px !important;
}

.td_filtro_ordem.ativo {
    background: var(--cor-ordem);
}

.td_filtro_ordem::after {
    content: '\f160';
    font-family: "fontello";
    font-style: normal;
    position: absolute;
    right: 5px;
    top: 40%;
}

.td_filtro_ordem.ativo.dt2::after {
    transform: rotate(180deg);
}