*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-size: 12px;
}

/* CONFIG ESTILO */
:root {
    --cor-padrao: #2BB0CF;
    --cor-hover: #317888;
}

body{
    background: #F6F6F6;
}

.topo_menu{
    width: 100%;
    height: 60px;
}

.menu_web{
    position: fixed;
    width: 100%;
    z-index: 99;
}

.modal{
    background: #8d8d8dcf;

}

.modal-dialog {
    width: 90% !important;
    max-width: 720px!important;
}

.btnCorPadrao{
    border: none;
    color: #fff!important;
    background-color: var(--cor-padrao)!important;
    background: var(--cor-padrao)!important;
    width: 60px;
    height: 24px!important;
    padding: 2px 2px !important;
    text-decoration:  none;
    font-style: none;
    border-radius: 5px;
    text-align: center;
}

.btnCorPadrao:hover{
    border: none;
    color: #fff;
    background: var(--cor-hover)!important;
}

.pendente {
    border-radius: 15px;
    max-width: 110px!important;
    text-align: center;
    background-color: rgb(253, 58, 58)!important; /* Cinza */
    color: white!important; /* Cor do texto para contraste */
    padding: 0px 10px 0px 10px!important;
}
.em-producao {
    border-radius: 15px;
    max-width: 110px!important;
    text-align: center;
    background-color: #f3d73a!important; /* Mostarda */
    color: rgb(0, 0, 0)!important; /* Cor do texto para contraste */
    padding: 0px 10px 0px 10px!important;
}
.finalizado {
    border-radius: 15px;
    max-width: 110px!important;
    text-align: center;
    background-color: green!important; /* Verde */
    color: white!important; /* Cor do texto para contraste */
    padding: 0px 10px 0px 10px!important;
}
.entregue {
    border-radius: 15px;
    max-width: 110px!important;
    text-align: center;
    background-color: rgb(67, 120, 235)!important; /* Azul */
    color: white!important; /* Cor do texto para contraste */
    padding: 0px 10px 0px 10px!important;
}
.faturado {
    border-radius: 15px;
    max-width: 110px!important;
    text-align: center;
    background-color: rgb(74, 188, 241)!important; /* Azul */
    color: white!important; /* Cor do texto para contraste */
    padding: 0px 10px 0px 10px!important;
}

/* TOPO */
.topo{
    width: 100%;
}

.breadcrumb{
    margin: 0%!important;
}

.botoes_topo {
    background: #333333;
}
.topo h1{
    color: #676A6C;
}

.conteudo{
    display: block;
    flex-wrap: nowrap;
    background: hsl(0, 0%, 99%);
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;    
}

.filtros{
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 12px;
}

.filtros form{
    display: flex;
    flex-wrap: wrap;
}

.div_filtro select{
    margin: 2px;
    padding: 2px;
    border-radius: 5px;
}

.filtros input{
    margin: 2px;
    border: 1px solid #dee2e6;
    padding: 2px;
    border-radius: 5px;
}

.filtros button, .filtros a{
    font-style: none;
    text-decoration: none;
    margin: 2px;
    padding: 2px;
    border-radius: 5px;
    color: #fff;
}

.filtros h6{
    display: flex;
    align-items: center;
}


/* DASHBOARD */

.dashboard {
    display: flex;
    justify-content: center;
    padding: 12px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.card-dashboard {
    display: block;
    height: 110px;
    width: 190px;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, var(--cor-padrao) 3%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70%);
    border-radius: 5px;
    box-shadow: 2px 2px 5px #47474783;
    padding: 8px;
    margin: 10px;
}

.title-dashboard {
    border-radius: 5px 5px 0px 0px;
    padding: 5px;
    color: #777575;
}

.title-dashboard span {
    font-size: 12px;
}

.content-dashboard {
    display: flex;
    flex-direction: column;
    padding: 5px;
    color: #777575;
    align-items: center;
}

.content-dashboard span{
    color: var(--cor-padrao);
    font-size: 30px;
}


/* CARDS INDICADORES */
.card_indicadores{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
    height: 70px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    margin: 1vw;
}

.card_indicadores_nome{
    display: flex;
    justify-content: center;
    width: 70px;
    height: 20px;
    text-align: center;
    border-radius: 0px 0px 5px 5px;
}

