/* stylelint-disable */
:root {
  --vf-color--green: #18974c;
  --vf-color--green--darkest: #0a5032;
  --vf-color--green--dark: #007b53;
  --vf-color--green--light: #6cc24a;
  --vf-color--green--lightest: #d0debb;
  --vf-color--grey: #707372;
  --vf-color--grey--darkest: #373a36;
  --vf-color--grey--dark: #54585a;
  --vf-color--grey--light: #a8a99e;
  --vf-color--grey--lightest: #d0d0ce;
  --vf-color--red: #d41645;
  --vf-color--red--dark: #a6093d;
  --vf-color--red--light: #e58f9e;
  --vf-color--blue: #3b6fb6;
  --vf-color--blue--dark: #193f90;
  --vf-color--blue--light: #8bb8e8;
  --vf-color--purple: #734595;
  --vf-color--purple--dark: #563d82;
  --vf-color--purple--light: #cba3d8;
  --vf-color--orange: #f49e17;
  --vf-color--orange--dark: #b65417;
  --vf-color--orange--light: #efc06e;
  --vf-color--yellow: #f4c61f;
  --vf-color--yellow--dark: #ffb81c;
  --vf-color--yellow--light: #fdd757;
  --vf-color--bright-green: #a1be1f;
  --vf-color--bright-green--dark: #7fb428;
  --vf-color--bright-green--light: #e2e868;
}

:root {
  --vf-color__text--primary: #1a1c1a;
  --vf-color__text--secondary: #373a36;
  --vf-color__link: #3b6fb6;
  --vf-color__link--hover: #193f90;
  --vf-color__link--focus: #193f90;
  --vf-color__link--visited: #563d82;
}

:root {
  --vf-color__button__text--primary: #ffffff;
  --vf-color__button__border--primary: #3b6fb6;
  --vf-color__button__background--primary: #3b6fb6;
  --vf-color__button__shadow--primary: #193f90;
  --vf-color__button__text--secondary: #3b6fb6;
  --vf-color__button__border--secondary: #3b6fb6;
  --vf-color__button__background--secondary: #ffffff;
  --vf-color__button__shadow--secondary: #193f90;
  --vf-color__button__text--tertiary: #ffffff;
  --vf-color__button__border--tertiary: #373a36;
  --vf-color__button__background--tertiary: #373a36;
  --vf-color__button__shadow--tertiary: #000000;
}

:root {
  --vf-color__brand: #18974c;
  --vf-color__brand--dark: #0a5032;
}

:root {
  --vf-ui-color--black: #000000;
  --vf-ui-color--grey: #d8d8d8;
  --vf-ui-color--grey--light: #f3f3f3;
  --vf-ui-color--yellow: #fffadc;
  --vf-ui-color--red: #d32f2f;
  --vf-ui-color--white: #ffffff;
  --vf-ui-color--off-white: #fafafa;
}

:root {
  --vf-color--neutral--0: #ffffff;
  --vf-color--neutral--100: #f3f3f3;
  --vf-color--neutral--200: #e4e4e4;
  --vf-color--neutral--300: #d0d0ce;
  --vf-color--neutral--400: #a9abaa;
  --vf-color--neutral--500: #8d8f8e;
  --vf-color--neutral--600: #707372;
  --vf-color--neutral--700: #54585a;
  --vf-color--neutral--800: #373a36;
  --vf-color--neutral--900: #000000;
}

:root {
  --vf-theme--primary: #3b6fb6;
  --vf-theme--primary--dark: #193f90;
  --vf-theme--secondary: #18974c;
  --vf-theme--secondary--dark: #007b53;
  --vf-theme--tertiary: #54585a;
  --vf-theme--quaternary: #f4c61f;
  --vf-theme--quinary: #d0d0ce;
}

/* stylelint-enable */
/*!
 * Component: @visual-framework/vf-form__item
 * Version: 3.0.0
 * Location: components/undefined
 */
.vf-form__item > * {
  --vf-stack-margin--custom: 0.25rem;
}

.vf-form__item--inline .vf-form__select,
.vf-form__item--inline .vf-form__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.vf-form__item--inline .vf-form__select {
  width: auto;
  padding: 0.5rem 2rem 0.5rem 1.25rem;
}

/*!
 * Component: @visual-framework/vf-form__label
 * Version: 3.0.0
 * Location: components/undefined
 */
.vf-form__label {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 19px;
  color: #1a1c1a;
  font-weight: 400;
  line-height: 1.421;
  margin: var(--vf-stack-margin, 0) 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vf-form__label--required .vf-icon {
  fill: #d41645;
  height: 0.5em;
  width: 0.5em;
}

/*!
 * Component: @visual-framework/vf-form__checkbox
 * Version: 3.0.0
 * Location: components/undefined
 */
.vf-form__item--checkbox .vf-form__checkbox + .vf-form__label::before {
  margin-right: 8px;
}
.vf-form__item--checkbox .vf-form__helper {
  margin-left: 29px;
}

.vf-form__checkbox {
  opacity: 0;
  position: absolute;
}
.vf-form__checkbox + .vf-form__label {
  color: #54585a;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.vf-form__checkbox + .vf-form__label::before {
  background-color: #ffffff;
  border: 2px solid #707372;
  content: "";
  display: inline-block;
  height: 1rem;
  min-width: 1rem;
  position: relative;
  top: 4px;
  width: 1rem;
}
.vf-form__checkbox:hover + .vf-form__label:before, .vf-form__checkbox:focus + .vf-form__label:before {
  border-color: #54585a;
  -webkit-box-shadow: 0 0 0 0.125rem #54585a;
          box-shadow: 0 0 0 0.125rem #54585a;
}
.vf-form__checkbox:checked + .vf-form__label::before {
  background-color: #3b6fb6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cpath d='M39.94 125a19.88 19.88 0 01-15.53-7.81L2.48 92.26a10 10 0 0115-13.2l20.55 23.39a2.5 2.5 0 003.68.08l81-84.42a10.002 10.002 0 1114.5 13.78l-82.02 86.33A19.41 19.41 0 0139.94 125z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.75em;
  border-color: #3b6fb6;
}
.vf-form__checkbox:checked:hover + .vf-form__label::before, .vf-form__checkbox:checked:focus + .vf-form__label::before {
  -webkit-box-shadow: 0 0 0 0.125rem #54585a;
          box-shadow: 0 0 0 0.125rem #54585a;
}
.vf-form__checkbox:disabled + .vf-form__label {
  color: #707372;
  cursor: not-allowed;
}
.vf-form__checkbox:disabled + .vf-form__label::before {
  background-color: #d0d0ce;
  border-color: #707372;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.vf-form__checkbox--invalid + .vf-form__label::before {
  border-color: #d41645;
}