/* Variáveis
-------------------------------------------------- */

:root {
    --azul-claro: #1dace2;
    --azul-escuro: #0b8ac0;
    --cinza: #8e8d8d;
}

/* Padronização */

a {
    text-decoration: none !important;
}

/* Tipografia
-------------------------------------------------- */

/**
 * Declarando a família de tipos "Nexa".
 */

@font-face {
    font-family: "Nexa";
    src: url("../fonts/NexaRegular.woff2") format("woff2"), url("../fonts/NexaRegular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nexa";
    src: url("../fonts/Nexa-Bold.woff2") format("woff2"), url("../fonts/Nexa-Bold.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: "Nexa", sans-serif;
}

h1, h2, h3, h4, h5 {
    color: var(--azul-escuro);
    margin: 2em 0 1em;
}

/* Tela de acesso
-------------------------------------------------- */

.page-header {
    text-align: center;
}

.page-header-info {
    margin: 1em auto 0;
    width: 80%;
}

.nova-senha-texto {
    font-size: 0.9em;
    margin-top: 1em;
    text-align: center;
}

/* Painel
-------------------------------------------------- */

.painel-controle {
    display: flex;
    justify-content: space-between;
}

.controle-cartao {
    border: 1px solid var(--cinza);
    border-radius: 4px;
    margin: 0 1em;
    padding: 10px;
    text-align: center;
    width: 200px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.controle-cartao:hover {
    background-color: var(--azul-escuro);
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.controle-cartao:hover h2 {
    color: white;
    text-decoration: none;
}

.controle-cartao a:hover {
    color: white;
    text-decoration: none;
}

.controle-cartao h2 {
    margin: 0;
    text-decoration: none;
}

.controle-cartao .fa {
    font-size: 3em;
    line-height: 1.5;
}

/* Rodapé fixo
-------------------------------------------------- */

html {
    position: relative;
    min-height: 100%;
}

body {
    background: linear-gradient( to bottom, rgba(179, 177, 177, 0) 0%, rgba(179, 177, 177, 0.65) 100%);
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    background-color: #f5f5f5;
}

/* Container
-------------------------------------------------- */

.container .text-muted {
    margin: 20px 0;
}

.container {
    padding-top: 60px;
}

footer .container {
    padding-top: 0;
}

/* Formulário de marcação de exames
-------------------------------------------------- */

.marcacao-exames-logotipo {
    text-align: center;
}

.bg-info {
    border-radius: 2px;
    padding: 24px 12px;
    text-align: center;
}

/* Erro
-------------------------------------------------- */

.erro {
    z-index: 999;
    border: solid 1px #f0f0f0;
    background: whitesmoke;
}

#msgErro {
    display: none;
}

.msgErro {
    border-left: 1em solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    color: white;
    padding: 10px;
    width: 75%;
    margin: 4px 0;
    background-color: #dd4132;
}

.msgAlerta {
    border-left: 1em solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    color: white;
    padding: 10px;
    width: 75%;
    margin: 4px 0;
    background-color: #e4bf45;
}

/* Laudos
-------------------------------------------------- */

.laudos-lista a {
    display: block;
}

.laudos-lista tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

#form-cria-laudo {
    max-width: 800px;
}

.cria-laudo-cabecalho {
    line-height: 1.5;
}

.form-botoes {
    display: flex;
    justify-content: space-between;
}

::placeholder {
    color: #aaa;
    font-weight: 400;
}

label, legend {
    display: block;
    margin-top: 1em;
    margin-bottom: 0.1em;
}

input[type="date"], input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {}

input[type="email"], input[type="text"], select, textarea {
    width: 100%;
}

input[type="text"] {
    border-radius: 4px;
    border: 1px solid #ccc;
}

.form-linha {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.um-terco {
    width: 32%;
}

.dois-tercos {
    width: 66%;
}

.um-meio {
    width: 49%;
}

/* REGULAMENTO
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.regulamento-janela {
    border: 1px solid var(--azul-escuro);
    border-radius: 16px;
    height: 50vh;
    overflow: auto;
    margin: 3em auto;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.regulamento-miolo {
    overflow: auto;
    max-height: 100%;
}

.form-aceite .caixa-aceite {
    margin: 1em;
}

.form-aceite .botao {
    font-weight: 700;
    padding: 8px 16px 4px;
}

.regulamento-estilo-titulo {
    font-size: 20px;
    font-weight: 700;
}

.regulamento-estilo-subtitulo {
    font-size: 16px;
    font-weight: 700;
    margin-top: 24px;
}

.regulamento-estilo-normal code {
    color: var(--azul-claro);
}