* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sem_reset_global,
.sem_reset_global * {
    margin: revert;
    padding: revert;
    box-sizing: content-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f4f7f6;
    color: #1a2b26;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/*
    .modal 
    {
        background: white !important;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        width: 90%;
        max-width: 800px;
        max-height: 80%;
        padding: 20px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-y: auto; 
        animation: fadeIn 0.3s ease-in-out;
        padding-top: 30px;
    }
*/

.modal {
    width: 80%;
    height: auto;
    background: #f4f7f6 !important;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    animation: fadeIn 0.3s ease-in-out;
    padding-top: 30px;
}

.modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

#modal {
    width: min(50%, 750px);
    height: min(70dvh, 850px);

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

#iframe_content {
    width: 100%;
    height: 100%;
    flex: 1;

    border: none;
}

.no-scroll {
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.column,
.columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

.container {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.header h1 {
    font-size: 18px;
    color: #0d5c4a;
}

.icone_cadastrar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d5c4a;
    color: white;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.icone_cadastrar:hover {
    background-color: #12796b;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.barra_pesquisa {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 10px;
}

.barra_pesquisa label {
    font-size: 0.85rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.barra_pesquisa input[type="text"],
.barra_pesquisa input[type="email"],
.barra_pesquisa input[type="date"],
.barra_pesquisa input[type="file"],
.barra_pesquisa input[type="password"],
.barra_pesquisa input[type="number"],
.barra_pesquisa input[type="time"],
.barra_pesquisa select {
    padding: 10px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    font-family: "Poppins", sans-serif;
}

input[type="color"] {
    width: 100%;
    height: 44px;
}

.barra_pesquisa input[type="time"] {
    padding: 5px;
}

.barra_pesquisa input:focus {
    border-color: #0e0563;
}

.linha_botoes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-itens: center;
    -webkit-justify-content: center;
    text-align: center;
    justify-content: center;
    column-gap: 30px;
    row-gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e9eef3;
    border-radius: 5px;
    padding: 0.6rem 1rem;
    font-weight: bold;
    font-size: 0.85rem;
    color: #2c3e50;
    text-transform: uppercase;
}

.list-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
    overflow-y: auto;
}

.list-item {
    display: flex;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
    font-size: 15px;
}

.list-item:hover {
    background: #eef2f5;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.list-item .div_status {
    display: flex;
    margin: auto;
}

.list-item .div_status .status {
    color: #fff;
    padding: 2px;
    border-radius: 3px;
    width: 70px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

.icone_excluir {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.icone_excluir .material-icons {
    font-size: 18px;
}

.icone_excluir:hover {
    background-color: #c0392b;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.icone_ativar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #08dc28;
    color: white;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.icone_ativar .material-icons {
    font-size: 20.5px;
}

.icone_ativar:hover {
    background-color: #06a91e;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.botao_salvar {
    padding: 12px 18px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #0d5c4a;
    color: white;
}

.botao_salvar:hover {
    background-color: #12796b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.botao_cadastrar {
    padding: 12px 18px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #0d5c4a;
    color: white;
    text-transform: capitalize;
}

.botao_cadastrar:hover {
    background-color: #12796b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.botao_cadastrar:disabled {
    background-color: #444f4d;
    opacity: 0.4;
}

.botao_cadastrar:disabled:hover {
    background-color: #1e2221;
    opacity: 0.4;
}

.botao_cancelar {
    padding: 12px 18px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #e74c3c;
    color: white;
}

.botao_cancelar:hover {
    background-color: #c0392b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.botao_excluir {
    padding: 12px 18px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #e74c3c;
    color: white;
}

.botao_excluir:hover {
    background-color: #c0392b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.botao_visualizar {
    padding: 12px 18px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #5f5f5f;
    color: white;
}

.botao_visualizar:hover {
    background-color: #2f2f2f;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.botao_ativar {
    padding: 12px 18px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #01a106;
    color: white;
}

.botao_ativar:hover {
    background-color: #10d416;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.avaliacao-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
}

.estrelas {
    font-size: 24px;
    position: relative;
    display: inline-block;
    color: #ccc;
    letter-spacing: 2px;
}

.estrelas::before {
    content: "★★★★★";
    display: block;
    color: #ccc;
}

.estrelas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #ffd700;
}

.estrelas-overlay::before {
    content: "★★★★★";
    display: block;
}

.avaliacao-count {
    margin-left: 10px;
    font-size: 16px;
    color: #4a4a4a;
    margin-top: 5px;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    text-align: center;
}

.formulario {
    /* background: #ffffff; */
    background: #f4f7f6;
    /* border-radius: 12px; */
    width: 70%;
    margin: auto;
}

.form-header {
    margin-bottom: 20px;
    text-align: center;
}

.form-header h1 {
    font-size: 20px;
    color: #34495e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.formulario label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0px;
}

.formulario input[type="text"],
.formulario input[type="email"],
.formulario input[type="date"],
.formulario input[type="datetime-local"],
.formulario input[type="file"],
.formulario input[type="password"],
.formulario input[type="number"],
.formulario input[type="time"],
.formulario select,
.formulario textarea {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgb(236, 235, 235), #f7f7f7);
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    font-family: "Poppins", sans-serif;
    resize: none;
}

.formulario input[type="date"] {
    font-size: 15px;
}

.formulario textarea {
    min-height: 70px;
    font-family: "Poppins", sans-serif;
}

.formulario input::placeholder,
.formulario textarea::placeholder {
    color: #a1a1a1;
    font-style: italic;
}

.formulario input:focus,
.formulario textarea:focus {
    border-color: rgb(91, 127, 175);
    background: linear-gradient(to right, #f7f7f7, rgb(236, 235, 235));
    box-shadow: 0 0 5px rgba(102, 136, 182, 0.3);
}

select option[value=""] {
    color: #a1a1a1;
    font-style: italic;
}

.select2-container .select2-selection--single {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgb(236, 235, 235), #f7f7f7);
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: 43px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single {
    height: 43px !important;
}

.select2-container--default .select2-selection--single:focus {
    border-color: rgb(91, 127, 175);
    background: linear-gradient(to right, #f7f7f7, rgb(236, 235, 235));
    box-shadow: 0 0 5px rgba(102, 136, 182, 0.3);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    font-weight: 500;
    padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}

.select2-container--default .select2-dropdown {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option {
    padding: 10px;
    font-size: 14px;
    color: #333;
    transition: background 0.3s ease;
}

.select2-container--default .select2-results__option--highlighted {
    background: rgb(134, 155, 182);
    color: white;
}

/* Estiliza a área de seleção do select2 multiple */
.select2-container--default .select2-selection--multiple {
    padding: 7px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgb(236, 235, 235), #f7f7f7);
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    min-height: 45px; /* Ajusta o tamanho mínimo */
    display: flex;
    align-items: center;
}

/* Efeito ao focar no campo */
.select2-container--default .select2-selection--multiple:focus {
    border-color: rgb(91, 127, 175);
    background: linear-gradient(to right, #f7f7f7, rgb(236, 235, 235));
    box-shadow: 0 0 5px rgba(102, 136, 182, 0.3);
}

/* Estiliza os itens selecionados */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #5b8ccb;
    color: #ffffff;
    border-radius: 5px;
    padding: 3px 7px;
    margin: 4px 3px;
    font-weight: bold;
}

/* Estiliza o botão de remoção dos itens */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff;
    margin-left: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* Efeito hover no botão de remoção */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff0000;
}

/* Dropdown (lista de opções) */
.select2-container--default .select2-dropdown {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Opções dentro do dropdown */
.select2-container--default .select2-results__option {
    padding: 10px;
    font-size: 14px;
    color: #333;
    transition: background 0.3s ease;
}

/* Efeito ao passar o mouse nas opções */
.select2-container--default .select2-results__option--highlighted {
    background: rgb(91, 127, 175);
    color: white;
}

.formulario form label {
    width: 100%;
    font-size: 17px;
    color: black;
}

.formulario form input,
.formulario form select,
.formulario form .select2,
.formulario form textarea {
    margin-top: 10px;
    margin-bottom: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    padding: 4px !important;
}
.formulario .center_botao {
    text-align: center;
    margin-top: 10px;
}

.botoes_container {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
}

.botoes_container .css_botao {
    background-color: #28a745;
    border: none;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
    margin-top: 10px;
    margin-bottom: 10px;
}

.botoes_container .css_botao:hover {
    background-color: #218838;
    transform: scale(1.1);
}

.botoes_container .css_botao:active {
    background-color: #1e7e34;
    transform: scale(0.95);
}

.botoes_container .css_botao.botao_remover {
    background-color: #dc3545;
}

.botoes_container .css_botao.botao_remover:hover {
    background-color: #c82333;
}

.botoes_container .css_botao.botao_remover:active {
    background-color: #bd2130;
    transform: scale(0.95);
}

.abas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.aba-link {
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 17px;
}

.aba-link.active {
    border-bottom: 3px solid #1abc9c;
    color: #1abc9c;
}

.aba-content {
    display: none;
    width: 100%;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
}

.aba-content .formulario {
    background: #ffffff;
}

.aba-content.active {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.aba-content .container {
    width: 100%;
    margin: 0 auto;
}

.permissoes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-container input {
    margin-right: 5px;
}

.permissoes-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modulo {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 250px;
}

.modulo h3 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
}

.modulo h4 {
    text-transform: uppercase;
}

.modulos-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

.permissoes-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.botao_marcar_desmarcar {
    padding: 10px 15px;
    background-color: #1abc9c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.botao_marcar_desmarcar:hover {
    background-color: #16a085;
}

@media (min-width: 900px) {
    .list-item label {
        display: none;
    }

    .columns {
        margin-left: 0%;
        padding: 3px;
        text-align: left;
    }

    .columns:first-child {
        margin-left: 0;
    }

    .col4.columns {
        width: 4%;
    }
    .col5.columns {
        width: 5%;
    }
    .col6.columns {
        width: 6%;
    }
    .col7.columns {
        width: 7%;
    }
    .col8.columns {
        width: 8%;
    }
    .col9.columns {
        width: 9%;
    }
    .col10.columns {
        width: 10%;
    }
    .col13.columns {
        width: 13%;
    }
    .col15.columns {
        width: 15%;
    }
    .col16.columns {
        width: 16.66%;
    }
    .col20.columns {
        width: 20%;
    }
    .col25.columns {
        width: 25%;
    }
    .col30.columns {
        width: 30%;
    }
    .col33.columns {
        width: 33.33%;
    }
    .col35.columns {
        width: 35%;
    }
    .col40.columns {
        width: 40%;
    }
    .col45.columns {
        width: 45%;
    }
    .col50.columns {
        width: 50%;
    }
    .col55.columns {
        width: 55%;
    }
    .col60.columns {
        width: 60%;
    }
    .col65.columns {
        width: 65%;
    }
    .col67.columns {
        width: 67.77%;
    }
    .col70.columns {
        width: 70%;
    }
    .col75.columns {
        width: 75%;
    }
    .col80.columns {
        width: 80%;
    }
    .col85.columns {
        width: 85%;
    }
    .col90.columns {
        width: 90%;
    }
    .col100.columns {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .formulario {
        width: 100%;
    }

    .botoes_acoes {
        justify-items: center;
    }

    .list-header {
        display: none;
    }

    .list-total {
        flex-wrap: wrap;
    }

    .list-item {
        display: block;
        border: 1px solid #a6e5e0;
        margin-bottom: 10px;
        background: linear-gradient(to bottom, var(--branco), #f1f1f1);
        padding: 10px;
        border-radius: 10px;
    }

    .list-item div {
        justify-items: center;
        margin-bottom: 4px;
    }

    .list-item label {
        font-weight: bold;
    }

    .list-item .div_status .status {
        margin-left: 5px;
    }

    .list-item .botoes {
        padding-top: 10px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        -webkit-justify-itens: center;
        -webkit-justify-content: center;
        justify-items: center;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .botoes_acoes {
        justify-items: center;
    }

    .list-header {
        display: none;
    }

    .list-total {
        flex-wrap: wrap;
    }

    .list-item {
        display: block;
        border: 1px solid #a6e5e0;
        margin-bottom: 10px;
        background: linear-gradient(to bottom, #fff, #f1f1f1);
        padding: 10px;
        border-radius: 10px;
    }

    .list-item div {
        justify-items: center;
        margin-bottom: 4px;
    }

    .list-item label {
        font-weight: bold;
    }

    .list-item .div_status .status {
        margin-left: 5px;
    }

    .list-item .botoes {
        padding-top: 10px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        -webkit-justify-itens: center;
        -webkit-justify-content: center;
        justify-items: center;
        text-align: center;
        justify-content: center;
    }
}

.modal_desktop {
    width: 45% !important;
}

.modal_tablet {
    width: 65% !important;
}

.modal_mobile {
    width: 90% !important;
}

.desktop .list-item label {
    display: none;
}

.desktop .columns:first-child {
    margin-left: 0;
}

.desktop .columns {
    margin-left: 0%;
    padding: 3px;
}

.colauto.columns {
    width: auto;
}
.desktop .col4.columns {
    width: 4%;
}
.desktop .col5.columns {
    width: 5%;
}
.desktop .col6.columns {
    width: 6%;
}
.desktop .col7.columns {
    width: 7%;
}
.desktop .col8.columns {
    width: 8%;
}
.desktop .col9.columns {
    width: 9%;
}
.desktop .col10.columns {
    width: 10%;
}
.desktop .col13.columns {
    width: 13%;
}
.desktop .col15.columns {
    width: 15%;
}
.desktop .col16.columns {
    width: 16.66%;
}
.desktop .col20.columns {
    width: 20%;
}
.desktop .col25.columns {
    width: 25%;
}
.desktop .col30.columns {
    width: 30%;
}
.desktop .col33.columns {
    width: 33.33%;
}
.desktop .col35.columns {
    width: 35%;
}
.desktop .col40.columns {
    width: 40%;
}
.desktop .col45.columns {
    width: 45%;
}
.desktop .col50.columns {
    width: 50%;
}
.desktop .col55.columns {
    width: 55%;
}
.desktop .col60.columns {
    width: 60%;
}
.desktop .col65.columns {
    width: 65%;
}
.desktop .col67.columns {
    width: 67.77%;
}
.desktop .col70.columns {
    width: 70%;
}
.desktop .col75.columns {
    width: 75%;
}
.desktop .col80.columns {
    width: 80%;
}
.desktop .col85.columns {
    width: 85%;
}
.desktop .col90.columns {
    width: 90%;
}
.desktop .col100.columns {
    width: 100%;
}

.status.ativo {
    font-weight: 700 !important;
    color: green !important;
}

.status.inativo {
    font-weight: 700 !important;
    color: red !important;
}

input [readonly],
input:disabled,
textarea:disabled,
select:disabled {
    background: linear-gradient(to right, #d7d6d6, #d8d8d8) !important;
    color: #303030 !important;
    border-color: #b3b3b3 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
    background: linear-gradient(to right, #d7d6d6, #d8d8d8) !important;
    color: #303030 !important;
    border-color: #b3b3b3 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.overlay_modal_geral {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    position: fixed;
    display: none;
}

.custom-toast {
    color: white !important;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.miniaturas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.miniaturas div {
    position: relative;
}
.miniaturas img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #cccc;
}
.miniaturas input[type="checkbox"] {
    position: absolute;
    top: -2px;
    right: 5px;
    z-index: 10;
    width: 20px;
    height: 20px;
}

#map {
    height: 600px;
    width: 100%;
    z-index: 0;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    border: 2px solid black;
}

.list-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e9eef3;
    border-radius: 5px;
    padding: 0.6rem 1rem;
    font-weight: bold;
    font-size: 0.85rem;
    color: #2c3e50;
    text-transform: uppercase;
}

.total_coluna {
    font-size: 19px;
    color: green;
}

.valor_total_relatorio {
    text-align: center;
    flex-direction: column;
}

form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #5b8ccb;
}
.list-item .columns {
    word-break: break-all;
}
/* 
::-webkit-scrollbar {
    width: 10px;              
}

::-webkit-scrollbar-track {
    background: #051705;      
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #27872e, #146c14); 
    border-radius: 10px;
    border: 2px solid #051705;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2e7d32, #145214);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #1b5e20 #051705; 
} */

button:disabled {
    cursor: not-allowed;
}
.skiptranslate {
    display: none;
}

.list-header span font {
    word-wrap: break-word;
}

/* WRAPPER DO INPUT FILE */
.div_input_file {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: linear-gradient(to right, rgb(236, 235, 235), #f7f7f7);
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    width: 100%;
    user-select: none;
}

.div_input_file:hover {
    border-color: #0e0563;
    box-shadow: 0 0 5px rgba(102, 136, 182, 0.3);
}

.div_input_file i {
    font-size: 18px;
    color: #2562c4;
}

.div_input_file input[type="file"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    left: 0;
    top: 0;
}

.input_file_nome {
    white-space: break-spaces;
    color: #555;
}

/* MINIATURAS */
.preview_container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.preview_container .preview-item {
    width: 100px;
    height: 100px;
    position: relative;
}

.preview_container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Para arquivos não imagens */
.preview_container .arquivo_icone {
    width: 100%;
    height: 100%;
    background: #e9eef3;
    border-radius: 6px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #555;
    font-weight: bold;
}

.preview_item {
    position: relative;
    width: 100px;
    height: 100px;
}

.preview_remove {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

.preview_remove:hover {
    background: #c0392b;
}

.preview_num {
    position: absolute !important;
    top: -6px;
    left: 6px;
    z-index: 15;
    background: black;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

form {
    display: flex;
}

.img_dados {
    border: 2px solid black;
    border-radius: 8px;
    min-width: 100px;
    min-height: 100px;
    max-width: 384px;
    max-height: 216px;
    object-fit: contain;
    background-color: #cccc;
    cursor: pointer;
}

@media (max-width: 900px) {
    .mobile .img_dados {
        max-width: 288px;
        max-height: 162px;
    }
}

/* Overlay de fundo */
#global_upload_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
}

/* Caixa central */
.upload_box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Título */
.upload_box h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

/* Barra de progresso */
.progress_bar {
    width: 100%;
    background: #eee;
    height: 22px;
    margin-top: 12px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.progress_fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    border-radius: 20px;
    transition: width 0.3s ease-in-out;
    position: relative;
}

/* Efeito de brilho na barra */
.progress_fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(5px);
    animation: brilho 1.5s infinite;
}
@keyframes brilho {
    from {
        left: -40px;
    }
    to {
        left: 100%;
    }
}

/* Porcentagem */
#global_upload_porcentagem {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    transition: transform 0.2s;
}

/* Estrelinhas flutuando */
.star {
    position: absolute;
    color: gold;
    font-size: 12px;
    opacity: 0;
    animation: subir 1.2s ease-out forwards;
}
@keyframes subir {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) scale(0);
        opacity: 0;
    }
}

/* Efeito ao concluir */
.completo {
    background: linear-gradient(135deg, #4caf50, #2ecc71);
    color: white !important;
    box-shadow: 0 0 15px #4caf50;
    transform: scale(1.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #5b8ccb;
}

.color_wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

input[type="color"] {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 44px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    padding: 3px;
    cursor: pointer;
    background: white;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    margin-top: 0px !important;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 6px;
}

input[type="color"]::-moz-color-swatch {
    border: none;
    border-radius: 6px;
}

input[type="color"]:focus {
    border-color: #0e0563;
    box-shadow: 0 0 0 2px rgba(14, 5, 99, 0.15);
}

.hexadecimal_cor {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alerta_verde {
    text-align: center;
    border: 3px solid #43a047;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #333;
    width: 100%;
    outline: none;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 20px 0px;
}

.alerta_verde i {
    font-size: 50px;
    color: #43a047;
}

.alerta_vermelho {
    text-align: center;
    border: 3px solid #e53935;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #333;
    width: 100%;
    outline: none;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 20px 0px;
}

.alerta_vermelho i {
    font-size: 50px;
    color: #e53935;
}

.list-item.selecionado {
    background-color: #f3f7ff;
    border-left: 4px solid #2563eb;
}

.div_check {
    display: flex;
    align-items: center;
}
.check {
    width: 25px;
    height: 25px;
}
@media (max-width: 900px) {
    .div_check {
        justify-content: center;
    }
}

.div_alerta_estoque {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.estoque_minimo {
    text-align: center;
    background: #ffa726;
    border-radius: 8px;
    padding: 6px;
    word-break: break-word;
    font-weight: 600;
}

.estoque_critico {
    text-align: center;
    background: #dc3535;
    border-radius: 8px;
    padding: 6px;
    color: white;
    word-break: break-word;
    font-weight: 600;
}

.mensagem_alerta {
    text-align: center;
    border: 3px solid #ffa726;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #333;
    width: 100%;
    outline: none;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.subtitulo {
    font-size: 15px;
    color: #34495e;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    border-left: 3px solid #34495e;
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.btn_locais {
    flex-direction: row;
    flex-wrap: wrap;
    margin: 20px 0px;
}
.btn_locais img {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.quadro_imgs {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.quadro_imgs .columns {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 5px;
}
.quadro_imgs .img_dados {
    width: 100%;
}
.quadro_imgs label {
    position: relative;
    top: 5;
}
.quadro_imgs .miniatura {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    border: 1px solid #eee;
}

.quadro_imgs .miniatura img {
    border: 1px solid black;
    width: 100%;
    height: 160px;
    border-radius: 8px;
    object-fit: contain;
}

.pill {
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 600;
}

.pill.amarela {
    color: #8a5a00;
    background-color: #fff3cd;
    border-color: #ffd66b;
}
.pill.vermelha {
    color: #9f1d1d;
    background-color: #fde2e1;
    border-color: #f5a3a0;
}

.pill.roxa {
    color: #5b2a86;
    background-color: #eadcf8;
    border-color: #c9a7ea;
}

.pill.cinza {
    color: #4a4a4a;
    background-color: #ededed;
    border-color: #cfcfcf;
}

.ql-toolbar.ql-snow {
    width: 100%;
}

.video-container {
    max-width: 800px;
    padding: 16px;
}

video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    background: #000;
}
