/* Mobile Layout: 480px and below. Para formulário em modal */
.form_modal {
	float: left;
	clear: both;
	margin-top: 10px;
	width: 100%;
}

.tit_campo_form_modal {
	float: left;
	clear: both;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
	text-transform: uppercase;
	font-size: 25px;
	color: #618339;
	font-style: italic;
}

.campo_form_modal {
	float: left;
	clear: both;
	width: 98%;
	height: 30px;
	background: #FFF;
	padding-left: 2%;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid #CCC;
	font-family: "Trebuchet MS", Arial, Helvetica, "Sans Serif";
}

.campo_form_modal:-webkit-input-placeholder {color: #999;} /* Navegadores que tenham suporte ao Webkit */
.campo_form_modal:-moz-placeholder {color: #999;} /* Firefox 18- */
.campo_form_modal:-moz-placeholder {color: #999;} /* Firefox 19+ */
.campo_form_modal:-ms-input-placeholder {color: #999;} /* Internet Explorer */
.campo_form_modal:valid {background: #FFF;}
.campo_form_modal:invalid {background: #FFF;}

.area_select_form_modal{
	float: left;
	clear: both;
	width: 100%;
	min-height: 35px;
	background: #FFF url(new_arrow.png) no-repeat right;
	background-size: 45px 40px;
	padding-left: 2%;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid #CCC;
	font-family: "Trebuchet MS", Arial, Helvetica, "Sans Serif";
	overflow: hidden; /* Remove seta padrão do Google */
	-webkit-appearance: none;  /*Remove estilo padrão do Chrome*/
	-moz-appearance: none; /* Remove estilo padrão do FireFox*/
	text-indent: 0.01px; /* Remove seta padrão do FireFox */
	text-overflow: "";  /* Remove seta padrão do FireFox */
	appearance: none;
	color: #999;  
}

.txt_form_modal {
	float: left;
	clear: both;
	width: 98%;
	height: 60px;
	background: #FFF;
	padding-top: 10px;
	padding-left: 2%;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid #CCC;
	font-family: "Trebuchet MS", Arial, Helvetica, "Sans Serif";
}
.txt_form_modal:-webkit-input-placeholder {color: #999;} /* Navegadores que tenham suporte ao Webkit */
.txt_form_modal:-moz-placeholder {color: #999;} /* Firefox 18- */
.txt_form_modal:-moz-placeholder {color: #999;} /* Firefox 19+ */
.txt_form_modal:-ms-input-placeholder {color: #999;} /* Internet Explorer */
.txt_form_modal:valid {background: #FFF;}
.txt_form_modal:invalid {background: #FFF;}

.bt_form_modal {
	width: 60%;
	clear: both;
	height: 40px;
	background: #618339;
	border-radius: 5px;
	border: 0;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 20%;
}

@media only screen and (min-width: 600px) {	
.tit_campo_form_modal {
	font-size: 25px;
}

.bt_form {
	float: left;
	clear: none;
	margin-left: 0;
}
}


