/* Predicatable forms */

.form-input,
.form-textarea,
.form-select,
.form-multiselect,
:where(
  [type="text"],
  [type="email"],
  [type="url"],
  [type="password"],
  [type="number"],
  [type^="date"],
  [type="month"],
  [type="search"],
  [type="tel"],
  [type="time"],
  [type="week"],
  [multiple],
  textarea,
  select
) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --shadow: 0 0 rgba(0,0,0,0);
}

.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus, :where(
  [type="text"],
  [type="email"],
  [type="url"],
  [type="password"],
  [type="number"],
  [type^="date"],
  [type="month"],
  [type="search"],
  [type="tel"],
  [type="time"],
  [type="week"],
  [multiple],
  textarea,
  select
):focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --ring-width: 1px;
    --ring-inset: var(--empty, /*!*/ /*!*/);
    --ring-offset-width: 0px;
    --ring-offset-color: #fff;
    --ring-color: #007fad;
    --ring-offset-shadow: var(--ring-inset) 0 0 0 var(--ring-offset-width)
      var(--ring-offset-color);
    --ring-shadow: var(--ring-inset) 0 0 0 calc(var(--ring-width) + var(--ring-offset-width))
      var(--ring-color);
    box-shadow: var(--empty,  ) 0 0 0 0px
      #fff, var(--empty,  ) 0 0 0 calc(1px + 0px)
      #007fad, var(--shadow);
    box-shadow: var(--ring-offset-shadow), var(--ring-shadow), var(--shadow);
    border-color: #007fad;
  }

.form-input:disabled, .form-textarea:disabled, .form-select:disabled, .form-multiselect:disabled, :where(
  [type="text"],
  [type="email"],
  [type="url"],
  [type="password"],
  [type="number"],
  [type^="date"],
  [type="month"],
  [type="search"],
  [type="tel"],
  [type="time"],
  [type="week"],
  [multiple],
  textarea,
  select
):disabled {
    opacity: 1;
    color: currentColor;
  }

.form-input:where(::-moz-placeholder, ::-moz-placeholder), .form-textarea:where(::-moz-placeholder, ::-moz-placeholder), :where(input, textarea):where(::-moz-placeholder, ::-moz-placeholder) {
    color: #6b7280;
    opacity: 1;
  }

.form-input:where(::-moz-placeholder, ::placeholder), .form-textarea:where(::-moz-placeholder, ::placeholder), :where(input, textarea):where(::-moz-placeholder, ::placeholder) {
    color: #6b7280;
    opacity: 1;
  }

.form-textarea {
  min-height: 1em;
  resize: vertical;

  /* render newlines */
  white-space: pre-wrap;

}

.form-select,
:where(select) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

:where(option) {
  padding-left: 0;
  padding-right: 0;
}
:where([disabled] option) {
  color: currentColor;
}

.form-multiselect,
.form-select:where([size]),
:where([multiple], [size]) {
  background-image: none;
  background-image: initial;
  background-position: 0 0;
  background-position: initial;
  background-repeat: repeat;
  background-repeat: initial;
  background-size: auto auto;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
  print-color-adjust: inherit;
}

.form-checkbox,
.form-radio,
:where([type="checkbox"], [type="radio"]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #007fad;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  --shadow: 0 0 rgba(0,0,0,0);
}

.form-checkbox:focus, .form-radio:focus, :where([type="checkbox"], [type="radio"]):focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --ring-width: 2px;
    --ring-inset: var(--empty, /*!*/ /*!*/);
    --ring-offset-width: 2px;
    --ring-offset-color: #fff;
    --ring-color: #007fad;
    --ring-offset-shadow: var(--ring-inset) 0 0 0 var(--ring-offset-width)
      var(--ring-offset-color);
    --ring-shadow: var(--ring-inset) 0 0 0 calc(var(--ring-width) + var(--ring-offset-width))
      var(--ring-color);
    box-shadow: var(--empty,  ) 0 0 0 2px
      #fff, var(--empty,  ) 0 0 0 calc(2px + 2px)
      #007fad, var(--shadow);
    box-shadow: var(--ring-offset-shadow), var(--ring-shadow), var(--shadow);
    border-color: #007fad;
  }

.form-checkbox:active, .form-radio:active, :where([type="checkbox"], [type="radio"]):active {
    border-color: transparent;
    background-color: currentColor;
  }

.form-checkbox:checked, .form-radio:checked, :where([type="checkbox"], [type="radio"]):checked {
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }

.form-checkbox:checked:hover,
    .form-radio:checked:hover,
    :where([type="checkbox"], [type="radio"]):checked:hover,
    .form-checkbox:checked:focus,
    .form-radio:checked:focus,
    :where([type="checkbox"], [type="radio"]):checked:focus {
      border-color: transparent;
      background-color: currentColor;
    }

.form-radio,
:where([type="radio"]) {
  border-radius: 100%;
}

.form-radio:checked, :where([type="radio"]):checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  }

