:root{


    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    font-size: 10px;
    

}

*{

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;;

}

/*Resetando Propriedades*/
*{

    box-sizing: border-box;
    margin: 0;
    padding: 0;
    white-space: nowrap;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

span, a, h1, h2, h3, label{
    line-height: 1;
}

a{
    text-decoration: none;
}

/* Cor de fundo do autocomplete */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    background-color: yellow;
}

/* Cor do texto do autocomplete */
input:-webkit-autofill {
}

input:focus, select:focus, textarea:focus{
    outline: none;
}

input, select, textarea{

    background-color: transparent;

}

svg{

    box-sizing: initial;

}

/* Cores */
.azul{

    color: var(--azul);
    fill: var(--azul);

}

.verde{

    color: var(--verde);
    fill: var(--verde);

}

.amarelo{

    color: var(--amarelo);
    fill: var(--amarelo);

}

.laranja{

    color: var(--laranja);
    fill: var(--laranja);

}

.vermelho{

    color: var(--vermelho);
    fill: var(--vermelho);

}

/*Elementos Gerais*/

.inputPadrao{

    padding: 0px 7px 1px;
    min-width: 100%;
    width: 150px;
    height: 29px;
    border-radius: 5px;
    border: 1px solid var(--corDetalhes);
    background-color: var(--corDivsMain);
    font-size: 1.45rem;
    color: var(--corTextoMain);

}


.botaoPadrao{

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;

    border-radius: 7px;
    border: 0;

    padding: 0 15px 0 12px;

    min-height: 30px;

    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;

    background-color: var(--corTextoMain);

    color: var(--corDivsMain);
    fill: var(--corDivsMain);

    cursor: pointer;

}

.inputDisabled{

    background-color: var(--corDetalhesTransparente) !important;

}

.inputDisabled:-webkit-autofill{

    -webkit-box-shadow: 0 0 0 30px var(--corDetalhes) inset;
    background-color: var(--corDetalhes) !important;

}

.botaoPadrao:hover{

    opacity: 0.85;

}

    .botaoPadrao > svg{

        width: 1.85rem;
        height: 1.85rem;

    }

.displayNone{
    display: none !important;
}

.desativado{

    opacity: 0.5;
    pointer-events: none;

}


#efeitoEscuro{

    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}

.secaoPadrao{

    display: flex;
    flex-direction: column;
    gap: 15px;

    min-height: calc(100vh - var(--alturaHeader) - 30px);

    white-space: nowrap;

}

.popUpPadrao{

    z-index: 1001;
    
}

.divPadrao{

    display: flex;
    flex-direction: column;

    min-height: fit-content;

    border-radius: 5px;

    padding: 10px;

    background-color: var(--corDivsMain);
    box-shadow: var(--sombraPadrao);
    color: var(--corTextoMain);

}

    .topo-divPadrao{
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        font-weight: 500;

        font-size: 1.5rem;
    }

        .textoTopoDivPadrao{
            font-size: 1rem;
        }
        
        .textoLink:hover{
            text-decoration: underline;
            cursor: pointer;
        }

    .conteudo-divPadrao{

        display: flex;
        flex-direction: column;

        flex: 1;
        
    }


.labelPadrao{

    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    font-size: 1.45rem;

}

