/* CSS3 */

/*------------------------------------ GERAL ------------------------------------------*/
* {
    padding: 0;
    margin: 0;
    border: 0;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Remover Marcas azul CSS */
    font-weight: normal;
    
    background-repeat: repeat;
    font-family: Verdana, Arial, sans-serif;
    font-size: 18px;
    
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.ds_none{
    display: none !important;
}

/*cabeçalho-topo, 	menu, 	conteudo-principal, 	sessões-blocos, 	chamadas, 	rodapé, 	figura*/
header, 		nav, 	section, 		article, 		aside, 		footer, 	figure {
    margin: 0;
    padding: 0;
}

button,
input[type='submit'],
input[type='button'] {
    cursor: pointer;
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
}

a:hover,
button:hover,
input[type='submit']:hover,
input[type='button']:hover,
input:focus {
    outline: none;
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
}

.corBrancosvg path, 
.corBrancosvg circle, 
.corBrancosvg rect
.corBrancosvg line, 
.corBrancosvg polyline, 
.corBrancosvg polygon, 
.corBrancosvg path, 
.corBrancosvg text {
    fill: #FFF;
}

/* WHATSAPP
================================================== */

a.btWhatsApp {
    background-color: #4dc247;

    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);

    opacity: 1;
    filter: alpha(opacity=10);

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;

    position: fixed;
    z-index: 1;
    top: auto;
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
} 
a.btWhatsApp svg {
    width: 26px;
    height: 26px;
    margin-top: 12px;
    margin-left: 12px;
}

/* FIM WHATSAPP
================================================== */

/* avisoRapido
================================================== */

.avisoRapido {
    color: #FFF;
    font-family: Arial;
    font-size: 12px !important;
    display: block;
    position: fixed;
    z-index: 2;
    padding: 14px 50px;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);

    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);

    opacity: 0;
    filter: alpha(opacity=0);

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.avisoRapido.avisoVerde {
    background: #318C46 url(img/icoVistoPP.svg) 18px 14px no-repeat;
}

.avisoRapido.avisoVermelho {
    background: #BD0B17 url(img/icoErroPP.svg) 18px 14px no-repeat;
}

.processandoAjax {
    background: #318C46;
    color: #FFF;
    font-family: Arial;
    display: block;
    position: fixed;
    z-index: 99;
    padding: 8px 20px;
    top: 30px;
    right: 30px;
    
    opacity: 0;
    filter: alpha(opacity=0);

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

/* Fim avisoRapido
================================================== */