.contact_form 					{ position: relative; width: 100%; padding-left: 15%; padding-right: 15%; }
.contact_form.centered 			{ text-align: center; }
.contact_form.margin_top 		{ margin-top: 50px; }
.contact_form.margin_bottom 	{ margin-bottom: 50px; }
.contact_form .input 			{ width: 100%; padding: 14px; border: 1px solid black; border-radius: 8px; font-size: 18px; margin-bottom: 10px; }
.contact_form .messagebox 		{ height: 150px; }
.contact_form_btn_holder 		{ width: 100%; text-align: center; }
.contact_form_btn 				{ display: inline; padding: 14px; border: 1px solid black; border-radius: 8px; font-size: 18px; background-color: black; color: white; cursor: pointer; transition: all 0.5s;}
.contact_form_btn:hover 		{ border-radius: 0px; }

.contact_form_approval 			{ text-align: center; padding: 25px; display: none; }

.contact_form.visible_only_on_mobile 			{ display: none; }

@media only screen and (max-width : 960px) {
	.contact_form.visible_only_on_desktop 		{ display: none; }
	.contact_form.visible_only_on_mobile 		{ display: block; }
}

@media only screen and (max-width : 960px) {
	.contact_form 					{ padding-left: 10%; padding-right: 10%; }
}

@media only screen and (max-width : 768px) {
	.contact_form.margin_top 		{ margin-top: 25px; }
	.contact_form.margin_bottom 	{ margin-bottom: 25px; }
}

@media only screen and (max-width : 480px) {
	.contact_form 					{ padding-left: 15px; padding-right: 15px; }
}

