/* ===== Design tokens dinâmicos (HSL + color-mix) ===== */
:root {

  /* 2) Derivações diretas da base */
  --primary-color: hsl(var(--brand-h) var(--brand-s) var(--brand-l));
  /* Secondary: um pouco mais claro e levemente mais saturado */
  --secondary-color: hsl(
    var(--brand-h)
    calc(var(--brand-s) + 10%)
    calc(var(--brand-l) + 15%)
  );

  /* 3) Fundos (misturas com branco usando color-mix) */
  /* Fundo geral bem claro, mantendo o matiz */
  --background-color: color-mix(in hsl, var(--primary-color), white 92%);
  /* Sidebar/Header levemente mais escuros que o fundo geral */
  --sidebar-bg: color-mix(in hsl, var(--primary-color), white 98%);
  --header-bg:  var(--sidebar-bg);
  /* Conteúdo em branco puro para contraste */
  --conteudo-bg: #ffffff;

  /* 4) Texto: quase preto com uma pitada da base (mistura com preto) */
  --text-soft: color-mix(in hsl, var(--primary-color), black 85%);
  --text-color: var(--text-soft);

  /* 5) Botões: base dessaturada e clareada em três níveis */
  --button-bg:       color-mix(in hsl, var(--primary-color), white 75%);
  --button-sub-bg:   color-mix(in hsl, var(--primary-color), white 78%);
  --button-hover:    color-mix(in hsl, var(--primary-color), white 60%);

  /* 6) Header buttons (ícones/botões sobre header) */
  --headerbar-btn:        var(--primary-color);
  --headerbar-btn-hover:  hsl(var(--brand-h) calc(var(--brand-s) + 15%) calc(var(--brand-l) + 12%));
  --headerbar-color:      #ffffff;

  /* 7) Bordas: cinza-azulado derivado (mistura com branco e um pouco de base) */
  --border-color: color-mix(in hsl, var(--primary-color), white 75%);

  /* 8) Outros */
  --transition-speed: 0.5s;
  --font: 'Poppins', sans-serif;
}

/* ===== Temas prontos trocando só a base (opcional) ===== */

/* Ex.: <html data-theme="green"> */
:root[data-theme="petroleo"] {
  --brand-h: 210;  /* verde */
  --brand-s: 28%;
  --brand-l: 25%;
}
:root[data-theme="darkBlue"] {
  --brand-h: 225;  /* verde */
  --brand-s: 100%;
  --brand-l: 15%;
}
:root[data-theme="green"] {
  --brand-h: 133;  /* verde */
  --brand-s: 35%;
  --brand-l: 24%;
}
:root[data-theme="orange"] {
  --brand-h: 28;   /* laranja */
  --brand-s: 70%;
  --brand-l: 45%;
}
:root[data-theme="purple"] {
  --brand-h: 270;  /* roxo */
  --brand-s: 35%;
  --brand-l: 32%;
}
:root[data-theme="teal"] {
  --brand-h: 190;   /* teal */
  --brand-s: 40%;
  --brand-l: 35%;
}
:root[data-theme="crimson"] {
  --brand-h: 350;  /* crimson */
  --brand-s: 65%;
  --brand-l: 40%;
}
:root[data-theme="darkGray"] {
  --brand-h: 0;  /* darkGray */
  --brand-s: 0%;
  --brand-l: 20%;
}
:root[data-theme="dark"] {
  --brand-h: 0;  /* darkGray */
  --brand-s: 0%;
  --brand-l: 0%;
}


input[type=number]::-webkit-inner-spin-button { 
    -webkit-appearance: none;
    
  }
  input[type=number] { 
   -moz-appearance: textfield;
   appearance: textfield;
  }

   
