body,
html {
    min-height: 100vh;
    margin: 0;
}

/* BackGround login*/
.gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vh;
    background: linear-gradient(45deg, #fae7c0, #c1a160, #543A14, #3c3c3b);
    background-size: 300% 300%;
    animation: colors 15s ease infinite;
}

@keyframes colors {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* CheckBox Ajustes Gerais 
   Esconde o elemento checkbox padrão */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}

/* Estilo para o checkbox quando não está selecionado */
input[type="checkbox"]:not(:checked) {
    background-color: #fff;
}

/* Estilo para o checkbox quando está selecionado */
input[type="checkbox"]:checked {
    background-color: #e9b141;
    /* 
    * background-color: #e9b141;
    * Cor desejada quando selecionado */
    border-color: #e9b141;
}

/* Adicionando um símbolo ou cor interna quando está selecionado */
input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    font-size: 16px;
    position: absolute;
    left: 2px;
    top: -3px;
}

/* Ajustes da página de Login 
   Divs */
.login-acesso {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 20%;
    text-align: center;
}

.login-logo {
    max-width: 85%;
}


.login-btn,
.login-btn-fp {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.form-control {
    width: 100%;
}

.input-group .form-control {
    border-right: 0;
}

.input-group .input-group-append .btn {
    border-left: 0;
    border-color: #e9b141;
}

.btn-view {
    color: #e9b141;
    background-color: transparent;
    border: none;
}

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

.login-acesso input {
    border: none;
}

/* Botões */
.login-btn {
    border: none;
    background: #c1a160;
    color: white;
    border-radius: 5px;
    min-height: 50px;
    font-size: 20px;
}

.login-btn:hover {
    border: none;
    font-size: 20px;
    color: white;
}

.login-btn-fp {
    border: none;
    background: none;
    font-size: 15px;
}

.login-btn-fp:hover {
    border: none;
    background: none;
    font-size: 15px;
    color: #c1a160;
}

a {
    text-decoration: none;
    color: #c1a160;
}

a:hover {
    text-decoration: none;
    color: #c1a160;
}


/* imputs */
.login-pswd {
    max-width: 85%;
    margin-left: 3%;
}

/* Botões */
.login-vpswd {
    background-color: transparent;
    color: inherit;
    border: none;
}

/* mensagem interações */
.login-error-msg {
    color: red;

    font-size: 14px;
    font-weight: 600;

    padding-top: 0.1%;
    padding-bottom: 0.5%;
    padding-left: 2.5%;

}

.login-success-msg {
    color: green;
    background-color: rgb(216, 252, 218);
    border: solid 1px;

    font-size: 12px;

    padding-top: 0.1%;
    padding-bottom: 0.5%;
    padding-left: 2.5%;

    max-width: 75%;
}

/* Estilo do vídeo de fundo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

video {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Sobreposição de cor */
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #c1a160;
    opacity: 0.35;
}

/* Geral */
.mainGeralDark {
    background-image: url('../img/bg/background_dark.png');
    background-color: #3c3c3b;
    opacity: 0;
    /* Começa invisível */
    transition: opacity 2s ease-in-out;
    /* Transição suave de 2 segundos */
}

/* Quando a página carrega completamente, a classe é alterada para exibir o fade-in */
.mainGeralDark.loaded {
    opacity: 1;
    /* Torna-se visível */
}

.mainGeralLight {
    background-image: url('../img/bg/background_light.png');
    background-color: #fff;
    opacity: 0;
    /* Começa invisível */
    transition: opacity 2s ease-in-out;
    /* Transição suave de 2 segundos */
}

/* Quando a página carrega completamente, a classe é alterada para exibir o fade-in */
.mainGeralLight.loaded {
    opacity: 1;
    /* Torna-se visível */
}

/* swith theme botão */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 14px;
    padding-top: 5px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    width: 100%;
    height: 100%;
    padding-top: 25px;
}

.toggle-switch label:before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+label {
    background-color: none;
    /* background-color: #e9b141; */
}

