@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
    text-decoration: none;
}

:root {
    --site-color: #3a7afe;
    --main-color: #ebeef6;
    --active-color: #d4def7;
    --bg-color: #ecedf0;
    --second-color: #f1f1f1;
    --third-color: #9fa7bd;
    --fourth-color: #fff;
    --fifth-color: #000;
    --sixth-color: #222;
    --main-bg-color: #192039;
    --second-bg-color: #1e2746;
    --third-bg-color: #3a7afe;
    --fourth-bg-color: #131b38;
    --primary-color: #0088cc;
    --success-color: #47a447;
    --info-color: #5bc0de;
    --warning-color: #ed9c28;
    --danger-color: #d2322d;
    --primary-color-second: #cfe2ff;
    --success-color-second: #d1e7dd;
    --info-color-second: #cff4fc;
    --warning-color-second: #fff3cd;
    --danger-color-second: #f8d7da;
}

 body {
    /* Adicione isso para evitar que o conteúdo da página fique escondido sob a navbar */
    padding-top: 60px; /* ajuste conforme a altura da navbar */

}
/* 
html, body {
 
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: visible;
    background-color: var( --fourth-bg-color);
    box-sizing: border-box;

} */
#insere-faturamento{
  width: 100%;
}

@media (max-width: 628px) {
    #insere-faturamento{
        width: 100%;
    }

    
}

/* .navbar {
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    background: linear-gradient(135deg, var(--third-bg-color), var(--fourth-bg-color));
    position: sticky;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.12);
    padding: 5px 15px;
    font-size: 17px;
    top: 0;
    z-index: 1;
} */


.navbar {
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--third-bg-color), var(--fourth-bg-color));
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.12);
    padding: 5px 15px;
    font-size: 13px;
    
    /* Fixar no topo e ocupar 100% da largura da tela */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000; /* garantir que fique sobre outros elementos */
}

.navbar .navbar-content {
    display: flex;
    align-items: center;
}

.navbar .bars,
.notification {
    margin-right: 20px;
    cursor: pointer;
}

.logo {
    /* width: 50px; */
    width: 45px;
}

.notification,
.avatar {
    cursor: pointer;
    position: relative;
}

.notification .number {
    position: absolute;
    font-size: 13px;
    font-weight: bold;
    background-color: var(--site-color);
    width: 20px;
    color: var(--second-color);
    height: 20px;
    border-radius: 50%;
    right: -10px;
    top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}


/* Inicio dropdown navbar */

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    background-color: var(--main-bg-color);
 
    width: 280px;
    border-radius: 7px;
    display: none;
}

.dropdown-content {
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-menu li,
.dropdown-menu .item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--second-bg-color);
    cursor: pointer;
    font-size: 15px;
}

.dropdown-menu li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.dropdown-menu li .text {
    font-style: italic;
    margin-left: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-menu li:hover,
.dropdown-menu .item:hover {
    background-color: var(--second-bg-color);
}


/* Apresentar a mensagem inteira */


/*.dropdown-menu li:hover .text {
    white-space: pre-wrap;
}*/

.dropdown-menu .item span {
    margin-right: 15px;
}

.dropdown-menu.setting {
    width: 150px;
}

.dropdown-menu.active {
    display: block;
}


/* Fim dropdown navbar */


/* Fim Navbar */


/* Inicio conteudo */

.content {
    display: flex;
}


/* Inicio sidebar */

.content .sidebar {
    color: var(--main-color);
    height: calc(100vh - 60px);
    width: 60px;
    /*width: 250px;*/
    position: sticky;
    top: 60px;
    /* background-color: var(--main-bg-color); */
    background: linear-gradient(135deg, var(--third-bg-color), var(--fourth-bg-color));
    box-shadow: 0 1px 4ps 1px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.3s width ease-in-out;
    flex-shrink: 0;
}

@media(max-width: 768px) {
    .content .sidebar {
        width: 60px;
        position: fixed;
        z-index: 1;
        width: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.content .sidebar:hover,
.content .sidebar.active {
    width: 250px;
}

.sidebar .sidebar-nav {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
    cursor: pointer;
    transition: 0.3s background ease;
    font-size: 13px;
}

.sidebar .dropdown-btn {
    padding: 15px 0;
    font-size: 13px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    width: 100%;
    color: var(--main-color);
}


.sidebar a {
    color: var(--main-color);
}

.sidebar a:hover {
    /* background-color: var(--second-bg-color); */
    background: linear-gradient(135deg, var(--fourth-bg-color), var(--third-bg-color));
    color: var(--active-color);
}

.sidebar .sidebar-nav.active {
    /* background-color: var(--second-bg-color); */
    background: linear-gradient(135deg, var(--fourth-bg-color), var(--third-bg-color));
    color: var(--active-color);
}

.sidebar .sidebar-nav.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--site-color);
}
/* ICONES DO MENU */
.sidebar-nav .icon {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    
}

.dropdown-btn .icon{
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    
}
/* FIM ICONES DO MENU */


/* Inicio dropdown sidebar */

/* .sidebar .dropdown-btn {
    padding: 15px 0;
    font-size: 16px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    width: 100%;
    color: var(--main-color);
} */


.sidebar .dropdown-btn  span{
    margin-right: 5px;
    /* padding-left: 30px;
     */
}


.sidebar .dropdown-btn  .dropdown-container1{
    padding: 30px;
} 


.sidebar .dropdown-btn:hover{
    background: linear-gradient(135deg, var(--fourth-bg-color), var(--third-bg-color));
    /* background-color: var(--second-bg-color); */
    color: var(--active-color);
}



/* .dropdown-btn .icon{
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    
} */



.sidebar .dropdown-btn.active{
    /* background-color: var(--second-bg-color); */
    background: linear-gradient(135deg, var(--fourth-bg-color), var(--third-bg-color));
    color: var(--active-color);
}


.sidebar .dropdown-container{
    display: none;
    /* background-color: var(--fourth-bg-color); */
    /* background: linear-gradient(135deg, var(--third-bg-color), var(--fourth-bg-color));
     */
    padding-left: 10px;
    
}
.dropdown-container1 {
    padding-left: 10px;
    border: 2px solid var(--site-color); 
    border-radius: 10px; 
    background: linear-gradient(135deg, var(--third-bg-color), var(--fourth-bg-color)); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    /* transition: all 0.3s ease;  */
}

.dropdown-container1:hover {
    /* transform: scale(1.05);  */
    /* transform: translate(5px, 0) scale(1.05); */
    /* transform: rotate(1.09deg) scale(1.05); */
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); */
}

