/* ------- PRELOADER -------- */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffffa2;
    z-index: 999;
    display: none;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    /* centralizar a parte interna do preload (onde fica a animação)*/
    left: 50%;
    transform: translate(-50%, -50%);
}

/* table td {
    position: relative;
}

table td input {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    border: none;
    padding: 10px;
    box-sizing: border-box;
} */

.texto-black {
    color: black;
}


.thead_color {
    color: #222d44;
}

.texto-cinza {
    color: rgb(62, 62, 62);
}

.hr-cinza {
    color: #616161a2;
}

.icones {
    font-size: 1.75rem;
}

.clock {
    font-size: 18px;
}

/*
*   FONTES ESTILIZADAS
*/
.card_body {
    font-family: "Inria Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.font_styles {
    font-family: "Inria Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.bg-dc {
    --bs-bg-opacity: 1;
    background-color: #91A646 !important;
}

.texto-sucesso {

    --bs-text-opacity: 1;
    color: #91A646 !important;

}

.panel-heading {
    /* color: #6f6f6f; */
    background-color: #e2e2e271;
    border-color: #000000;
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

/*
Modifica a barra de rolagem de toda a página
*/

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: rgb(241, 241, 241);
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(216, 215, 215, 0.596);
    border-radius: 20px;
    border: 3px solid rgb(224, 224, 224);
}

::-webkit-scrollbar {
    width: 12px;
    border: 20px;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: rgb(241, 241, 241);
    width: 12px;
    border: 20px;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(216, 215, 215, 0.549);
    width: 12px;
    border-radius: 20px;
    border: 3px solid rgb(224, 224, 224);

}