input:checked+label:before {
    transform: translateX(26px);
}

/* Logos */
.geral-logo {
    width: 250px;
    height: 80px;
}

/* ------------------- GRID ----------------------- */

.custom-container {
    width: 100%;
    padding-right: 2%;
    padding-left: 2%;
    margin-right: 1%;
    margin-left: 1%;
    /* background-color: rgba(234, 233, 226, 0.716); */
}


@media (min-width: 1400px) {
    .custom-container {
        max-width: 98%;
    }
}

@media (min-width: 2500px) {
    .custom-container {
        max-width: 2520px;
    }
}

/* ------------------- LEFT MENU -------------------*/

/* ------------------- CONTENT ---------------------*/
.content {
    width: 100%;
    min-height: 100vh;
    background-color: rgba(234, 233, 226, 0.716);
}

/* ------------------- 
    SIDE MENU 
    ---------------------*/

.side-left-menu {
    padding-top: 0;
    margin-right: 0.5%;
}

.sidebar .nav-link.active,
.sidebar .nav-link:hover {
    background: #c1a160;
    color: #fff;
    font-size: 20px;
    font-weight: 100;
}

/*  ---------------------
    INTERACTIONS   
    SUCCESS MESSAGE 
    --------------------- */
.msg-success {
    background-color: rgb(177, 215, 177);
    color: green;
    min-height: 30px;

    padding-top: 0.5%;
    padding-bottom: 0.5%;
    padding-right: 1%;
    padding-left: 1%;

    margin: 1%;
    border: solid 1px;
    border-color: green;

    opacity: 1;
    transition: opacity 1s ease;

    font-size: 20px;
}

/*  --------------------- 
    WARNING MESSAGE 
    --------------------- */
.msg-warning {
    background-color: rgb(254, 254, 197);
    color: rgb(136, 102, 1);
    min-height: 30px;

    padding-top: 0.5%;
    padding-bottom: 0.5%;
    padding-right: 1%;
    padding-left: 1%;

    margin: 1%;
    border: solid 1px;
    border-color: rgb(136, 102, 1);

    opacity: 1;
    transition: opacity 1s ease;

    font-size: 20px;
}

/*  --------------------- 
    FAIL MESSAGE 
    --------------------- */
.msg-fail {
    background-color: rgb(231, 179, 179);
    color: red;
    min-height: 30px;

    padding-top: 0.5%;
    padding-bottom: 0.5%;
    padding-right: 1%;
    padding-left: 1%;

    margin: 1%;
    ;
    border: solid 1px;
    border-color: red;

    opacity: 1;
    transition: opacity 1s ease;

    font-size: 20px;
}

/*  --------------------
    Menu Superior Style
    --------------------*/
.dataHora {
    color: #c1a160;
    font-size: 20px;
    font-weight: 300;
}

.nav-item {
    font-size: 20px;
    font-weight: 300;
}

/*  --------------------
    Modals 
    --------------------*/
.login-btn-modal {
    min-width: 25%;
    background-color: #c1a160;
    color: #fff;
    font-size: 15px;
    border: 1px;
    border-radius: 20px;
    padding: 0.5%;
}

.atualizar-cert {
    background-color: transparent;
    border: none;
    color: green;
    font-size: 20px;
}

.editar-cert {
    background-color: transparent;
    border: none;
    color: rgb(72, 72, 209);
    font-size: 20px;
}

.exclusao-cert {
    background-color: transparent;
    border: none;
    color: rgb(198, 58, 58);
    font-size: 20px;
}

/* --------- 
   LINHAS 
   --------- */
.linha-menu-lateral {
    color: white;
    border-color: #c1a160;
    width: 100%;
}

/*  --------------------- 
    FORM ITENS
    --------------------- */
.txt_title {
    color: #4f4f4f;
    font-weight: 100;
    font-size: 40px;
}

.txt_subtitle {
    color: #4f4f4f;
    padding-top: 2%;
}