.form-checkbox:checked, :where([type="checkbox"]):checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  }

.form-checkbox:indeterminate, :where([type="checkbox"]):indeterminate {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }

.form-checkbox:indeterminate:hover,
    :where([type="checkbox"]):indeterminate:hover,
    .form-checkbox:indeterminate:focus,
    :where([type="checkbox"]):indeterminate:focus {
      border-color: transparent;
      background-color: currentColor;
    }
/* Here we establish default input behaviors without prescribing any specific color styles. */
.input-DHdro {
  opacity: 1;
  transition-property: color, background-color, border-color, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.input-DHdro:disabled {
    opacity: 0.7;
  }
.newsletterSignup-lj6hJ {
  display: grid;
  background-color: var(--color-light-gray);
  border: var(--cta-border);
  border-radius: 5px;
  margin: 2rem auto;
  padding: 20px;
  color: var(--color-black);
  font-family: var(--font-sans);
  width: var(--standard-width);
  max-width: 400px;
}

@media (min-width: 700px) {

.newsletterSignup-lj6hJ {
    padding: 30px;
    max-width: 700px;
}
  }

.newsletterSignup-lj6hJ > * {
    /*
     * We use grid stacking so:
     * 1. the form and success messages are positioned on top of each other
     * 2. the parent container takes the height of the tallest one
     *
     * Absolute positioning can do #1 but not #2.
     */
    grid-area: 1 / 1;
  }

.newsletterSignup-lj6hJ a {
    outline: none;
    color: var(--color-black);
    text-decoration-color: var(--color-medium-blue);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: 0.15s ease-in-out;
    transition-property: color, -webkit-text-decoration;
    transition-property: color, text-decoration;
    transition-property: color, text-decoration, -webkit-text-decoration;

    /* @TODO: Don't know what to do here */
  }

.newsletterSignup-lj6hJ a:hover,
    .newsletterSignup-lj6hJ a:focus {
      /* color: var(--color-blue); */
      text-decoration-color: currentColor;
    }

.form-Rr5XP,
.message-BUsRS {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;

  /* See submission state transition below */
  transition: 0.2s ease-in-out;
  transition-property: opacity, transform;
}

.title-n7uwk {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;

  /* Better line break when text overflows */
}

.title-n7uwk span {
    display: inline-block;
  }

@media (min-width: 700px) {

.title-n7uwk {
    font-size: 1.875rem;
}
  }

.title-n7uwk:after {
    content: "";
    display: block;
    width: 40px;
    margin-top: 10px;
    border-bottom: 1px dotted var(--color-dark-gray);
  }

.input-aJioP {
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 0.875rem;
}

.input-aJioP:hover,
  .input-aJioP:focus {
    --ring-width: 1px;
    --ring-offset-width: 0px;
  }

.checkbox-hCFD5 {
  width: 1rem;
  border-color: #b1b1b1;
  border-radius: 3px;
}

.checkbox-hCFD5:checked:where(:hover, :focus) {
    --ring-width: 1px;
    --ring-offset-width: 2px;
  }

.checkboxLabel-ZCjp3 {
  display: inline-flex;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--color-medium-gray);
  font-size: 0.6875rem;
}

.checkboxLabel-ZCjp3 span {
    display: inline-block;
    width: 80%;
    max-width: 72ch; /* more visually pleasing line width */
  }

.checkboxLabel-ZCjp3 a {
    display: inline-block; /* orphan prevention */
    color: currentColor;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    outline: none;
  }

.checkboxLabel-ZCjp3 a:hover,
    .checkboxLabel-ZCjp3 a:focus {
      color: var(--color-blue);
    }

.button-p3nX5 {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 5px;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-weight: 600;
  outline: none;
  transition: background-color 0.2s ease-in-out;
}

@media (min-width: 700px) {

.button-p3nX5 {
    width: 280px;
}
  }

.button-p3nX5:hover,
  .button-p3nX5:focus {
    background-color: var(--color-dark-blue);
  }

.button-p3nX5:disabled {
    background-color: var(--color-medium-gray);
    cursor: default;
  }

.message-BUsRS {
  opacity: 0;
}

.message-BUsRS .input-aJioP {
    position: relative;
    display: flex;
    align-items: center;
  }

.message-BUsRS .icon-dFFq8 {
    position: absolute;
    right: 0.5rem;
    background: var(--color-medium-blue);
    border-radius: 100%;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.4rem;
    color: var(--color-white);
  }

/* Submission state transition */
.form-Rr5XP,
.message-BUsRS.status-success-gfCWF {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.message-BUsRS.status-success-gfCWF {
  transition-delay: 0.2s;
}

.form-Rr5XP.status-success-gfCWF,
.message-BUsRS:not(.status-success-gfCWF) {
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.form-Rr5XP.status-success-gfCWF {
  transform: translateY(-5px);
}

@media print {
  .newsletterSignup-lj6hJ {
    display: none;
  }
}
