/*#######################################################################################

/*
ESTILOS DAS MENSAGENS
*/

.cores {
    background: #ff0000;
}

.caixa-notificacao {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 90%;
    background: #ffffff;
    border: 1px solid gray;
    border-radius: 1px;
    box-shadow: 10px 10px 10px gray;
    animation: animate;
    animation-duration: 500ms;
    text-align: center;
    padding: 12px;
    margin: 0 5px 0 5px;
}



.texto-notificacao {
    color: white;
    font-weight: bold;
}

.img-notificacao {
    width: 10px;
    height: 10px;
    margin: auto;
}

.btn-notificacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 20px;
    height: 20px;
}


/*
ESTILO GERAL
*/


.borda {
    border: 2px solid rgb(255, 255, 255);
}

.borda-dark {
    border: 2px solid rgb(0, 0, 0);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, #0c2304, #23870a);
    background-attachment: fixed;
}

.centralizar-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.centralizar-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.esquerda {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.direita {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}

.form {
    position: fixed;
    padding: 5px;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 10px 10px 10px gray;
    animation: animate;
    animation-duration: 500ms;

}

.form-confirmacao {
    position: fixed;
    padding: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 10px 10px 10px gray;
    animation: animate;
    animation-duration: 500ms;
    background-color: #ff0000;
}

@keyframes animate {
    from {
        opacity: 1;
    }
}


.fundo {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #0c2304, #23870a);
}

a {
    text-decoration: none;
    color: black;
}



.img {
    width: 15px;
    height: 30px;
}


.btn-form {
    background-color: #a57f45;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #ffff;
    font-size: 15pt;
    color: #ffff;
}




.cabecalho {
    margin: 5px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
}


.rodape {
    background-color: rgb(255, 255, 255);
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 5px;
    margin: 5px;
}



/*#######################################################################################



/*     
ESTILO DO DEFAULT
*/

.login {
    border-radius: 5px;
    box-shadow: rgb(0, 0, 0) 5px 5px 10px;
    background-color: #c90808;
}


.btn-entrar {
    background-color: #a57f45;
    width: 90%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ffff;
    font-size: 20pt;
    color: #ffff;
}




/* ESTILOS LOAD */

.load {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 252, 0.671);
}




/* ESTILO HOME */


.abas {
    list-style: none;
}

.abas li {
    display: inline-block;
    margin: 5px 10px;
    padding: 10px;
    color: #000000;
    font-size: 15pt;
    font-family: cambria;
}

.abas li:hover {
    background-color: #a57f45;
    color: #000000;
    cursor: pointer;
    border-radius: 5px;
}


.mensagem-home {
    font-size: 30pt;
    font-family: 'Lucida Grande';
    padding: 20px;
    text-align: center;
}


.nome-home {
    font-size: 40pt;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: #a57f45;
    width: 90%;
}


.btn-filtrar {
    background-color: #a57f45;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ffff;
    font-size: 15pt;
    color: #ffff;
    margin-top: 5px;
}

.btn-editar {
    background-color: #ffff;
    width: 100%;
    border-radius: 5px;
    border: 0px solid #ffff;

}

.cabecalho-tabela-produtos {
    background-color: #040404;
    color: #ffff;
    font-size: 12pt;
    font-weight: bold;
}



.btn-form-crud {
    background-color: #a57f45;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ffff;
    font-size: 15pt;
    color: #ffff;
    margin-top: 5px;
}

.carimbo {
    width: 100px;
    font-size: 8pt;
}