.custom_ajax_form.style_1{
	width:100%;
}
.custom_ajax_form.style_1 .custom_ajax_form_input_row{
	width:100%;
}
.custom_ajax_form.style_1 .custom_ajax_form_input_row .custom_ajax_form_input_box{
	box-sizing:border-box;
	width:33.33%;
	padding:8px;
	display: inline-block;
}
@media screen and (max-width: 768px){
	.custom_ajax_form.style_1 .custom_ajax_form_input_row .custom_ajax_form_input_box{
		width:100%;
	}
}
.custom_ajax_form.style_1 .custom_ajax_form_input_row .custom_ajax_form_input_box input,
.custom_ajax_form.style_1 .custom_ajax_form_input_row .custom_ajax_form_input_box select{
	width:100%;
	border:2px solid #000;
	height:35px;
	line-height:35px;
	padding: 0px 10px;
	font-family: 'Montserrat', arial, sans-serif;
	letter-spacing: 2px;
	font-size: 10px;
}
.custom_ajax_form.style_1 .custom_ajax_form_textarea_box{
	width:100%;
	padding:8px;
}
.custom_ajax_form.style_1 .custom_ajax_form_textarea_box textarea{
	width:100%;
	height:200px;
	padding:10px;
	border:2px solid #000;
	font-family: 'Montserrat', arial, sans-serif;
	letter-spacing: 2px;
	font-size: 10px;
	resize: none;
}
.custom_ajax_form.style_1 .custom_ajax_form_input_row .custom_ajax_form_input_box input.invalid,
.custom_ajax_form.style_1 .custom_ajax_form_input_row .custom_ajax_form_input_box select.invalid,
.custom_ajax_form.style_1 .custom_ajax_form_textarea_box textarea.invalid{
	background-color:#ffbfbf;
}
.custom_ajax_form.style_1 .custom_ajax_form_input_row .custom_ajax_form_input_box input.disabled,
.custom_ajax_form.style_1 .custom_ajax_form_input_row .custom_ajax_form_input_box select.disabled,
.custom_ajax_form.style_1 .custom_ajax_form_textarea_box textarea.disabled{
	background-color:#ebebe4;
}
.custom_ajax_form.style_1 .custom_ajax_form_button_box{
	width:100%;
	padding:8px;
}
.custom_ajax_form.style_1 .custom_ajax_form_button_box .custom_ajax_form_button{
	width:100%;
	border:2px solid #000;
	height:35px;
	line-height:32px;
	padding: 0px 10px;
	font-family: 'Montserrat', arial, sans-serif;
	letter-spacing: 2px;
	font-size: 12px;
	text-transform: uppercase;
	text-align:center;
	cursor:pointer;
	position:relative;
}
.custom_ajax_form.style_1 .custom_ajax_form_button_box .custom_ajax_form_button.disabled{
	background-color:#ebebe4;
}
.custom_ajax_form.style_1 .custom_ajax_form_button_box .custom_ajax_form_button.loading{
	background-color:#ebebe4;
	position:relative;
}
.custom_ajax_form.style_1 .custom_ajax_form_button_box .custom_ajax_form_button.loading:after{
	content:"";
	position:absolute;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	background-position:center;
	background-size:auto 80%;
	background-repeat:no-repeat;
	background-color:rgba(235, 235, 228, 0.76);
	background-image:url(../images/loading_custom_ajax_form_button.gif);
}
.custom_ajax_form.style_1 .custom_ajax_form_button_box .custom_ajax_form_button:hover{
	background-color:#edf4f4;
}
.custom_ajax_form.style_1 .custom_ajax_form_send_result{
	text-align:center;
	margin:10px auto;
	font-size: 12px;
	line-height: 2em;
	color: #333;
}
.custom_ajax_form.style_1 input::placeholder,
.custom_ajax_form.style_1 select::placeholder,
.custom_ajax_form.style_1 textarea::placeholder{
	color: #333;
	text-transform: uppercase;
}
.custom_ajax_form.style_1 input::-webkit-input-placeholder,
.custom_ajax_form.style_1 select::-webkit-input-placeholder,
.custom_ajax_form.style_1 textarea::-webkit-input-placeholder{
	color: #333;
	text-transform: uppercase;
}
.custom_ajax_form.style_1 input:-moz-placeholder,
.custom_ajax_form.style_1 select:-moz-placeholder,
.custom_ajax_form.style_1 textarea:-moz-placeholder{
	color: #333;
	text-transform: uppercase;
}
.custom_ajax_form.style_1 input::-moz-placeholder,
.custom_ajax_form.style_1 select::-moz-placeholder,
.custom_ajax_form.style_1 textarea::-moz-placeholder{
	color: #333;
	text-transform: uppercase;
}
.custom_ajax_form.style_1 input:-ms-input-placeholder,
.custom_ajax_form.style_1 select:-ms-input-placeholder,
.custom_ajax_form.style_1 textarea:-ms-input-placeholder{
	color: #333;
	text-transform: uppercase;
}