/* LOGO CARREGAMENTO COR DE FUNDO */

#pagamentowindows1 {
    background-color: rgba(255, 255, 255, 1 ) !important;
    opacity: 0.6;
}




/* CONTORNO A VERMELHO NUM INPUT QUANDO NAO É PREENCHIDO */

form .faltaprencher p {
    border: 1px solid red !important;
}
form input.faltaprencher{
    border: 1px solid red !important;
}
form textarea.faltaprencher{
    border: 1px solid red !important;
}
form select.faltaprencher{
    border: 1px solid red !important;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc !important;
}




/* ----- MENSAGEMS DE ALERTA DE ERROS OU SUCESSO ----- */

.posicaoAlertMessage {
    position: fixed;
    margin: 15px;
    z-index: 10000;
    display: none;
    top: 0px;
    right: 0px;
}

.caixaAlertMessage {
    background: #D74A41;
    text-shadow: none;
    border: none;
    border-radius: 2px;
    padding: 11px 22px;
    color: #fff;
    font-weight: 300;
    position: relative;
}

.erro .caixaAlertMessage {
    background: #D74A41;
}

.sucesso .caixaAlertMessage {
    background: #28a745;
}

.mostrarAlertMessage {
    display: block;
}



