@import url('fonts.css');
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --preto: #000;
    --cinza: #ddd;
    --branco: #fff;
    --azul-claro: rgba(186, 216, 255, 0.973);
    --vermelho-claro: rgba(255, 186, 193, 0.973);
    --amarelo-claro: rgba(255, 250, 186, 0.973);
}

body {
    background-color: rgb(223, 223, 223);
}

/* Universal ============================== */
input,
select {
    border: 1px solid var(--preto);
    padding-left: 5px;
    height: 30px;
    background-color: var(--branco);
}

textarea {
    border: 1px solid var(--preto);
    padding: 5px;
}

input:focus,
button:focus {
    outline: 0;
}

input:disabled, select:disabled{
    background-color: var(--cinza);
    border: none;
    color: var(--preto);
}

textarea:focus {
    outline: 0;
}

::placeholder {
    color: var(--preto);
}

button {
    cursor: pointer;
}

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

}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.contagemCaracter {
    font-size: 12px;
    font-weight: 600;
}

/* Universal ============================== */


/* Header ================================= */
header {
    background-color: var(--preto);
    color: var(--branco);

    width: 100%;
    height: 30px;

    display: flex;
    justify-content: right;
    align-items: center;
    padding-right: 20px;

    position: fixed;
    font-size: 13px;

    z-index: 2;
}

header a {
    color: white;
    cursor: pointer;
}

/* Header ================================= */


/* Menu =================================== */

.menu {
    width: 200px;
    height: 100vh;

    background-color: var(--preto);

    position: fixed;

    overflow-y: scroll;
    z-index: 3;
}

.menu::-webkit-scrollbar {
    display: none;
}

#topMenu {
    background-color: rgb(46, 46, 46);
    color: white;

    width: 200px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;


    position: sticky;

    top: 0;
    /* z-index: 3; */
}

.botoesMenu,
.btn-secundario {
    background-color: var(--preto);

    color: #fff;

    border-bottom: 1px solid #ffffff15;

    text-align: left;

    width: 200px;
    height: 40px;

    padding-left: 10px;

    font-size: 12px;
    font-weight: 400;

    /* cursor: pointer; */

    display: flex;
    align-items: center;
}

.botoesMenu:focus {
    outline: none;
}

.btn-secundario,
.corAtivado {
    background-color: #1d1d1d;
}

.botoesMenu:hover,
.btn-secundario:hover {
    background-color: #333333;
    color: #fff;
}

span {
    margin-right: 10px;
}

.containerBotoes {
    display: flex;
    flex-direction: column;
}

/* Menu =================================== */



/* Main =================================== */
main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    width: 100%;

    padding: 30px 0 150px 200px;
}

/* Main =================================== */




/* Modal Avisos ============================*/
.containerModalAvisos {
    display: flex;
    align-items: center;
    justify-content: center;

    /* background-color: rgba(0, 0, 0, 0.473); */

    top: 0;
    left: 0;
    right: 0;
    /* bottom: 0; */

    height: 150px;
    z-index: 999999999999999999;
    position: fixed;
    /* padding-top: 50px; */
}

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

    width: 100%;
    height: 100%;
}

.conteudoModalAvisos {
    border-radius: 10px;

    width: 500px;
    height: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 10px 0;
}

.red {
    background-color: var(--vermelho-claro);
    border: 1px solid rgb(255, 161, 169);
}

.azul {
    background-color: var(--azul-claro);
    border: 1px solid rgb(161, 191, 255);
}

.amarelo {
    background-color: var(--amarelo-claro);
    border: 1px solid rgb(255, 243, 132);
}

.botaoFecharModalAviso {
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

/* Modal Avisos ============================*/



/* Loader ==================================*/
#loaderBack {
    z-index: 9999999999;
    background-color: rgba(0, 0, 0, 0.281);
    position: fixed;

    display: none;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* display: none; */
}

#loaderCenter {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

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

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

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

/* Loader ==================================*/



/* Caixa ================================== */
.botaoFiltar {
    background-color: var(--preto);
    width: 80px;
    height: 30px;

    color: white;
    margin-left: 10px;
    cursor: pointer;
}

.botaoFiltar.sim {
    margin-left: 0;
}

.botaoFiltar.caixa {
    margin-left: 0;
    height: 40px;
}

#caixaInput {
    border: 1px solid var(--preto);
    height: 40px;
    padding-left: 5px;
}

#containerBox {
    border: 1px solid var(--preto);
    width: 300px;
    display: flex;

    flex-direction: column;
    font-size: 9pt;
}

