button{
	cursor: pointer;
	background-color: var(--marca-escuro);
    border: 1px solid var(--marca-escuro);
    color: var(--branco);
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    font-family: Horatio;
    vertical-align: middle;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all .2s;
    letter-spacing: 1px;
    font-weight: 500;
}

button:hover{
	background-color: var(--marca-claro);
    color: var(--marca-escuro);
}

.margin-acima{
    margin-top: 12px;
}

button span{
    margin-right: 8px;
}


/*Rodapé de botões dos forms*/
#divBotoesForm {
    position: fixed;
    z-index:99999;
    background-color: white;    
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    right: 0;
    left:0;
    bottom:0;
    border-radius: 0px;
    padding: 12px;
    padding-right: 40px;
    margin: 0;
    -webkit-box-shadow: 0px 0px 25px 3px rgba(0,0,0,0.29);
    -moz-box-shadow: 0px 0px 25px 3px rgba(0,0,0,0.29);
    box-shadow: 0px 0px 25px 3px rgba(0,0,0,0.29);
}
#divBotoesForm button{
    height: 36px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #098d8b;
    padding: 6px 12px;
}

#divBotoesForm button:disabled{
    background-color: #a3a3a3;
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: all;
}

#divBotoesForm button:disabled span{
    cursor: not-allowed;
    pointer-events: all;
}

#divBotoesForm span{
    margin-top: 2px;
    height: 12px;
    line-height: 12px;
}

#divBotoesForm button i{
    margin-right: 12px;
    height: 14px;

}

#divBotoesForm .btn-warning{
    background-color: #8c8c0f;
    border-color: #8c8c0f;
}

#divBotoesForm .btn-danger{
    background-color: #8c0b0f;
    border-color: #8c0b0f;
}

.btn-pesquisar{
    height: 50px;
}
.label{
    border-radius: 16px;
    padding: 4px 16px;
    min-height: 20px;
    display:block;
    line-height: inherit;
}
.label-success{
    background-color: #9cff9c;
    color: #365934;
}
.label-warning {
    background-color: #ffd291;
    color: #a96e1b;
}
.label-info{
    background-color: #f4f4f4;
    padding: .2em .6em .3em;
    color: black;
    font-weight: normal !important;
}