::-webkit-scrollbar { width: 5px; height: 5px;  background-color: #f5f5f5; }
::-webkit-scrollbar-thumb { background-color: var(--primary-color); }
::-webkit-scrollbar-thumb:hover {  background-color: #888; }

/*Deixe no final*/
.conteiner-conteudo::-webkit-scrollbar {
    width: 10px !important; 
    height: 5px;
}

.conteiner-conteudo::-webkit-scrollbar-thumb { 
    background-color: var(--primary-color); 
}

.conteiner-conteudo::-webkit-scrollbar-thumb:hover {  
    background-color: var(--primary-color);
}

body{
    zoom: 0.9;
}

.arrastarX, .arrastarY{
    cursor: pointer;
}

.divLoading{ position: absolute; width: 100%; height: 100%; text-align: center; padding-top: 300px; }
    .divLoading img{ width: 100px; height: 100px; }
 
.divQuadro{
    width: auto;
    height: auto;
    margin: 0px;
    margin-bottom: 10px;
    padding: 10px 15px 10px 15px;
    border: 1px solid lightgray; 
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgb(204, 202, 202);
    text-align: left;
    /*overflow: hidden;*/
    background-color: var(--sidebar-bg);
    
}
   
.divSubQuadro{
    margin: 10px 10px 10px 30px;
}

.divHeader button{
    margin-right: 5px;
}

.heightAuto{ height: auto; }
.heightminimize{ height: 56px; }

.heightPAll{
    height: calc(100% - 10px) !important;
}

.heightMax{
    height: calc(100% - 20px) !important;
}
.heightP50{
    height: calc(50% - 20px);
}
    .divQuadro .divQuadroTitle{
        width: 100%;
        height: auto;
        padding-bottom: 5px;
        display: flex;
        flex-direction: row;
        justify-content: space-between ;
    }

    .divQuadro .divTitle{
        margin: 0px 10px 10px 0px;
        font-weight: bold;
        color: var(--text-color);
        float:left;
        width: 75%;
    }   

    .btnTitleClose{
        margin: 0px 0px 0px 0px !important;
        min-width: 30px !important;
        width: auto !important;
        height: 30px !important;
        padding: 5px 10px !important;
        font-weight: bold !important;
        font-size: 16px;
        text-align: center;
        color: var(--headerbar-color);
        background-color: var(--headerbar-btn);
        float:right !important;
    }
    .btnTitleClose i{
        height: 100% !important;
    }

    .btnTitleClose:hover{
        background-color: var(--headerbar-btn-hover);
    }
    
    .modal-header h3{
        margin: 0px;
        width: calc(100% - 70px);
        float: left;
    }


    .modal-header button{
        margin: 0px 0px 0px 0px !important;
        width: auto;
        min-width: 30px !important;
        height: 30px !important;
        padding: 5px !important;
        font-weight: bold !important;
        float:right !important;
        
        border:0.5px solid #FF6347;
        border-radius: 5px;
        background-color: #FF6347;
        color: white;
        margin: 0 5px;
    }

    .modal-header button:hover{
        background-color: white;
        color: #FF6347;
        box-shadow: 3px 3px 5px #FF6347;
    }

    .modal-header .header-actions{
        display: flex;
        flex-direction: row;
        gap: 10px;
    }






    .btnGroup{
        display: flex;
        flex-direction: row;
    }

    .autocomplete-cliente,
    .autocomplete-fornecedor,
    .autocomplete-cliforn,
    .autocomplete-vendedor,
    .autocomplete-tecnico,
    .autocomplete-produto,
    .autocomplete-insumo,
    .autocomplete-servico,
    .autocomplete-osEquip,
    .autocomplete-osCatEquip{
        position: relative;
        text-align: left !important;
    }


    .divCampo, .divCampoBtn{
        position: relative;
        min-height: 65px;
        /*border: 1px solid black;*/
        padding: 3px 5px;
        margin: 0;
        display: inline-block;
        vertical-align: top;

    }

        .tamAll{width: 100%;}
            .tamAll input, .tamAll select, .tamAll textarea{width: 100%;}; .tamAll textarea{height: 60px;}
        .tam0{width: 65px; max-width: 100%;}
            .tam0 input, .tam0 select, .tam0 textarea{width: 60px; max-width: 100%;}; .tam0 textarea{height: 60px;}
        .tam1{width: 130px; max-width: 100%;}
            .tam1 input, .tam1 select, .tam1-5 textarea{width: 120px; max-width: 100%;}; .tam1-5 textarea{height: 60px;}
                .tam1-5{width: 150px;}
                    .tam1-5 input, .tam1-5 select, .tam1-5 textarea{width: 140px;}; .tam1-5 textarea{height: 60px;}
        .tam2{width: 210px; max-width: 100%;}
            .tam2 input, .tam2 select, .tam2 textarea{width: 200px; max-width: 100%;}; .tam2 textarea{height: 60px;}
        .tam3{width: 310px; max-width: 100%;}
            .tam3 input, .tam3 select, .tam3 textarea{width: 300px; max-width: 100%;}; .tam3 textarea{height: 60px;}
        .tam4{width: 410px; max-width: 100%;}
            .tam4 input, .tam4 select, .tam4 textarea{width: 400px; max-width: 100%;}; .tam4 textarea{height: 60px;}
        .tam5{width: 510px; max-width: 100%;}
            .tam5 input, .tam5 select, .tam5 textarea{width: 500px; max-width: 100%;}; .tam5 textarea{height: 60px;}
        .tam6{width: 610px; max-width: 100%;}
            .tam6 input, .tam6 select, .tam6 textarea{width: 600px; max-width: 100%;}; .tam6 textarea{height: 60px;}

        .tam50{ width: calc(50% - 10px);}
        .tam50 input, .tam50 select, .tam50 textarea{width: 100%; }; .tam50 textarea{height: 60px;}

        .tam0 i{
            font-size: 20px;
        }

        
        .tamD2{width: calc(50% - 10px);}
            .tamD2 input, .tamD2 select, .tamD2 textarea{width: calc(50% - 10px);}; .tamD2 textarea{height: 60px;}
        .tamD3{width: calc(33% - 10px);}
            .tamD3 input, .tamD3 select, .tamD3 textarea{width: calc(33% - 10px);}; .tamD3 textarea{height: 60px;}
        .tamD4{width: calc(25% - 10px);}
            .tamD4 input, .tamD4 select, .tamD4 textarea{width: calc(25% - 10px);}; .tamD4 textarea{height: 60px;}



        .divCampo label, .divCampoImg label{
            width: 100%;
            font-weight: bold;
        }
        .divCampo input, .divCampoBtn input, .divCampoBtn select, .divCampo select, .divCampo .divInputOptions{
            height: 30px;
            border: none;
        }
        .divCampo input, .divCampoBtn input, .divCampoBtn select, .divCampo select{
            border: 1px solid lightgray;
            border-radius: 4px;
            padding-left: 5px;
            outline: none;

        }
        .divCampo input:focus, .divCampoBtn input:focus, .divCampoBtn select:focus, .divCampo select:focus{
            background-color: rgb(240, 240, 240);
        }

        .divCampo h2{
            margin: 0;
        }

        .ico i{
            padding-right: 10px;
        }

        .divCampoBtn .divInputOptions{
            width: calc(100% - 40px);
            outline: none;
            float: left;
        }
        .divCampoBtn .divInputOptions label{
            cursor: pointer;
        }

        .divCampoBtn button{
            width: 30px;
            height: 30px;
            float: left;
            margin-left: 5px;
            padding: 0px;
        }

        .divCampoBtn input[type=checkbox]{
            width: 15px;
            height: 15px;
            float: left;
            margin-left: 5px !important;
            margin-top:8px !important;
            padding: 0px;
        }
 
        .divCampoBtn > input, .divCampoBtn > select{
            width: calc(100% - 40px);
            outline: none;
            float: left;
        }


        .divCampo a{
            margin-left: 05px;
        }
        
        .form .divCampo img:not(button img){
            height: 120px;
            width: 120px;
        }
 
        .divCampo .i{
            font-weight: bold;
            font-size: 30px;
            text-align: center;
            width: 100%;
        }    
        
        .divCampo .inputDuplo{
            width: calc((100% - 20px) / 2);
            display: inline-block;
        }

        .selectCampo label{
            width: calc((100% - 25px));
            vertical-align: top;
            font-size: 16px;
            height: 20px;
            margin-top: 4px;
            padding-left: 5px;
        }


        .infoImportant{
            color: red;
            margin: 0px;
            padding: 0px;
        }

        .textAreaHeight0{ height: 30px; }
        .textAreaHeight1{ height: 60px; }
        .textAreaHeight2{ height: 90px; }
        .textAreaHeight3{ height: 120px; }
        .textareaDefault{ height: 145px; }
        .textareaAll{ height: 400px; }
        .textareaAuto{ height: 100% !important; }

        .inputLeft{
            text-align: left !important;
        }
        .inputCenter{
            text-align: center !important;
        }
        .inputRight{
            text-align: right !important;
        }

        .inputObrigatorioDefault{ 
            background-color: BlanchedAlmond;
            border:1px solid gray;
        }
        .inputValueErro{
            background-color: LightPink;
            border:1px solid gray;
        }
        .inputValueGreen{
            background-color: LightGreen;
            border:1px solid gray;
        }
    
        .inputReadOnly{
            background-color: lightgray;
            border:1px solid gray;
            outline: none;
        }
    
        .divInputOptions{
            
            padding: 5px ;
        }
            .divInputOptions input{
                display: inline-block;
                width: 15px;
                height: 15px;
                margin: 2px 0 0 0 ;
                outline-color: orange ;
            }
            .divInputOptions input:focus{
                outline-color: orange ;
            }
            .divInputOptions label{
                display: inline-block;
                width: auto;
                margin: 0px 10px 0px 2px;
                cursor: pointer;
            }

    
        .overFlow-h{
            overflow-x: auto;
        }

    .divTable{
        height: Calc(100% - 30px);
        box-shadow: 5px 5px 10px lightgray;
    }
    .divTableAll{
        height: calc(100%);
    }

    .trHeaderTitle{
        height: 45px;
    }
        .trHeaderTitle .loadingTable{
            transition: 2s;
        }

    .tableHeader{
        border-bottom: 1px dashed gray;
    }
    
    .tableHeader, .tableLanc{
        width: 100%;
    }
    .tableHeaderTitle tr td img{
        height: 30px;
        width: 30px;
    }
    .tableHeader td{
        padding-left: 10px;
        height: 25px;
    }
    .tableHeader .tableHeaderTitle{
        text-align: center;
        font-weight: bold;
        font-size: 18px;
    }
    .tableHeaderBtnNew{
        text-align: right;
        padding: 0 10px 0 0 ;
        height: 25px;
    }
    
    .tableHeader .trHeader{
        text-align: center;
        font-weight: bold;
    }
        .tableTdWidhtAuto{width: auto;padding: 0 10px;}
        .tableTdWidht0{width: 50px;max-width: 50px;text-align: center;}
            .tableTdWidht0-5{width: 75px;text-align: center;}
        .tableTdWidht1{width: 100px;max-width: 100px;text-align: center;}
            .tableTdWidht1-5{width: 135px;text-align: center;}
        .tableTdWidht2{width: 170px;max-width: 170px;text-align: left;}
            .tableHeader .tableTdWidht2{text-align: Center;}
        .tableTdWidht3{width: 250px;max-width: 250px;text-align: left;}
            .tableHeader .tableTdWidht3{text-align: Center;}


        .tableLanc tr{
            height: 25px;
            padding: 3px;
            
        }

        .tableTrDisabled{
            background-color: lightgray;
        }
        
        .tableLanc td{
            padding: 0px 5px;
            border-right: 1px dashed lightgray
        }


        .trHeightP tr{
            height: 30px;
            padding: 1px;
        }

        .tableLanc tr td button{
            height: 25px;
            width: 30px;
            margin: 2.5px;
        }

        .tableLanc.trConfig tr td button{
            width: 100px;
        }

        .tableLanc tr:hover{
            background-color: rgb(235, 233, 233);
            box-shadow: 3px 3px 10px gray;
            border: none;
        }


        
        .trSlim{
            height: 25px;
        }

        .tableLanc .trButton{
            cursor: pointer;
        }

        .borderB{
            border-bottom: 1px solid gray;
        }

    
        .divTablePadrao{ height: calc(100% - 80px); overflow-y: auto; }
        .divTableTrAll{ height: 100%; overflow-y: auto; }
        .divTableTr3{ height: 121px; overflow-y: auto; }
        .divTableTr5{ height: 201px; overflow-y: auto; }
        .divTableTr7{ height: 281px; overflow-y: auto; }
        .divTableTr10{ height: 401px; overflow-y: auto; }
        
    td select{
        border: 0.2px solid lightgray;
        width: 60%;

    }        

    .tableTdWidht0 img{
        width: auto;
        max-width: 30px;
        height: 30px;
    }


.btnNormal{
    height: 30px;
}

.btnSizeQuadro, .btnHideQuadro{
    width: 30px;
    height: 30px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    text-align: center;
}


.btnAll{
    width: 100%;
    height: 40px;
    padding: 5px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    outline: none;
    font-weight: bold;
}
    .btnAll:hover{
        background-color: white;
        color: orange;
        box-shadow: 5px 5px 10px orange;
        font-weight: bold;
    }


    /* backgroundcolors */

.bgcVerd{
    border: 0.5px solid #28A745 !important;          /* verde principal */
    border-radius: 5px !important;
    background-color: #28A745 !important;
    color: white !important;
}
    .bgcVerd:hover{
        background-color: white !important;
        color: #1E7E34 !important;                   /* verde escuro para contraste */
        box-shadow: 3px 3px 5px #28A745 !important;
    }
.bgcLightVerd{
    border: 0.5px solid #A8E5B7 !important;          /* verde claro com melhor leitura */
    background-color: #D9F2E1 !important;            /* fundo mais suave */
    color:#1E7E34 !important;                        /* texto verde escuro */
}
    .bgcLightVerd:hover{
        background-color: white !important;
        color: #1E7E34 !important;
        box-shadow: 3px 3px 5px #A8E5B7 !important;
    }
.colorVerd{
    color:#1E7E34 !important;
}


.bgcVerm{
    border:0.5px solid #DC3545 !important;           /* vermelho principal */
    border-radius: 5px !important;
    background-color: #DC3545 !important;
    color: white !important;
}
    .bgcVerm:hover{
        background-color: white !important;
        color: #B02A37 !important;                   /* vermelho escuro */
        box-shadow: 3px 3px 5px #DC3545 !important;
    }
.bgcLightVerm{
    border: 0.5px solid #F1AEB5 !important;          /* borda suave */
    background-color: #F8D7DA !important;            /* fundo claro (alerta bootstrap-like) */
    color: #842029 !important;                       /* texto vinho escuro para contraste */
}
    .bgcLightVerm:hover{
        background-color: white !important;
        color: #842029 !important;
        box-shadow: 3px 3px 5px #F8D7DA !important;
    }
.colorVerm{
    color:#B02A37 !important;
}

.bgcAzul{
    border:0.5px solid #0D6EFD !important;           /* azul principal */
    border-radius: 5px !important;
    background-color: #0D6EFD !important;
    color: white !important;
}
    .bgcAzul:hover{
        background-color: white !important;
        color: #0D6EFD !important;
        box-shadow: 3px 3px 5px #0D6EFD !important;
    }
.bgcLightAzul{
    border:0.5px solid #9EC5FE !important;           /* borda azul clara */
    background-color: #CFE2FF !important;            /* fundo azul claro */
    color: #084298 !important;                        /* texto azul escuro */
}
    .bgcLightAzul:hover{
        background-color: #E7F0FF !important;        /* hover sutil */
        color: #084298 !important;
        box-shadow: 3px 3px 5px #9EC5FE !important;
    }
.colorAzul{
    color:#084298 !important;
}

.bgclara{
    border:0.5px solid #FD7E14 !important;           /* laranja principal */
    border-radius: 5px !important;
    background-color: #FD7E14 !important;
    color: white !important;
}
    .bgclara:hover{
        background-color: white !important;
        color: #FD7E14 !important;
        box-shadow: 3px 3px 5px #FD7E14 !important;
    }
.colorlara{
    color:#B25A0B !important;                         /* laranja escuro p/ textos */
}
.bgcLightlara{
    border: 0.5px solid #FFCD9C !important;          /* borda laranja clara */
    border-radius: 5px !important;
    background-color: #FFE5D0 !important;            /* fundo suave */
    color:#7C3D00 !important;                         /* texto marrom-alaranjado escuro */
}
    .bgcLightlara:hover{
        background-color: white !important;
        color: #7C3D00 !important;
        box-shadow: 3px 3px 5px #FFCD9C !important;
    }

.bgcLaraClaro{
    background-color: #F3E3C3 !important;             /* laranja muito claro mais neutro */
}

.bgcSalmon{
    background-color: #F9C2C3 !important;             /* salmão clarinho harmonizado */
}

.bgcGray{
    border:0.5px solid #6C757D !important;            /* cinza escuro */
    border-radius: 5px !important;
    background-color: #6C757D !important;
    color: white !important;
}
    .bgcGray:hover{
        background-color: white !important;
        color: #6C757D !important;
        box-shadow: 3px 3px 5px #6C757D !important;
    }
.bgcLightGray{
    border: 0.5px solid #C9CBCF !important;           /* borda cinza clara */
    background-color: #E2E3E5 !important;             /* fundo cinza claro */
    color: #495057 !important;                        /* texto cinza escuro */
}
    .bgcLightGray:hover{
        background-color: white !important;
        color: #495057 !important;
        box-shadow: 3px 3px 5px #C9CBCF !important;
    }
.colorGray{
    color:#495057 !important;
}


.fundoAzul{ background-color: #00b1ec; }
.fundoLightAzul{ background-color: #80cae2; }
.fundoVerd{ background-color: #32CD32; }
.fundoLightVerd{ background-color: #a2dda2; }
.fundoLara{ background-color: #FFA500; }
.fundoLightLara{ background-color: #eed29e; }
.fundoVerm{ background-color: #FF6347; }
.fundoLightVerm{ background-color: #f0a1a1; }
.fundoGray{ background-color: gray; }
.fundoLightGray{ background-color: lightgray; }

.text-line{
    text-decoration: line-through;
}

.imgButton{
    max-width: 25px;
    max-height: 25px;
}

.imgTd{
    max-height: 30px;
    max-width: 30px;
    margin: 0;
}

.tdCheckBox{
    max-width: 20px;
    max-height: 20px;
}

.floatRight{
    float: right;
}

.divInput{
    margin: 0px;
    padding: 2px 5px;
    border: 1px solid gray;
    border-radius: 5px;
    width: 100%;
    height: 30px;
    font-size: 17px;

}

.divInput a{
    cursor: pointer;
}

.inputAnexo{
    cursor: pointer;
}


.imgLoading-1{ width: 10px; height: 10px; }
.imgLoading-2{ width: 20px; height: 20px; }
.imgLoading-3{ width: 30px; height: 30px; }
.imgLoading-4{ width: 40px; height: 40px; }
.imgLoading-5{ width: 50px; height: 50px; }

.popupBox{
    position: fixed;
    width: 310px;
    height: auto;
    bottom: 10px;
    left: 10px;
    border: none;
    z-index: 10100;
}

.popup{
    margin-bottom: 10px;
    width: 300px;
    height: 50px;
    border: none;
    border-radius: 10px;
    box-shadow: 5px 5px 10px lightgray;
    padding: 10px 20px;
    text-align: left;
    transition-duration: 1s;
    overflow: hidden;
    opacity: 0;
    transition: 2s;

}
    .popup i{ 
        width: 40px; 
        display: inline-block;
        font-size: 25px;
    }
    .popup h3{ 
        width: calc(100% - 45px); 
        margin: 0%; 
        display: inline-block;
    }
    .popup p{ 
        width: 100%; 
        margin: 0px; 
        margin-top: 10px ;
        display: inline-block;
    }

    .popup:hover{
        height: 100px;
    }
  
.popupApp{
    position: absolute;
    width: 90%;
    top: -60px; 
    left: 5%;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 5px 5px 10px lightgray;
    text-align: center;
    transition-duration: 2s;
    z-index: 1100;
    }
    .popupApp h3{  margin: 0%; }
    
  .bgcPopupGreen{ background-color: rgb(115, 196, 115); color: white;}
  .bgcPopupRed{ background-color: rgb(199, 95, 95); color: white;}
  .bgcPopupOrange{ background-color: rgb(241, 200, 123); color: gray;}

  
  .alignLeft{ text-align: left; }
  .alignCenter{ text-align: center; }
  .alignRight{ text-align: right; }


/* =============================================*/
/* MODAL GOOGLE MAPS */

#map {
    width: 100%;
    height: calc(100% - 40px);
    background-color: grey;
}




/* =============================================*/

.divLoading h1{
    font-weight: bold;
    color: white;
}




button .imgBtn{
    max-width: 30px;
    height: calc(100% - 10px);
}

.noBreak{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


@media print {
    .noPrint {
        display: none; 
    }

}


.table-colorAlt tr:nth-child(even) {
    background-color: #ffffff;
}
.table-colorAlt tr:nth-child(odd) {
    background-color: #f2f2f2;
}


/* CSS PRODUTO PADRONIZADO*/


.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }


.boxProduto{
    position: relative;
    width: 200px;
    height: 350px;
    padding: 0px;
    display: inline-block;
    margin: 0px;
    background-color: white;
    border: 0.5px solid #fff;
    border-bottom: 5px solid red;
    border-radius: 5px;
    vertical-align: top;
    cursor: pointer;
    white-space: normal;
    text-align: left;
    flex: 0 0 auto;
    transition: border 1s ease-in-out, background-color 0.5s ease;

}

.boxProduto:hover{
    border-left: 0.5px solid lightgray;
    border-right: 0.5px solid lightgray;
    border-top: 0.5px solid lightgray;

}

.boxTags{
    position: absolute;
    margin: 0px;
    width: auto;
    height: auto;
    padding: 5px;
    display: flex;
    right: 05px;
    top: 05px;
    border: none;
    border-radius: 10px;
    background-color: rgba(240, 240, 240,0.7);
    cursor: pointer;

}
.boxTags:hover{
    background-color: rgba(220, 220, 220,01);
}

.boxTags .favorito{
    margin: 0px;
    width: 30px;
    height: 30px;
    padding: 0px;
    font-size: 25px;
    text-align: center;
    
}

.boxInfo{
    margin: 0px;
    width: 100%;
    height: 100%;
    padding: 0px;
}


.boxProduto .topo{
    position: relative;
    margin: 0px !important;
    width: 100% !important;
    height: 200px !important;
    padding: 0px !important;
    border: none !important;
    background-color: white;
    z-index: 1;

}
.boxProduto .topo .imgBox{
    position: absolute;
    margin: 0px;
    padding: 0px;
    border: none !important;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.boxProduto .topo .logo{
    left: 5px;
    width: auto;
    max-width: 50px !important;
    height: auto;
    max-height: 40px !important;
    border: 1px solid gray;
}

.boxProduto p, .boxProduto h4{
    margin: 0px;
    margin-bottom: 5px;
    ;
}

.boxProduto h4{
    max-height: 54px;
    word-wrap: break-word;
    overflow: hidden;
}

.boxProduto p{
    font-size: 12px;
}

.boxProduto b{
    font-size: 18px;
} 

.boxProduto .info{
    height: auto;
    margin: 5px;
} 

.boxProduto .boxInfo .info .desc{
    height: 60px !important;
    max-height: 60px !important;
}

.boxProduto .boxInfo .preco{
    padding-left: 5px;
    display: flex;
    align-items: flex-end; /* Alinha o conteúdo no final do container */
    justify-content: flex-start;
    height: 50px;
    text-align: left;
}


.divProdutoLoading{
    width: 100%;
    height: auto;
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: left;
    align-items: center;
    gap: 20px;    
}
 
.boxProdutosLista .product-placeholder,.listProdutos .product-placeholder{
    width: 200px;
    height: 350px;
    padding: 10px;
    border: 0.5px solid #ccc;
    border-radius: 5px;
    box-shadow: 5px 5px 10px #f0f0f0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-direction: column;
    align-items: center;    
    box-shadow: 5px 5px 10px lightgray;
}

.departamentos-container .product-placeholder{
    width: 400px;
    height: 200px;
    padding: 0px;
    border: 0.5px solid #ccc;
    border-radius: 5px;
    box-shadow: 5px 5px 10px #f0f0f0;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;  
    gap: 10px;  
    box-shadow: 5px 5px 10px lightgray;
}

.image-placeholder{
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.text-placeholder{
    width: 90%;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin-top: 5px;
}
.tp-1{ height: 20px; }
.tp-2{ height: 65px; }
.tp-3{ height: 40px; }


.loadingCampBox{
    padding: 10px !important;
    border: 1px solid #ccc !important;
}

.loadingCamp{
    
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}


@keyframes loading{
    0%{
        background-position: 200% 0;
    }
    100%{
        background-position: -200% 0;
    }
}

.arrastarX{
    overflow: hidden;
    overflow-x: auto;
    flex-direction: row;
}

.arrastarY{
    overflow: hidden;
    overflow-y: auto;
    flex-direction: column;
}

    
.ofertasBox{
    position: relative;
    margin: 0px 10px;
    width: calc(100% - 20px);
    height: 370px;
    padding: 0px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;

}
 
.btnOverflow{
    position: absolute;
    margin: 0px;
    width: 50px;
    height: 50px;
    padding: 0px;
    color: black;
    font-size: 30px;
    top: calc(50% - 25px);

    background-color: rgb(150, 150, 150);
    opacity: 40%;
    border: none;
    border-radius: 25px;
    z-index: 2;
}
.btnOverflow:hover{ opacity: 80%; }
.btnOverflow i{ color: black; }


.btnAnt{ left: 0px; }
.btnPos{ right: 0px; }


.boxProdutosLista{
    width: 100%;
    height: 100%;
    padding: 0px 20px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}


.listProdutos{
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;  
    background-color: #fff;
}




.imgBox{
    width: 100%;
    height: 100%;
}

.imgContent{
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
}

.imgContent img{
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
}

.imgContent .img-logo{
    
    width: 30% !important;
    height: 20% !important;
}

.ui-autocomplete {
    z-index: 10051 !important; /* maior que o do modal (Bootstrap usa 1050) */
}


.itemCancel{
    color: red;
    text-decoration: line-through;
    opacity: 0.7; /* opcional: dá um efeito de "inativo" */
}


