body,
html {
	width: 100%;
	min-height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

div#wrapper {
	min-height: 100vh;
}

.flex-fill {
	flex: 1 1 auto;
}

#content {
	padding: 15px;
}

header {
	display: block;
	background-color: white;
	min-height: 6%;
}

#userInfo {
	text-align: right;
	vertical-align: bottom;
}

header a.caixaLink {
	display: block;
	background: url(../img/sprites.png) no-repeat 0 0;
	width: 115px;
	height: 25px;
	margin: 20px;
}

ul.helper {
	list-style: none;
	padding: 0;
	overflow: hidden;
	margin-top: 10px;
	float: right;
	margin: 9px;
}

ul.helper li {
	display: inline;
	float: left;
}

ul.helper li a {
	padding: 2px 10px;
    display: inline-block;
    text-decoration: none;
}

main {
	background: #0369B9;
	background-size: 100% 100%;
	display: block;
}

main div.text-selecione {
	color: #FBA363;
	margin-top: 10px;
}

footer {
	background-color: white;
	color: white;
	text-align: center;
}

footer .title {
	font-weight: bolder;
	font-size: 20px;
	color: #194775;
}

footer ul {
	padding: 0px;
}

footer div.support {
	margin-top: 10px;
}

footer div.links {
	margin: auto;
	width: 50%;
}

footer div.links a,
footer div.links a:hover {
	color: white;
}

.col-centered {
	float: none;
	margin: 0 auto;
}

.orange {
	border-color: #9f6705;
	color: #fff;
	background: rgb(253, 169, 23);
	background: -moz-linear-gradient(top, rgba(253, 169, 23, 1) 0%, rgba(252, 143, 1, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(253, 169, 23, 1)), color-stop(100%, rgba(252, 143, 1, 1)));
	background: -webkit-linear-gradient(top, rgba(253, 169, 23, 1) 0%, rgba(252, 143, 1, 1) 100%);
	background: -o-linear-gradient(top, rgba(253, 169, 23, 1) 0%, rgba(252, 143, 1, 1) 100%);
	background: -ms-linear-gradient(top, rgba(253, 169, 23, 1) 0%, rgba(252, 143, 1, 1) 100%);
	background: linear-gradient(to bottom, rgba(253, 169, 23, 1) 0%, rgba(252, 143, 1, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fda917', endColorstr='#fc8f01', GradientType=0);
}

.orange:hover {
	border-color: #6c4105;
	color: #fff;
	background: rgb(255, 179, 45);
	background: -moz-linear-gradient(top, rgba(255, 179, 45, 1) 0%, rgba(255, 154, 0, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 179, 45, 1)), color-stop(100%, rgba(255, 154, 0, 1)));
	background: -webkit-linear-gradient(top, rgba(255, 179, 45, 1) 0%, rgba(255, 154, 0, 1) 100%);
	background: -o-linear-gradient(top, rgba(255, 179, 45, 1) 0%, rgba(255, 154, 0, 1) 100%);
	background: -ms-linear-gradient(top, rgba(255, 179, 45, 1) 0%, rgba(255, 154, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(255, 179, 45, 1) 0%, rgba(255, 154, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb32d', endColorstr='#ff9a00', GradientType=0);
}

.orange:focus,
.orange.btn-selected {
	background: #dd790d;
	border-top-color: #462d09;
	color: #fff;
}

.g-recaptcha {
	display: inline-block;
}

iframe {
	height: 100%;
	width: 100%;
}

.panel-default {
	background: #fff;
	border: 1px solid #ccc;
	border-color: rgb(5, 14, 53);
	color: #000;
	-webkit-box-shadow: 0 2px 10px rgb(5, 14, 53);
	box-shadow: 0 2px 10px rgb(5, 14, 53);
	outline: none;
	-webkit-animation: gb__a .2s;
	animation: gb__a .2s;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-user-select: text;
}

div#ajaxLoader {
	display: none;
	z-index: 1000;
}

div#ajaxLoader>#modal {
	background-color: black;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	opacity: 0.5;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
}

div#ajaxLoader>div#centerImg {
	width: 250px;
	height: 242px;
	position: absolute;
	left: 40%;
	top: 30%;
	background-image: url('../img/loader.gif');
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1000;
	border-radius: 6px;
}

@media only screen and (max-width:420px) {
	div#ajaxLoader>div#centerImg {
		left: 14%;
		top: 30%;
	}
}

@media only screen and (max-width:320px) {
	div#ajaxLoader>div#centerImg {
		left: 8%;
		top: 30%;
	}
}

.orangeLink {
	color: rgb(253, 169, 23) !important;
}