/* Mobile Layout: 480px and below. Para formulário em modal */
.form_modal {
	float: left;
	clear: both;	
	width: 100%;
	margin-top: 25px;
}

.campo_form_modal {
	float: left;
	clear: both;
	width: 98%;
	height: 30px;
	background: #FFF;
	padding-left: 2%;
	margin-bottom: 10px;
	border-radius: 3px;
	border: 1px solid #CCC;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #999; 
}
.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(arrow2.png) no-repeat right;
	padding-left: 2%;
	margin-bottom: 10px;
	border-radius: 3px;
	border: 1px solid #CCC;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #777;  
	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;	  
}

.area_select_form_modal::-ms-expand {display: none;} /* Remove seta padrão do IE*/

.txt_form_modal {
	float: left;
	clear: both;
	width: 98%;
	height: 60px;
	background: #FFF;
	padding-top: 10px;
	padding-left: 2%;
	margin-bottom: 10px;
	border-radius: 3px;
	border: 1px solid #CCC;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #999; 
}
.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: 100%;
	clear: both;
	height: 35px;
	background: #5022C8;
	border-radius: 3px;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #FFF;
	font-size: 18px;
	border: 0;
	text-transform: uppercase;
	transition: background .5s ease;
}

.bt_form_modal:hover {
    background: #2C1371;
}


@media only screen and (min-width: 600px) {	
.bt_form_modal {
	width: 40%;
}
}

