@charset "UTF-8";
.formArea,
.formArea * {
  font: 400 normal 100%/1.6 freight-sans-pro, "Gill Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.formArea h1 {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 35px 0 15px;
}
@media (min-width: 768px) {
  .formArea h1 {
    font-size: 34px;
    line-height: 1.45;
    margin-bottom: 20px;
  }
}

.formArea h2 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.375;
  margin: 35px 0 15px;
}
@media (min-width: 768px) {
  .formArea h2 {
    font-size: 29px;
    line-height: 1.45;
    margin-bottom: 20px;
  }
}

.formArea h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  margin: 35px 0 15px;
}
@media (min-width: 768px) {
  .formArea h3 {
    font-size: 26px;
    line-height: 1.346;
    margin-bottom: 20px;
  }
}

.formArea a {
  color: #00448e;
}
.formArea a:hover, .formArea a:focus {
  color: #a91919;
}

#pardot-form .form-field {
  margin: 0;
  padding: 5px 0 0 0;
}

/* The input fields */
#pardot-form input.text,
#pardot-form textarea.standard,
#pardot-form select,
#pardot-form input.date {
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #a6a6a6;
  border-radius: 0;
  font-size: 1rem;
  color: #000000;
  padding: 0.5rem 0.875rem;
  width: 100%;
  font-family: freight-sans-pro, "Gill Sans", sans-serif;
}

/* the input fields on focus */
#pardot-form input.text:focus,
#pardot-form textarea.standard:focus,
#pardot-form select:focus,
#pardot-form input.date:focus {
  border-color: #8dc63f;
}

#pardot-form span.value {
  margin-left: 0;
}

/* the field labels */
#pardot-form label {
  color: #696969;
  font-weight: 400;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0.5rem;
  float: none;
  text-align: left;
  width: auto;
  display: block;
}

/* Don't add padding top if a radio or checkbox */
#pardot-form input + label {
  padding-top: 5px;
}

/* the submit button */
#pardot-form .submit input {
  margin: 0;
  background-color: #b31b1b;
  border: solid 1px #b31b1b;
  color: #ffffff;
  font-family: freight-sans-pro, "Gill Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.9375rem 0.625rem;
  border-radius: 0;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
}

/* the submit button hover */
#pardot-form .submit input:focus,
#pardot-form .submit input:hover {
  background-color: #b31b1b;
  border-color: #b31b1b;
  color: #ffffff;
}

/* the spacing around the submit button */
#pardot-form .submit {
  margin: 0;
  padding-top: 15px;
  padding-bottom: 0;
  text-align: center;
}

/* hide the regular checkbox */
.pd-checkbox input {
  opacity: 0;
  position: absolute;
}

/* position the label */
.pd-checkbox input,
.pd-checkbox label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}

.pd-checkbox label {
  position: relative;
}

/* style the unchecked checkbox */
.pd-checkbox input + label:before {
  content: "";
  background: #ffffff;
  border: 1px solid #a6a6a6;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-right: 10px;
  text-align: center;
  font-size: 15px;
  line-height: normal;
  border-radius: 5px;
}

/* style the checked checkbox */
.pd-checkbox input:checked + label:before {
  content: "✓";
  background: #b31b1b;
  color: #ffffff;
  border-color: #b31b1b;
}

form.form p.no-label {
  margin-left: 0 !important;
}

/* hide the regular radio button */
.pd-radio input {
  opacity: 0;
  position: absolute;
}

/* position the label */
.pd-radio input,
.pd-radio label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}

.pd-radio label {
  position: relative;
}

/* style the unchecked radio button */
.pd-radio input + label:before {
  content: "";
  background: #ffffff;
  border: 1px solid #a6a6a6;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-right: 10px;
  text-align: center;
  font-size: 15px;
  line-height: normal;
  border-radius: 50%;
}

/* style the selected radio button */
.pd-radio input:checked + label:before {
  content: "●";
  background: #b31b1b;
  color: #ffffff;
  border-color: #b31b1b;
}