.card_indicadores h1{
    font-size: 16px;
    margin: 0;
    margin-top: 12px;
}

.card_indicadores p{
    font-size: 13px;
}

.tag-card{
    background: var(--cor-padrao)!important;
}

.indicadores{
    display: flex;
    justify-content: center;
    align-items: center;
}

.indicadores h1{
    font-size: 18px;
    margin: 0px;
}

.indicadores svg{
    color: var(--cor-padrao)!important;
}

.indicadores svg:hover{
    color: #2772c7;
}

.corcard1{
    background: #6698d1;
}
.corcardbaixo1{
    background: #2772c7;
}

.corcard2{
    background: #66d18f;
}
.corcardbaixo2{
    background: #27c764;
}

.corcard3{
    background: #d16666;
}
.corcardbaixo3{
    background: #c72727;
}

.corcard4{
    background: #d1ca66;
}
.corcardbaixo4{
    background: #c7af27;
}

.corcard5{
    background: #8f66d1;
}
.corcardbaixo5{
    background: #7f27c7;
}

/* CORPO */
main{
    background: #333;
    padding: 10px;
}

.corpo{
    display: flex;
    justify-content: center;
    padding: 10px;
}

.filtro_pedido_interno{
    display: flex;
}

.floatingSelectGrid {
    height: 50px!important;
    min-height:50px!important;
    line-height:50px!important;
}

/* TABELA */

.table{
    font-size: 12px;
}

.custom-cell-style {
    text-align: left; /* Alinha o texto à esquerda */
    display: flex; /* Utiliza o layout flexível */
    align-items: center; /* Alinha os itens ao centro verticalmente */
    justify-content: center; /* Alinha os itens ao centro horizontalmente */
}

/* MENU */

#navbarSupportedContent{
    margin-left: 5vw;
}

.container-fluid {
    display: flex;
    justify-content: space-between!important;

}

.navbar-brand {
    padding-top: 0px;
}

.item {
    display: flex;
    text-decoration: none;
    align-items: center;
    color: var(--cor-padrao)!important;
    font-size: 14px;
}

.item:hover span{
    color: #fff;
}

.item:hover a{
    color: #fff;
}

.item:hover svg {
    fill: #fff; 
}

.item span{
    text-decoration: none;
    color: var(--cor-padrao)!important;
    margin-right: 20px;
    font-size: 14px;
    margin-left: 5px;
}

.item a{
    margin-right: 20px;
    margin-left: 5px;
}

.item a svg{
    margin-right: 5px;
}

.perfil {
    left: -100px !important;
}

.dropdown-menu {
    border: none;
    width: 150px;
}

.dropdown-item{
    border: none;
    width: 140px;
}

.dropdown-item:active{
    background: var(--cor-padrao)!important;
}

.sair {
    display: flex;
    text-align: center;
    align-items: center;

}

.sair a{
    text-decoration: none;
    color: #fff;
    margin: 0px;
}

/* LISTA CLIENTES */

.fixed-table-container {
    height: 75vh!important ;
}

.card_cliente{
    display: flex;
    border-radius: 5px;
    background: #fcfcfc;
    margin: 5px;
    border: none;
    box-shadow: 2px 2px 5px rgba(107, 107, 107, 0.342);
    padding-right: 10px;
}

