/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
      -o-tab-size: 4;
         tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::-moz-placeholder {
    opacity: 1;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::-moz-placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    -webkit-appearance: button;
       -moz-appearance: button;
            appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  #form-modal {
    .absolute {
      position: absolute;
    }
    .fixed {
      position: fixed;
    }
    .relative {
      position: relative;
    }
    .static {
      position: static;
    }
    .row-1 {
      grid-row: 1;
    }
    .row-2 {
      grid-row: 2;
    }
    .container {
      width: 100%;
      @media (width >= 40rem) {
        max-width: 40rem;
      }
      @media (width >= 48rem) {
        max-width: 48rem;
      }
      @media (width >= 64rem) {
        max-width: 64rem;
      }
      @media (width >= 80rem) {
        max-width: 80rem;
      }
      @media (width >= 96rem) {
        max-width: 96rem;
      }
    }
    .my-3 {
      margin-block: calc(var(--spacing) * 3);
    }
    .mt-3 {
      margin-top: calc(var(--spacing) * 3);
    }
    .mt-4 {
      margin-top: calc(var(--spacing) * 4);
    }
    .mb-2 {
      margin-bottom: calc(var(--spacing) * 2);
    }
    .mb-4 {
      margin-bottom: calc(var(--spacing) * 4);
    }
    .mb-6 {
      margin-bottom: calc(var(--spacing) * 6);
    }
    .block {
      display: block;
    }
    .flex {
      display: flex;
    }
    .grid {
      display: grid;
    }
    .hidden {
      display: none;
    }
    .inline {
      display: inline;
    }
    .table {
      display: table;
    }
    .w-full {
      width: 100%;
    }
    .transform {
      transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
    }
    .flex-row {
      flex-direction: row;
    }
    .justify-end {
      justify-content: flex-end;
    }
    .pr-6 {
      padding-right: calc(var(--spacing) * 6);
    }
    .pl-0 {
      padding-left: calc(var(--spacing) * 0);
    }
    .text-center {
      text-align: center;
    }
    .text-sm {
      font-size: var(--text-sm);
      line-height: var(--tw-leading, var(--text-sm--line-height));
    }
    .uppercase {
      text-transform: uppercase;
    }
    .blur {
      --tw-blur: blur(8px);
      filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
    }
    .invert {
      --tw-invert: invert(100%);
      filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
    }
    .filter {
      filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
    }
    .md\:flex {
      @media (width >= 48rem) {
        display: flex;
      }
    }
    .md\:w-1\/2 {
      @media (width >= 48rem) {
        width: calc(1/2 * 100%);
      }
    }
    .md\:w-fit {
      @media (width >= 48rem) {
        width: -moz-fit-content;
        width: fit-content;
      }
    }
    .md\:pl-6 {
      @media (width >= 48rem) {
        padding-left: calc(var(--spacing) * 6);
      }
    }
  }
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}

