/* Codigos Globais */

body {
	margin: 0;
	padding: 0;
	font-family:"commuters-sans";
}

html{
	overflow-x:hidden !important;
}

a {
	width: fit-content;
	text-decoration: none;
}

p {
	margin: 0;
	padding: 0;
}

/* Fonts */

.smooth-animation{
	-webkit-transition:all .3s ease;
	-moz-transition:all .3s ease;
	-ms-transition:all .3s ease;
	transition:all .3s ease;
	-o-transition:all .3s ease;
}


.main-section {
	position:absolute;
	width:100%;
	height:100%;
} 

.content-section {
   position:relative;
   width:100%;
   height:100%;
   z-index:10;
   min-height:80%;
   /*background: url('img/banner2.webp');
   background-color: #27274b;
   background-position: center center;
   background-attachment: fixed;
   background-repeat: no-repeat;
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   background-size: cover;*/
}

.content-wrapper {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%,-50%);
   -webkit-transform: translate(-50%,-50%);
   -moz-transform: translate(-50%,-50%);
   -ms-transform: translate(-50%,-50%);
   font-size: 2.8vw;
   z-index: 99;
   color: #fff;
	width: 100%;
   /*height: 90%;
   overflow: hidden;*/
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.content-img {

}

.content-img img {
	width: 60%;
	max-width: 300px;
	display: block;
	margin: 0 auto;
}

.content-form {

}

.form-title {
	color: #0A518C;
	font-size: 1.2em;
	text-align: center;
	margin: 15px 0;
}

.input-field {
	position: relative;
	margin: 10px 0;
}

.input-field i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
	color: #0A518C;
	width: fit-content;
}

.input-field.search i {
    left: 20px;
}

.input-field.search .input-filter i {
	left: 50%;
	font-size: 20px;
}

.input-filter:hover {
	background-color: #E6E6E6;
}

.input-filter:hover i {
	color: #0A518C;
}

.input-filter {
	position: absolute;
	right: -10px;
	top: 50%;
    transform: translateY(-50%);
	padding: 20px 15px;
	background-color: #0A518C;
	display: flex;
	justify-content: center;
	border-radius: 10px;
}

.input-filter i {
	color: #fff;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	right: unset;
}

.icon-wrapper {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	display: flex; 
	align-items: center;
	pointer-events: none;
}

.input-field .icon-wrapper p {
	font-size: 1em;
	color: #fff;
}

.input-field .icon-animation {
	width: 16px;
	margin-left: 5px;
}

.input-field input[type=text] , .input-field input[type=password] {
	border: 1px solid #b5b5b5;
	border-radius: 10px; 
	width: calc(100% - 70px);
	height: 50px;
	padding: 0 50px 0 18px;
	outline: none;
	font-size: 1.5em;
}

.input-field.search input[type=text] , .input-field input[type=password] {
	border: 1px solid #b5b5b5;
	border-radius: 10px;
	width: calc(100% - 55px);
	height: 50px;
	padding: 0 38px 0 15px;
}

.input-field input[type=text]::placeholder , .input-field input[type=password]::placeholder {
	color: #717171;
	font-family:"commuters-sans";
}

.input-field input[type=text]:focus , .input-field input[type=password]:focus {
	border: 1px solid#0A518C;
}

.input-field input[type=text]:focus::placeholder , .input-field input[type=password]:focus::placeholder {
	color: #0A518C;
	
}

.input-field input[type=button] {
	border: 1px solid #E6E6E6;
	border-radius: 10px; 
	width: 100%;
	padding: 20px 0;
	outline: none;
	font-size: 1em;
	background-color: #0A518C;
	font-family:"commuters-sans";
}

.input-field input[type=button]:hover {
	background-color: #F7720F;
	cursor: pointer;
}

.input-field input[type=submit] {
	border: 1px solid #E6E6E6;
	border-radius: 10px; 
	width: 100%;
	padding: 20px 0;
	outline: none;
	font-size: 1em;
	background-color: #0A518C;
	font-family:"commuters-sans";
}

.input-field input[type=submit]:hover {
	background-color: #F7720F;
	cursor: pointer;
}

