/**
 * GIATROS
 * » Folha de estilos
 * 
 */



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

:root {
    --azul-claro: #1dace2;
    --azul-escuro: #0b8ac0;
    --cinza-claro: #f8f8f8;
    --cinza: #8e8d8d;
    --verde-oliva: #5a6636;
    --vermelho: rgb(132, 27, 1);
}

/* Padronização */

a {
    text-decoration: none !important;
}

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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
    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.9rem;
    margin-top: 1em;
    text-align: center;
}

/* Barra de navegação
-------------------------------------------------- */

.navbar-nav li {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-text {
    font-size: 0.9rem;
    float: right;
}

.quit-btn {
    float: right;
    margin-left: 24px;
}

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

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

.controle-cartao {
    border: 1px solid var(--azul-escuro);
    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: 3rem;
    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 */
    padding-bottom: 120px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: var(--cinza-claro);

    /* Set the fixed height of the footer here */
    height: 60px;


}

.footer .container {

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

    font-size: 0.7rem;

    height: 100%;
    width: 100%;

}

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

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

footer .container {
    padding-top: 0;
}



/* Erros
-------------------------------------------------- */

.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;
}


/* CLIENTES
-------------------------------------------------- */

.action-bar {
    margin: 1rem auto 2rem;
}

#grupoCPF {
    margin-bottom: 1rem;
}

#CPFClienteAlertas.alert {
    font-size: 0.8rem;
    padding: 8px;
    margin: 0.5rem auto;
}

#cliente-acoes {
    text-align: right;
}

#cliente-acoes a {
    color: #404040;
    font-size: 1rem;
    margin: 0 0.25rem;
}

.btn-bar {
    width: 100%;
}

.align-right {
    text-align: right;
}