/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12pt;
}

header{
    width: 100%;
    min-height: 20px;
    height: auto;
    overflow: auto;
    padding: 20px;
}

.section{
    width: 100%;
    min-height: 20px;
    height: auto;
    overflow: auto;
    padding: 5px;
}

section{
    width: 100%;
    min-height: 20px;
    height: auto;
    overflow: auto;
    padding: 20px;
}

.content{
    width: 1200px;
    min-height: 20px;
    height: auto;
    overflow: auto;
    margin: auto;
}

.volta_topo{
    width: 50px;
    height: 50px;
    background-color: rgba(234,57,61,0.7);
    text-align: center;
    line-height: 50px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

.volta_topo:hover{
    background-color: rgba(234,57,61,1);
}

.volta_topo::before{
    content: "↑";
    color: #fff;
    font-size: 20pt;
}

.loading{
    position: fixed;
    z-index: 99999999999;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.loading .content{
    width: 150px;
    height: 140px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading .content img{
    width: 100px;
    height: 100px;
}

.loading .content span{
    font-size: 20pt;
    font-weight: bold;
    color: #046604;
}

input, textarea, select{
    outline: transparent;
}

@media only screen and (max-device-width: 900px) {
    .volta_topo{
        width: 20px;
        height: 20px;
        line-height: 20px;
        bottom: 15px;
        right: 15px;
    }

    .volta_topo::before{
        content: "↑";
        color: #fff;
        font-size: 12pt;
    }
}

.text-left{
    text-align: left !important;
}

.text-right{
    text-align: right !important;
}

.text-center{
    text-align: center !important;
}

.text-justify{
    text-align: justify !important;
}

.no-margin{
    margin: 0px !important;
}