.sidebar .dropdown-container.active{
    display: block !important;
}


/* Fim dropdown sidebar */

/* Fim sidebar */
/* Para retirar o dark mode automatico só precisa habilitar o background-color */
.content .wrapper {
    width: 100%;
    padding: 10px;
      
    background-color: var(--bg-color);
}

.content .row {
    background-color: var(--fourth-color);
    border-radius: 6px;
    /*margin: 10px;*/
}
/* --------------------------------------------------------------------------- */

.wrapper .row {
    display: flex;
    /* justify-content: space-between;  */
     /* Habilite o justify-content:space-between para espaçamento entre os itens; */
    padding: 5px;
    flex-wrap: wrap;
}
 




/* Inicio dashboard */

.row .box {
    /*background-color: #f00;*/
    width: 23%;
    margin: 5px 1%;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--fourth-color);
    border-radius: 5px;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 3px 4px 1px rgba(0, 0, 0, 0.12);
}

.row .box-first {
    background-color: var(--primary-color);
}

.row .box-second {
    background-color: var(--success-color);
}

.row .box-third {
    background-color: var(--warning-color);
}

.row .box-fourth {
    background-color: var(--danger-color);
}

.box span {
    margin: 5px 0;
    font-size: 17px;
    position: relative;
}

@media (max-width: 1024px) {
    .row .box {
        width: 48%;
    }

}

@media(max-width: 768px) {
    .row .box {
        width: 98%;
    }
}


/* Fim dashboard */


/* Inicio listar */

.row .top-list {
    width: 100%;
    overflow: hidden;
     margin-bottom: 10px;
}

.top-list .title-content {
    float: left;
    color: var(--fourth-color);
    padding: 10px 16px;
    font-size: 17px;
    
    
    
}

.top-list .top-list-right {
    padding: 10px 5px 5px 0;
    float: right;
}

.table-list {
    margin-top: 15px;
    width: 100%;
}

.table-list .list-head .list-head-content {
    background-color: var(--main-color);
    color: var(--fourth-bg-color);
    padding: 10px;
}

.table-list .list-body .list-body-content {
    background-color: var(--fourth-color);
    color: var(--fourth-bg-color);
    padding: 8px;
}

@media (max-width: 540px) {
    .table-sm-none {
        display: none;
    }
}

@media (max-width: 720px) {
    .table-md-none {
        display: none;
    }
}

@media (max-width: 960px) {
    .table-lg-none {
        display: none;
    }
}

@media (max-width: 1140px) {
    .table-xl-none {
        display: none;
    }
}


/* Inicio botao dropdown do listar */

