/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.gform_wrapper {
  display: block !important;
}
.gform_wrapper .gform_hidden {
  display: none !important;
}
.gform_wrapper label,
.gform_wrapper .gfield_label_before_complex {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  display: block;
  margin-bottom: 0.25rem;
}
.content-wrapper > .gform_wrapper {
  padding: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) 0;
}
.acf-block.bg-transparent + .gform_wrapper {
  padding-top: 0;
}
.gform_wrapper + .acf-block.bg-transparent {
  padding-top: 0;
}
.gform_wrapper .gform_body li::before {
  content: none !important;
}
.gform_wrapper .gform_body .gform_fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
  padding: 0;
}
.gform_wrapper .gform_body .gform_fields .gfield {
  margin: 0 0 clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem) 0;
}
.gform_wrapper .gform_body .gform_fields .gfield label {
  display: block;
}
.gform_wrapper .gform_body .gform_fileupload_rules {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  display: block;
  margin-top: 0.25rem;
}
@media (min-width: 36rem) {
  .gform_wrapper .gform_body .ginput_complex {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-bottom: -2.5rem;
    margin-left: -0.5rem;
  }
}
@media (min-width: 36rem) {
  .gform_wrapper .gform_body .ginput_complex > span,
.gform_wrapper .gform_body .ginput_complex > p:not(:empty) {
    flex: 50%;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
}
@media (min-width: 36rem) {
  .gform_wrapper .gform_body .ginput_complex > span.ginput_full,
.gform_wrapper .gform_body .ginput_complex > p:not(:empty).ginput_full {
    flex: 100%;
  }
}
.gform_wrapper .gform_body .ginput_complex > .ginput_container_date {
  padding: 0 0.5rem;
}
.gform_wrapper .gform_body .ginput_complex label {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  display: block;
  margin-top: 0.25rem;
}
.gform_wrapper .gform_body .ginput_complex br {
  display: none;
}
.gform_wrapper .gform_body .ginput_complex input {
  display: block;
  width: 100%;
}
@media (max-width: 35.98rem) {
  .gform_wrapper .gform_body .ginput_complex input {
    margin-bottom: 1.5rem;
  }
}
.gform_wrapper .gform_footer .c-btn {
  margin-top: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  white-space: nowrap;
}
@media (max-width: 35.98rem) {
  .gform_wrapper .gform_footer .c-btn {
    width: 100%;
  }
}

.hidden_sub_label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.gf_invisible,
.gfield_visibility_hidden {
  position: absolute !important;
  left: -9999px;
  visibility: hidden;
}

.gform_validation_container {
  position: absolute !important;
  left: -9000px;
  display: none !important;
}

.gfield {
  flex: 100%;
  padding: 0 0.5rem;
  list-style-type: none;
}
.gfield--width-half, .gfield--width-third, .gfield--width-quarter {
  margin: 0 auto;
}
@media (min-width: 36rem) {
  .gfield--width-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 48rem) {
  .gfield--width-third {
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
  }
}
@media (min-width: 36rem) {
  .gfield--width-quarter {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 48rem) {
  .gfield--width-quarter {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.gfield textarea {
  width: 100% !important;
}
.gfield textarea.medium {
  height: 10rem;
}
.gfield textarea.small {
  height: 6rem;
}
.gfield label .gfield_required {
  margin-left: 0.05em;
}
.gfield label .gfield_required::before {
  content: "*";
  color: #ad0322;
}
.gfield label .gfield_required_text,
.gfield label .gfield_required_asterisk {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.gfield .mat-select {
  width: 100%;
}
.gfield.gfield_error input {
  border-color: #ad0322 !important;
}
.gfield.gfield_error .validation_message {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0.25rem;
  color: #ad0322;
}
.gfield.gfield_error .bg-indigo .validation_message.gform_submission_error, .gfield.gfield_error .bg-navy .validation_message.gform_submission_error, .bg-navy .gfield.gfield_error .validation_message, .bg-indigo .gfield.gfield_error .validation_message {
  color: #fcfcfc;
}
.gfield.gsection:first-child .gsection_title {
  margin-top: 0 !important;
}
.gfield.gsection .gsection_title {
  font-weight: var(--t5-font-weight);
  font-size: var(--t5-font-size);
  font-family: var(--t5-font-family);
  line-height: var(--t5-line-height);
  margin-top: clamp(2rem, 0.8571428571rem + 2.380952381vw, 3rem) !important;
}

.gfield_type_html {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  color: var(--blockColor, #343a7a);
}
.gfield_type_html p {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-bottom: var(--subtitle-2-margin-bottom);
}
.gfield_type_html p:last-child {
  margin-bottom: 0;
}
.gfield_type_html a {
  color: var(--blockColor, #343a7a);
}

.gfield_description {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  margin-bottom: 0.5rem;
}

.gfield_type_fileupload {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
}
.gfield_type_fileupload .c-btn {
  margin-top: 0.5rem;
  margin-left: 1rem;
}
.gfield_type_fileupload input {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  width: 100%;
  margin: 0.25rem 0rem;
  padding: 0rem;
}
.gfield_type_fileupload ::-webkit-file-upload-button,
.gfield_type_fileupload ::file-selector-button {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  color: transparent;
  font-size: 0;
  border: 0;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.gform_title {
  margin-bottom: clamp(2rem, 0.8571428571rem + 2.380952381vw, 3rem);
}

.gfield_type_radio .validation_message,
.gfield_type_checkbox .validation_message {
  margin-top: -1rem !important;
  margin-bottom: 1.5rem !important;
}
.gfield_type_radio legend,
.gfield_type_radio .gfield_label_before_complex,
.gfield_type_checkbox legend,
.gfield_type_checkbox .gfield_label_before_complex {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-bottom: var(--subtitle-2-margin-bottom);
}
.gfield_type_radio legend:last-child,
.gfield_type_radio .gfield_label_before_complex:last-child,
.gfield_type_checkbox legend:last-child,
.gfield_type_checkbox .gfield_label_before_complex:last-child {
  margin-bottom: 0;
}

.hidden_label .gfield_label,
.hidden_sub_label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.gform_submission_error {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0 !important;
  color: #ad0322;
}
.bg-navy .gfield.gfield_error .gform_submission_error.validation_message, .bg-indigo .gfield.gfield_error .gform_submission_error.validation_message, .bg-navy .gform_submission_error, .bg-indigo .gform_submission_error {
  color: #fcfcfc;
}

.gform_validation_errors {
  margin-bottom: 1rem;
}

.gform_confirmation_wrapper {
  text-align: center;
}
.content-wrapper > .gform_confirmation_wrapper {
  padding-top: clamp(2rem, -1.4285714286rem + 7.1428571429vw, 5rem);
}
.content-wrapper > .gform_confirmation_wrapper:last-child, .content-wrapper > .gform_confirmation_wrapper:nth-last-child(2) {
  margin-bottom: clamp(3.5rem, -3.9285714286rem + 15.4761904762vw, 10rem);
}

body img.gform_ajax_spinner {
  display: none !important;
}

.gform_wrapper.gravity-theme .gfield_list_header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0.5rem;
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_list_header {
    display: none;
  }
}
.gform_wrapper.gravity-theme .gfield_list_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0.5rem;
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_list_group {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.gform_wrapper.gravity-theme .gfield_list_group:last-child {
  margin-bottom: 0;
}
.gform_wrapper.gravity-theme .gfield_header_item {
  flex-grow: 1;
  width: 0;
  word-break: break-word;
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_header_item {
    width: auto;
  }
}
.gform_wrapper.gravity-theme .gfield_header_item + .gfield_header_item:not(.gfield_header_item--icons) {
  margin-left: 2%;
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_header_item + .gfield_header_item:not(.gfield_header_item--icons) {
    margin-left: 0;
  }
}
.gform_wrapper.gravity-theme .gfield_list_group_item {
  flex-grow: 1;
  width: 0;
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_list_group_item {
    width: auto;
  }
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_list_group_item::before {
    content: attr(data-label);
    font-size: 14.992px;
  }
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_list_group_item:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
.gform_wrapper.gravity-theme .gfield_list_group_item + .gfield_list_group_item {
  margin-left: 2%;
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_list_group_item + .gfield_list_group_item {
    margin-left: 0;
  }
}
.gform_wrapper.gravity-theme .gfield_list_group_item input {
  width: 100%;
}
.gform_wrapper.gravity-theme .gfield_list_group_item select {
  width: 100%;
}
.gform_wrapper.gravity-theme .gfield_header_item--icons {
  display: flex;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3rem;
}
.gform_wrapper.gravity-theme .gfield_list_icons {
  display: flex;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3rem;
}
@media (max-width: 47.98rem) {
  .gform_wrapper.gravity-theme .gfield_list_icons {
    width: auto;
    margin: 1rem -16px -16px;
    padding: 12pxrem 16;
    line-height: 0;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.gform_wrapper.gravity-theme .gfield_list_icons button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  padding: 0;
  font-size: 0;
  border: none;
  background-color: transparent;
  opacity: 0.5;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.5s ease-out;
}
.gform_wrapper.gravity-theme .gfield_list_icons button::before {
  content: "\ea25";
  font-weight: 400;
  font-size: 24px;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 0;
}
.gform_wrapper.gravity-theme .gfield_list_icons button:hover {
  opacity: 1;
}
.gform_wrapper.gravity-theme .gfield_list_icons button:focus {
  opacity: 1;
}
.gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item {
  margin-left: 0.3125rem;
}
.gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item::before {
  content: "\ea2b";
  font-weight: 400;
  font-size: 24px;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}