.input-filed select {
	z-index: 3;
  }
  /** Custom Select **/
  .custom-select-wrapper {
	position: relative;
	display: inline-block;
	user-select: none;
	cursor: pointer;
  }
  .custom-select-wrapper select {
	display: none;
  }
  .custom-select {
	position: relative;
	display: inline-block;
	font-family:"commuters-sans";
  }
  .custom-select-trigger {
	position: relative;
	display: block;
	width: calc(100%);
	padding: 0 90% 0 25%;
	font-weight: 100;
	color: #0A518C;
	line-height: 50px;
	background-color: #E6E6E6;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	margin-top: 10px;
  }
  .custom-select-trigger:hover {
	-webkit-box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
	box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
  }
  .custom-select-trigger:before {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 50px;
	top: 3px;
	right: 50px;
	margin-top: -3px;
	border-right: 1px solid #AAA;
	transition: all 0.35s ease-out;
	transform-origin: 50% 0;
  }
  .custom-select-trigger:after {
	position: absolute;
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	top: 50%;
	right: 20px;
	margin-top: -3px;
	border-bottom: 1px solid #AAA;
	border-right: 1px solid #AAA;
	transform: rotate(45deg) translateY(-50%);
	transition: all 0.35s ease-out;
	transform-origin: 50% 0;
  }
  .custom-select.opened .custom-select-trigger:after {
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
  }
  .custom-options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0%;
	right: 0;
	width: 100%;
	font-family:"commuters-sans";
	margin: 10px 0;
	border-radius: 5px;
	box-sizing: border-box;
	/*  box-shadow: 0 2px 1px rgba(0, 0, 0, .1); */
	font-size: 1em;
	background: #E6E6E6;
	transition: all 0.2s ease-in-out;
  
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
	border: 0;
	z-index: 999;
  }
  .custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(-8px);
  
	-webkit-box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
	box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
  }
  .option-hover:before {
	background: #f9f9f9;
  }
  .custom-option {
	position: relative;
	display: block;
	padding: 0 22px;
	font-family:"commuters-sans";
	font-size: 1em;
	font-weight: 600;
	color: #b5b5b5;
	line-height: 47px;
	cursor: pointer;
	transition: all 0.05s ease-in-out;
	z-index: 99;
  }
  .custom-option:first-of-type {
	border-radius: 4px 4px 0 0;
  
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
  }
  .custom-option:last-of-type {
	border-bottom: 0;
	border-radius: 0 0 4px 4px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
  }
  .custom-option:hover,
  .custom-option.selection {
	color: #fff;
	background-color: #0A518C;
  }

.input-field-2 {
	position: relative;
	margin: 10px 0;
	display: flex;
	justify-content: center;
}

.input-field-2 i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
	color: #0A518C;
}

.input-field-2 .icon-animation {
	width: 20px;
	margin-left: 5px;
}

.input-field-2 input[type=text] , .input-field-2 input[type=password] {
	border: 1px solid #0A518C;
	border-radius: 10px; 
	width: calc(100% - 70px);
	height: 40px;
	padding: 0 50px 0 18px;
	outline: none;
	font-size: 1em;
}

.input-field-2 input[type=text]::placeholder , .input-field-2 input[type=password]::placeholder {
	color: #0A518C;
	font-family:"commuters-sans";
}

.input-field-2 input[type=text]:focus , .input-field-2 input[type=password]:focus {
	border: 1px solid#E6E6E6;
	
}

.input-field-2 input[type=text]:focus::placeholder , .input-field-2 input[type=password]:focus::placeholder {
	color: #E6E6E6;
	
}

.input-field-2 input[type=button] {
	border: 1px solid #C6C6C6;
	border-radius: 10px; 
	width: 150px;
	padding: 20px 0;
	outline: none;
	font-size: 1em;
	color: #0A518C;
	background-color: #c6c6c6;
	font-family:"commuters-sans";
	margin-top: 15px;
}

.input-field-2 input[type=button]:hover {
	background-color: #FFF;
	cursor: pointer;
}

