@charset "utf-8";
/* Client A - Form Normalization */
/* ------------------------------------------------------------------
* This document sets up form "defaults" for the site.
* It resets some neccessary selectors, and sets defaults for common form elements
* By using a separate stylesheet, styles are easily managed, and it avoids issues with a RTE such as tinyMCE
* Inspired by H5BP and Others
* ------------------------------------------------------------------ */
/* --------------------------------------------------------------
* ----------- Loose Table of Contents ---------------------------
* [1] Base Form Styles
* [2] Rows / Checkboxes / Radios
* [3] Parsley Validation Styles
* [4] Ajax / Other Messages
* ------------------------------------------------------------ */
/* --------------------------------------------------------------
* ----------- [1] Base Form Styles ------------------------------
* Normalize styles for all base form elements
* ------------------------------------------------------------ */
/* ------------------ Form Reset ------------------ */
button,
input,
select,
textarea {
  font-family: "maven_proregular", Arial, Helvetica, sans-serif;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* ------------------ Form Base Styles ------------------ */
form {
  margin: 20px 0 0 0;
}
/* -=- Fieldset -=- */
fieldset,
form fieldset.row {
  margin: 20px 0;
}
legend {
  width: 100%;
  margin: 0 0 10px;
  font-size: 1.08em;
  line-height: 1.25em;
  font-weight: bold;
  text-transform: none;
  color: #383637;
}
legend:after {
  content: ":";
}
/* -=- Label -=- */
label {
  display: block;
  line-height: 1.85em;
  font-weight: normal;
  color: #383637;
}
label:after {
  content: ":";
}
label sup {
  top: .25em;
  font-size: 2.46em;
  color: #ef4123;
}
/* -=- Input / Textarea / Select -=- */
input,
textarea,
select {
  display: block;
  width: 100%;
  color: #848383;
  font-size: 1.79em;
}
input,
textarea {
  background: #edf4ca;
  border: 0px;
  padding-left: 35px;
}
select {
  background: #fff;
  border: 1px solid #edf4ca;
}
input,
textarea {
  -webkit-transition: background-color 0.3s ease-in-out, background-position 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out, background-position 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, background-position 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out, background-position 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, background-position 0.3s ease-in-out;
}
input:focus,
textarea:focus {
  background: #e7e7e7;
  outline: none;
  color: #383637;
}
/* -=- Input -=- */
input[type=text],
input[type=password],
input[type=search] {
  padding: 12px 35px 10px;
  /* Allows for width 100% and padding */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[readonly=readonly],
textarea[readonly=readonly],
select[disabled=disabled],
select[disabled] {
  background: #e7e7e7;
  font-style: italic;
  color: #ebebeb;
}
input[disabled=disabled] {
  background: #e7e7e7;
  font-style: italic;
}
input[type=hidden] {
  border: none;
  border-image: none;
  -webkit-border-image: none;
  -moz-border-image: none;
}
input[type=file] {
  border-color: #669933;
}
input::-webkit-input-placeholder {
  opacity: 1;
  color: #848383;
}
input::-moz-placeholder {
  opacity: 1;
  color: #848383;
}
input:-ms-input-placeholder {
  opacity: 1;
  color: #848383;
}
input:-moz-placeholder {
  opacity: 1;
  color: #848383;
}
textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #848383;
}
textarea::-moz-placeholder {
  opacity: 1;
  color: #848383;
}
textarea:-ms-input-placeholder {
  opacity: 1;
  color: #848383;
}
textarea:-moz-placeholder {
  opacity: 1;
  color: #848383;
}
/* -=- Textarea -=- */
textarea {
  resize: vertical;
  min-height: 4em;
  padding: 8px 4px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1em;
}
/* -=- Select -=- */
select {
  padding: 10px 4px 8px;
}
select:focus {
  background-color: #e7e7e7;
  outline: none;
  color: #383637;
}
option {
  margin: 5px 0;
}
/* -=- Buttons -=- */
input[type=submit] {
  padding: 4px 0 0 0;
  background: none;
  border: none;
  font-size: 1.38em;
  font-weight: bold;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.65);
  color: #383637;
  cursor: pointer;
}
input[type=submit]:hover,
input[type=submit]:focus {
  color: #383637;
}
button,
.btn {
  display: inline-block;
  padding: 0;
  background: #ef4123;
  border: none;
  cursor: pointer;
  font-size: 1.86em;
  font-family: "maven_proregular", Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #fff;
}
button span,
.btn span {
  display: block;
  padding: 12px 30px 13px;
  background: transparent;
  transition: all .2s linear;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
}
button:hover,
button:focus,
.btn:hover,
.btn:focus {
  color: #fff;
}
button:hover span,
button:focus span,
.btn:hover span,
.btn:focus span {
  background: #b7d22b;
}
button.dark-grey,
.btn.dark-grey {
  background-color: #383637;
}
button.dark-grey:hover span,
button.dark-grey:focus span,
.btn.dark-grey:hover span,
.btn.dark-grey:focus span {
  background: #ef4123;
  color: #fff;
}
/* --------------------------------------------------------------
* ----------- [2] Rows / Checkboxes / Radios --------------------
* Skeleton Rows styles
* Special styles for radios and checkboxes
* ------------------------------------------------------------ */
/* ------------------ Row / Columns (Modified Skeleton) ------------------ */
form .row {
  margin-bottom: 10px;
}
/* ------------------ Checkbox / Radio area ------------------ */
.check-radio .row {
  margin-bottom: 2px;
}
.check-radio input,
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin: 0 2px 2px 1px;
  background: none;
  border: none;
  vertical-align: middle;
}
.check-radio .row input {
  position: absolute;
  margin: 6px 0 0 4px;
}
.check-radio label,
input[type=radio] + label,
input[type=checkbox] + label {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 2px 5px;
  font-weight: normal;
  transition: all .2s linear;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
}
.check-radio .row label {
  padding: 4px 5px 4px 25px;
  line-height: 1.25em;
}
.check-radio label:after {
  content: "";
}
input[type=radio]:hover + label,
input[type=radio]:focus + label,
input[type=checkbox]:hover + label,
input[type=checkbox]:focus + label,
.check-radio label:hover {
  background: #e7e7e7;
  color: #383637;
}
/* --------------------------------------------------------------
* ----------- [3] Parsley Validation Styles --------------------
* ------------------------------------------------------------ */
/* ------------------ Errors ------------------ */
input.parsley-error,
textarea.parsley-error,
select.parsley-error {
  background-color: #F2DEDE;
  background-image: url('../img/xmark-lg.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 30px;
  color: #B94A48;
  -webkit-box-shadow: 0 0 6px 4px rgba(242, 222, 222, 0.75);
  -moz-box-shadow: 0 0 6px 4px rgba(242, 222, 222, 0.75);
  box-shadow: 0 0 6px 4px rgba(242, 222, 222, 0.75);
}
.no-backgroundsize input.parsley-error,
.no-backgroundsize textarea.parsley-error,
.no-backgroundsize select.parsley-error {
  background-image: url('../img/xmark.png');
}
select.parsley-error {
  background-position: right 20px top;
}
.ie8 select.parsley-errors {
  background-position: 90% top;
}
ul.parsley-error-list {
  position: relative;
  margin: 5px 0 0 0;
}
ul.parsley-error-list li {
  margin: 0 0 2px;
  font-size: .85em;
  line-height: 1.25em;
  list-style-type: none;
  color: #B94A48;
}
/* ------------------ Success ------------------ */
.parsley-success {
  background-image: url('../img/checkmark-lg.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 30px;
}
.no-backgroundsize .parsley-success {
  background-image: url('../img/checkmark.png');
  background-repeat: no-repeat;
  background-position: right top;
}
select.parsley-success {
  background-position: right 20px top;
}
.ie8 select.parsley-success {
  background-position: 90% top;
}
/* ------------------ Conditionals ------------------ */
.parsley-toggle {
  display: none;
}
.parsley-show {
  display: block;
}
/* --------------------------------------------------------------
* ----------- [4] Ajax / Other Messages -------------------------
* ------------------------------------------------------------ */
.msg {
  display: inline-block;
  width: 90%;
  margin: 5px 0;
  padding: 10px;
  background: #ebebeb;
  border: 1px solid #969596;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
  color: #383637;
}
.msg.error {
  background: #f2dede;
  border-color: #b94a48;
  color: #b94a48;
}
.msg.success {
  background: #e5fceb;
  border-color: #4c9e63;
  color: #4c9e63;
}
.form-response {
  display: none;
}
/*# sourceMappingURL=form.css.map */