.lbl_txt_fields {
    font-size: 15px;
}

.lbl_txt_fields_select {
    font-size: 15px;
    height: 50px;
    padding: 5%;
    color: #707070;
    ;
    border-color: #7c7c7c;
    border-radius: 5px;
}

.input_txt_fields {
    font-size: 15px;
    height: 50px;
}

.input_txt_fields_rz_nome {
    font-size: 13px;
    width: 100%;
}

.input_txt_fields_search_cert {
    font-size: 13px;
    width: 100%;
    height: 50px;
}

.btn-form-submit {
    border: solid 1px;
    border-color: #c1a160;
    background-color: #c1a160;
    min-width: 95%;
    font-size: 20px;
}

.btn-form {
    border: solid 1px;
    border-color: #c1a160;
    background-color: #c1a160;
    min-width: 95%;
    height: 50px;
    font-size: 20px;
}

.btn-form:hover {
    border: solid 1px;
    border-color: #c1a160;
    background-color: #c1a160;
    min-width: 95%;
    font-size: 20px;
}

.btn-dashboard{
    padding: 2px 15px;
    background: none;
    border:none;
    border-radius: 25px;
    color: #2d452e;
}

.btn-dashboard[status="ok"]{
    background-color: #d4efd5;

}

.btn-vincular-certificado {
    background-color: rgb(254, 254, 197);
    padding: 1px 15px;
    border-radius: 25px;
}

i {
    margin-right: 5px;
}

.row .btn-section {
    margin-top: 3%;
}

.not-show {
    display: none;
}

.show {
    display: block;
}

/*  -------------------- 
    swith para cadastro ativo de empregador 
    -------------------- */
.select-switch {
    position: relative;
    width: 50px;
    height: 14px;
    padding-top: 5px;
    margin-bottom: 25px;
}

.select-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.select-switch label {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    width: 100%;
    height: 100%;
    padding-top: 25px;
}

.select-switch label:before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.paragrafo-msg {
    padding-left: 2%;
    padding-top: 1%;
    padding-bottom: 1%;
    border: solid 2px;
    border-style: dotted;
    border-color: #c1a160;
    border-radius: 5px;
    width: 100%;
    margin-right: 2%;
}

.error {
    color: red;
}

/* --------------------
    swith para utilizar certificado já cadastrado ou cadastrar novo 
    -------------------- */
.select-certificado {
    position: relative;
    width: 50px;
    height: 14px;
    /* padding-top:5px; */
}

.select-certificado input {
    opacity: 0;
    width: 0;
    height: 0;
}

.select-certificado label {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    width: 100%;
    height: 100%;
    padding-top: 25px;
}

.select-certificado label:before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/*  --------------------
    certificado 
    --------------------*/

.file-upload {
    display: inline-block;
    position: relative;
    font-family: Arial, sans-serif;
}

.labelCertificado {
    display: flex;
    font-size: 15px;
    height: 50px;
    min-width: 450px;
    align-items: center;
    background-color: #f3f3f3;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 3%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.labelCertificado:hover {
    background-color: #e0e0e0;
}

.iconCertificado {
    margin-right: 8px;
}

.clearCertificado {
    margin-left: auto;
    margin-left: 8px;
    cursor: pointer;
    color: red;
    display: none;
}



.input-container input {
    display: inline-block;
    margin-right: 10px;
    /*Espaço entre os inputs*/
}

.result-search {
    padding-top: 2%;
}


/*  --------------------
    Páginas em desenvolvimento 
    --------------------*/
.pag-in-dev {
    background-color: none;
    min-width: 100%;
    color: #3c3c3b;
    display: flex;
    justify-content: center;
    /* Alinha horizontalmente */
    align-items: center
}

.pag-in-dev p {
    font-size: 400px;
    text-align: center;
}

.txt-in-dev {
    min-width: 100%;
    display: flex;
    justify-content: center;
    /* Alinha horizontalmente */
    align-items: center;
    font-size: 25px;
}