.spacebet{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.div_botoes{
    display: flex;
    align-items: center;
    margin: 0.2vw;
    padding: 0.5px;
}


.contador{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    background: var(--cor-padrao);
    border-radius: 5px 0px  0px 5px;
}

.contador span{
    color: #fff;
    font-size: 15px;
}

.informações_cliente{
    display: flex;
    flex-wrap: wrap;
}

.sobre_cliente{
    display: flex;
    flex-wrap: wrap;
    padding: 3px;
    margin: 3px;
}

.sobre_cliente_teste{
    display: flex;
    flex-wrap: wrap;
    padding: 3px;
    margin: 3px;
}

.sobre_cliente_teste div{
    color: #4b4b4be1;
    margin: 0.1vw 0.3vw;
    padding: 1px;
}

.sobre_cliente div{
    color: #4b4b4be1;
    margin: 0.1vw 0.3vw;
    padding: 1px;

}

.endereco_cliente{
    display: flex;
    flex-wrap: wrap;
    padding: 3px;
    margin: 3px;
}

.endereco_cliente div{
    flex-wrap: wrap;
    color: #4b4b4be1;
    margin: 0.1vw 0.7vw;
    padding: 1px;

}



/* CADASTRO CLIENTEs*/

.cadastro_cliente{
    display: flex;
    justify-content: center;
    max-width: 700px;
}

/* CLIENTE DETALHADO */

.cliente{
    align-items: center;
    height: 800px;
    padding: 10px;
}

.dados_cliente{
    margin-bottom: 20px;
}

.cliente_dados {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    height: 200px;
    border-radius: 5px;
    border: 1px solid rgba(3, 3, 3, 0.103);;
    background-color: #FFF;
    color: #676A6C!important;
}

.cliente_dados h6, .cliente_dados b{
    font-size: 13px;
}

.cliente_dados b{
    font-size: 13px;
}

.dados_cliente_servicos{
    display: inline-block;
    padding: 10px;
    height: auto;
    background-color: #FFF;
    border: 1px solid rgba(3, 3, 3, 0.103);
    width: 100%;
}

.titulo_formulario{
    background: var(--cor-padrao);
}

.form, button {
    background: var(--cor-padrao);
}

.button-color-padrao{
    background: var(--cor-padrao)!important;
}

.space{
    padding-left: 20px;
}

.colunas{
    display: flex;
}

.botoes_clientes{
    display: block;
    justify-content: end;
    align-items: start;
    width: 10%;
    margin-left: 10px;
}


.botoes_clientes button{
    background-color: var(--cor-padrao)!important;
}

.nav-item button a {
    font-style: none;
    text-decoration: none;
    color: var(--cor-padrao)!important;
}

.nav-item button svg {
    color: var(--cor-padrao)!important;
}


/* EDITAR RECEITA */

.accordion-button {
    color: #fff!important;
    background-color: var(--cor-padrao)!important;
    box-shadow: rgb(220, 20, 130)!important;
}

.accordion-button:focus {
    font-weight: 700!important;
    box-shadow: none!important;
}

.btn_editar svg{
    color: #2f7c4b;
}

#marcarTodos{
    border: none;
    background: none;
    color: #2772c7;
}

/* CARD */

.card {
    display: flex;
    flex-direction: row;
    background: #fcfcfc;
    min-width: 670px;
    height: auto;
    margin: 10px;
    border-radius: 5px;
    border: none;
    box-shadow: 2px 2px 5px rgba(107, 107, 107, 0.479);
}

.texto{
    height: 100%;
}

.editar_nr{
    border: none;
    width: 80px;
}

.cabecalho{
    display: flex;
    padding-left: 10px;
    background: #e6e6e6b4;
    text-align: center;
    width: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-bottom: 3px;
}

.conteudo2{
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    margin: 5px;
}

