/* 
 * BOOTSTRAP
 * Sobrepondo definicoes
*/
.form-control,
.input-group-text {
	border: 0;
	border-bottom: solid 1px rgba(0,0,0,.15);
	background-color: transparent;
	border-radius: 0;
}
.form-control:active,
.form-control:focus,
.form-control:hover {
	background-color: transparent;
}
.form-group label {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* 
 * VideoJS
 * Sobrepondo definicoes
*/
.video-js {
	border-radius: 4px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	overflow: hidden;
}

/* 
 * ELEMENTOS
 * Elementos novos
*/
.btn.btn-rounded {
	background-color: rgba(255,255,255,1);
	border-radius: 10em;
	box-shadow: 0px 10px 14px -7px rgba(0,0,0,.5);
	padding: .5rem 2rem;
	transition: all .25s ease;
}
.btn.btn-rounded:focus,
.btn.btn-rounded:hover {
	box-shadow: 0px 10px 24px -7px rgba(0,0,0,.5);
	transform: scale(1.1);
}
.btn.btn-rounded:active {
	background-color: rgba(225,225,225,1);
}
.btn.btn-rounded.btn-rounded--green {
	background: #00aa00;
	background: -webkit-linear-gradient(to right, #00aa00, #01d25b); 
	background-image: linear-gradient(to right, #00aa00, #01d25b);
	color: #fff;
}

/* 
 * GERAL
 * Definicoes para todas as paginas
*/
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	background: -webkit-linear-gradient(to right, #004e92, #000428);
	background: linear-gradient(to right, #004e92, #000428);
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif,
	-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

/* 
 * HEADER
 * Definicoes para todas as paginas
*/
#header  {
	box-shadow: 0px 24px 32px -24px rgba(0,0,0,.5);
	padding: .5rem 0;
}
#header  {
}
.mzr_cssgradients #header  {

}
#header .col {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
}
#header .col > div {
	align-self: center;
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: auto;
}
#header .col > div:nth-child(1) {
	margin-bottom: .25rem;
	order: 1;
}
#header .col > div:nth-child(2) {
	display: none;
	order: 2;
}
#header .col > div:nth-child(3) {
	order: 3;
	text-align: right;
}
@media (min-width: 576px) {
	#header .col {
		flex-direction: row;
	}
	#header .col > div:nth-child(1) {
		margin-bottom: 0;
		flex-basis: 25%;
	}
	#header .col > div:nth-child(2) {
		flex-basis: 75%;
	}
}
@media (min-width: 768px) {
	#header .col > div {
		flex-basis: 50%;
	}
}
@media (min-width: 992px) {
	#header .col > div:nth-child(n) {
		flex-basis: 33.33333%;
	}
	#header .col > div:nth-child(2) {
		display: block;
	}
}
#header .logo {
	background-image: url('../../IMG/logo/logo-integra-branco.svg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 90%;
	display: inline-block;
	height: 45px;
	vertical-align: middle;
	width: 150px;
}
#header .main-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* 
 * MAIN CONTAINER
 * Definicoes para todas as paginas
*/
#main-container {
	padding: 2rem 0 0;
}

/* 
 * FOOTER
 * Definicoes para todas as paginas
*/
#footer {
}

.mb-10
{
    margin-bottom: 10px;
}