.input-field-2 input[type=submit] {
	border: 1px solid #C6C6C6;
	border-radius: 10px; 
	width: 150px;
	padding: 20px 0;
	outline: none;
	font-size: 1em;
	color: #0A518C;
	background-color: #c6c6c6;
	font-family:"commuters-sans";
	margin-top: 15px;
}

.input-field-2 input[type=submit]:hover {
	background-color: #FFF;
	cursor: pointer;
}

.content-text {
	margin-top: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content-text a {
	color: #717171;
	font-size: 1.5em;
}

.content-text a:hover {
	color: #0A518C;
}

.content-text p {
	font-size: 1.5em;
	color: #8A8A8A;
	margin: 20px 10px;
}

.content-line {
	width: 30%;
	height: 2px;
	background-color: #E6E6E6;
}

.input-field.signup input[type=button] {
	background-color: transparent;
	border: 1px solid #F7720F;
}

.input-field.signup input[type=button]:hover {
	background-color: #F7720F;
}

.input-field.signup .icon-wrapper p {
	font-size: 1.5em;
	color: #0A518C;
}

@media(min-width: 1024px){

	.main-section {
		display: none;
	}
}


@media(max-width: 1020px){

	
}

/* Página Home */

.search-content {
	width: 100%;
	position: relative;
	margin-top: 60px;
}

.search-content-structure {
	width: 90%;
	margin: 0 auto;
}

.search-content-structure img {
	width: 30px;
}

.search-content-structure img:hover {
	opacity: .7;
	cursor: pointer;
}

.content-structure {
	width: 90%;
	margin: 0 auto;
	padding-bottom: 60px;
	margin-top: 0px !important
}

.content-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.content-items a{
	margin: 0;
	padding: 0;
}

.content-item {
	padding: 30px 0;
	width: 49%;
	box-shadow: 0px 0px 6px #00000029;
	border-radius: 13px;
	margin: 3px 0;
	text-align: left;
}

.content-item:hover {
	cursor: pointer;
}

.content-item:nth-child(2n+1){
	background-color: #0A518C;
}

/*
.content-item:nth-child(2n+1):hover {
	background-color: #fff;
	color: #0A518C;
}
*/

.content-item:nth-child(2n+2){
	background-color: #C6C6C6;
}

/*
.content-item:nth-child(2n+2):hover {
	background-color: #fff;
	color: #0A518C;
}
*/

.content-item-text {
	font-size: 1.2em;
	width: 90%;
	margin: 0 auto;
}

.content-item-text:nth-child(2) {
	margin-top: 10px;
	color: #ddd;
}

.content-item:nth-child(2n+1){
	background-color: #0A518C;
}

.content-item:nth-child(2n+1) .content-item-text {
	color: #fff;
}

.content-item:nth-child(2n+1) .content-item-text:nth-child(2) {
	color: #ddd;
}

.content-item:nth-child(2n+2){
	background-color: #C6C6C6;
}

.content-item:nth-child(2n+2) .content-item-text {
	color: #0D0D0D;
}

.content-item:nth-child(2n+2) .content-item-text:nth-child(2) {
	color: #0A518C;
}

.bottom-menu-wrapper {
	width: 100%;
	position: fixed;
	bottom: 0;
	padding: 0px 0;
	background-color: #fff;
	box-shadow: 0px 0px 6px #00000029;
	border-radius: 50px 50px 0px 0px;
	z-index: 999;
}

.bottom-menu-wrapper .menu-content {
	width: 70%;
}

.menu-icon {

}

.menu-icon i {
	font-size: 2em;
	color: #00000029;
	padding: 12px;
	border-radius: 50%;
	
}

.menu-icon a:hover i {
	background-color: #00000029;
	color: #0A518C;
}

.container-relatorios-monitor{
	width: 60%;
	float: left;
	margin-top: 40px;
	margin-left: 20%;
}

.estrutura-monitor-img{
	width: 30%;
	float: left;
}

.estrutura-monitor-img img{
	width: 80%;
}

.estrutura-monitor-texto{
	width: 70%;
	float: left;
	margin-top: 8px
}
