
/* ============ Estilos Globais do Sistema ============ */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}


body {
    font-family: Helvetica, Arial, Verdana, sans-serif;
    margin: 0px;
}

main {
    width: 100%;
}


/* ============ Container ============ */

.container {
    width: 100%;
    padding: 5px;
}


/* ============ Flash Messages ============ */

.flash {
    padding: 10px 16px 10px 55px;
    border: 1px solid darkgray;
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: normal;
    text-align: justify;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.flash-close {
    margin-left: auto;   /* empurra para a direita */
    font-size: 25px;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}


.flash-atencao {
    background: #fff8c4 url('../images/flash_msg_atencao.png') no-repeat 10px 50%;
}

.flash-erro {
    background: #ffb8b8 url('../images/flash_msg_erro.png') no-repeat 10px 50%;
}

.flash-exclusao {
    background: #dcdcdc url('../images/flash_msg_exclusao.png') no-repeat 10px 50%;
}

.flash-noticia {
    background: #bed9ff url('../images/flash_msg_noticia.png') no-repeat 10px 50%;
}

.flash-sucesso {
    background: #e9ffd9 url('../images/flash_msg_sucesso.png') no-repeat 10px 50%;
}

/* ============ DIV que mostra a mensagem de JavaScript desabilitado ============ */

.js_disabled {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 0 50px 0;
    font-weight: normal; 
    width: 100%;
    background: red;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    z-index: 9999;
}