.receita{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dados{
    display: flex;
}

.medico{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    border: 1px solid rgba(92, 92, 92, 0.219);
    width: 98%;
    height: 100%;
}

.dados1{
    padding: 3px;
    margin: 3px;
    width: 120px;
    border-radius: 5px;
    border: 1px solid rgba(92, 92, 92, 0.219);
    max-height: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dados1 b{
    display: flex;
    align-items: center;
    justify-content: center;
}

.dados1 li{
    text-decoration: none;
    list-style: none;
}

.armacao{
    border-radius: 5px;
    border: 1px solid rgba(92, 92, 92, 0.219);
    margin: 2px 2px 0px 2px;
    width: 150px;
    padding: 3px;

}

.armacao span{
    padding-left: 2px;
    padding-right: 2%;
    border-radius: 3px;
    color: #fff;
    background: #505050af;
    min-width: 46px;
    font-size: 10px;
}

.dados1 span{
    padding-left: 2px;
    padding-right: 2%;
    border-radius: 3px;
    color: #fff;
    background: #505050af;
    min-width: 46px;
    font-size: 10px;
}

.lente span{
    padding-left: 2px;
    padding-right: 2%;
    border-radius: 3px;
    color: #fff;
    background: #505050af;
    min-width: 46px;
    font-size: 10px;
}

.armacao b{
    display: flex;
    align-items: center;
    justify-content: center;
}

.armacao li{
    text-decoration: none;
    list-style: none;
}

.botoes{
    display: block;
    border-radius: 5px;
    border: 1px solid rgba(92, 92, 92, 0.219);
    margin: 2px 2px 0px 2px;
    width: 150px;
    padding: 3px;
    
}


.botoes b{
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2bb1cf81 !important;
    color: white;
}

.select2-container {
    z-index: 999 !important;
}

.select2-search__field {
    z-index: 999 !important;
}

.select2-selection, .select2-selection--multiple{
 height: 29px !important;
 padding: 0px !important; 
 border: 1px solid #dee2e6 !important;
}


.select2-container .select2-selection--multiple {
    min-height: 29px !important;
}

.select2-selection__choice__remove{
    display: none !important;
}

.lente{
    border-radius: 5px;
    border: 1px solid rgba(92, 92, 92, 0.219);
    margin: 2px 2px 0px 2px;
    width: 150px;
    padding: 3px;
}

.lente li{
    text-decoration: none;
    list-style: none;
}

.lente b{
    display: flex;
    align-items: center;
    justify-content: center;
}

.teste{
    display: flex;
    flex-wrap: wrap;
}

.icone_pendente svg{
    color:#e62117;
    background: #e62117;
    border-radius: 30px;
    color: #fff;
    padding: 2px;
} 

.icone_efetivado svg{
    color:#ffb300;
    background: #ffb300;
    border-radius: 30px;
    color: #fff;
    padding: 2px;
} 

.icone_entregue svg{
    color:#328a20;
    background: #328a20;
    border-radius: 30px;
    color: #fff;
    padding: 2px;
} 

/* LOGIN */


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.tela {
    display: flex;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    background-image: url("./img/sistema/background.png"); 
    background-size: 250px; /* Ajusta o tamanho da imagem para cobrir todo o fundo */
    background-repeat: repeat; /* Evita que a imagem de fundo se repita */
}

.telalogin {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; /* Adicionado para centralizar verticalmente */
    background: #252630;
    height: 100%; /* Ocupa 100% da altura do corpo */
    width: 450px;
    color: #fff;
    box-shadow: 5px 0px 10px rgba(44, 46, 65, 0.822);
    z-index: 10;
}

.telalogin form{
    width: 70%;
}

.imagem{
    display: flex;
    justify-content: center;
}

.imagem img{
    align-items: center;
    width: 150px;
    margin-bottom: 20px;
}

.background{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("./img/sistema/login.jpg");
    background-size: cover;
    background-position: center center;
    width: auto;
    padding: 10px;
}

.background h1{
    font-weight: 700;
    font-size: 60px;
    color: #1e274d;
    width: auto;
    text-align: center;
}

.menu_mobile{
    display: none;
}

/* FATURAS */

.topocards{
    display: flex; 
    justify-content:center;
    background-color: #ffffff;
}

.topocardunico {
    display: block; 
    height: 85px; 
    width: 95px; 
    border-radius: 5px;
    margin: 10px;
}

.superoprcard1 {
    display: flex; 
    height: 75%; 
    width: 100%; 
    background: #ED6F5F; 
    border-radius: 5px 5px 0px 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.superoprcard1 b{
    font-size: 40px;
}

.inferiorcard1 {
    display: block; 
    height: 25%; 
    width: 100%; 
    background: #ff3019 ; 
    border-radius: 0px 0px 5px 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.superoprcard2 {
    display: flex; 
    height: 75%; 
    width: 100%; 
    background: #F3D73A; 
    border-radius: 5px 5px 0px 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.superoprcard2 b{
    font-size: 40px;
}

.inferiorcard2 {
    display: block; 
    height: 25%; 
    width: 100%; 
    background: #d3b508 ; 
    border-radius: 0px 0px 5px 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.superoprcard3 {
    display: flex; 
    height: 75%; 
    width: 100%; 
    background: #6BBA70; 
    border-radius: 5px 5px 0px 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.superoprcard3 b{
    font-size: 40px;
}

.inferiorcard3 {
    display: block; 
    height: 25%; 
    width: 100%; 
    background: #299A0B ; 
    border-radius: 0px 0px 5px 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.superoprcard4 {
    display: flex; 
    height: 75%; 
    width: 100%; 
    background: #6d97f1; 
    border-radius: 5px 5px 0px 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.superoprcard4 b{
    font-size: 40px;
}

.inferiorcard4 {
    display: block; 
    height: 25%; 
    width: 100%; 
    background: #4378EB ; 
    border-radius: 0px 0px 5px 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.imprimir{
    display: block;
    padding: 5px;
}


/* USUARIOS */

#preview {
    display: flex;
    justify-content: center;
    align-items: center; /* Centraliza verticalmente também */
    width: 100px!important;
    height: 100px!important;
    border: 1px solid #ddd;
    border-radius: 50%!important; /* Use 50% para um círculo perfeito */
    margin-top: 10px;
    background-image: url(./img/sistema/avatar.png);
    background-size: cover; /* Ajusta a imagem para cobrir todo o fundo do círculo */
    background-position: center; /* Centraliza a imagem dentro do círculo */
}

#preview img {
    width: 100%!important;
    height: 100%!important;
    border-radius: 50%!important; /* Use 50% para um círculo perfeito */
    background-size: cover; /* Ajusta a imagem para cobrir todo o fundo do círculo */
    background-position: center; /* Centraliza a imagem dentro do círculo */
}


/* TESTE TABELA */

.edit_tabela {
    border-collapse: separate;
    border-spacing: 0;

}

.edit_tabela th, 
.edit_tabela td, 
.edit_tabela tr {
    border: none;
    border-radius: 0px;
}

.edit_tabela .fixed-table-border {
    border: none;
}

.edit_tabela tbody tr {
    border-radius: 5px;
} 



/* dispositivo medio*/


@media screen and (max-width: 990px) {

    .topo_menu{
        display: none;
    }

    .card {
        flex-wrap: wrap;
        background: #fcfcfc;
        min-width: 60px;
        margin: 2px;
        margin-bottom: 20px;
    }

    .conteudo2{
        flex-wrap: wrap;
    }

    .spacebet{
        display: block;
    }

    .div_botoes{
        justify-content: center;
    }

    .todos_cards{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card_cliente{
        max-width: 90%;
    }

    .sobre_cliente{
        padding: 3px;
        margin: 3px;
        border-radius: 5px;
        border: 1px solid rgba(92, 92, 92, 0.219);
    }
    
    
    .endereco_cliente{
        padding: 3px;
        margin: 3px;
        border-radius: 5px;
        border: 1px solid rgba(92, 92, 92, 0.219);
    }

    .background{
        display: none;
    }

    .telalogin {
        width: 100%;

    }

    .menu_web{
    display: none;
    }

    .menu_mobile{
        display: block;
    }

    .card{
        flex-wrap: nowrap;
    }

    .menu_mobile li{
        padding: 10px;
    }

    .menu_mobile li a svg{
        margin-left: 10px;
    }

}

/* dispositivo mobile */

@media screen and (max-width: 600px) {

    .vendasChart{
        display: none!important;
    }

    .graficoindex{
        max-width: 95%!important;
        height: auto!important;
        margin-bottom: 50px!important;
    }

    .topo_menu{
        display: none;
    }

    .topo nav{
        margin-bottom: 15px;
    }

    .offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
        width: 60%;
        z-index: 19999;
    }

    .corpo{
        width: auto;
    }

    .cabecalho{
        width: 100%;
    }

    .conteudo2{
        width: 100%;
    }

    .receita{
        width: 100%;
    }

    .texto{
        width: 95%;
    }

    .dados{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .card{
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
    }

    .cabecalho{
        display: block;
        margin: 0px;
        background: none;
        width: 100%;
    }

    .editar{
        margin-right: 15px;
    }

    .armacao {
        width: 48%;
    }

    .lente {
        width: 48%;
    }

    .botoes{
        display: flex;
        align-items: center;
        width: 98%;
    }

    .botoes div{
        padding-top: 0px !important;
        margin-right: 15px;
    }

    .botoes b{
        margin-right: 20px;
    }

    .menu_mobile li{
        padding: 10px;
    }

    .menu_mobile li a svg{
        margin-left: 10px;
    }

    .dados1{
        margin: 5px
    }

    .cliente_dados{
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: auto;
    }

    .opto_mobile{
        display: block;
    }

    .input-group{
        margin-bottom: 10px;
    }

    .botoes_clientes{
        display: flex;
        justify-content: start;
        width: 100%;
        margin: 0px;
    }
    

    .botoes_clientes form button{
        padding: 0%!important;
        margin: 2px;
    }
    
    .modal{
        z-index: 99999999;
    }
}