.form-section {
  position: relative;
  vertical-align: top;
  margin: 10px 0px;
  border-left: 3px solid #ffd939;
  border-top: none;
  border-bottom: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-section-header {
  position: relative;
  padding: 1.25rem 1rem;
  transition: background-color 0.3s ease-in-out;
}
.form-section-header:hover {
  background-color: #ffd939;
}
.with-icon.form-section-header {
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  .with-icon.form-section-header {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .form-section-header h3 {
    margin-right: 20px;
  }
}
.form-section-header:before {
  content: "\f105";
  font: normal normal normal 14px/1 "FontAwesome";
  color: #7d7d7d;
  font-size: 1.325rem;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  position: absolute;
  right: 20px;
  top: calc(50% - 0.6625rem);
}

.form-section.container-expanded .form-section-header {
  background-color: #ffd939;
}
.form-section.container-expanded .form-section-header:before {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}

.form-section-content {
  cursor: default;
  max-height: 0;
  transition: max-height 0.2s;
  overflow: hidden;
  font-size: 82%;
  padding: 0px 1.25rem;
  margin: 0px;
}
@media screen and (max-width: 767px) {
  .form-section-content {
    padding: 0 14px;
  }
}

.form-section.container-expanded .form-section-content {
  max-height: 10000px;
  overflow: visible;
}

.form-section-title {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  font-size: 87%;
}

.form-section.container-expanded .form-section-content {
  padding: 1.25rem;
}
.form-section.empty {
  display: none;
}

.form-section-header {
  background-color: rgb(255, 230.3, 126.3);
}
.form-section-header h2 {
  color: #222222;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-section-status-wrapper {
  position: absolute;
  top: 0;
  right: 46px;
  top: calc(50% - 14px);
  width: 28px;
  height: 28px;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}

.form-section-status {
  width: 28px;
  height: 28px;
  font-family: FontAwesome;
  color: #fefefe;
}
.form-section-status::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 28px;
}

[data-bz-forms--section-show-errors-value=true][data-bz-forms--section-is-invalid-value=false] .form-section-status, [data-bz-forms--section-show-errors-value=true]:not([data-bz-forms--section-is-invalid-value]) .form-section-status {
  background-color: white;
  color: #318185;
}
[data-bz-forms--section-show-errors-value=true][data-bz-forms--section-is-invalid-value=false] .form-section-status::before, [data-bz-forms--section-show-errors-value=true]:not([data-bz-forms--section-is-invalid-value]) .form-section-status::before {
  content: "\f058";
}
[data-bz-forms--section-show-errors-value=true][data-bz-forms--section-is-invalid-value=true] .form-section-status {
  background-color: white;
  color: #cc4b37;
}
[data-bz-forms--section-show-errors-value=true][data-bz-forms--section-is-invalid-value=true] .form-section-status::before {
  content: "\f06a";
}

.form-wrapper {
  padding: 0 1em;
  max-width: 760px;
}
@media screen and (max-width: 767px) {
  .form-wrapper {
    max-width: 100%;
  }
}

.form-wrapper {
  padding: 0 1em;
  margin: 0 auto;
}

body.controller-responses .centered-notification, body.controller-downloads .centered-notification {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.promotion-interests-container, .form-wrapper form.plain, .form-wrapper .form-section-content, .form-field .radio-set-wrapper, .form-field .multiple-choice-wrapper {
  display: grid;
  gap: 1em;
}

.form-field {
  position: relative;
  line-height: 1rem;
}
.form-field:not(.other) {
  margin-bottom: 1.75rem;
}
.form-field.with-other-input .custom-field.select .form-field.other {
  margin-top: 0.625rem;
}
.form-field.with-error:not(:focus-within) input:not([type=checkbox]):not([type=radio]), .form-field.with-error:not(:focus-within) .select2-container, .form-field.with-error:not(:focus-within) .text-area {
  border-bottom: 1px solid #cc4b37;
  box-shadow: 0 2px 0 #cc4b37;
}
.form-field input {
  border: 1px solid #ddd;
}
.form-field .text-area textarea {
  min-height: 4rem;
  margin-top: 1.25rem;
  padding: 0 0.4rem 0.4rem;
  border: 1px solid transparent;
}
.form-field input, .form-field textarea, .form-field .text-area, .form-field .select2-container {
  border-radius: 5px;
  background-color: #fefefe;
}
.form-field input, .form-field textarea {
  width: 100%;
  outline: none;
}
.form-field textarea {
  max-width: 100%;
}
.form-field input, .form-field .text-area {
  border-bottom: 1px solid #ffd939;
  box-shadow: 0 2px 0 #ffd939;
  transition: border-bottom, box-shadow 0.3s ease-in-out;
}
.form-field input:focus, .form-field input:focus-within, .form-field .text-area:focus, .form-field .text-area:focus-within {
  border: 1px solid #ffd939;
  box-shadow: 0 0 5px #cccccc;
}
.form-field input.text-input {
  height: 3rem;
  padding: 1.25rem 0.5rem 0.5rem;
}
.form-field input.text-input:focus {
  border: 1px solid #ffd939 !important;
  box-shadow: 0 0 5px #cccccc;
}
.form-field .text-area {
  border: 1px solid #cccccc;
}
.form-field .text-area:focus-within {
  border: 1px solid #ffd939 !important;
  box-shadow: 0 0 5px #cccccc;
}
.form-field .select2-selection__rendered {
  padding-top: 0.4rem;
}
.form-field .radio-set-wrapper, .form-field .multiple-choice-wrapper {
  row-gap: 1rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .form-field .radio-set-wrapper, .form-field .multiple-choice-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.form-field .radio-set-wrapper input, .form-field .radio-set-wrapper label, .form-field .multiple-choice-wrapper input, .form-field .multiple-choice-wrapper label {
  margin: 0;
}
.form-field .radio-set-wrapper label, .form-field .multiple-choice-wrapper label {
  font-size: 0.875rem;
}
.form-field .radio-set-wrapper .multiple-choice-container, .form-field .multiple-choice-wrapper .multiple-choice-container {
  width: 100%;
}
.form-field .radio-set-wrapper fieldset, .form-field .multiple-choice-wrapper fieldset {
  padding: 0;
}
.form-field .radio-set-wrapper input[type=radio], .form-field .radio-set-wrapper input[type=checkbox], .form-field .multiple-choice-wrapper input[type=radio], .form-field .multiple-choice-wrapper input[type=checkbox] {
  display: none;
}
.form-field .radio-set-wrapper input + .radio-label, .form-field .radio-set-wrapper input + .checkbox-label, .form-field .multiple-choice-wrapper input + .radio-label, .form-field .multiple-choice-wrapper input + .checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 20px rgba(4, 35, 132, 0.25);
  border-radius: 10px;
  text-align: center;
}
.form-field .radio-set-wrapper input:checked + .radio-label, .form-field .radio-set-wrapper input:checked + .checkbox-label, .form-field .multiple-choice-wrapper input:checked + .radio-label, .form-field .multiple-choice-wrapper input:checked + .checkbox-label {
  background: #d0e7a0;
}

.form-response-question-prompt {
  color: #fefefe;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .form-response-question-prompt {
    max-width: 99%;
  }
}

.float-label {
  color: #7d7d7d;
  pointer-events: none;
  height: 1.5rem;
  position: absolute;
  top: 1rem;
  left: 0.5rem;
  transform-origin: left;
  transition: transform 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
}

.form-field.with-content > .float-label, .form-field:focus-within > .float-label, .form-field:focus-within > .float-label {
  overflow: visible;
  text-overflow: clip;
  transform: scale(0.7) translateY(-1rem);
}
.form-field[data-controller=bz-forms--select]:not(:focus-within) > .float-label {
  transition-delay: 0.2s;
}

.privacy-policy-agreement {
  font-size: 0.9rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

.tooltipster-sidetip.form-errors .tooltipster-box {
  background: #cc4b37;
  border: none;
  border-radius: 6px;
}

.tooltipster-sidetip.form-errors .tooltipster-arrow .tooltipster-arrow-border, .tooltipster-sidetip.form-errors .tooltipster-arrow .tooltipster-arrow-background {
  border-top-color: #cc4b37;
}

.tooltipster-sidetip.multiple-choice-short-descriptions .tooltipster-box {
  background: #ffd939;
  border: none;
  border-radius: 6px;
}

.tooltipster-sidetip.multiple-choice-short-descriptions .tooltipster-content {
  color: #222222;
  line-height: 1.5em;
}

.tooltipster-sidetip.multiple-choice-short-descriptions .tooltipster-arrow .tooltipster-arrow-border, .tooltipster-sidetip.multiple-choice-short-descriptions .tooltipster-arrow .tooltipster-arrow-background {
  border-top-color: #ffd939;
}

.form-response-question-prompt {
  margin: 1rem 0;
  color: #7d7d7d;
}

.checkbox-label, .radio-label {
  display: flex;
}
.checkbox-label:hover, .radio-label:hover {
  background: rgb(236.2, 245.4, 217) !important;
}
.checkbox-label span, .radio-label span {
  width: 100%;
  margin-right: 3.25rem;
  text-align: left;
}

.checkbox-wrapper, .radio-wrapper {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 1rem;
}
.checkbox-wrapper .checkbox, .checkbox-wrapper .radio, .radio-wrapper .checkbox, .radio-wrapper .radio {
  width: 1rem;
  height: 1rem;
  background: #fefefe;
}
.checkbox-wrapper .radio, .radio-wrapper .radio {
  border-radius: 100%;
}
.checkbox-wrapper .checkbox, .radio-wrapper .checkbox {
  border: 1px solid #eeeeee;
}

.radio-wrapper {
  border-radius: 100%;
  background: #cccccc;
  border: 1px solid #eeeeee;
}

.checkbox-wrapper {
  background: #fefefe;
  border: 1px solid #eeeeee;
}

input:checked + .checkbox-label .checkbox, input:checked + .checkbox-label .radio, input:checked + .radio-label .checkbox, input:checked + .radio-label .radio {
  background: #28ce75;
  border: 1px solid #eeeeee;
}

.float-label {
  margin: 0;
}

.custom-field + .tip, .custom-field .tip {
  display: inline-block;
  margin: 0.5rem 0;
  font-size: 80%;
}

.form-actions-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.custom-field.select .select2-selection__clear, .custom-field.select-with-hyve-nodes .select2-selection__clear {
  display: none;
}

.text-area-node-recommendations {
  margin-top: 1rem;
  font-weight: bold;
}

.form-wrapper label#privacy-policy-agreement::after, .form-wrapper .g-recaptcha::after {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-family: FontAwesome;
  font-size: 1.25rem;
  content: "\f06a";
  background-color: white;
  color: #cc4b37;
  border-radius: 50%;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  position: relative;
  left: 0.625rem;
  margin-right: -1.5rem;
}
.form-wrapper label.with-error#privacy-policy-agreement::after, .form-wrapper .with-error.g-recaptcha::after {
  opacity: 1;
}

