/* =============================
*  FORM
* ============================= */


/* Remove inner shadow from inputs on mobile iOS */
textarea,
input[type="text"] {
  -webkit-appearance: none;
}
.radio,
.checkbox,
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

/* Browser focus ring */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
}
.form {
  margin-top: 50px;
  padding: 0;
}
@media only screen and (min-width:768px) {
  input[type="text"] {
    line-height: inherit;
    font-weight: 300;
    font-size: 22px;
  }
}
.form-group .help-block {
  margin-bottom: 10px;
  color: #a94442;
  font-size: 13px;
  font-weight: 200;
  display: block;
  float: left;
  width: 100px;
}
.label-title {
  white-space: nowrap;
  border-radius: 0;
  font-size: 32px;
  padding: 0;
  font-family: 'source-sans-pro', sans-serif;
  font-weight: 300;
  width: 80px;
  text-align: right;
  vertical-align: baseline;
  display: block;
  line-height: .8em;
  float: left;
  color: #182B42;
}

/* Name font style */
.label-title.script {
  font-size: 60px;
  font-family: "cac-champagne", sans-serif;
  font-weight: 300;
  color: #2A354D;
  width: 100%;
  text-align: left;
}
/* Target Internet Explorer 9, 10 and 11 (Add After Rule) */
@media screen and (min-width:0\0) { 
 .label-title h1 {
   font-size: 40px;
   font-weight: 300;
   color: #000;
   text-align: left;
   margin-left: -5px;
   margin-bottom: -15px;
   margin-top: 0;
 }
}
/* Letter F */
.label-title h1 {
  font-size: 100px;
  font-weight: 900;
  color: #dad7d6;
  text-align: left;
  margin-left: -5px;
  margin-bottom: -15px;
  margin-top: 0;
}

/* Date */
.label-title h5 {
  font-size: 19px;
  display: block;
  margin: 10px 0;
  text-align: left;
  color: #BDBDBD;
}
.label-title hr {
  margin: 0;
  width: 50%;
  border-top: 2px solid #B3B3B3;
  float: left;
}
.sub-text {
  display: block;
  text-align: left;
  color: #BDBDBD;
  font-size: 13px;
}
.form-title {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 600;
  padding: 0;
  font-family: "source-sans-pro", sans-serif;
  margin: 20px 0;
}
.reception > .form-title {
  margin-bottom: 0;
}
.form-title hr {
  margin: auto;
  border-top: 2px solid #B3B3B3;
  min-width: 20px;
  display: inline-block;
}
.form-title span {
  color: #efefef;
  font-weight: 900;
  margin: 0 auto;
  float: right;
}

/* Tablet min-width 641px, medium screens */
@media only screen and (min-width:40.063em) {
}

/* Desktop max-width 1024px, large screens */
@media only screen and (max-width:1024px) {
  .label-title.script {
    text-align: left;
    margin-bottom: 20px;
  }
}

/* Mobile form title */
/* max-width 640px - mobile-only styles */
@media only screen and (max-width:640px) {
  .form-title {
    padding: 0;
    margin-bottom: 15px;
  }
}
.radio label,
.checkbox label {
  display: inline;
  font-weight: normal;
  cursor: pointer;
  font-size: 18px;
}
.form-group label.help {
  display: block;
  font-weight: 300;
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}

/* ==== Validation Styles ========== */
.has-error .help-block {
  color: #B60000;
}
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #979797;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-error .form-control-feedback {
  color: #a94442;
}

/* has success */
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #363636;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.has-feedback .form-control-feedback {
  display: block;
  height: 34px;
  width: 34px;
  line-height: 34px;
  top: 0;
  right: 0;
  position: absolute;
  text-align: center;
}
.fa-check,
.fa-times,
.fa-asterisk,
.fa-refresh {
  font-weight: 100;
  font-size: 14px;
}
label {
  margin-bottom: 5px;
  font-weight: 300;
  display: inline-block;
  font-family: "source-sans-pro", sans-serif;
  font-size: 22px;
}
.form-control {
  font-size: 14px;
  line-height: 1.42857143;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0px;
  display: block;
  width: 100%;
  background-image: none;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -webkit-transition: background ease-in .5s;
  transition: background ease-in .5s;
  color: #555555;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #244161;
  border-bottom: 1px solid;
  height: 34px;
  padding: 6px 12px;
}
.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: none;
  border-radius: 2px;
  border: 1px solid;
  outline: 0;
  border-color: rgba(143, 143, 143, 0);
  background: rgba(211, 211, 211, 0);
}
.form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #979797;
}