/*  --------------------
    Administração - Colaboradores
    --------------------*/

.menu-option {
    background-color: none;
    border: solid 1px #636363;
    border-radius: 10px;
    min-width: 23%;
    max-height: 75px;

    margin: 0.5%;

    /*padding:1%; */
}

.icon-style {
    color: #3c3c3b;
    display: flex;
    justify-content: center;
    /* Alinha horizontalmente */
    align-items: center;
    font-size: 50px;
    padding-left: 2%;
    padding-bottom: 5%;
    ;
}

.txt-icon-style {
    color: #3c3c3b;
    display: flex;
    justify-content: center;
    /* Alinha horizontalmente */
    align-items: center;
    font-size: 25px;
    margin-left: 5%;
}

.btn-admin-ci {
    padding: 2%;
    background-color: #c1a160;
    min-width: 23%;
    max-height: 100px;
}

table a {
    color: #3c3c3b;
}

table a:hover {
    color: #3c3c3b;
}

.btn-modal {
    background-color: transparent;
    border: none;
}


/* --------------------
    botão para cadastrar certificado 
    -------------------- */

.btn-form-cert {
    border: solid 1px;
    border-color: #c1a160;
    background-color: #c1a160;
    min-width: 25%;
    margin-top: 1%;
    font-size: 13px;
}

.btn-form-cert:hover {
    border: solid 1px;
    border-color: #c1a160;
    background-color: none;
    min-width: 25%;
    margin-top: 1%;
    font-size: 13px;
}

.btn-form-submit-cert {
    border: solid 1px;
    border-color: #c1a160;
    background-color: #c1a160;
    height: 50px;
    width: 100%;
    margin-top: 1%;
    font-size: 13px;
    font-size: 15px;
}

.txt-rodape-modal-cert {
    color: #6c6c6c;
    font-style: italic;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3%;
}

/* --------------------
    Separador de página
    -------------------- */
.novoColaborador hr {
    width: 100%;
    height: 1px;
    border: 0px;
    border-top: 2.5px solid rgb(138, 138, 138);
    background-color: none;
}

/* -------------------------------------------
   Layout imagem login no cadastro do usuário
   ------------------------------------------- */

.circle-upload {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px dashed #bbb;
    transition: border-color 0.3s;
}

.circle-upload:hover {
    border-color: #888;
}

/* Esconde o input file */
.circle-upload input[type="file"] {
    opacity: 0;
    /* width: 100%;
    height: 100%; */
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

/* Ícone de upload (opcional) */
.upload-icon {
    font-size: 4rem;
    color: #888;
    pointer-events: none;
    /* Para não bloquear o input */
}


/* --------------------
    Boxes list usuários
    -------------------- */

.usuarios-container {
    max-width: 900px;
    margin: 30px auto;
}

.usuario-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    margin-bottom: 25px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    position: relative;
    transition: box-shadow .2s;
}

.usuario-box.expanded {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.17);
}

.usuario-imagem {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eee;
    margin-right: 25px;
    background: #ddd;
}

.usuario-dados {
    flex: 1;
}

.usuario-nome {
    font-size: 1.45em;
    font-weight: bold;
    margin-bottom: 3px;
}

.usuario-info {
    margin-bottom: 4px;
    color: #555;
}

.usuario-status-inactive {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 8px;
    background: #f9f687;
    font-size: 0.9em;
    margin-top: 5px;
}

.usuario-status-active {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 8px;
    background: #cffdbc;
    font-size: 0.9em;
    margin-top: 5px;
}

.mais-detalhes-btn {
    background: none;
    border: none;
    color: #0078d7;
    cursor: pointer;
    font-size: 1.5em;
    margin-left: 10px;
    margin-top: 5px;
    vertical-align: middle;
    outline: none;
}

.observacoes {
    display: none;
    background: #f7faff;
    border-radius: 7px;
    margin-top: 18px;
    padding: 14px;
    color: #225;
    font-size: 1.05em;
    border-left: 4px solid #84b1f7;
}

