@import "cores.css";
@import "menu.css?2";
@import "tela.css";
@import "acessibilidade.css?2";
@import "footer.css?2";
/*@import "forms.css?3";*/
/* @import "botoes.css?2"; */
@import "botoes-material.css";
@import "botoes-outline.css";
@import "modal.css?2";
@import "alerta.css?2";
@import "alerta-dialog.css";
/*@import "tabs.css?2";*/
/*@import "tabs-tarcisio.css";*/
@import "tabs-antonio.css";
/* @import "tabelas.css?2"; */
/* @import "tabelas-bunker.css"; */
@import "suggest.css";

:root {
    --azul: #0071ad;
    --azul-escuro: #003157;
    --cinza-escuro: #555577;
    --altura-menu: 3rem;
    --fundo: white;
}

/* * {
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", "arial", "helvetica", "Open Sans", sans-serif;
    font-size: 1rem;
    color: var(--cor-fonte);
    box-sizing: border-box;
} */

body.alto-contraste {
    background-color: black;
    color: white;
}

a {
    color: var(--cor-link);
    cursor: default;
    outline: none;
}

a:focus {
    box-shadow: 0 0 1px 1px var(--cor-link-hover);
}

body.alto-contraste a:focus {
    box-shadow: 0 0 1px 1px var(--cor-link-contraste);
}

a[href] {
    cursor: pointer;
}

a:hover {
    color: var(--cor-link-hover);
}

body.alto-contraste a,
body.alto-contraste a:hover {
    color: var(--cor-link-contraste);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--cor-azul-correios);
    margin-bottom: 1rem;
}

body.alto-contraste h1,
body.alto-contraste h2,
body.alto-contraste h3,
body.alto-contraste h4,
body.alto-contraste h5,
body.alto-contraste h6 {
    /* color: white; */
}

h1 {
    font-size: 1.2rem;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 1.802rem;
    }

    h2 {
        font-size: 1.602rem;
    }

    h3 {
        font-size: 1.424rem;
    }

    h4 {
        font-size: 1.266rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    h6 {
        font-size: 1rem;
    }
}

p {
    padding-bottom: 0.5rem;
}

.oculto,
.oculta {
    display: none !important;
}

main {
    min-height: calc(100vh - 5.2rem);
    width: 100%;
    padding: 1rem;
}

body.modo-foco main {
    height: calc(100vh);
    padding-top: calc(4rem);
}

body.modo-foco.origin-app main {
    height: calc(100vh);
    padding-top: 0;
    margin-top: 1rem;
}

@media (min-width: 1024px) {

    body.modo-foco {
        overflow: hidden;
    }

    body.modo-foco main {
        min-height: auto;
        overflow: auto;
    }

    body.menu-aberto main, body.menu-aberto footer {
        padding-left: 16rem;
    }

}

main > .docavel {
    position: sticky;
    top: var(--altura-menu);
}

.cards {
    display: flex;
    flex-flow: row wrap;
}

.card {
    padding: 0.5rem;
    margin: 1rem;
    border-radius: 5px;
    transition: 0.15s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}

.card:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

body.alto-contraste .card {
    border-color: white;
}

code {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: #eb5a46;
    box-shadow: 0 0 0 1px rgba(9, 30, 66, 0.13);
    padding: 1px 3px;
}

#trilha {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 1rem;
}

#trilha a {
    color: var(--cor-link);
    padding: 0 1.25rem 0 0;
    background: url("../img/arrow-right-black.svg") no-repeat right 1px center;
    background-size: 1rem;
    white-space: nowrap;
}

body.alto-contraste #trilha a {
    color: var(--cor-link-contraste);
}

#trilha a:last-child {
    padding: 0;
    background: none;
    color: var(--cor-fonte);
}

body.alto-contraste #trilha a:last-child {
    color: white;
}

@media (min-width: 1024px) {
    #trilha {
        margin-bottom: 2rem;
    }
}

@keyframes rotacao-loading {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

#loading, .loading {
    background: url(../img/loading-dark.svg) no-repeat center #303134;
    width: 2.5rem;
    height: 2.5rem;
    animation: rotacao-loading 1s infinite;
    display: none;
    position: fixed;
    top: 1.5rem;
    z-index: 11;
    left: 50%;
    margin-left: calc(-2.5rem / 2);
    border-radius: 50%;
}

#loading.visivel {
    display: block;
}

@media (min-width: 1024px) {

    #loading {
        width: 2.5rem;
        height: 2.5rem;
    }

}

@media (min-width: 1200px) {

    #loading.visivel {
        display: none;
    }
}

.carregando {
    height: 3rem;
    width: 3rem;
    margin: auto;
    background: url(../img/loading-dark.svg) center no-repeat;
    animation: rotacao-loading 1s infinite;
}

ol, ul {
    margin: 0 1rem 0.5rem 1rem;
}

.acoes {
    display: flex;
}

.checks {
    display: flex;
    flex-flow: row wrap;
}

.checks label {
    border: 1px solid lightgray;
    border-radius: 0.25rem;
    padding: 0.5rem;
    text-align: center;
    user-select: none;
    display: flex;
    justify-content: center;
    margin: 0 1px 1px;
    color: #7e7e7e;
    font-size: 0.8rem;
}

.checks input {
    display: none;
}

.checks label:hover {
    background: #f5f5f5;
}

.checks label.sel {
    background: #e4e4e4;
}

.dark .checks label {
    border-color: #5e6060;
}

.dark .checks label:hover {
    background: #162d40;
}

.dark .checks label.sel {
    background: #162d40;
}

@media (min-width: 768px) {
    .checks label {
        height: 2.1rem;
    }
}