/* Mobile Styles */
@media only screen and (max-width:640px) {
  .label-title {
    float: none;
    text-align: left;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .form-group {
    margin-bottom: 0;
  }
}
input[type=radio]:before,
input[type=checkbox][type=radio]:before,
input[type=checkbox]:before {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
input[type=radio],
input[type=checkbox] {
  position: relative;
}
input[type=radio]:before,
input[type=radio]:after,
input[type=checkbox]:before,
input[type=checkbox]:after {
  content: "";
  position: absolute;
}
input[type=radio]:before,
input[type=checkbox]:before {
  height: 100%;
}
input[type=radio][type=radio]:before,
input[type=checkbox][type=radio]:before {
  border: 1px solid;
  box-shadow: none;
  border-radius: 100%;
  height: 22px;
  margin: 3px 0;
  background-color: rgba(255, 255, 255, 0);
  width: 22px;
  border-color: #000;
}
input[type=radio][type=radio]:checked:before,
input[type=checkbox][type=radio]:checked:before {
  -webkit-box-shadow: none;
  border: 1px solid;
  border-color: #EC018C;
  background-color: #EC018C;
  box-shadow: none;
}
input[type=radio][type=checkbox]:before,
input[type=checkbox][type=checkbox]:before {
  width: 200%;
  background-color: #2c3f52;
  -webkit-box-shadow: 0 0 0 1px #2c3f52;
          box-shadow: 0 0 0 1px #2c3f52;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type=radio],
input[type=checkbox] {
  width: 25px;
  background: transparent;
  cursor: pointer;
  height: 25px;
  margin-right: 20px;
  border-color: transparent;
  border: none;
  -webkit-appearance: none; /* remove radio input background for page background pattern */
}
.radio input[type=radio],
.checkbox input[type=checkbox] {
  float: left;
  margin-left: -20px;
}
.radio,
.check {
  margin-bottom: 10px;
  line-height: 1.4;
}
.radio,
.checkbox {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}
.radio-inline input[type=radio] {
 cursor: pointer;
 margin-left: 15px;
 margin-right: 20px;
 background: transparent;
 height: 25px;
 width: 25px;
}
.radio-inline {
  vertical-align: middle;
  font-weight: 400;
  cursor: pointer;
  padding-left: 0;
  display: inline-block;
  width: 30px;
  margin-right: 0; /* Center popovers over form labels */
}
.radio-inline svg,
.radio-inline img {
  width: 60px;
  position: relative;
  right: 33px;
  display: block;
  height: 50px;
}
.radio-inline svg {
  /* svg requires height and width */
  fill: #2c3953;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
  left: 3px;
  margin-top: -10px;
}
.radio-inline:hover svg {
  fill: #ec018c;
}
@media only screen and (max-width:640px) {
  .radio-inline input[type=radio] {
    display: inline-block;
    float: none;
    padding-left: 0;
  }
  .radio-inline {
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer;
    padding-left: 0;
    display: block;
    margin-right: 10px;
    width: 60px;
  }
  .radio-inline svg,
  .radio-inline img {
    width: 60px;
    position: relative;
    right: 33px;
    display: block;
    height: 60px;
  }
  .radio-inline svg {
    /* svg requires height and width */
    fill: #2c3953;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    left: 3px;
  }
  .radio-inline:hover svg {
    fill: #ec018c;
  }
}
.description {
  background: #FFFFFF;
  font-size: 14px;
  border-radius: 6px;
  text-align: center;
  margin: 4px 20px;
  padding: 10px;
  border: 1px solid #E6E6E6;
}
.description-title {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(45, 55, 84, 0.64);
  font-weight: 400;
  padding: 8px 0;
  ;
}
.description-content {
  line-height: 1.8;
  letter-spacing: 1.4px;
  color: #918f8f; /* text color */
  font-family: "Lato", sans-serif;
  font-size: 11px;
}
.description hr {
  margin: 0;
  background: #ccc;
}
.description .inline-hr {
  font-size: 11px;
  color: #ADA9A9;
  font-weight: 300;
  vertical-align: middle;
  line-height: 1.1px;
  letter-spacing: 1.5px;
  padding-bottom: 12px;
}
.description .inline-hr hr {
  margin: 0 6px;
  background: #BDBDBD;
  vertical-align: middle;
  width: 53px;
}
.description .small-hr {
  width: 122px;
  clear: both;
  margin: auto;
  display: block;
  border-width: 1px 0 0;
  background: rgba(189, 189, 189, 0.66);
  height: 1px;
}
.radio+.radio,
.checkbox+.checkbox {
  margin-top: -5px;
}

/* Remove margin to maintain inline-radios on tablets and below */
@media only screen and (max-width:900px) {
  .radio-inline + .radio-inline,
  .checkbox-inline + .checkbox-inline {
    margin-left: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width:640px) {
  .form .pad {
    margin-bottom: 30px;
  }
  .row.block {
    padding: 0;
  }
}

/* Custom positioning */
@media only screen and (min-width:641px) {
  .form .pad-left {
    padding-left: 20px;
  }
}
.textarea {
  width: 100%;
  background: none;
  font-size: 20px;
  display: block;
  overflow: hidden;
  resize: none;
  word-wrap: break-word;
}
.textarea {
  border-radius: 3px;
  width: 100%;
  background-image: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -webkit-transition: background ease-in .5s;
  transition: background ease-in .5s;
  color: #1C245C;
  font-size: 18px;
  display: block;
  overflow: auto;
  background: #fff;
  padding: 15px;
  border: 1px solid rgba(224, 224, 224, 0.64);
}
.textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  background: #fff;
}
.form-response {
  padding-bottom: 20px;
  display: none;
}
.form-response h2 {
  border-radius: 4px;
  margin-bottom: 0px;
  color: #2c3c53;
  text-transform: uppercase;
  padding: 50px 0;
  font-size: 70px;
  font-family: "source-sans-pro", sans-serif;
  font-weight: 800;
}
#resetBtn {
  display: none;
}