.usuario-box.expanded .observacoes {
    display: block;
}


.btn-delete-colab {
    background-color: transparent;
    border: none;
    color: red;
}

.btn-delete-colab :hover {
    background-color: transparent;
    border: none;
    color: red;
}

/* --------------------
    Side Menu 
   -------------------- */

.side-menu {
    height: 100vh;
    background-color: green;
}


/* --------------------
     Página de Retificar. 
     Dash Retificação.
   -------------------- */

.cabecalio-dash {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    margin-bottom: 25px;
    padding: 20px;
    transition: box-shadow .2s;
}

.tipo-cadastro {
    color: #225;
    font-style: bold;

}

.status-ativo {
    background-color: #d4efd5;
    padding: 2px 15px;
    border-radius: 25px;
}

.dash {
    /* background: #c1a160; */
    background: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    margin-bottom: 25px;
    /*       T   R   B   L */
    padding: 0px 0px 0px 0px;
    transition: box-shadow .2s;
    overflow: hidden;
}


.txt_title_retificar {
    color: #6c6c6c;
    font-weight: 400;
    font-size: 22px;
}

.header-row {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    /* background: #eaeaea; */
    background: none;
}

.toggle-btn {
    font-size: 1.4em;
    transition: transform 0.3s;
    cursor: pointer;
}

.dash.expanded .toggle-btn {
    transform: rotate(180deg);
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s;
    padding: 0 25px;
    background: #ffffff;
}

.dash.expanded .expand-content {
    padding: 25px;
    max-height: 1000px;
    /* Ajuste conforme necessário */
}

.expand-content p {
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.8em;
}

Loader #modalLoaderOverlay {
    position: absolute;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#modalLoaderSpinner {
    border: 6px solid #eee;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#modalLoaderText {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/**
* Upload Planilha
*/

.file-upload-planilha {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}

.input-file-planilha {
    display: none;
}

.btn-envio-planilha {
    border: none;
    height: 59px;
    margin-bottom: 8px;
}

.labelPlanilha {
    display: flex;
    min-width: 100%;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #c1a160, #eec97f);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: background 0.2s;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
}

