* {
	margin: 0;
	padding: 0;
}
html {
    height: 100%;
}
body {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 300;
	background: #f4f4f4;
	color: #666;
	height: 100%;
	padding: 160px 0 0 0;
}
input {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
a  {
	color: #5ccbe7;
	border: none;
	outline: none;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:hover  {
	color: #222;
}
p {
	margin: 0 0 20px 0;
}
img  {
	border: none;
}
h1, h2, h3, h4, h5  {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 700;
	color: #111;
}
h1 {
	margin: 0 0 25px 0;
	font-size: 34px;
}
::-webkit-input-placeholder {
   color: #aaa;
}
:-moz-placeholder {
   color: #aaa;
}
::-moz-placeholder {
   color: #aaa;
}
:-ms-input-placeholder {  
   color: #aaa;
}
.alignleft { float: left; }
.alignright { float: right; }
.wrapper {
	max-width: 500px;
	margin: 0px auto;
	padding: 10px;
	position: relative;
}
.wrapper.center {
	text-align: center;
}
.message {
	width: 100%;
	float: left;
	padding: 15px;
	margin: 0 0 15px 0;
	border: 1px solid #ddd;
	background: #eee;
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*---- Buttons ----*/
.btn {
	text-transform: uppercase;
	padding: 9px 20px;
	color: #fff;
	background: #5ccbe7;
	float: left;
	font-size: 14px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 700;
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	cursor: pointer;
	border: none;
	-webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn:hover {
	color: #fff;
	background: #59c4df;
}
.btn.full {
	width: 100%;
}
/*----- Forms -----*/
.field {
	margin: 0 0 15px 0;
}
.field span {
	font-size: 14px;
	margin: 0 0 5px 0;
}
.field input, .field textarea {
	border: 1px solid #D3D3D3;
	width: 100%;
	padding: 10px;
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.field input:focus {
	border: 1px solid #5ccbe7;
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.13);
}
.field textarea {
	height: 110px;
}
input.valid:hover, textarea.valid:hover, select.valid:hover {
	border: 1px solid #83C21D !important;
}
input.error:hover, textarea.error:hover, select.error:hover {
	border: 1px solid red !important;
}
input.error, select.error, textarea.error {
	border: 1px solid red !important;
}
input.valid, select.valid, textarea.valid {
	border: 1px solid #83C21D !important;
}
label.error {
	display: none !important;
}

@media only screen and (max-width: 849px) {
	body {
		font-size: 16px;
		line-height: 1.6em;
		padding: 57px 0 0 0;
	}
	.wrapper {
		padding: 0 10px;
	}
	h1 {
		margin: 0 0 15px 0;
		font-size: 24px;
		line-height: 1.3em;
	}
}
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) {

}