.form_wrap {
	width:100%;
	height:auto;
	float:left;
	padding:0px 0px 0px 0px;
	font-family: "lato", arial, sans-serif;
}

.form_section {
	width:100%;
	height:auto;
	float:left;
	margin:12px 0px 0px 0px;
	border-bottom: 1px dashed #e7e7e7;
	padding-bottom: 12px;
}

.form_section.submit {
	border: none;
	background-color: transparent;
}

.form_title {
	width:35%;
	height:auto;
	float:left;
	margin:12px 0px 0px 2%;
	color:#333;
	font-size:1.05em;
	line-height: 1.2;
}

.form_input {
	width:50%;
	height:auto;
	float:right;
	margin:5px 20px 0px 0px;
	color:#333;
	padding:3px 0px 0px 0px;
}

.form_input input[type=text] {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form_input input {
	
	background:#FFF;
	color:#333;
	border:1px solid #ddd;
	padding:6px 5px 6px 10px;
	font-size:1em;
	width:100%;
	float: right;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form_input input:hover {
	border:1px solid #999;
}

.form_input img {
	float:right;
}

.form_input button {
	background-color:#18A8ED;;
	border:none;
	cursor:pointer;
	width: auto;
	height: auto;
	color: #fff;
	font-size: 100%;
	font-weight: 700;
	padding: 6px 5% 6px 5%;
	border-radius: 10px;
}

.form_input button:hover {
	background-color:  #004B64;
}

.form_input textarea {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	background:#FFF;
	color:#333;
	border:1px solid #ddd;
	padding:6px 10px 6px 10px;
	font-size:1.1em;
	width:100%;
	height:170px;
	float: right;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "lato", arial, sans-serif;
}

.form_input textarea:hover {
	border:1px solid #999;
}

.form_error {
	width:57%;
	height:auto;
	float:right;
	margin:5px 4% 10px 0px;
	color:#0277BD;
	font-weight:700;
	font-size: 0.9em;
	line-height: 1.2;
	text-align: right;
}

#spam {
	width:auto;
	margin-bottom:5px;
	float: none;
}

#contact_error {
	width: 96%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: #18A8ED;
	text-align: center;
	padding: 12px 2% 12px 2%;
	font-size: 1em;
	color: #fff;
	z-index: 3;
	font-weight: 700;
}

.hidden {
	display: none;
}

@media screen and (max-width: 730px) {
	.form_title {
        width: 90%;
        margin:14px 0px 4px 3%;
    }
    .form_input {
       width: 90%;
    }
    
    .form_error {
        width: 80%;
    }

    .form_input input.small {
		padding:3px 5px 3px 5px;
		width:94%;
	}
}