@font-face {
    font-family: fa-solid-900;
    src: url('../../../Scripts/webfonts/fa-solid-900.ttf') format('truetype');
}

/*
    #F16947
    #1B75BB
*/
:root {
    --colorPrimary: #383d7d;
    --colorPrimaryHighlight: #454c9c;
    --colorPrimaryDown: #282f7d;
    --colorPrimaryDark: #282f7d;
}

@font-face {
    font-family: 'Nunito-Light';
    src: url(../../../Scripts/webfonts/Nunito-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Nunito-Regular';
    src: url(../../../Scripts/webfonts/Nunito-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Nunito-Medium';
    src: url(../../../Scripts/webfonts/Nunito-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Nunito-SemiBold';
    src: url(../../../Scripts/webfonts/Nunito-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Nunito-Bold';
    src: url(../../../Scripts/webfonts/Nunito-Bold.ttf) format('truetype');
}

:root {
    --color-gray-50: #f9fafb;
    --color-blue-hover: #567cc8;
    --color-text: #212529;
    --color-blue: #454c9c;
    --color-blue-800: #454c9c;
    --color-white: #FFFFFF;
}

.content {
    background-size: cover;
    background-attachment: fixed;
    /*height: 100vh;*/
    width: 100%;
    background-position: bottom;
    overflow: auto;
    background-color: var(--color-gray-50);
    /*display: flex;*/ /* Adicionado para usar Flexbox */
    /*justify-content: center;*/ /* Centralização horizontal do .loginContainer */
    /*align-items: center;*/ /* Centralização vertical do .loginContainer */
}

.table-hover thead tr:hover th, .table-hover tbody tr:hover td {
    background-color: #CCD1D1;
}

.loginContainer {
    height: 100vh;
    width: auto; /* Alterado de 100% para auto, mas ajuste conforme necessário */
    display: flex;
    justify-content: center; /* Centraliza o conteúdo interno de .loginContainer horizontalmente */
    align-items: center; /* Centraliza o conteúdo interno de .loginContainer verticalmente */
    padding-bottom: 80px; /* Mantive este padding, mas ajuste conforme necessário */
}


.loginBox {
    width: 600px;
    padding-left: 20px;
    padding-right: 20px;
    height: fit-content;
    background-color: White;
    border: solid 1px #EAECEE;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    transition: 1s ease-in-out;
}




.sair-btn {
    display: flex;
    font-size: 45px;
    justify-content: center;
    background-color: var(--color-white);
    width: 60px;
    height: 60px;
    margin-left: 5px;
    margin-right: 0px;
    border-radius: 10px;
    align-self: center;
    background-image: url('../../CommonImages/icones/ic_exit.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    transition: 0.1s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}



.logoImg {
    background-image: url(../../../CommonImages/digdoc_favicon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 20px;
    margin-top: 10px;
    width: 80%;
    height: 55px;
}

.sidebarButtonContainer {
    height: 40px;
}

.sidebarButton {
    height: 35px;
    00 font-size: 10px;
    color: #fff;
    /*color: #20c997;*/
    /*background-color: white !important;*/
    display: flex;
    width: 25%;
    text-align: center;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    transition: 0.2s;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 10px;
    margin-top: 10px;
    min-width: 40px;
    height: 55px;
}

    .sidebarButton i {
        /*width: 100%;*/
        position: absolute;
        /*        height: 100%;
*/
    }

    .sidebarButton:hover {
        /*background-color: lightgray !important;*/
        font-size: 20px;
    }


.sidebar:hover .logoImg {
    background-image: url(../../../CommonImages/DigDoc.png);
}

/* Exibe o logo quando a tela for maior que 70px */
@media (max-width: 70px) {
    .logoImg {
        display: block;
    }
}


body {
    font-family: Nunito-Regular, Verdana, sans-serif;
    /* font-family: Tahoma,Verdana,Arial,Helvetica;*/
    font-size: 10pt;
    margin: 0 auto 0 auto;
    /*padding-top: 80px;*/
    /*text-align: center;*/
}

::-moz-selection {
    color: white;
    background-color: var(--color-blue);
}

::selection {
    color: white;
    background-color: var(--color-blue);
}

.cover {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 30;
    background-color: rgb(0, 0, 0, 0.70);
    left: 0;
}

.closePopup {
    top: 15px;
    right: 15px;
    font-size: 1.5em;
    position: absolute;
    color: #212529;
    transition: 0.2s ease-in-out;
}

    .closePopup:hover {
        transform: scale(1.2);
    }


.icon-flip {
    transform: scaleX(-1);
}

.icon-rotate {
    transform: rotate(90deg);
}

/* ESTRUTURA
topo  
    logo
    topo-container
        pageatual --- DASHBOARD TXT
        DadosTopo ---- possui o timer
        logoDadosUser - ESCOLA NAME - USER NAME - EXIT
*/
.topo {
    position: absolute;
    top: 5px;
    right: 5px;
    position: fixed;
    width: 100%;
    /*height: 80px;*/
    z-index: 4;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo {
    /*    height: 100%; */
    width: 100%;
    margin-left: -20px;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 8px;
    display: flex;
}

.logoImg {
    padding-left: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 100%;
}

div.pageatual {
    width: 700px;
    height: 100%;
    padding-left: 20px;
    color: white;
    display: flex;
}

.topoContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.caixaUsuario {
    background-color: #383d7d; /*TODO SETAR PRA color PRIMARY*/
    height: auto;
    width: -webkit-fill-available;
    text-align: right;
    margin-right: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.txtEscola {
    color: #fff;
    /*    font-size: 18px;*/
    font-weight: 500;
    padding-top: 5px;
}

.txtUsuario {
    color: #fff;
    font-size: 14px;
}

.txtTempoSessao {
    color: #FF6F00;
    font-size: 12px;
}

.icUser {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 5px;
    /*margin-right: 60px;*/
    z-index: 0;
}




.sair-btn {
    display: flex;
    font-size: 45px;
    justify-content: center;
    background-color: #383d7d;
    width: 60px;
    height: 60px;
    margin-left: 5px;
    margin-right: 15px;
    border-radius: 10px;
    align-self: center;
    background-image: url('../../../CommonImages/icones/ic_exit.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    transition: 0.1s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

    .sair-btn:hover {
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
        cursor: pointer;
        background-color: #01e6a3;
    }

/* Modal Content/Box */ .modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 100%; /* Could be more or less, depending on screen size */
}
/* The Close Button (x) */ .close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

    .close:hover, .close:focus {
        color: red;
        cursor: pointer;
    }

/*Fim UserLogin.aspx*/

menu-sidebar {
    width: 65px;
    height: 100%;
    background: var(--color-white);
    position: fixed;
    /* Permite que ele se sobreponha ao .main */
    top: 0;
    left: 0;
    overflow: hidden;
    transition: width .3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 20;
    /* Certifique-se de que este valor seja mais alto que outros elementos com os quais ele possa se sobrepor */
}

.menu-sidebar:hover,
nav.menu-sidebar.expanded {
    width: 300px;
    overflow: auto;
}


.menu-sidebar a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    transition: 0.2s;
    animation-name: animateIn;
    animation-duration: 250ms;
    /* DEFINE A ANIMAÇÃO DOS ITENS DO DROPDOWN */
    animation-delay: calc(var(--animation-order) * 30ms);
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

    .menu-sidebar a:hover:not(.active) {
        background-color: var(--color-blue-hover);
    }

/* - SIDEBAR - */

.sidebar {
    width: 3%;
    min-width: 65px;
    background-color: var(--color-white);
    height: 100%;
    position: fixed;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    z-index: 31;
    transition: width 0.6s ease-in-out; /* Adicione uma transição para a largura */
    box-shadow: 1px 0px 1.2px 0px #e3e3e3;
}

    .sidebar:hover {
        width: 18%;
    }

        .sidebar:hover .dropdown-btn,
        .sidebar:hover ~ .dropdown-btn {
            width: 100%;
        }


        .sidebar:hover .texto,
        .sidebar:hover ~ .texto {
            display: inline;
        }


    .sidebar a {
        display: block;
        color: var(--color-white);
        padding: 8px 5px; /* Aumente o padding para melhor espaço */
        text-decoration: none;
        transition: background-color 0.2s ease-in-out; /* Adicione transição para cor de fundo */
    }

        .sidebar a:hover:not(.active) {
            background-color: var(--color-blue-hover);
        }

@keyframes animateIn {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
    }
}


.dropdown-btn {
    padding-top: 10px;
    padding-bottom: 2px;
    text-decoration: none;
    font-size: 15px;
    color: var(--color-blue);
    display: block;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    padding-left: 12px;
    transition: 0.2s;
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: 2px;
    overflow: hidden;
}

    .dropdown-btn:before {
        content: "\f078";
        font-family: fa-solid-900;
        position: absolute;
        right: 10px;
        color: var(--color-blue);
        transition: 0.2s;
    }

    .dropdown-btn.active:before {
        transition: 0.2s;
        transform: rotate(180deg);
    }


.texto {
    color: var(--color-text);
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    display: none;
    font-weight: 100;
    padding-left: 20px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 2;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    text-wrap: nowrap;
}


.dropdown-btn i {
    font-size: 30px;
    margin-right: 8px;
}


.dropdown-btn:hover:not(.active) {
    background-color: var(--color-blue-hover);
}

.dropdown-btn.active .dropdown-container,
.dropdown-btn.active ~ .dropdown-container {
    display: block;
}



.dropdown-btn.active {
    background-color: var(--color-blue-hover);
}



.dropdown-container {
    display: none;
    background-color: white;
    text-align: left;
}

    .dropdown-container a {
        color: var(--color-text);
        font-size: 15px;
        padding-left: 15px;
    }
/*FIM SIDEBAR*/


/*div.DadosTopo {
    text-align: left;
    float: left;
    position: relative;
    font-family: Trebuchet MS;
    font-size: medium;
    font-weight: bold;
    font-variant: small-caps;
    color: white;
    width: 20%;
    height: 100%;
    margin-left: 15px;
    padding-top: 35px;
    padding-left: 30px;
}*/

.textoTitulo {
    padding-left: 20px;
    font-size: 20pt;
    transform: skew(-30deg); /* SKEW para o texto n�o inclinar*/
    font-weight: bold;
    font-family: "Lucida Console", Courier, monospace;
    color: white;
}

/*div.logoDadosUser {
    position: relative;
    text-align: right;
    float: right;
    padding-right: 10px;
    font-family: Trebuchet MS;
    font-size: medium;
    font-weight: bold;
    color: white;
    width: 300px;
    height: 100%;*/ /*background-color: #566573;*/
/*background-color: #84509A;*/ /*transform: skew(30deg); /* Standard syntax */
/*}*/

div.rodape {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 45px;
    text-align: center;
    border-top: solid 2px #084d6e;
    z-index: 2;
    background-color: White;
}

@media screen and (max-width: 1100px) {
    .botao {
        width: 60%;
    }
}

}






@media screen and (max-width: 1200px) {
    .sidebar {
    }

        .sidebar a {
        }

        .sidebar dropdown-btn {
        }

        .sidebar div {
        }

    div.content {
    }

    .topo {
    }

    divPageAtual {
        width: 200px;
    }
}

@media screen and (max-width: 1700px) {
    .sidebar {
    }

    #contentMenusAndPages {
        margin-left: -47px;
        width: auto;
    }

    #accordion {
        margin-left: -123px !important;
    }

    .CenterButtonOuvReq {
        margin-left: -129px !important;
    }
}





@media screen and (max-width: 800px) {
    .sidebar {
        display: none;
    }

        .sidebar a {
        }

        .sidebar dropdown-btn {
        }

        .sidebar div {
        }

    div.content {
        padding-left: 0;
    }

    divPageAtual {
        width: 200px;
    }

    .topo {
    }
}


@media screen and (max-width: 400px) {
    .sidebar {
        display: none;
    }

        .sidebar a {
        }



    .topo {
    }

    .div.content {
    }

    divPageAtual {
        width: 200px;
    }
}

@media screen and (max-width: 200px) {
    .sidebar a {
    }

    .topo {
    }

    .div.content {
    }
}

.levantamento {
    height: 100%;
    width: 350px;
    border: solid 2px #F39C12;
    float: left;
    position: relative;
    margin-left: 107px;
    transform: skew(30deg);
    background-color: White;
    display: flex;
}

.levantamentotexto {
    font-size: 13px;
    color: #566573;
    width: 100%;
    transform: skew(-30deg); /* SKEW para o texto n�o inclinar*/
    font-weight: bold;
}

.levantamentospan1 {
    padding-left: 5px;
    font-size: 50px;
    color: #566573;
    transform: skew(-30deg);
}

.levantamentospan2 {
    padding-left: 5px;
    font-size: 25px;
    color: #F39C12;
    transform: skew(-30deg);
    margin-top: 5px;
}

.levantamentospan3 {
    font-size: 25px;
    color: #566573;
    transform: skew(-30deg);
    margin-right: 20px;
    margin-top: 10px;
}

div.box {
    margin-top: 10%;
    color: #fff;
    width: 100%;
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    overflow: auto; /* Enable scroll if needed */
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (max-width: 700px) {
    div.box {
        margin-top: 5px;
        margin-left: 5px;
        position: relative;
    }
}

@media screen and (max-width: 400px) {
    div.box {
        margin-top: 5px;
        margin-left: 5px;
        position: relative;
    }
}

.GridView {
    width: 100%;
    min-width: 80%;
    font-size: 10pt;
    font-weight: 700;
    white-space: nowrap;
}

.GridViewGrid:hover {
    border-top-width: thin;
    border-top: solid;
    border-top-color: #A9A9A9;
    border-bottom-width: 1px;
    border-bottom: solid;
    border-bottom-color: #A9A9A9;
}

.DDTextBoxLogin {
    color: #666;
    font-size: 13pt !important;
    border: solid 1px #dcdcdc;
    background-color: #FEFEFE;
}

    .DDTextBoxLogin:hover {
        border: solid 1px #084d6e;
    }

    .DDTextBoxLogin:focus {
        border: solid 1px #084d6e;
    }

.DDTextBox {
    color: #666;
    font-size: 10pt !important;
    border: solid 1px #dcdcdc;
    background-color: #FEFEFE;
}

    .DDTextBox:hover {
        border: solid 1px #084d6e;
    }

    .DDTextBox:focus {
        border: solid 1px #084d6e;
    }

.DDDropDown {
    padding: 2px;
    border: solid 1px #084d6e;
    color: #084d6e;
    font-size: 15px;
    border-radius: 5px;
    font-weight: lighter;
}

/*STILO ANTIGO */

.tabela {
    width: 100%;
    color: #666;
    border: solid 1px #CCC;
    font-size: 10pt;
    white-space: nowrap;
}

.td_TituloSmall {
    font-weight: bold;
    text-align: center;
    font-size: 7pt;
    background-color: #D7D7D7;
    height: 10px;
}

.td_SubTituloSmall {
    font-weight: bold;
    text-align: center;
    font-size: 7pt;
    background-color: #EAEAEA;
    height: 10px;
}

.td_RightAlignBoldSmall {
    font-weight: bold;
    text-align: right;
    font-size: 7pt;
    vertical-align: middle;
    height: 10px;
}

.td_RightAlignSmall {
    text-align: right;
    vertical-align: middle;
    height: 10px;
}

.td_LeftAlignBoldSmall {
    font-weight: bold;
    text-align: left;
    font-size: 7pt;
    vertical-align: middle;
    height: 10px;
}

.td_LeftAlignSmall {
    text-align: left;
    font-size: 7pt;
    vertical-align: middle;
    height: 10px;
}

.td_CenterAlignBoldSmall {
    font-weight: bold;
    text-align: center;
    font-size: 7pt;
    vertical-align: middle;
    height: 10px;
}

.td_CenterAlignSmall {
    text-align: center;
    font-size: 7pt;
    vertical-align: middle;
    height: 10px;
}

.tdVerticalAlign {
    vertical-align: middle !important;
}

.tabelaWebControlMedia {
    width: 70%;
    color: #666;
    border: solid 1px #CCC;
    font-size: 8pt;
    white-space: nowrap;
}

.gridCadastro {
    white-space: nowrap;
    width: 100%;
}

.gridTelefones {
    white-space: nowrap;
}

.tabela_header {
    /*width: 100%;*/
    color: #666;
    border: solid 1px #CCC;
    font-size: 8pt;
    margin-bottom: 10px;
    margin-top: 10px; /*font: .7em Tahoma, Arial, Sans-Serif;*/
}

.tabela_footer {
    /*width: 100%;*/
    color: #666;
    border: solid 1px #CCC;
    font-size: 8pt;
    margin-bottom: 10px;
    margin-top: 10px; /*font: .7em Tahoma, Arial, Sans-Serif;*/
}

.td_Titulo {
    width: 100%;
    font-weight: bold;
    text-align: center;
    background-color: #D7D7D7;
    height: 25px;
    font-size: 10pt;
}

.td_SubTitulo {
    font-weight: bold;
    text-align: center;
    background-color: #EAEAEA;
    height: 25px;
    font-size: 10pt;
}

.td_RightAlignBold {
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
    height: 25px;
    font-size: 10pt;
}

.td_RightAlign {
    text-align: right;
    vertical-align: middle;
    height: 25px;
}

.td_LeftAlignBold {
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
    height: 25px;
}

.td_LeftAlign {
    text-align: left;
    vertical-align: middle;
    height: 25px;
}

.td_CenterAlignBold {
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    height: 25px;
}

.td_CenterAlign {
    text-align: center;
    vertical-align: middle;
    height: 25px;
}


.DDTextBox, ComunixTextBox.DDDropDown {
    color: #666;
    font-size: 8pt !important;
    border: solid 1px #dcdcdc;
    background-color: #FEFEFE;
}

.DDMainHeader {
    font: small-caps bold 1.6em Trebuchet MS, Arial, sans-serif;
    color: #888;
    padding: 5px 0px 5px 10px;
    border-bottom: 1px dotted #bbbbbb;
}

.DDMainHeaderRight {
    font: small-caps bold 1.6em Trebuchet MS, Arial, sans-serif;
    color: #888;
    padding: 5px 0px 5px 10px;
    text-align: right;
}

.DDMainHeader a {
    color: #888;
    text-decoration: none;
}

    .DDMainHeader a:hover {
        /* color: #888; */
        color: #6699FF;
        text-decoration: underline;
    }

.DDSubHeader {
    margin-bottom: 20px;
    padding-left: 10px;
    font: 10pt Trebuchet MS, Arial, sans-serif;
    color: #888;
}

    .DDSubHeader a {
        color: #888;
        text-decoration: none;
    }

        .DDSubHeader a:hover {
            /* color: #888; */
            color: #6699FF;
            text-decoration: underline;
        }


.DDMain {
    width: 960px;
    text-align: center;
    margin: 0 auto 0 auto;
}

.DDMainContent {
    width: 100%;
    text-align: left;
}

.DDMainFooter p {
    font: bold 0.7em Trebuchet MS, Arial, sans-serif;
    color: #888;
    margin-top: 24px;
    padding-top: 3px;
    padding-left: 10px;
    border-top: 1px dotted #bbbbbb;
}

.DD {
    padding: 0px 8px;
    font: .75em Tahoma, Arial, sans-serif;
    color: #666;
}

    .DD label {
        font-size: 8pt;
        padding-right: 5px;
    }

.DDLightHeader {
    font-weight: bold;
    background-color: #EAEAEA;
}


.DDFilter {
    font-size: 8pt;
    color: #666;
}

.DDControl {
    padding: 0px;
    font-size: 8pt;
    color: #666;
}

.DDFloatLeft {
    float: left;
}

.DDFloatRight {
    float: right;
}

.DDFooter {
    background-color: #EFEFEF;
}

.DDSelected {
    background-color: #fdffb8;
}

div.DDNoItem {
    color: Red;
    font-family: Trebuchet MS, Arial, sans-serif;
}


/*	Navigation	*/

div.DDNavigation {
    font: .75em Tahoma, Arial, Sans-Serif;
    position: relative;
    top: -28px;
    margin-bottom: -10px;
    padding: 0px 5px;
}

    div.DDNavigation img {
        position: relative;
        margin-top: 0em;
        padding: 0px 8px;
        border: none;
        background-color: #fff;
    }

    div.DDNavigation a {
        color: #839ce7;
        text-decoration: none;
        background-color: #fff;
        padding-right: 8px;
        top: -.2em;
        left: .25em;
    }

        div.DDNavigation a:hover {
            /*color: #000099;*/
            color: #6699FF;
            text-decoration: underline !important;
        }


/*	Details VIEW/EDIT	*/
.tabela_DDDetailsTable {
    background-color: #EFEFEF;
    border-bottom-width: 3px;
    width: 100%;
    color: #666;
    border: solid 1px #CCC;
    font-size: 8pt;
    white-space: nowrap;
}

    .tabela_DDDetailsTable a {
        color: #666;
        text-decoration: none;
        padding-right: 6px;
    }

    .tabela_DDDetailsTable .td {
        padding: 3px 6px;
        border: 1px solid #dbddff;
        border-bottom-style: dotted;
        font-size: 8pt;
        font-family: Tahoma, Arial, Sans-Serif;
    }

table.DDDetailsTable {
    color: #666;
    background-color: #EFEFEF;
    border: 1px solid #CCC;
    border-bottom-width: 3px;
}

    table.DDDetailsTable a {
        color: #666;
        text-decoration: none;
        padding-right: 6px;
    }

    table.DDDetailsTable .td {
        padding: 3px 6px;
        border: 1px solid #dbddff;
        border-bottom-style: dotted;
        font-size: 8pt;
        font-family: Tahoma, Arial, Sans-Serif;
    }


/*	DDGridView/DDListView	*/
table.DDGridView, table.DDListView {
    /*width: 100%;*/
    color: #666;
    border: solid 1px #6699FF;
    font-size: 8pt;
    margin-bottom: 10px;
    margin-top: 10px; /*font: .7em Tahoma, Arial, Sans-Serif;*/
}

    table.DDGridView .th, table.DDGridView .td, table.DDListView .th, table.DDListView .td {
        white-space: nowrap;
    }

    table.DDGridView .th, table.DDListView .th {
        background-color: #CCC;
        line-height: 1.3em;
        text-align: left;
        font-size: 1em;
        border: solid 1px #CCC;
    }

        table.DDGridView .th a, table.DDListView .th a {
            color: #666;
            text-decoration: none;
        }

    table.DDGridView .td, table.DDListView .td {
        border: dotted 1px #CCC;
        border-left-width: 0px;
        border-right-width: 0px;
        padding: 6px;
    }

        table.DDGridView .td a, table.DDListView .td a {
            color: #999;
            text-decoration: none;
            margin-right: 6px;
        }

    table.DDGridView .DDSelected a, table.DDListView .DDSelected a {
        color: #999;
        text-decoration: none;
        margin-right: 6px;
    }

        table.DDGridView .DDSelected a:hover, table.DDListView .DDSelected a:hover {
            /*color: #000099;*/
            color: #6699FF;
            text-decoration: underline;
        }

    table.DDGridView .td a:hover, table.DDListView .td a:hover {
        /*color: #000099;*/
        color: #6699FF;
        text-decoration: underline;
    }

.status-ativo {
    background: #a3c740;
    color: #272e0f;
}

.status-ativo-maior {
    background: #B7E242;
    color: #272e0f;
}

.status-ativo-menor {
    background: #7B982D;
    color: #272e0f;
}

.status-inativo {
    background: #dbdbdb;
    color: #777;
}

.status-primary {
    background-color: var(--colorPrimary);
    color: white !important;
}

.status-primary {
    background: #007bff;
    color: #fff;
}

.status-danger {
    background: #d9534f;
    color: #fff;
}

.status-info {
    background: #dbdbdb;
    color: #777;
}

.status-warning {
    background: #ffc107;
    color: #000;
}

.status-roxo {
    color: #fff;
    background-color: #5B4EA6;
    border-color: #7B53B0;
}


/*	DataPager	*/
div.DDPager {
    padding: 0px 6px;
}

/* Bottom hyperlink design*/
div.DDBottomHyperLink {
    font-size: 10pt;
}

    div.DDBottomHyperLink a {
        color: #839ce7;
        text-decoration: none;
    }

        div.DDBottomHyperLink a:hover {
            /*color: #000099;*/
            color: #6699FF;
            text-decoration: underline !important;
        }

    div.DDBottomHyperLink img {
        padding-right: 5px;
        border: none;
    }

.textInput, textarea {
    /* General style for my inputs when they're not highlighted */
    background-color: #FFFFFF; /* border:1px solid #000; */
}

.inputHighlighted {
    /* Highlighting style */
    background-color: InfoBackground; /* color:#FFF; 	border:1px solid #000; */
}

/*input {
    font-size: 8pt !important;
}*/

/* autocomplete */

.ac_results, .ac_results ul, .ac_results li {
    text-align: left;
}

.ac_loading {
    background: white url( '/App_Themes/Default/images/indicator.gif' ) right center no-repeat !important;
}

/* watermark */

.watermark {
    color: #DDD !important;
    text-transform: none !important;
}

/* datepicker */

.ui-datepicker * {
    font-size: 0.9em !important;
}

.ui-datepicker {
    width: 13em !important;
}

/* CHECKBOX */
.switch {
    display: inline-block;
    width: 52px;
    height: 25px;
    position: relative;
    top: 5px;
}

.toggle-thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(233 233 233);
    border-radius: 40px;
    border-color: #888;
    border-width: 1px;
    cursor: pointer;
    overflow: hidden;
}

    .toggle-thumb:before {
        content: '';
        height: 18px;
        width: 18px;
        position: absolute;
        left: 4px;
        bottom: 4px;
        border-radius: 50%;
        background-color: #fff;
        transition: .4s all ease;
    }

.table-hover-active {
    color: black;
}

.checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

    .checkbox:checked + .toggle-thumb:before {
        transform: translateX(26px);
    }

    .checkbox:checked + .toggle-thumb {
        border-color: #1ec2d5;
        background-color: #383d7d;
        border-width: 1px;
    }

        .checkbox:checked + .toggle-thumb > svg {
            transform: translateX(26px);
        }

/*FIM DO CHECKBOX*/



.iconCounter {
    position: relative;
    top: 16px;
    font-size: 10px;
}

.FixedHeader {
    background: #383d7de8 !important;
    color: white !important;
    position: sticky !important;
    top: 0;
    top: 70px;
    /*z-index: 3;*/
    /*ForeColor="White"*/
}

.FixedHeader1 {
    position: sticky !important;
    top: 0;
    top: 100px;
    /*z-index: 3;*/
    /*ForeColor="White"*/
}


.BotaoCentralizadoMenu {
    margin-left: -7%;
    justify-content: center;
}

.BotaoCentralizadoPage {
    justify-content: center;
    margin-left: -6%;
}

.fixedFooter {
    position: fixed;
    width: 85%;
    height: 80px;
    bottom: 0px;
    z-index: 3;
    left: 0;
    margin-left: 15%;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}



.botao {
    justify-content: center;
}


.header-cell {
    font-weight: normal;
}

.footer-cell {
    background-color: red;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
    justify-items: center;
    align-items: center;
    /*width: 0%;*/
}

.custom-header {
    border-radius: 1rem;
    background-color: #383d7d;
    color: white;
    font-weight: 600;
}


/*botão facilidador */

.fab {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

    .fab button {
        cursor: pointer;
        width: 48px;
        height: 48px;
        border-radius: 30px;
        background-color: #383d7d;
        border: none;
        box-shadow: 0 1px 5px rgba(0,0,0,.4);
        font-size: 24px;
        color: white;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
        right: 11px;
        position: relative;
        padding-top: 5px
    }

        .fab button:focus {
            outline: none;
        }

        .fab button.main {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 30px;
            background-color: #20c997;
            right: 11px;
            bottom: 0;
            z-index: 20;
            padding-right: 15px;
            padding-left: 15px;
        }

            .fab button.main:before {
                content: '⏚';
            }

    .fab ul {
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 0;
        padding-right: 5px;
        margin: 0;
        list-style: none;
        z-index: 10;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
    }

        .fab ul li {
            display: flex;
            justify-content: flex-start;
            position: relative;
            margin-bottom: -10%;
            opacity: 0;
            -webkit-transition: .3s ease-out;
            -moz-transition: .3s ease-out;
            transition: .3s ease-out;
        }

            .fab ul li label {
                margin-right: 10px;
                white-space: nowrap;
                display: block;
                margin-top: 10px;
                padding: 5px 8px;
                background-color: white;
                box-shadow: 0 1px 3px rgba(0,0,0,.2);
                border-radius: 3px;
                height: 18px;
                font-size: 16px;
                pointer-events: none;
                opacity: 0;
                -webkit-transition: .2s ease-out;
                -moz-transition: .2s ease-out;
                transition: .2s ease-out;
            }

    .fab.show button.main,
    .fab.show button.main {
        outline: none;
        background-color: #3b47e3;
        box-shadow: 0 3px 8px rgba(0,0,0,.5);
    }

        .fab.show button.main:before,
        .fab.show button.main:before {
            content: '↑';
        }

        .fab.show button.main + ul,
        .fab.show button.main + ul {
            bottom: 70px;
        }

            .fab.show button.main + ul li,
            .fab.show button.main + ul li {
                margin-bottom: 10px;
                opacity: 1;
            }

                .fab.show button.main + ul li:hover label,
                .fab.show button.main + ul li:hover label {
                    opacity: 1;
                }
/*botão facilidador */