.dropdown-btn-action {
    background-color: var(--primary-color);
    color: var(--fourth-color);
    padding: 5px 8px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.dropdown-btn-action:hover,
.dropdown-btn-action:focus {
    background-color: var(--fourth-color);
    color: var(--primary-color);
}

.dropdown-action {
    position: relative;
    display: inline-block;
}

.dropdown-action-item {
    display: none;
    background-color: var(--fourth-color);
    min-width: 130px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    right: 0;
    z-index: 1;
}

.dropdown-action-item a {
    color: var(--sixth-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-action-item a:hover {
    background-color: var(--main-color);
}

.show-dropdown-action {
    display: block;
}


/* Fim botao dropdown do listar */


/* Inicio paginacao */

.content-pagination {
    margin: 15px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination {
    display: inline-block;
    font-size: 15px;
}

.pagination a {
    color: var(--fourth-bg-color);
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}

.pagination a.active {
    background-color: var(--second-bg-color);
    color: var(--fourth-color);
}

.pagination a:hover:not(.active) {
    background-color: var(--main-color);
}


/* Fim paginacao */


/* Fim listar */


/* Inicio pernalizar botao */

.btn-primary {
    background-color: var(--primary-color);
    color: var(--fourth-color);
    padding: 5px 8px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-primary:hover {
    background-color: var(--fourth-color);
    color: var(--primary-color);
}

.btn-success {
    border: none;
    cursor: pointer;
    background-color: var(--third-bg-color);
    color: var(--fourth-color);
    padding: 10px 20px;
    margin-left: 10px; 
    border: 1px solid var(--third-bg-color);
    border-radius: 4px;
    font-size: 15px;
    transition: all .3s ease;
}

#btn-confirma{
    
    margin-top: 16px;
}

.btn-success:hover {
    background-color: var(--fourth-color);
    color: var(--third-bg-color);
}

.btn-warning {
    background-color: var(--warning-color);
    color: var(--fourth-color);
    padding: 5px 8px;
    border: 1px solid var(--warning-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-warning:hover {
    background-color: var(--fourth-color);
    color: var(--warning-color);
}

.btn-danger {
    background-color: var(--danger-color);
    color: var(--fourth-color);
    padding: 5px 8px;
    border: 1px solid var(--danger-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-danger:hover {
    background-color: var(--fourth-color);
    color: var(--danger-color);
}

.btn-info {
    background-color: var(--info-color);
    color: var(--fourth-color);
    padding: 5px 8px;
    border: 1px solid var(--info-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-info:hover {
    background-color: var(--fourth-color);
    color: var(--info-color);
}


/* Inicio botao outline */

.btn-outline-primary {
    background-color: var(--fourth-color);
    color: var(--primary-color);
    padding: 5px 8px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--fourth-color);
}

.btn-outline-success {
    background-color: var(--fourth-color);
    color: var(--success-color);
    padding: 5px 8px;
    border: 1px solid var(--success-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-outline-success:hover {
    background-color: var(--success-color);
    color: var(--fourth-color);
}

.btn-outline-warning {
    background-color: var(--fourth-color);
    color: var(--warning-color);
    padding: 5px 8px;
    border: 1px solid var(--warning-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-outline-warning:hover {
    background-color: var(--warning-color);
    color: var(--fourth-color);
}

.btn-outline-danger {
    background-color: var(--fourth-color);
    color: var(--danger-color);
    padding: 5px 8px;
    border: 1px solid var(--danger-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-outline-danger:hover {
    background-color: var(--danger-color);
    color: var(--fourth-color);
}

.btn-outline-info {
    background-color: var(--fourth-color);
    color: var(--info-color);
    padding: 5px 8px;
    border: 1px solid var(--info-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-outline-info:hover {
    background-color: var(--info-color);
    color: var(--fourth-color);
}


/* Fim botao outline */


/* Fim pernalizar botao */


/* Inicio formulario */

.wrapper .content-adm {
    
    width: 100%;
    padding: 10px;
}
.listaTitulo{
    /* display: flex; */
    
}

.form-adm {
    width: 100%;
    position: relative;
    margin: 10px auto 0 auto;
}

.row-input {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 30px;
    /* margin-bottom: 20px; */
    margin-bottom: 10px;



    
   
    
}


.title-input {

        font-weight: bold;
        margin-bottom: 5px;
        /* display: flex; */
        padding: 10px;
        color: #333;
        color: var(--fourth-bg-color);
        font-size: 14px;
        align-items: center;
}


input.input-adm,
textarea.input-adm,
select.input-adm {
    width: 100%;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
    
}

textarea.input-adm {
    resize: none;
}

input.input-adm:focus,
textarea.input-adm:focus,
select.input-adm:focus {
    outline: none;
    border-color: var(--site-color);
}


/* Fim formulario */


/* Inicio visualizar */

.content-adm .view-det-adm {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.view-det-adm .view-adm-title {
    width: 80px;
    color: var(--fourth-bg-color);
    font-size: 15px;
    font-weight: 500;
    margin-right: 10px;
}

.view-det-adm .view-adm-info {
    width: 100%;
    color: var(--second-bg-color);
    font-size: 15px;
    padding: 3px 10px;
}


/* Fim visualizar */


/* Inicio alerta */

.alert-primary {
    background-color: var(--primary-color-second);
    color: var(--primary-color);
    margin: 10px 0;
    border-radius: 4px;
    padding: 12px 7px;
}

.alert-success {
    background-color: var(--success-color-second);
    color: var(--success-color);
    margin: 10px 0;
    border-radius: 4px;
    padding: 12px 7px;
}

.alert-warning {
    background-color: var(--warning-color-second);
    color: var(--warning-color);
    margin: 10px 0;
    border-radius: 4px;
    padding: 12px 7px;
}

.alert-danger {
    background-color: var(--danger-color-second);
    color: var(--danger-color);
    margin: 10px 0;
    border-radius: 4px;
    padding: 12px 7px;
}

.alert-info {
    background-color: var(--info-color-second);
    color: var(--info-color);
    margin: 10px 0;
    border-radius: 4px;
    padding: 12px 7px;
}


/* Fim alerta */

/* Inicio pesquisar */
.consulta-cupom{
    /* width: 20%; */
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    /* margin-top: 5px; */
    
   
}

#horaIni,#horaFim{
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    /* gap: 20px 30px; */
    margin-bottom: 10px;
    width: 80%;
    
    
    font-weight: 400;
    /* padding: 8px 10px; */
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
}

@media (max-width: 668px){
    #horaIni,#horaFim{
        width: 100%;
        
    }
}




.row-input-search{
    width: 100%;
    display:flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 30px;
    margin-bottom: 20px;
  
}

.row .calendario-movimento{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 30px;
  
    /* margin-bottom: 10px; */
   
    
}



.row .consulta-cartão{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 30px;
    /* margin-bottom: 10px; */

}

@media (max-width: 685px) {
   
    .row .calendario-movimento{
      width: 100%;
      
    
    }

    .row .consulta-cartão{
        width: 100%;
    }
   
}

.row-input .pagamento{
   width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 30px;
    /* margin-bottom: 10px; */
}

.pagamento{
    width: 49%;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
}

@media (max-width: 685px) {
   
    .pagamento{
      width: 100%;
      
    
    }
}



 .consulta-cartão, .calendario-movimento{
    /* width: 100%; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px 30px;
    /* margin-bottom: 10px; */
    width: 30%; 
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
    
    
    
    
    
}



#dataVenctoIni, #dataVenctoFim, #dataIni, #dataFim{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    /* gap: 20px 30px; */
    margin-bottom: 10px;
    width: 80%;
    
    
    font-weight: 400;
    /* padding: 8px 10px; */
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
    
}



@media (max-width: 1024px) {
   
    #dataVenctoIni, #dataVenctoFim,#dataIni, #dataFim, .consulta-cartão, .calendario-movimento{
    
      width: 100%;
      
    
    }

  
}




.title-input-search{
    color: var(--fourth-bg-color);
    font-size: 14px;
}

.insTituloAdRd{
    

}

input.input-search,
select.input-search{
    width: 100%;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
    
}

input.input-search:focus,
select.input-search:focus{
    outline: none;
    border-color: var(--site-color);
}

@media (min-width: 1250px){
    .margin-top-search{
        margin-top: 25px;
    }
}

@media (min-width: 927px){
    .margin-top-search-one{
        margin-top: 25px;
    }
}



/* Fim pesquisar */

/* Inicio margem */

.mt-1{
    margin-top: 2px;
}

.mt-2{
    margin-top: 4px;
}

.mt-3{
    margin-top: 6px;
}

.mt-4{
    margin-top: 8px;
}

.mt-5{
    margin-top: 10px;
}

.mt-6{
    margin-top: 12px;
}

/* Fim margem */

/* Fim conteudo */




/* ESTILOS HERBERT */
.botaoLancamento {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Estilo Planilhas tabela */
.container {
  
    width: 100%;
   /* max-width: 1630px; */
    /* max-width: 90%; */
    /* height: 85%; */
    /* height: 800px; */
    overflow-x: auto;
    overflow-y: auto;
   
  
    margin: 0 auto;
    box-sizing: border-box;
}
/* .container {
    width: 100%;
    max-width: 100vw;
    height: 85vh;
    overflow-x: auto;
    overflow-y: auto;
    margin: 0 auto;
    box-sizing: border-box;
} */


/* Estilo para os scroll */
.container::-webkit-scrollbar{
    width: 8px;         /* largura do scroll vertical */
    height: 8px;        /* altura do scroll horizontal */
}

.container::-webkit-scrollbar-track{
      background: #8f8e8e;  /* fundo da trilha */
    border-radius: 4px;
}
.container::-webkit-scrollbar-thumb{
    background: linear-gradient(135deg, var(--fourth-bg-color), var(--third-bg-color));      /* cor do "botão" de scroll */
    border-radius: 4px;

}
.container::-webkit-scrollbar-thumb:hover {
       background: linear-gradient(135deg, var(--third-bg-color), var(--fourth-bg-color));       /* cor ao passar o mouse */
}

/*FIM Estilo para os scroll */

/*---- teste --------*/

.container {
    /* width: 90%;
    max-width: 600px;
    height: 300px;
    overflow-x: auto;
    overflow-y: auto;
    margin: 0 auto;
    box-sizing: border-box;
    border: 1px solid #ccc; */
}

.container table {
     table-layout: auto; /* deixa o navegador ajustar a largura das colunas */
    font-size: 12px;
    border-collapse: collapse;
    width: 100%;
}



.container th,
.container td {
    padding: 4px 8px;
    border: 1px solid #ddd;
}



.tdgeral{
     background: #ffffff;
    /* color: #ffffff; */
    position: sticky;
    position: -webkit-sticky;
  
    left: 0;
    /* top: 0; */
    padding: 10px;
  
    border: 1px solid #ddd;
    /* min-width: 150px;  */
    max-width: 150px;
    /* z-index: 1; */
    text-align: left;
    
}

.tdgeral-vendedor{
        background: #ffffff;
    /* color: #ffffff; */
    position: sticky;
    position: -webkit-sticky;
  
    left: 0;
    /* top: 0; */
    padding: 10px;
  
    border: 1px solid #ddd;
    /* min-width: 150px;  */
    max-width: 150px;
    /* z-index: 1; */
    text-align: left;
  
}



/* -----fim teste-------- */



/* Planilha referente ao formLancamentoM.php */
.container-formLaçamentoM {
    width: 100%;
    /* max-width: 100%; */
    height: 30%;
    overflow-x: auto;
    overflow-y: auto;
    box-sizing: border-box;
}
.planilha-excluiLacamento{
    width: 100%;
    /* max-width: 100%; */
    height: 30%;
    overflow-x: auto;
    overflow-y: auto;
    box-sizing: border-box;

}

table {
    width: 100%;
    border-collapse: collapse; /* Remove as bordas entre células */
    margin: 20px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fixa os itens na rolagem overflow-x */
.thgeral{
    background: #ffffff;
    /* color: #ffffff; */
    position: sticky;
    position: -webkit-sticky;
  
    left: 0;
    /* top: 0; */
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    /* min-width: 150px;  */
    max-width: 150px;
    /* z-index: 1; */
 
}

.thdias {
    background: #fff;
    /* color: #ffffff; */
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}



th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd; /* Adiciona bordas às células */
}

thead {
    background-color: #f4f4f4;
    font-weight: bold;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Alterna a cor das linhas */
}

tbody tr:hover {
    background-color: #f1f1f1; /* Cor ao passar o mouse */
}

/* Estilo para dispositivos móveis */
@media (max-width: 668px) {
    .container {
       width: 100%;
        /* height: 100%; */
        padding: 5px;
        
    }

    .thdias {
        /* background: linear-gradient(200deg, var(--fourth-bg-color), var(--third-bg-color)); */
        position: static; /* Alterado para static para que não fique fixo em dispositivos móveis */
    }

    th, td {
        padding: 8px;
        font-size: 14px;
    }
  
}

@media (max-width: 400px) {
    th, td {
        font-size: 12px;
        padding: 6px;
    }
}


  .top-list{
    width: 85vw;  
    display: flex;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    /* background-color: var(--fourth-bg-color); */
    background: linear-gradient(200deg, var(--fourth-bg-color), var(--third-bg-color));
    
  }


/* RESULTADO DE PESQUISA */
  #resultadoPesquisa , ul li{
    color: #fff;
 
    list-style-type: none;
    z-index: auto;
    cursor: pointer;
    margin-top: 4px;
   
   
  }
  ul li:hover{
    color: var(--site-color) ;
    transition: 0.2s;
    font-weight: bold;
    /* font-size: 19px; */
  }

  #resultadoPesquisa ul{
    
    position: absolute; /* Ou absolute dependendo do layout desejado */
    z-index: 9999; /* Um valor alto para garantir que fique sobre outros elementos */
    background: linear-gradient(200deg, var(--fourth-bg-color), var(--third-bg-color));
    border-radius: 7px;
    width: 16%;
    margin-left:-300px;
    margin-top: -15px;
    padding-left: 10px;
  }


  @media(max-width: 768px) {
    #resultadoPesquisa ul {
        width: 60%;
        left: 0;
        right: 0;
        margin: 0 auto; 
    }
}
  
/* FIM RESULTADO DE PESQUISA */

 
/* INICIO BOTÃO ARQUIVO */ 
#custum-file-upload {
    height: 90px;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    gap: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cacaca;
    background-color: rgba(255, 255, 255, 1);
    padding: 1.5rem;
    /* padding-top: 80px; */
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px rgba(0,0,0,0.1);
   
  }
  
  #custum-file-upload .icon {
    display: flex;
    align-items: center;
    justify-content: center;
   
  
  }
  
  #custum-file-upload .icon svg {
    height: 40px;
    fill: rgba(75, 85, 99, 1);
   
    
  }
  
  #custum-file-upload .text {
    display: flex;
    align-items: center;
    justify-content: center;
   
   
  }
  
  #custum-file-upload .text span {
    font-weight: 400;
    color: rgba(75, 85, 99, 1);
    
  }
  
  #custum-file-upload input {
    display: none;
   
  }

  /*FIM BOTÃO ARQUIVO  */

#historico{
    display: block;
    /* text-align: center;
    align-items: center;
    justify-content: center; */
    height: 100px;
    width: 100%;
    
   /* background-color: #000; */
}
/* Campo oculto */
/* .teste{
    display: none;
} */

/* Campo que tem 2 inputs */
.column-2input{
    display: flex;
    align-items: center;
    gap: 10px;
    
    /* width: 100%; */
    /* flex-direction: column; */
    /* justify-content: center;
    align-items: center;
    margin-top: 10px; */
}


@media (max-width: 668px) {
   .column-2input {
      display: grid;
   }
}

.column-excluiLancamento  {
    display: flex;
    align-items: center;
  
    
}

.column-excluiLancamento .title-input {
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    color: #333;
    color: var(--fourth-bg-color);
    font-size: 14px;
    align-items: center;
    width: 100%;

}

.column-excluiLancamento  .title-input .input-search{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    /* gap: 20px 30px; */
    
    width: 80%;
    font-weight: 400;
    /* padding: 8px 10px; */
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
}
.column-lancamentoManuais{
    display: flex;
    align-items: center;
    /* gap: 10px; */
    /* text-align: center; */
  }
.column-lancamentoManuais .title-input{
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    text-align: center;
   
    padding-top: 10px;
    color: #333;
    color: var(--fourth-bg-color);
    font-size: 14px;
    align-items: center;
    /* width: 100%; */
   
}

.column-lancamentoManuais  #idUnDestino, #dataFaturamento{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    /* gap: 20px 30px; */
   
    padding-top:10px ;
    width: 50%;
    font-weight: 400;
    /* padding: 8px 10px; */
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
}

#dataFaturamento{
    
   
}



.button-excluiLancamento{
    display: flex;
    text-align: center;
    align-items:center ;

 
    align-items: center;
}

@media (max-width: 668px){
    .column-excluiLancamento {
        /* display: flex;
        align-items: center;
        text-align: center; */
    
        
    }

    .column-excluiLancamento .title-input{
        display: inline;
      
       
    }

    .column-excluiLancamento .title-input .input-search{
        width: 100%;   
    }

    .column-lancamentoManuais{
        display: flex;
        flex-direction: column;
       
    }

    .column-lancamentoManuais #idUnDestino, #dataFaturamento{
        
       
        width: 100%;
    }

    .column-lancamentoManuais .title-input{
       
      
       
        width: 100%;
    }

 

}


/* -------------------------------------- */




.Limpar-filtro{
    border: none;
    cursor: pointer;
    background-color: var(--third-bg-color);
    color: var(--fourth-color);
    padding: 10px 20px;
    margin-left: 10px;
    border: 1px solid var(--third-bg-color);
    border-radius: 4px;
    font-size: 15px;
    transition: all .3s ease;
}
.Limpar-filtro:hover {
    background-color: var(--fourth-color);
    color: var(--third-bg-color);
}

.fa-trash{
    color: var(--site-color);
    
    font-size: 17px;
}
.fa-trash:hover{
    color: red;
    transition: 0.2s;
    font-weight: bold;
    /* font-size: 19px; */
}

.delete-btn{
    /* width: 40px; */
    border: none;
 
}

/* Referente a tabela gerada com o Javascript do arquivo formLancamentoM.php */
.grupo, .tipo, .quantidade, .valor {
    width: 100%;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1.2px solid var(--active-color);
    margin-top: 5px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .grupo, .tipo, .quantidade, .valor {
        width: 100%;
       
        padding: 6px 8px;
        font-size: 14px;
     
    }
    .grupo{
       width: 49px;
    }
    
    .tipo{
        width: 49px;
       
    }
    .quantidade{
        width:50px;
    }
    .valor{
        width:44px;
    }
}

 /* FIM -------------Referente a tabela gerada com o Javascript do arquivo formLancamentoM.php-----------

/* .delete-btn:hover {
    background-color: var(--third-bg-color);
} */

/* Responsividade */
@media screen and (max-width: 768px) {
  
.button-listaTitulosExp {
    display: flex;
    text-align: center;
    align-items:center ;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    margin-left: 0px;
    margin-right: 0px;
}

.button-excluiLancamento{
    display: flex;
    text-align: center;
    align-items:center ;
    width: 100%;
 
}
.Limpar-filtro{
    height: 50px;
}
.btn-success{
    height: 50px;
  
}
.remove-btn{
    text-decoration: none;
}


  

 
    /* .column-excluiLancamento {
        min-width: 100%;
    } */
/* 
    .btn-success {
        width: 100%;
    } */

 
}
/* -------------------------- */

.row-input .column .asterisco{
    color: red;
    
}
.asterisco {
    padding: 10px;
    color: red;
    font-weight: bold;
}



element.style {
    display: none;
}


/* FOTO DO PERFIL */

.perfil-foto{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}
/* FIM FOTO DO PERFIL */


/* INICIO CAMPO DE EDITAR PERFIL */

/* Estilo para o modal */
.w3-modal {
    display: none; /* Oculta o modal por padrão */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
}

/* Conteúdo do modal */
.w3-modal-content {
    margin: 10% auto; /* Centraliza verticalmente e horizontalmente */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Largura do modal */
    background-color: #ffffff73;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

/* Cabeçalho do modal */
.w3-container.w3-theme-d2 {
    background: linear-gradient(200deg, var(--fourth-bg-color), var(--third-bg-color));
    /* background-color: var(--fourth-bg-color); Cor de fundo do cabeçalho */
    color: white;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Botão de fechar no cabeçalho */
.w3-button.w3-display-topright {
    color: red;
    font-size: 35px;
    font-weight: bold;
    /* border: solid #f44336 2px; */
   /* border-style: groove;
    border-radius: 50% ; */
    cursor: pointer;
    position: absolute;
    top: 160px;
    right: 460px;
    background: none;
    /* border: none ; */
}

/* Botão de fechar ao passar o mouse */
.w3-button.w3-display-topright:hover {
    color: #f44336; /* Vermelho ao passar o mouse */
  
}

/* Inputs do formulário */
.w3-input {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color:var(--fourth-bg-color);
    font-weight: bold;

}

/* Foto ampliada com efeito moderno */
.ampliada-foto {
    width: 400px;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ampliada-foto:hover {
    transform: scale(1.02);
}

/* Container principal com layout flexível e visual moderno */
.user-details {
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.425); /* leve glass effect */
    backdrop-filter: blur(6px);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    color: #131b38;
    gap: 1.5rem;
}

/* Avatar do usuário */
.user-details img {
    width: 285px;
    height: 285px;
   
    /* border-radius: 50%; */
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* .user-details img:hover {
    transform: scale(1.05);
} */
.tooltip-container {
    position: relative;
    display: inline-block;
}
/*Span em foma de balão que aparece ao passar o mouse na foto */
.tooltip-text {
    visibility: hidden;
    width: 200px;
      background: linear-gradient(200deg, var(--fourth-bg-color), var(--third-bg-color));
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform-origin: bottom center;
}

.tooltip-text::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--main-bg-color) transparent transparent transparent;
}
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
/*FIM Span em foma de balão que aparece ao passar o mouse na foto */


/* Texto do perfil */
.user-details p {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Classe de exemplo que pode ser personalizada */
.teste22 {
    
    align-items: center;
    font-size: 1rem;
    color: #4a4a4a;
}

/* Responsividade */
@media (max-width: 900px) {
    .user-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        
    }

    .user-details p {
        align-items: center;
    }
    .user-details img {
        width: 300px;
        height: 300px;
    }
}
/* Responsividade */
@media (max-width: 390px) {
    .user-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
       
    }

    .user-details p {
      
        align-items: center;
    }
   .user-details img {
        width: 200px;
        height: 200px;
       
    }
  
}








/* Botão de salvar */
.w3-button.w3-theme-d2 {
    background-color: var(--third-bg-color); /* Cor do botão */
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.w3-button.w3-theme-d2:hover {
    background-color: #45a049; /* Cor ao passar o mouse */
}

label b{
    font-size: 15px;
    color: #000;
}

/* Imagem do perfil */
.perfil-foto {
    width: 40px; /* Largura da imagem */
    height: 40px; /* Altura da imagem */
    border-radius: 50%; /* Torna a imagem circular */
    object-fit: cover; /* Ajusta a imagem para caber no espaço */
    border: 2px solid #ccc; /* Borda ao redor da imagem */
}

/* Animação de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@media (max-width: 1629px) {
    .w3-modal-content {
        width: 90%;
    }
    .w3-container.w3-theme-d2 {
        width: 100%;
    }

    .w3-bar-item {
        display: block;
        position: relative;
        left: 25px;
    }

    .w3-button.w3-display-topright {
        color: #f44336;
        font-size: 50px;
        font-weight: bold;
        cursor: pointer;
        position: absolute;
        top: 80px;
        right: 50px;
        background: none;
        border: none;
    }

    .fa-eye, .fa-eye-slash {
        /* color: var(--active-color);
        position: absolute;
        top: 328px;
        right: 55px; */
    }
}

@media (max-width:900px) {
    .w3-modal-content {
        width: 95%;
    }
    .w3-container.w3-theme-d2 {
        width: 100%;
    }

    .w3-bar-item {
        display: block;
        position: relative;
        left: 15px;
    }

    .w3-button.w3-display-topright {
        font-size: 40px;
        top: 5px;
        right: 5px;
    }

    .fa-eye, .fa-eye-slash {
        /* color: red; */
        top: 300px;
        right: 30px;
    }
}

@media (max-width: 455px) {
    .w3-modal-content {
        width: 95%;
    }
    .w3-container.w3-theme-d2 {
        width: 100%;
    }

    .w3-bar-item {
        display: block;
        position: relative;
        left: 15px;
        margin: 10px;
    }

    .w3-button.w3-display-topright {
        font-size: 40px;
        top: 5px;
        right: 5px;
    }

    .perfil-foto{
        width: 30px;
        height: 30px;
        border-radius: 50%;
        margin-right: 10px;
        vertical-align: middle;
    }

    /* .fa-eye, .fa-eye-slash {
        color: red;
        top: 300px;
        right: 30px;
    } */
}

/* FIM EDITAR PERFIL */


/* Estilo para o dropdown Menu Perfil */
.dropdown-container-perfil {
    position: absolute; 
    top: 100%; 
    left:30px;
    /* right: 10px;  */
    background: linear-gradient(135deg, var(--fourth-bg-color), var(--third-bg-color));
    /* background-color: var(--fourth-bg-color); Fundo branco */

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para dar destaque */
    z-index: 9999; /* Garante que o menu fique na frente de outros elementos */
    display: none; /* Esconde o menu por padrão */
    min-width: 200px; /* Define uma largura mínima */
    border-radius: 4px; /* Bordas arredondadas */
    padding: 10px 0; /* Espaçamento interno */
}

/* Links dentro do dropdown */
.dropdown-container-perfil a {
    display: block; /* Cada link ocupa uma linha */
    padding: 10px 20px; /* Espaçamento interno dos links */
    color: #ffffff; /* Cor do texto */
    text-decoration: none; /* Remove o sublinhado */
    font-size: 14px; /* Tamanho da fonte */
    
}

/* Efeito ao passar o mouse nos links */
.dropdown-container-perfil a:hover {
    background: linear-gradient(135deg,var(--third-bg-color), var(--fourth-bg-color));
    /* background-color: var(--second-bg-color); */
    color: var(--active-color);
}

/* Estilo para o botão do dropdown */
.dropdown-toggle {
    cursor: pointer; /* Mostra o cursor de clique */
    display: flex; /* Alinha o conteúdo horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    gap: 10px; /* Espaçamento entre os elementos */
}





@media (max-width: 668px) {
    .dropdown-toggle {
        display: flex;
      
        align-items: center;
        justify-content: space-between;
        font-size: 10px;
        /* gap:5px; */
    }





   
  


 
}



/* Exibe o menu ao clicar */
.dropdown-container-perfil.show {
    display: block; /* Mostra o menu */
}



/* OLHO DO  VISUALIZADOR DE SENHA */
.fa-eye, .fa-eye-slash{
    /* color: var(--active-color);
    position: absolute;
    top: 485px;
    right: 510px;  
     font-size: 100px; */
   
}





/* .remove-btn {
    color: red;
    cursor: pointer;
    font-weight: bold;
    
} */


/* Responsividade */
@media (max-width: 668px) {
    .dropdown-container-perfil{
       width: 100%;
       min-width: 140px;
    }

    .dropdown-container-perfil a {
    
        padding: 10px 15px; /* Ajusta o espaçamento interno dos links */
        font-size: 12px; /* Diminui o tamanho da fonte */
        width: 100%;
       
        /* min-width: 150px; */
       
        
       
        
    }




}









/* CAMPO RESPONSAVEL PELA ANIMAÇÃO DO LOADERS */
.spinner {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   
   .ponto1, .ponto2, .ponto3 {
    width: 15px;
    height: 15px;
    border: double;
    border-color: white;
    border-radius: 50%;
    margin: 10px;
   }
   
   .ponto1 {
    animation: jump765 1.6s -0.32s linear infinite;
    background: #2495ff;
    /* background-image: url('/imgs/logo/LOBO%20GS_BOLA%208x8.png');
    background-repeat: no-repeat;
    background-size: contain; */
  
   }
   .ponto2 {
    
    animation: jump765 1.6s -0.16s linear infinite;
    background: #2495ff;
    /* background-image: url('/imgs/logo/LOBO%20GS_BOLA%208x8.png');
    background-repeat: no-repeat;
    background-size: contain; */
}

.ponto3 {
    animation: jump765 1.6s linear infinite;
    background: #2495ff;
    /* background-image: url('/imgs/logo/LOBO%20GS_BOLA%208x8.png');
    background-repeat: no-repeat;
    background-size: contain; */
}
   
   @keyframes jump765 {
    0%, 80%, 100% {
     -webkit-transform: scale(0);
     transform: scale(0);
    }
   
    40% {
     -webkit-transform: scale(2.0);
     transform: scale(2.0);
    }
   }

   /* FIM CAMPO RESPONSAVEL PELA ANIMAÇÃO DO LOADERS */

   /* CAMPO RESPONSAVEL PELA ANIMAÇÃO RECUPAREÇÃO DE EMAIL */
/* From Uiverse.io by Shoh2008 */ 
.loader1 {
   width: 10px;
    left: 140px;
    bottom: 20px;
  position: relative;
  border-style: solid;
  box-sizing: border-box;
  border-width: 15px 20px 15px 20px;
  border-color: #3760C9 #96DDFC #96DDFC #36BBF7;
  animation: envFloating 1s ease-in infinite alternate;
}

.loader1:after {

  content: "";
  position: absolute;
  right: 10px;
  top: -40px;
  height: 70px;
  width: 70px;
  background-image: linear-gradient(#999999be 45px, transparent 0),
            linear-gradient(#999999be 45px, transparent 0),
            linear-gradient(#999999be 45px, transparent 0);
  background-repeat: no-repeat;
  background-size: 20px 4px;
  background-position: 0px 11px , 8px 35px, 0px 60px;
  animation: envDropping 0.75s linear infinite;
}

@keyframes envFloating {
  0% {
    transform: translate(-2px, -5px)
  }

  100% {
    transform: translate(0, 5px)
  }
}

@keyframes envDropping {
  0% {
    background-position: 100px 11px , 115px 35px, 105px 60px;
    opacity: 1;
  }

  50% {
    background-position: 0px 11px , 20px 35px, 5px 60px;
  }

  60% {
    background-position: -30px 11px , 0px 35px, -10px 60px;
  }

  75%, 100% {
    background-position: -30px 11px , -30px 35px, -30px 60px;
    opacity: 0;
  }
}
      

   
    /* FIM CAMPO RESPONSAVEL PELA ANIMAÇÃO RECUPAREÇÃO DE EMAIL */


   
/* Estilo quando clicar na foto do perfil */
.modal {
    display: none; 
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal:target {
    display: block;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    animation: zoomFadeIn 0.4s ease;
}

@keyframes zoomFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: 30px;
    right: 35px;
  
    color: #700606;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

/*FIM Estilo quando clicar na foto do perfil */



.btntM{
    display: flex;
    width: 100%;
   
}







/* Desloca os submenus para a direita */
.dropdown-container2 {
  padding-left: 50px; /* Ajuste esse valor para mais ou menos deslocamento */
}







/* BLOCO DE NOVIDADES - ESTILO PRINCIPAL */
.novidades-bloco {
    width: 23%;
    /* max-width: 600px; */
    /* margin: 14px auto; */
    margin: 15px;
    background: var(--success-color-second); /* #d1e7dd */
    border: 1px solid var(--success-color);  /* #47a447 */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 24px 32px 18px 32px;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

/* CABEÇALHO */
.novidades-header {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 50px;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
    background: linear-gradient(200deg, var(--fourth-bg-color), var(--third-bg-color));
}

.novidades-header i.fa-bullhorn {
    font-size: 1.5em;
    color: var(--warning-color); /* #ed9c28 */
}

.novidades-header h2 {
    margin: 0;
    font-size: 1.25em;
    color: var(--fourth-color); /* #fff */
}

/* TAG NOVO */
.tag-novo {
    background: var(--warning-color); /* #ed9c28 */
    color: var(--fourth-color); /* #fff */
    font-size: 0.85em;
    border-radius: 4px;
    padding: 2px 10px;
    font-weight: 600;
}

/* LISTA DE ATUALIZAÇÕES */
.novidades-lista {
    margin: 0 0 14px 0;
    padding-left: 1.2em;
    color: var(--fourth-color);
    font-size: 1.02em;
}

/* LINK DE DETALHES */
.novidades-link {
    display: inline-block;
    background-color: var(--third-bg-color);
    color: var(--fourth-color);
    padding: 6px 14px; 
    border: 1px solid var(--third-bg-color);
    border-radius: 4px;
    font-size: 13px; 
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}


.novidades-link:hover {
    background-color: var(--fourth-color);
    color: var(--third-bg-color);
}

/* MEDIA QUERY: TABLETS E CELULARES */
@media (max-width: 768px) {
    .novidades-bloco {
        padding: 20px 20px 16px 20px;
        margin: 10px;
    }

    .novidades-header {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 10px;
    }

    .novidades-header h2 {
        font-size: 1.15em;
    }

    .tag-novo {
        font-size: 0.75em;
        padding: 2px 8px;
    }

    .novidades-link {
        width: 100%;
        text-align: center;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .novidades-bloco {
        padding: 16px 16px 14px 16px;
        margin: 8px;
        width: 100%;
    }

    .novidades-header h2 {
        font-size: 1em;
    }

    .novidades-link {
        font-size: 0.9em;
    }
}



@media (max-width: 680px) {
    .novidades-bloco {
        padding: 16px 16px 14px 16px;
        margin: 8px;
        width: 100%;
    }

    .novidades-header h2 {
        font-size: 1em;
    }

    .novidades-link {
        font-size: 0.9em;
    }
    
}




/* TABLETS (768px a 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .novidades-bloco {
        width: 46%;
        max-width: 700px;
        padding: 24px 28px 20px 28px;
        /* margin: 20px auto; */
    }
.tabelaAtualizacao{
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
        
   
    }
    .novidades-header {
        height: auto;
        padding: 12px;
        gap: 10px;
    }

    .novidades-header h2 {
        font-size: 1.3em;
    }

    .tag-novo {
        font-size: 0.85em;
        padding: 3px 10px;
    }

        .novidades-link {
    display: inline-block;
    background-color: var(--third-bg-color);
    color: var(--fourth-color);
    padding: 6px 14px; 
    border: 1px solid var(--third-bg-color);
    border-radius: 4px;
    font-size: 13px; 
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}
}

/* NOTEBOOKS e DESKTOPS MÉDIOS (acima de 1024px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .novidades-bloco {
        width: 46%;
        max-width: 800px;
        /* padding: 26px 36px 22px 36px; */
        /* margin: 28px auto; */
    }


    .novidades-header {
        height: auto;
        padding: 14px;
        gap: 12px;
}
    .novidades-header h2 {
        font-size: 1.4em;
    }

    .tag-novo {
        font-size: 0.9em;
        padding: 4px 12px;
    }

   
     .novidades-link {
    display: inline-block;
    background-color: var(--third-bg-color);
    color: var(--fourth-color);
    padding: 6px 14px; 
    border: 1px solid var(--third-bg-color);
    border-radius: 4px;
    font-size: 13px; 
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}
    }


/* TELAS MAIORES (ex: monitores grandes) */
@media (min-width: 1367px) {
    .novidades-bloco {
        max-width: 900px;
        padding: 28px 40px 24px 40px;
    }

    .novidades-header h2 {
        font-size: 1.5em;
    }

 
    .novidades-link {
        width: 100%;
        text-align: center;
        font-size: 0.95em;
    }
}


  /*CAMPO PARA GRIFA AS ATUALIZAÇÕES DOS HISTORICOS DE ATUALIZAÇÕES*/
.atualizacao-recente {
    background-color: #d0ffcc7c !important; /* fundo verde claro */
    /* font-weight: bold; */
}

.tabela-comandas thead tr {
    background-color: #fff;
}

.linha-comanda[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    background: #585858a6;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 4px;
    pointer-events: none;
}
.linha-comanda {
    position: relative;
}


