/****************************************/
/* PAGE SPECIFIC : CONTACT				*/
/****************************************/

.contact-form-container {
	position: relative;
	margin-top: 2em;
	margin-bottom: 2em;
}
#contact-form {
}
#contact-form.off {
	opacity: 0;
	-webkit-transition:	opacity 0.35s ease 0s; 
	-moz-transition:	opacity 0.35s ease 0s;
	-ms-transition:		opacity 0.35s ease 0s;
	-o-transition:		opacity 0.35s ease 0s;
	transition:			opacity 0.35s ease 0s;
}
#contact-form > .form-field {
	position: relative;
	width: 100%;
	float: right;
	margin-bottom: 4px;
	padding-left: 5px;
}
#contact-form input {
	width: 100%;
	height: 29px;
	border: 1px solid #e9e9e9;
	padding: 0 1em;
	background: #fff;
	line-height: 29px;
}
#contact-form input[type=submit] {
	background: #e9e9e9;
	cursor: pointer;
}
#contact-form .form-field > .callout {
	display: block;
	position: absolute;
	top: 50%;
	left: 0px;
	margin-top: -12px;
	height: 24px;
	border-radius: 3px;
	padding: 0 1em;
	line-height: 24px;
	background: #aaa;
	opacity: 0;
	-webkit-transition:	all 0.2s ease; 
	-moz-transition:	all 0.2s ease;
	-ms-transition:		all 0.2s ease;
	-o-transition:		all 0.2s ease;
	transition:			all 0.2s ease;
}
#contact-form .form-field > .callout:after {
	content: "";
	display: block;
	position: absolute;
	left: 100%;
	top: 50%;
	width: 0px;
	height: 0px;
	margin-top: -5px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #aaa;
}
#contact-form input.invalid-input {
	border: 1px solid #454545;
}
#contact-form input.invalid-input + .callout {
	left: 20px;
	opacity: 0.9;
}
.submit-return {
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	font-size: 1.6em;
	line-height: 1em;
	opacity: 0;
	-webkit-transition:	opacity 0.35s ease 0.35s; 
	-moz-transition:	opacity 0.35s ease 0.35s;
	-ms-transition:		opacity 0.35s ease 0.35s;
	-o-transition:		opacity 0.35s ease 0.35s;
	transition:			opacity 0.35s ease 0.35s;
}
.submit-return:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}
.submit-return.on {
	z-index: 1;
	opacity: 1;
}

@media only screen and (min-width : 1200px) {
	#contact-form > .form-field {
		width: 50%;
	}
	#contact-form > .form-field.wide-form-field {
		width: 100%;
	}
}

/****************************************/