body.controller-responses, body.controller-downloads {
  color: #ddd;
  background-color: #111111;
}
body.controller-responses .field_with_errors, body.controller-downloads .field_with_errors {
  display: inline;
}
body.controller-responses .centered-notification, body.controller-downloads .centered-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body.controller-responses .centered-notification .thanks, body.controller-responses .centered-notification .additional-forms, body.controller-downloads .centered-notification .thanks, body.controller-downloads .centered-notification .additional-forms {
  padding: 1.5rem 3rem;
  border-radius: 5px;
  background-color: rgba(34, 34, 34, 0.7529411765);
}
body.controller-responses .centered-notification .thanks h4, body.controller-responses .centered-notification .additional-forms h4, body.controller-downloads .centered-notification .thanks h4, body.controller-downloads .centered-notification .additional-forms h4 {
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin: 0;
}
body.controller-responses .centered-notification .additional-forms, body.controller-downloads .centered-notification .additional-forms {
  margin-top: 2rem;
}

@media screen and (min-width: 1025px) {
  .form-wrapper {
    padding-top: calc(var(--nav-size) * 1.5);
  }
}
@media screen and (max-width: 1024px) {
  .form-wrapper {
    padding-top: calc(var(--nav-size) * 1.2);
  }
}
.form-wrapper hr {
  margin: 1.25rem auto;
}
.form-wrapper form.plain, .form-wrapper .form-section-content {
  row-gap: 0;
  grid-template-columns: repeat(12, 1fr);
}
.form-wrapper form.plain .form-field.width-1, .form-wrapper .form-section-content .form-field.width-1 {
  grid-column: span 1;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-1, .form-wrapper .form-section-content .form-field.width-1 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-2, .form-wrapper .form-section-content .form-field.width-2 {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-2, .form-wrapper .form-section-content .form-field.width-2 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-3, .form-wrapper .form-section-content .form-field.width-3 {
  grid-column: span 3;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-3, .form-wrapper .form-section-content .form-field.width-3 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-4, .form-wrapper .form-section-content .form-field.width-4 {
  grid-column: span 4;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-4, .form-wrapper .form-section-content .form-field.width-4 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-5, .form-wrapper .form-section-content .form-field.width-5 {
  grid-column: span 5;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-5, .form-wrapper .form-section-content .form-field.width-5 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-6, .form-wrapper .form-section-content .form-field.width-6 {
  grid-column: span 6;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-6, .form-wrapper .form-section-content .form-field.width-6 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-7, .form-wrapper .form-section-content .form-field.width-7 {
  grid-column: span 7;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-7, .form-wrapper .form-section-content .form-field.width-7 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-8, .form-wrapper .form-section-content .form-field.width-8 {
  grid-column: span 8;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-8, .form-wrapper .form-section-content .form-field.width-8 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-9, .form-wrapper .form-section-content .form-field.width-9 {
  grid-column: span 9;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-9, .form-wrapper .form-section-content .form-field.width-9 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-10, .form-wrapper .form-section-content .form-field.width-10 {
  grid-column: span 10;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-10, .form-wrapper .form-section-content .form-field.width-10 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-11, .form-wrapper .form-section-content .form-field.width-11 {
  grid-column: span 11;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-11, .form-wrapper .form-section-content .form-field.width-11 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-field.width-12, .form-wrapper .form-section-content .form-field.width-12 {
  grid-column: span 12;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-field.width-12, .form-wrapper .form-section-content .form-field.width-12 {
    grid-column: span 12;
  }
}
.form-wrapper form.plain .form-section-navigation, .form-wrapper .form-section-content .form-section-navigation {
  grid-column: span 12;
}
.form-wrapper form.plain .form-actions, .form-wrapper .form-section-content .form-actions {
  grid-column: span 12;
}
@media screen and (max-width: 767px) {
  .form-wrapper form.plain .form-actions, .form-wrapper .form-section-content .form-actions {
    text-align: center;
  }
  .form-wrapper form.plain .form-actions .form-actions-buttons, .form-wrapper .form-section-content .form-actions .form-actions-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-wrapper form.plain .form-actions .form-actions-buttons .button.response-clear, .form-wrapper form.plain .form-actions .form-actions-buttons input.response-submit, .form-wrapper .form-section-content .form-actions .form-actions-buttons .button.response-clear, .form-wrapper .form-section-content .form-actions .form-actions-buttons input.response-submit {
    width: 45%;
  }
}
.form-wrapper .form-field.conditional-hide, .form-wrapper section.conditional-hide {
  display: none;
}
.form-wrapper .form-field.with-other-input .select > .required-field-alert, .form-wrapper .form-field.with-other-input .select > .tip {
  display: none;
}
.form-wrapper .conditional-text:has(p) {
  margin-top: 0.25rem;
  padding: 0.25rem;
}
.form-wrapper .conditional-text p {
  margin: 0.25rem 0;
}
.form-wrapper .custom-field {
  position: relative;
}
.form-wrapper .custom-field.file {
  padding: 0.625rem;
}
.form-wrapper .custom-field.multiple-choice, .form-wrapper .custom-field.radio, .form-wrapper .custom-field.file {
  border-radius: 5px;
  background: #fefefe;
  padding: 1rem 3rem 2rem;
}
.form-wrapper .custom-field.multiple-choice .form-response-question-prompt, .form-wrapper .custom-field.radio .form-response-question-prompt, .form-wrapper .custom-field.file .form-response-question-prompt {
  margin-bottom: 0.5rem;
  color: #7d7d7d;
}
.form-wrapper .custom-field.multiple-choice .checkbox-node-short-description {
  display: none;
  font-size: smaller;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .form-wrapper .custom-field.multiple-choice .checkbox-node-short-description {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .form-wrapper .custom-field.multiple-choice .checkbox-node-short-description {
    display: block;
  }
}
.form-wrapper .custom-field.select, .form-wrapper .custom-field.select-with-hyve-nodes, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes {
  border-bottom: 1px solid #ffd939;
  box-shadow: 0 2px 0 #ffd939;
  border-radius: 5px;
}
.form-wrapper .custom-field.select .select2-selection--single, .form-wrapper .custom-field.select .select2-selection--multiple, .form-wrapper .custom-field.select-with-hyve-nodes .select2-selection--single, .form-wrapper .custom-field.select-with-hyve-nodes .select2-selection--multiple, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection--single, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection--multiple {
  border: none;
}
.form-wrapper .custom-field.select .select2-selection__placeholder, .form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__placeholder, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__placeholder {
  display: none;
}
.form-wrapper .custom-field.select .select2-selection__arrow, .form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__arrow, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__arrow {
  height: 3rem;
}
.form-wrapper .custom-field.select .select2-selection__rendered, .form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__rendered, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__rendered {
  line-height: 3.125rem;
}
.form-wrapper .custom-field.select .select2-results__option, .form-wrapper .custom-field.select-with-hyve-nodes .select2-results__option, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-results__option {
  color: #4a4a4a;
}
.form-wrapper .custom-field.select .select2-results__option--highlighted, .form-wrapper .custom-field.select-with-hyve-nodes .select2-results__option--highlighted, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-results__option--highlighted {
  background-color: #ffd939;
}
.form-wrapper .custom-field.select .select2-search__field, .form-wrapper .custom-field.select-with-hyve-nodes .select2-search__field, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-search__field {
  height: 1.5rem;
  font-size: 1rem;
}
.form-wrapper .custom-field.select .select2-selection {
  height: 3.125rem;
}
.form-wrapper .custom-field.select .select2-selection__clear {
  line-height: 2.875rem;
  margin-right: 1.5rem;
}
.form-wrapper .custom-field.select-with-hyve-nodes .form-response-question-prompt, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .form-response-question-prompt {
  pointer-events: none;
}
.form-wrapper .custom-field.select-with-hyve-nodes .select2-selection, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection {
  min-height: 5.5rem;
  padding-top: 1.5rem;
}
.form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__rendered, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__rendered {
  line-height: 1.5rem;
}
.form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__clear, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__clear {
  margin-top: 0;
}
.form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__choice, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__choice {
  padding: 0;
  position: relative;
  border: 0px;
  background: none;
  border: none;
}
.form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__choice__remove, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  border: none;
}
.form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__choice__remove:hover, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__choice__remove:hover {
  background-color: transparent;
}
.form-wrapper .custom-field.select-with-hyve-nodes .select2-selection__choice__remove span[aria-hidden=true], .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-selection__choice__remove span[aria-hidden=true] {
  display: none;
}
.form-wrapper .custom-field.select-with-hyve-nodes .select2-results__option--selected, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .select2-results__option--selected {
  display: none;
}
.form-wrapper .custom-field.select-with-hyve-nodes .node-selection-wrapper, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .node-selection-wrapper {
  position: relative;
  z-index: 2;
  padding-left: 0.625rem;
  padding-right: 2rem;
  text-transform: uppercase;
  font-size: 0.625rem;
  color: #4a4a4a;
}
.form-wrapper .custom-field.select-with-hyve-nodes .node-selection-background, .form-wrapper .custom-field.multiple-choice-with-hyve-nodes .node-selection-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.form-wrapper .custom-field.multiple-choice > .form-response-question-prompt, .form-wrapper .custom-field.radio > .form-response-question-prompt {
  padding: 0.625rem 0.625rem 0;
}
.form-wrapper .custom-field.multiple-choice .multiple-choice-wrapper, .form-wrapper .custom-field.multiple-choice .radio-set-wrapper, .form-wrapper .custom-field.radio .multiple-choice-wrapper, .form-wrapper .custom-field.radio .radio-set-wrapper {
  padding: 0 0.625rem 0.625rem;
}
.form-wrapper .custom-field.checkbox {
  display: flex;
  align-items: center;
}
.form-wrapper .custom-field.checkbox .form-response-question-prompt {
  color: white;
  margin: 0;
}
.form-wrapper .form-field.single-option-select .select2-selection__arrow {
  display: none;
}
.form-wrapper .checkbox-label, .form-wrapper .radio-label {
  color: #4a4a4a;
}
.form-wrapper .form-field.with-error .required-field-alert {
  opacity: 1;
}
.form-wrapper .form-field.with-error .tip {
  opacity: 0;
}
.form-wrapper .form-field .required-field-alert {
  opacity: 0;
}
.form-wrapper .form-field .tip {
  opacity: 1;
}
.form-wrapper .tip {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
}
.form-wrapper .tip.top {
  padding: 0 0.625rem;
}
.form-wrapper .file .tip, .form-wrapper .multiple-choice .tip, .form-wrapper .radio .tip {
  color: #7d7d7d;
}
.form-wrapper .required-field-alert {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  font-size: 0.875rem;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.form-wrapper .required-field-alert span {
  background: #cc4b37;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  color: white;
  font-weight: bold;
  padding: 2px 6px;
}
.form-wrapper .character-limit {
  color: #7d7d7d;
  font-size: 0.625rem;
  position: absolute;
  top: 0.25rem;
  right: 0.625rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.form-wrapper input.text-input:focus + .character-limit, .form-wrapper textarea:focus + .character-limit {
  opacity: 1;
}
.form-wrapper .recaptcha-form-field {
  display: flex;
  justify-content: center;
}
.form-wrapper .recaptcha-branding {
  margin-bottom: 1em;
  color: #fefefe;
  font-size: 0.6rem;
}
.form-wrapper .g-recaptcha {
  display: flex;
  align-items: center;
}
.form-wrapper .file-upload-container {
  border-radius: 5px;
  border: 1px solid #c6c9cc;
}
.form-wrapper .file-upload-container:before {
  font-family: FontAwesome;
  content: "\f093";
  position: absolute;
  top: 50%;
  left: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
  font-size: 4rem;
  color: #c6c9cc;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.form-wrapper .file-upload-container.dz-started:before {
  opacity: 0;
  max-height: 0;
  height: 0;
}
.form-wrapper .file-upload-container a.dz-remove {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 1rem;
  background: #cc4b37;
  z-index: 500;
}
.form-wrapper .file-upload-container a.dz-remove:before {
  content: "\f1f8";
  font-family: FontAwesome;
  font-size: 1.25rem;
  color: #fefefe;
}
.form-wrapper .file-upload-container a.dz-remove:hover {
  background: rgb(206.55, 84, 65);
}
.form-wrapper .file-upload-container .dz-image.custom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-wrapper .switch .switch-paddle {
  width: 2.5rem;
  height: 1.5rem;
  position: relative;
  float: left !important;
  margin-right: 0.5rem;
  margin-bottom: 0;
  border-radius: 1rem;
  background: #888888;
}
.form-wrapper .switch .switch-paddle:after {
  border-radius: 50%;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
  background: #fefefe;
  transition: all 0.3s ease-in-out;
  content: "";
}
.form-wrapper input:checked ~ .switch-paddle {
  background: #318185;
}
.form-wrapper input:checked ~ .switch-paddle:after {
  left: 1.25rem;
}

.promotion-interests-container, .promotion-closure-text {
  grid-column: span 12;
}

.promotion-interests-container {
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .promotion-interests-container {
    grid-template-columns: 1fr;
  }
}
.promotion-interests-container .promotion-interest-item {
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
}
.promotion-interests-container .promotion-interest-item::before {
  font-family: FontAwesome;
  display: inline-block;
  content: "\f08a";
  color: #7CBDCF;
  position: absolute;
  left: 0;
  top: 0;
}
.promotion-interests-container .promotion-interest-item::before:focus {
  outline: none;
}
.promotion-interests-container .promotion-interest-item.selected::before {
  content: "\f004";
}

.path-forms--contact h1 {
  margin-bottom: 0.5rem;
}

.phone-and-email .fa {
  margin-right: 0.5rem;
}

.contact-offices-list {
  margin-top: 1rem;
}

.made-in {
  font-weight: bold;
}
