/* -------------------------------------------------- */
/*					Standard Forms
/* -------------------------------------------------- */

form { margin: 0; }

form label {
	font-family: "Corporate S Regular", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666;
	display: block;
	font-weight: normal;
	margin:0;
}

form .row {
	padding: 20px 0;
	background: #f8f8f8;
}

form .row .columns {
	padding: 0 20px;
}

input.input-text, textarea, select, input[type="file"] {
	display: inline-block;
	margin: 5px 0 15px 0;
}

/* Inlined Radio & Checkbox */

form input[type=radio], form input[type=checkbox] {
	display: inline;
	width: auto;
	margin-bottom: 20px;
}

form input[type=checkbox].check {
	margin-bottom: 0;
}



/* -------------------------------------------------- */
/*					Nice Forms
/* -------------------------------------------------- */

form div.form-field input, form input.input-text, form textarea {
	border: solid 1px #bbb;
	width: 100%;
	height:28px;
	margin: 5px 0 15px 0;
}

form textarea {
	max-width: 100%;
	height: auto;
	}

.wpcf7-not-valid {
	border: solid 1px #9f0002 !important;
}

.wpcf7-not-valid-field {
  border: 1px solid #9f0002 !important;
}

.wpcf7-not-valid-tip, .wpcf7-not-valid-tip-no-ajax {
  display: none !important;
  visibility: hidden !important;
}

.wpcf7-response-output {
	color: #666 !important;
	line-height: 1.6;
	font-size: 12px;
	margin: 1em 0 !important;
	border: 1px solid #666 !important;
}

.wpcf7-validation-errors {
	color: #9f0002 !important;
	line-height: 1.6;
	font-size: 12px;
	margin: 1em 0 !important;
	border: 1px solid #9f0002 !important;
}

.wpcf7-mail-sent-ok {
	border: 1px solid #00aaee !important;
}

span.wpcf7-list-item { display: inline-block !important; }


form div.form-field input, form input.input-text, form textarea {
	font-size: 12px;
	padding: 2px;
	outline: none !important;
	background: url(../images/input-bg.png) #fff;
}

form div.form-field input:focus, form input.input-text:focus, form textarea:focus { background-color: #f9f9f9;  }

/* Text input and textarea, disabled */

form div.form-field input[disabled], form input.input-text[disabled], form textarea[disabled] { background-color: #ddd; }

form fieldset {

}

form div.form-field input[type=radio], form div.form-field input[type=checkbox] {
	display: inline;
	width: auto;
	margin-bottom: 15px;
}

form div.form-field.error small, form small.error {
	padding: 6px 4px;
	border: solid 0 #C00000;
	border-width: 0 1px 1px 1px;
	margin-top: -10px;
	background: #C00000;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
}

form div.form-field.error .small + small, form .small + small.error { width: 132px; }

form div.form-field.error .medium + small, form .medium + small.error { width: 252px; }

form div.form-field.error .large + small, form .large + small.error { width: 432px; }

form div.form-field.error .small.oversize + small, form .small.oversize + small.error { width: 136px; }

form div.form-field.error .medium.oversize + small, form .medium.oversize + small.error { width: 256px; }

form div.form-field.error .large.oversize + small, form .large.oversize + small.error { width: 436px; }

/* Don't use native buttons on iOS */

input[type=submit], button { -webkit-appearance: none; }

input[type=submit]{
	text-decoration: none;
	font-family: "Corporate S Regular", Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height:12px;
	padding: 0;
	margin: 0;
    background: none;
    border: none;
    color: #FFF;
    cursor: pointer;
}

/* Hide inner focus effect in Firefox */
button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
 border: none;
}


@media only screen and (max-width: 767px) {

input[type=submit]{
	font-size: 14px;
	line-height:14px;
}

}

@media only screen and (max-width: 435px) {
	
form div.form-field input, form input.input-text, form textarea {
	font-size: 16px;
}

}