.labelPlanilha:hover {
    background: linear-gradient(90deg, #eec97f, #c1a160);
}

.iconPlanilha {
    font-size: 1.3em;
}

.clearPlanilha {
    margin-left: auto;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    font-size: 1.1em;
    transition: opacity 0.2s;
}

.clearPlanilha:hover {
    opacity: 1;
    color: #ff5c5c;
}

#labelInputPlanilhaText {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

/* 
Botões Retificação 
*/

.btn-retificacao {
    display: flex;
    min-width: 100%;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #c1a160, #eec97f);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: background 0.2s;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
}

.btn-retificacao:hover {
    background: linear-gradient(90deg, #eec97f, #c1a160);
}

.btn-geral-retificacao {
    border: none;
    height: 59px;
    margin-bottom: 8px;
}

.select-retificacao {
    font-size: 18px;
    height: 50px;
    padding: 5%;
    color: #707070;
    border-color: #c1a160;
    border-radius: 5px;
    margin-bottom: 5px;
}

.dash-itens {
    /* border: 0.5px;
    border-style: dashed; */
    border: none;
    display: flex;
    align-items: left;
    justify-content: left;
    padding: 1%;
    font-size: 18px;
}

.dash-itens .fa-arrows-spin {
    color: green;
}

.dash-itens .fa-calendar-days {
    color: grey;
}

.dash-itens .fa-circle-nodes {
    color: #0078d7;
}

.dash-itens .fa-circle-xmark {
    color: red;
    margin-right: 5px;
}

.dash-itens .fa-triangle-exclamation {
    color: orange;
    margin-right: 5px;
}

.dash-itens .fa-circle-check {
    color: green;
    margin-right: 5px;
}

.dash-itens label {
    font-size: 14px;
}

.txt-label {
    font-size: 100px;
    margin-right: 14px;
}

.dash-itens-select {
    font-size: 14px;
    max-width: 70%;
    height: 30px;
    padding: 0% 2%;
    color: #707070;
    /* border-color: #c1a160;
    border-radius: 5px;
    margin-bottom: 5px;  */
    border: none;
}

.dash-submenu {
    background-color: #FFF;
    border-radius: 10px;
    padding: 2%;
}

/**
* Estilo do gráfico
*/

.progress-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-container :hover {
    cursor: pointer;
}


.progress-ring {
    transform: rotate(-90deg);
    /* Faz o círculo começar do topo */
}

.progress-ring__background {
    /* Cor de fundo do círculo */
    background-color: none;
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.6s ease;
    stroke-linecap: round;
}

.progress-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    color: #4caf50;
    pointer-events: none;
    user-select: none;
}

/**
* Retificar 
*/

.txt-upload-csv {
    background-color: #d4efd5;
    color: #4caf50;
    padding: 2%;
    min-width: 95%;
    border-radius: 10px;
}

.txt-upload-csv a {
    color: #4caf50;
}


/**
* Retificar Modal
* Abrir Folha
*/

.optionCheckAbrirFolha {
    margin: 10px;
}

.optionCheckAbrirFolha input[type="checkbox"] {
    margin-right: 10px;
}

.optionCheckAbrirFolha label {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 100;
}

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

.boardChoose {
    background-color: #cfcfcf88;
    border-radius: 5px;
}

.btn-consultar-evt {
    background-color: rgb(226, 236, 249);
    padding: 1px 15px;
    border-radius: 25px;
}

.form-search {
    background-color: #cfcfcf88;
    border-radius: 5px;
    padding: 2%;
}

/**
* Loading Overlay import planilha
*/

/* .loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.loading-content {
    text-align: center;
}

.custom-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #3498db;
    border-top: 5px solid #e0e0e0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.1rem;
    color: #1976d2;
    font-weight: bold;
} */

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.loading-content {
    text-align: center;
}

.custom-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #3498db;
    border-top: 5px solid #e0e0e0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.1rem;
    color: #1976d2;
    font-weight: bold;
}




#secaoUpPlanilha {
    position: relative;
}

/**
* Loading OverlayEvt Envio de Evento
*/

#loadingOverlayEvt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

#secaoUpEvento {
    position: relative;
    /* Para o overlay ser absoluto em relação a este bloco */
}


/**
* Tooltip
*/
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-container .tooltip-balloon {
    visibility: hidden;
    opacity: 0;
    width: 160px;
    background: #333;
    color: #fff;
    text-align: center;
    border-radius: 7px;
    padding: 8px 10px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    /* Aparece em cima da div */
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    pointer-events: none;
}

.tooltip-container .tooltip-balloon::after {
    content: "";
    position: absolute;
    top: 100%;
    /* Base do balão */
    left: 50%;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-container:hover .tooltip-balloon {
    visibility: visible;
    opacity: 1;
}


/**
* Nav dos Eventos
*/

.navEvt {
    font-weight: 200;
}

.navEvt-link {
    font-weight: 400;
    color: #0c0c0c;
}

.navEvt-link :hover {
    font-weight: 400;
    color: #0c0c0c;
}

.spinner {
    margin: 0 auto 10px auto;
    width: 48px;
    height: 48px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    /* Cor azul Bootstrap, altere se quiser */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


#painel-abrir-folhas {
    position: relative;
    /* importante para o loader se posicionar dentro */
}

.btn.disabled, .btn:disabled {
opacity: 0.6;
pointer-events: none;
}

.txt-retorno-contagem{
  font-size: 25px;
  font-weight: 400;
  color: #008000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
}

.retorno-contagem{
  background-color: #effcef;
  width: 60px;
  height: 50px;
  border:1px dotted;
  padding: 4%;
  border-radius: 8%;
}