.linha {
    display: flex;
    flex-direction: row;
    /* border-bottom: 1px solid black; */
    background-color: white;
}

.linha.botao2 {
    padding: 5px;
}

.botaoFecharCaixa {
    background-color: var(--preto);
    color: #fff;
    cursor: pointer;
}

/* Caixa ================================== */



/* Estilo Tab ============================= */
.tab {
    overflow: hidden;
    border-bottom: 1px solid var(--preto);
    /* background-color: #f1f1f1; */

    width: 100%;
    padding-bottom: 15px;
    padding-top: 10px;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;

    outline: none;
    cursor: pointer;
    padding: 5px 16px;

    transition: 0.3s;
    margin-left: 5px;
}

.tab button:first-child {
    margin-left: 0;
}

.tab button:hover {
    background-color: rgb(34, 34, 34);
    color: var(--branco);
}

.tab button.active {
    background-color: var(--preto);
    color: var(--branco);
}

.tabcontent {
    display: none;
    padding: 5px 10px;
    border: 1px solid #ccc;

    border-top: none;
    width: 100%;
    height: 100%;
    border-radius: 0 0 10px 10px;
}

/* Estilo Tab ============================= */





/* Modal ================================== */

#containerModal,
.containerModal {
    background-color: rgba(0, 0, 0, 0.281);
    z-index: 999999;
    position: fixed;
    /* display: none; */

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#boxModal,
.boxModal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#boxConteudoModal,
.boxConteudoModal {
    background-color: var(--branco);
    box-shadow: 3px 3px 20px 5px rgba(0, 0, 0, 0.664);

    position: absolute;

    border-radius: 15px;

    display: flex;
    flex-direction: column;
}

#visualizarPop {
    display: none;
}

.fecharBotaoPop {
    background-color: rgb(143, 1, 1);
    padding: 5px;
    top: 0;

    right: 0;
    position: absolute;
    color: var(--branco);

    font-size: 10pt;
    cursor: pointer;
    border-radius: 0 15px 0 0;
}

#visualizarPop:checked~#containerModal {
    display: none;
}

.linhaDoNome {
    width: 100%;
    height: 30px;

    /* padding: 0 10px; */

    border-radius: 10px 10px 0 0;

    background-color: #000000;
    color: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.linhaDoNome button {
    background-color: transparent;
    color: var(--branco);

    font-size: 16px;
    font-weight: 300;

    width: 30px;
    height: 30px;

    border-top-right-radius: 10px;
}

.linhaDoNome button:hover {
    background-color: rgb(151, 1, 1);
    border-top-right-radius: 10px;
}

/* Modal ================================== */



/* Paginação ============================== */
#containerPaginacao {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 20px;
}

.boxPaginacao {
    padding: 5px 10px 5px 10px;
    border: 1px solid rgb(158, 158, 158);
    color: var(--preto);
    background-color: rgb(235, 235, 235);
    margin-left: 5px;
}

/* Paginação ============================== */



/* Modal Avisos ============================*/
.containerAviso {
    width: 100%;
    display: none;
}

#aviso {
    font-size: 13px;
    font-weight: 600;
}

.red {
    background-color: rgba(255, 186, 193, 0.973);
}

.blue {
    background-color: rgba(186, 216, 255, 0.973);
}

.yellow {
    background-color: rgba(255, 250, 186, 0.973);
}

/* Modal Avisos ============================ */




/* Modal Ver Anexo ========================= */
.containerAnexoModalVer {
    width: 1000px;
    height: 560px;

    padding: 10px;
}

#verAnexoDisplay {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

#verAnexoDisplay img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

@media(min-width: 1900px) {

    .containerAnexoModalVer {
        width: 1200px;
        height: 800px;
    }
}

/* Modal Ver Anexo ========================= */




/*=========================================================================
    AVISO FLUTUANTE
  ========================================================================= */
.containerAvisoFlutuante {
    /* background-color: rgba(0, 0, 0, 0.150); */

    position: fixed;
    z-index: 9999999999;

    padding: 20px;

    width: 100%;

    top: 60px;

    display: flex;
    justify-content: center;
}

@media(min-width: 1400px) {
    .containerAvisoFlutuante {
        top: 50px;
    }
}

.boxAvisoFlutuante {
    /* background-color: var(--azul-claro); */
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.301);

    width: auto;
    min-width: 300px;
    /* max-width: 500px; */
    height: 50px;

    padding: 0 40px;

    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 15px;
    font-weight: 600;
}