@charset "UTF-8";
.module--padding-none {
  padding-top: 0;
  padding-bottom: 0;
}
.module--padding-top {
  padding-top: 30px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .module--padding-top {
    padding-top: 30px;
  }
}
@media (min-width: 1024px) {
  .module--padding-top {
    padding-top: 48px;
  }
}
.module--padding-bottom {
  padding-top: 0;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .module--padding-bottom {
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .module--padding-bottom {
    padding-bottom: 48px;
  }
}
.module--padding-both {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .module--padding-both {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .module--padding-both {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.button__underline {
  position: relative;
  align-self: center;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #404d6a;
  width: fit-content;
  font-family: basefont, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  cursor: pointer;
}
.button__underline:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #404d6a;
  width: 100%;
  left: 0;
  bottom: -3px;
}

/* Ivy Presto Display — headfont */
/* Thin */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
/* Thin Italic */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
}
/* Light */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
/* Light Italic */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
}
/* Regular */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/* Regular Italic */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-RegularItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
/* SemiBold */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
/* SemiBold Italic */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
}
/* Bold */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/* Bold Italic */
@font-face {
  font-family: "headfont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli/fonts/IvyPresto/IvyprestoDisplay-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}
/* Light */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/Neutra2Text-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/* Light Italic */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/Neutra2Text-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
/* Bold */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/Neutra2Text-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/* Bold Italic */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/Neutra2Text-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
/* Book */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/Neutra2Text-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* Book Italic */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/Neutra2Text-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
/* Demi */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/Neutra2Text-Demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
/* Demi Italic */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/Neutra2Text-DemiItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
}
/* Light Alt */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/NeutraText-LightAlt.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/* Light Alt Italic */
@font-face {
  font-family: "basefont";
  src: url("https://cdn2.hubspot.net/hubfs/46322191/cli-assets/fonts/NeutraText-LightAltItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
.hs-form-field {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}

.hs-form-field input,
.hs-form-field select {
  height: 3rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #404d6a;
  font-size: 16px;
  font-family: "basefont";
  transition: 0.1s cubic-bezier(0.65, 0.05, 0.36, 1);
  outline: none;
  background: none;
  color: #404d6a;
}

.hs-form-field label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #404d6a;
  text-align: left;
  transition: 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
  font-size: 1rem;
  pointer-events: none;
}

.hs-form-field input.filled ~ label,
.hs-form-field input:focus ~ label {
  top: 0;
  left: 0;
  font-size: 12px;
  color: #404d6a;
}

.hs-form-field input:hover {
  border-bottom: 1px solid #404d6a;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.entryError .underline,
.entrySuccess .underline {
  display: none;
}

.hs-form-field legend {
  font-size: 16px;
  font-family: "basefont";
  transition: 0.1s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #404d6a;
}

.hs-form-field textarea {
  border: none;
  border-bottom: 1px solid #404d6a;
  font-size: 16px;
  font-family: "basefont";
  transition: 0.1s cubic-bezier(0.65, 0.05, 0.36, 1);
  outline: none;
  background: none;
  color: #404d6a;
  width: 100%;
}

.hs-fieldtype-select label,
.hs-fieldtype-text label,
.hs-fieldtype-textarea label,
.hs-fieldtype-file label {
  position: relative !important;
}

.module--inner-padding-none .form-with-background__image {
  padding-top: 0;
  padding-bottom: 0;
}

.module--inner-padding-top .form-with-background__image {
  padding-top: 30px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .module--inner-padding-top .form-with-background__image {
    padding-top: 30px;
  }
}
@media (min-width: 1024px) {
  .module--inner-padding-top .form-with-background__image {
    padding-top: 48px;
  }
}

.module--inner-padding-bottom .form-with-background__image {
  padding-top: 0;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .module--inner-padding-bottom .form-with-background__image {
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .module--inner-padding-bottom .form-with-background__image {
    padding-bottom: 48px;
  }
}

.module--inner-padding-both .form-with-background__image {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .module--inner-padding-both .form-with-background__image {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .module--inner-padding-both .form-with-background__image {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.form-with-background__container {
  position: relative;
  z-index: 10;
}
.form-with-background__container.submitted .form-with-background__subscription {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-with-background__container.submitted .form-with-background__subscription > *:not(.form-with-background__form) {
  display: none;
}
.form-with-background__container .submitted-message * {
  text-align: center;
}
.form-with-background__container .submitted-message * img {
  margin: 36px auto 0;
}

.form-with-background__image {
  padding: 40px 16px;
}

.form-with-background__subscription {
  margin: 0px auto;
  padding: 16px;
  min-height: 500px;
  background-color: #FEFCF5;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .form-with-background__subscription {
    padding: 24px;
  }
}
@media (min-width: 1024px) {
  .form-with-background__subscription {
    width: 40%;
  }
}

.form-with-background__form input[type=submit] {
  width: 100%;
  margin-top: 1rem;
  padding: 0 10px;
  font-family: "basefont";
  font-weight: 600;
  font-size: 14px;
  line-height: 38px;
  letter-spacing: 0;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 250ms, background-color 250ms;
  appearance: none;
  outline: none;
  min-width: 80px;
  color: #FEFCF5;
  background-color: #404d6a;
  border-color: #404d6a;
  text-transform: uppercase;
}
.form-with-background__form input[type=submit]:disabled, .form-with-background__form input[type=submit].disabled {
  color: #FEFCF5;
  background-color: rgba(64, 77, 106, 0.5019607843);
  border-color: rgba(64, 77, 106, 0.5019607843);
  opacity: 1;
  pointer-events: none;
}
.form-with-background__form input[type=submit] > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .form-with-background__form input[type=submit] {
    padding: 0 24px;
    font-size: 14px;
    line-height: 46px;
  }
  .form-with-background__form input[type=submit]:hover:not(:disabled) {
    color: #FEFCF5;
    background-color: rgb(54.4, 65.45, 90.1);
    border-color: rgb(54.4, 65.45, 90.1);
    cursor: pointer;
  }
}
.form-with-background__form .input {
  margin-right: 24px !important;
}

.form-with-background__form-terms {
  font-family: basefont, arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-transform: none;
}

.form-with-background__subscription-description {
  font-family: basefont, arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
  letter-spacing: 0.5px;
  text-transform: none;
}

.hbspt-form .hs-form-booleancheckbox label {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-top: 16px;
  pointer-events: initial;
  letter-spacing: 0;
  pointer-events: initial;
  transform: none;
  cursor: pointer;
}
.hbspt-form .hs-form-booleancheckbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #404d6a;
  box-shadow: inset 0px 0px 0px 2px #FEFCF5;
  cursor: pointer;
}
.hbspt-form .hs-form-booleancheckbox label input {
  width: 0 !important;
  height: 0;
  display: none;
}
.hbspt-form .hs-form-booleancheckbox label:has(> input:checked)::before {
  background-color: #404d6a;
}

.form-with-background__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  margin: 16px;
  padding: 32px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  background-color: #FEFCF5;
  overflow-y: scroll;
  z-index: 101;
}
.form-with-background__modal.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-with-background__modal .form-with-background__close {
  position: fixed;
  right: 32px;
  top: 32px;
  font-size: 30px;
  color: #404d6a;
  border: none;
  background: none;
}
.form-with-background__modal ul li {
  padding-left: 50px;
  padding-top: 8px;
  margin-bottom: 16px;
  margin-top: 12px;
  min-height: 28px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAbCAYAAACN1PRVAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJYSURBVHgBzVaxctNAEH13Zhi6iC+wUpGhwencEIsvwBPoCR1dlC+I+YIoFSX4A4JNmQrZDXSxu1Ch/IHKNNbx9qRzlIwCFhIzvBlZp731vd29vd0D/jcEw9CTBw2h/6RAksBoXJgOTtAQ6jcknlGYUCMwSh3Mz07G2BClKATxNJo6eeceZZ/efCORpzK8mE2ic9RAcvn9uvu0/4H/39l+0lf8vhT5gyqrSPSVQyHapWUJNoSEPOuorl6ZK2QYZwpD01Fbbl5XEF1w6DO+p3WIHJQxEcN/zJVljYHKTFhJRqKPQsQnoWWfUBM0LpawM3w9AyaUZATHe/vhyBriFPdeHR2KVZa0ZkLchSzOhY9LokS2xHomCUGiG3dXZoYGmH+ORnxJFqaFyLvmY8lWHfSQh89a8Td7dRf05LQYCqE9CrqYGKJ9LByJQ06mMCjJGpelEhI3eEQPXTb6ZY0+9xANwa1IYSyZ575zMoO4sMJOPtQ4QAvgeYuL9SWk0LaOsf5RIBspwkSZdvaQnlzlXJgV3zYT5cT5hY7HyQXP3Rs0RcZI0Stt8gIhtTFxc8zK90Zb4oRnbYnmWLCI767Xl5/BfpjXwwxvRaGNc1YFmyAM2xe+PFbsrX9FtCbTGaQmpixZo6CFtL8PtnlKs2OT+8GgvpOGyfGSshQtY92ppZt2d/qPVU7ok/BcjECLuNXPmKKRMZDWMpQm+vz10Uu0iMoLD/dNyOQ25fOZ0ttxfHZzcWmV7BapwmFRYWJm7RJa/Sz6XVo3c9UmSsXVrMej8QyZ2RbZfBKFqIlf60vkOGnnbcQAAAAASUVORK5CYII=) no-repeat top left;
  line-height: 1;
}

@tailwind components;
@tailwind utilities;
/* 
Add tailwind css below
*/