@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto+Slab:wght@100..900&display=swap");
*, :after, :before {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, :after, :before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  background-color: var(--color-background);
  color: var(--global__color);
  font-family: var(--global__font-family);
  font-size: var(--global__font-size);
  line-height: var(--global__line-height);
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

[tabindex="-1"]:focus {
  outline: 0;
}

h1, h2, h3, h4, h5, h6 {
  font: inherit;
  margin-block: 1.5em 0;
}

p {
  margin-block: 1em 0;
}

b, strong {
  font-weight: var(--font-weight-bold);
}

a {
  color: var(--link__color);
  text-decoration-color: initial;
  text-decoration-style: solid;
  text-decoration-thickness: var(--link__text-decoration-thickness);
  text-underline-offset: var(--link__text-decoration-offset);
}

a:visited {
  color: var(--link__color--visited);
}

a:hover {
  color: var(--link__color--hover);
  text-decoration-thickness: var(--link__text-decoration-thickness--hover);
}

a:focus, a:focus:visited {
  background-color: var(--color-focus-light);
  box-shadow: none;
  color: currentColor;
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 1px;
}

a:active {
  color: var(--link__color--active);
}

hr {
  border-block-end: 0;
  border-block-start: 1px solid currentColor;
  margin: 0;
}

ol:not(:where([role])), ul:not(:where([role])) {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-block: 1em 0;
  padding-inline-start: 2em;
}

[role=list]:where(ul, ol) {
  list-style: none;
  margin: 0;
  padding: 0;
}

li > ol:not(:where([role])), li > ul:not(:where([role])) {
  margin-block: 0.5em 0;
}

button, input, select, textarea {
  font: inherit;
}

button:not(button, [type=checkbox], [type=radio]), input:not(button, [type=checkbox], [type=radio]), select:not(button, [type=checkbox], [type=radio]), textarea:not(button, [type=checkbox], [type=radio]) {
  display: block;
  margin-block: 0.25em 0;
}

button:disabled, input:disabled, select:disabled, textarea:disabled {
  cursor: not-allowed;
}

input[type=checkbox], input[type=radio] {
  accent-color: var(--choice__background-color--checked);
  display: inline-grid;
}

input[type=checkbox] + label, input[type=radio] + label {
  display: inline-block;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

label, legend {
  display: block;
  margin-block: 1.5em 0;
}

button {
  cursor: pointer;
  display: inline-block;
}

figure {
  margin: 0;
}

@font-face {
  font-display: swap;
  font-family: Bitter;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/bitter-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Bitter;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/bitter-bold.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Bitter;
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/bitter-italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/opensans-regular-webfont.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Open Sans;
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/opensans-italic-webfont.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/opensans-semibold-webfont.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/opensans-bold-webfont.woff2) format("woff2");
}
.ds-c-list, .ds-content :where(ul, ol) {
  margin-block: 16px;
  padding-inline-start: 32px;
}

.ds-c-list--bare {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ds-base--inverse {
  background-color: var(--color-background-inverse);
  color: var(--global__color--inverse);
}

.icon-text {
  text-transform: capitalize;
}

.ds-c-link {
  color: var(--link__color);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--link__color);
  text-decoration-thickness: var(--link__text-decoration-thickness);
  text-underline-offset: var(--link__text-decoration-offset);
}

.ds-c-link:visited {
  color: var(--link__color--visited);
  text-decoration-color: var(--link__color--visited);
}

.ds-c-link:hover {
  color: var(--link__color--hover);
  text-decoration-color: var(--link__color--hover);
  text-decoration-thickness: var(--link__text-decoration-thickness--hover);
}

.ds-c-link:focus {
  background-color: var(--color-focus-light);
  box-shadow: none;
  color: initial;
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 1px;
  text-decoration: underline;
}

.ds-c-link:active {
  color: var(--link__color--active);
  outline: 0 none;
  text-decoration-color: var(--link__color--active);
}

.ds-base--inverse .ds-c-tooltip__trigger-link, .ds-base--inverse a:not(.ds-c-button, .ds-c-tooltip__trigger-link), .ds-c-link--inverse {
  color: var(--link-inverse__color);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--link-inverse__color);
  text-decoration-thickness: var(--link__text-decoration-thickness);
  text-underline-offset: var(--link__text-decoration-offset);
}

.ds-base--inverse .ds-c-tooltip__trigger-link:visited, .ds-base--inverse a:visited:not(.ds-c-button, .ds-c-tooltip__trigger-link), .ds-c-link--inverse:visited {
  color: var(--link-inverse__color--visited);
  text-decoration-color: var(--link-inverse__color--visited);
}

.ds-base--inverse .ds-c-tooltip__trigger-link:hover, .ds-base--inverse a:hover:not(.ds-c-button, .ds-c-tooltip__trigger-link), .ds-c-link--inverse:hover {
  color: var(--link-inverse__color--hover);
  text-decoration-color: var(--link-inverse__color--hover);
  text-decoration-thickness: var(--link__text-decoration-thickness--hover);
}

.ds-base--inverse .ds-c-tooltip__trigger-link:focus, .ds-base--inverse a:focus:not(.ds-c-button, .ds-c-tooltip__trigger-link), .ds-c-link--inverse:focus {
  background-color: var(--color-focus-light);
  box-shadow: none;
  color: initial;
  color: var(--link__color);
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 1px;
  text-decoration: underline;
}

.ds-base--inverse .ds-c-tooltip__trigger-link:active, .ds-base--inverse a:active:not(.ds-c-button, .ds-c-tooltip__trigger-link), .ds-c-link--inverse:active {
  background-color: initial;
  color: var(--link-inverse__color--active);
  outline: 0 none;
}

.ds-content :where(h1) {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-3xl--mobile);
  font-weight: var(--font-weight-heading-3xl);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-content :where(h1):where(:first-child) {
  margin-block-start: 0;
}

.ds-content :where(h1):where(:last-child) {
  margin-block-end: 0;
}

@media (min-width: 768px) {
  .ds-content :where(h1) {
    font-size: var(--font-size-3xl);
  }
}
.ds-content :where(h2) {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl--mobile);
  font-weight: var(--font-weight-heading-2xl);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-content :where(h2):where(:first-child) {
  margin-block-start: 0;
}

.ds-content :where(h2):where(:last-child) {
  margin-block-end: 0;
}

@media (min-width: 768px) {
  .ds-content :where(h2) {
    font-size: var(--font-size-2xl);
  }
}
.ds-content :where(h3) {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-heading-xl);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-content :where(h3):where(:first-child) {
  margin-block-start: 0;
}

.ds-content :where(h3):where(:last-child) {
  margin-block-end: 0;
}

.ds-content :where(h4) {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-heading-lg);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-content :where(h4):where(:first-child) {
  margin-block-start: 0;
}

.ds-content :where(h4):where(:last-child) {
  margin-block-end: 0;
}

.ds-content :where(h5) {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-heading-md);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-content :where(h5):where(:first-child) {
  margin-block-start: 0;
}

.ds-content :where(h5):where(:last-child) {
  margin-block-end: 0;
}

.ds-content :where(h6) {
  color: var(--color-muted);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-heading-sm);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-content :where(h6):where(:first-child) {
  margin-block-start: 0;
}

.ds-content :where(h6):where(:last-child) {
  margin-block-end: 0;
}

.ds-base--inverse .ds-content :where(h6) {
  color: var(--color-muted-inverse);
}

.ds-text-heading--5xl {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-5xl--mobile);
  font-weight: var(--font-weight-heading-5xl);
  line-height: var(--font-line-height-heading);
  margin: 0;
}

@media (min-width: 544px) {
  .ds-text-heading--5xl {
    font-size: var(--font-size-5xl--tablet);
  }
}
@media (min-width: 768px) {
  .ds-text-heading--5xl {
    font-size: var(--font-size-5xl);
  }
}
.ds-text-heading--4xl {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-4xl--mobile);
  font-weight: var(--font-weight-heading-4xl);
  line-height: var(--font-line-height-heading);
  margin: 0;
}

@media (min-width: 768px) {
  .ds-text-heading--4xl {
    font-size: var(--font-size-4xl);
  }
}
.ds-text-heading--3xl {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-3xl--mobile);
  font-weight: var(--font-weight-heading-3xl);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-text-heading--3xl:where(:first-child) {
  margin-block-start: 0;
}

.ds-text-heading--3xl:where(:last-child) {
  margin-block-end: 0;
}

@media (min-width: 768px) {
  .ds-text-heading--3xl {
    font-size: var(--font-size-3xl);
  }
}
.ds-text-heading--2xl {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl--mobile);
  font-weight: var(--font-weight-heading-2xl);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-text-heading--2xl:where(:first-child) {
  margin-block-start: 0;
}

.ds-text-heading--2xl:where(:last-child) {
  margin-block-end: 0;
}

@media (min-width: 768px) {
  .ds-text-heading--2xl {
    font-size: var(--font-size-2xl);
  }
}
.ds-text-heading--xl {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-heading-xl);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-text-heading--xl:where(:first-child) {
  margin-block-start: 0;
}

.ds-text-heading--xl:where(:last-child) {
  margin-block-end: 0;
}

.ds-text-heading--lg {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-heading-lg);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-text-heading--lg:where(:first-child) {
  margin-block-start: 0;
}

.ds-text-heading--lg:where(:last-child) {
  margin-block-end: 0;
}

.ds-text-heading--md {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-heading-md);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-text-heading--md:where(:first-child) {
  margin-block-start: 0;
}

.ds-text-heading--md:where(:last-child) {
  margin-block-end: 0;
}

.ds-text-heading--sm {
  color: var(--color-muted);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-heading-sm);
  line-height: var(--font-line-height-heading);
  margin: 0;
  margin-block: 1.5em 0.5em;
}

.ds-text-heading--sm:where(:first-child) {
  margin-block-start: 0;
}

.ds-text-heading--sm:where(:last-child) {
  margin-block-end: 0;
}

.ds-base--inverse .ds-text-heading--sm {
  color: var(--color-muted-inverse);
}

.ds-text-body--lg, .ds-text-body--md, .ds-text-body--sm {
  font-family: var(--font-family-body);
  line-height: var(--font-line-height-base);
  margin-block: 1em;
}

.ds-text-body--lg:first-child, .ds-text-body--md:first-child, .ds-text-body--sm:first-child {
  margin-block-start: 0;
}

.ds-text-body--lg:last-child, .ds-text-body--md:last-child, .ds-text-body--sm:last-child {
  margin-block-end: 0;
}

.ds-text-body--lg {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-body-lg);
}

.ds-text-body--md {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body-md);
}

.ds-text-body--sm {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-body-sm);
}

@container style(--debugger: true) {
  .ds-u-sans {
    border: 2px solid #7cfc00;
    padding-block-end: 0.5rem;
    position: relative;
  }
  .ds-u-sans:after {
    background-color: #f0fff0;
    border: 1px solid #7cfc00;
    border-radius: 0.5em;
    content: "💀 DEPRECATED";
    font-size: 10px;
    font-weight: 400;
    inset: auto 0.5rem -0.5rem auto;
    padding: 0.25em 0.5em;
    position: absolute;
    z-index: 1;
  }
  .ds-u-serif {
    border: 2px solid #7cfc00;
    padding-block-end: 0.5rem;
    position: relative;
  }
  .ds-u-serif:after {
    background-color: #f0fff0;
    border: 1px solid #7cfc00;
    border-radius: 0.5em;
    content: "💀 DEPRECATED";
    font-size: 10px;
    font-weight: 400;
    inset: auto 0.5rem -0.5rem auto;
    padding: 0.25em 0.5em;
    position: absolute;
    z-index: 1;
  }
}
ds-badge, ds-button, ds-spinner {
  display: inline-block;
}

ds-accordion, ds-accordion-item, ds-alert, ds-choice, ds-dropdown, ds-hint, ds-inline-error, ds-label, ds-month-picker, ds-pagination, ds-text-field, ds-usa-banner {
  display: block;
}

.ds-u-fill--primary-lightest {
  background-color: var(--color-primary-lightest) !important;
}

.ds-u-fill--primary-lighter {
  background-color: var(--color-primary-lighter) !important;
}

.ds-u-fill--primary-light {
  background-color: var(--color-primary-light) !important;
}

.ds-u-fill--primary {
  background-color: var(--color-primary) !important;
}

.ds-u-fill--primary-dark {
  background-color: var(--color-primary-dark) !important;
}

.ds-u-fill--primary-darker {
  background-color: var(--color-primary-darker) !important;
}

.ds-u-fill--primary-darkest {
  background-color: var(--color-primary-darkest) !important;
}

.ds-u-fill--secondary {
  background-color: var(--color-secondary) !important;
}

.ds-u-fill--secondary-light {
  background-color: var(--color-secondary-light) !important;
}

.ds-u-fill--secondary-lighter {
  background-color: var(--color-secondary-lighter) !important;
}

.ds-u-fill--secondary-lightest {
  background-color: var(--color-secondary-lightest) !important;
}

.ds-u-fill--secondary-dark {
  background-color: var(--color-secondary-dark) !important;
}

.ds-u-fill--secondary-darker {
  background-color: var(--color-secondary-darker) !important;
}

.ds-u-fill--secondary-darkest {
  background-color: var(--color-secondary-darkest) !important;
}

.ds-u-fill--accent-primary-lightest {
  background-color: var(--color-accent-primary-lightest) !important;
}

.ds-u-fill--accent-primary-lighter {
  background-color: var(--color-accent-primary-lighter) !important;
}

.ds-u-fill--accent-primary-light {
  background-color: var(--color-accent-primary-light) !important;
}

.ds-u-fill--accent-primary {
  background-color: var(--color-accent-primary) !important;
}

.ds-u-fill--accent-primary-dark {
  background-color: var(--color-accent-primary-dark) !important;
}

.ds-u-fill--accent-primary-darker {
  background-color: var(--color-accent-primary-darker) !important;
}

.ds-u-fill--accent-primary-darkest {
  background-color: var(--color-accent-primary-darkest) !important;
}

.ds-u-fill--gray {
  background-color: var(--color-gray) !important;
}

.ds-u-fill--gray-dark {
  background-color: var(--color-gray-dark) !important;
}

.ds-u-fill--gray-light {
  background-color: var(--color-gray-light) !important;
}

.ds-u-fill--gray-lighter {
  background-color: var(--color-gray-lighter) !important;
}

.ds-u-fill--gray-lightest {
  background-color: var(--color-gray-lightest) !important;
}

.ds-u-fill--muted-inverse {
  background-color: var(--color-muted-inverse) !important;
}

.ds-u-fill--error {
  background-color: var(--color-error) !important;
}

.ds-u-fill--error-light {
  background-color: var(--color-error-light) !important;
}

.ds-u-fill--error-lighter {
  background-color: var(--color-error-lighter) !important;
}

.ds-u-fill--error-lightest {
  background-color: var(--color-error-lightest) !important;
}

.ds-u-fill--error-dark {
  background-color: var(--color-error-dark) !important;
}

.ds-u-fill--error-darker {
  background-color: var(--color-error-darker) !important;
}

.ds-u-fill--error-darkest {
  background-color: var(--color-error-darkest) !important;
}

.ds-u-fill--warn {
  background-color: var(--color-warn) !important;
}

.ds-u-fill--warn-light {
  background-color: var(--color-warn-light) !important;
}

.ds-u-fill--warn-lighter {
  background-color: var(--color-warn-lighter) !important;
}

.ds-u-fill--warn-lightest {
  background-color: var(--color-warn-lightest) !important;
}

.ds-u-fill--warn-dark {
  background-color: var(--color-warn-dark) !important;
}

.ds-u-fill--warn-darker {
  background-color: var(--color-warn-darker) !important;
}

.ds-u-fill--warn-darkest {
  background-color: var(--color-warn-darkest) !important;
}

.ds-u-fill--success {
  background-color: var(--color-success) !important;
}

.ds-u-fill--success-light {
  background-color: var(--color-success-light) !important;
}

.ds-u-fill--success-lighter {
  background-color: var(--color-success-lighter) !important;
}

.ds-u-fill--success-lightest {
  background-color: var(--color-success-lightest) !important;
}

.ds-u-fill--success-dark {
  background-color: var(--color-success-dark) !important;
}

.ds-u-fill--success-darker {
  background-color: var(--color-success-darker) !important;
}

.ds-u-fill--success-darkest {
  background-color: var(--color-success-darkest) !important;
}

.ds-u-fill--info {
  background-color: var(--color-info) !important;
}

.ds-u-fill--info-light {
  background-color: var(--color-info-light) !important;
}

.ds-u-fill--info-lighter {
  background-color: var(--color-info-lighter) !important;
}

.ds-u-fill--info-lightest {
  background-color: var(--color-info-lightest) !important;
}

.ds-u-fill--info-dark {
  background-color: var(--color-info-dark) !important;
}

.ds-u-fill--info-darker {
  background-color: var(--color-info-darker) !important;
}

.ds-u-fill--info-darkest {
  background-color: var(--color-info-darkest) !important;
}

.ds-u-fill--base {
  background-color: var(--color-base) !important;
}

.ds-u-fill--white {
  background-color: var(--color-white) !important;
}

.ds-u-fill--black {
  background-color: var(--color-black) !important;
}

.ds-u-fill--background {
  background-color: var(--color-background) !important;
}

.ds-u-fill--background-inverse {
  background-color: var(--color-background-inverse) !important;
}

.ds-u-fill--transparent {
  background-color: initial !important;
}

.ds-u-fill--focus-color-light {
  background-color: var(--color-focus-light) !important;
}

.ds-u-fill--focus-color-dark {
  background-color: var(--color-focus-dark) !important;
}

.ds-u-border--1 {
  border: 1px solid var(--color-border) !important;
}

.ds-u-border-top--1 {
  border-top: 1px solid var(--color-border) !important;
}

.ds-u-border-right--1 {
  border-right: 1px solid var(--color-border) !important;
}

.ds-u-border-bottom--1 {
  border-bottom: 1px solid var(--color-border) !important;
}

.ds-u-border-left--1, .ds-u-border-x--1 {
  border-left: 1px solid var(--color-border) !important;
}

.ds-u-border-x--1 {
  border-right: 1px solid var(--color-border) !important;
}

.ds-u-border-y--1 {
  border-bottom: 1px solid var(--color-border) !important;
  border-top: 1px solid var(--color-border) !important;
}

.ds-u-border--2 {
  border: 2px solid var(--color-border) !important;
}

.ds-u-border-top--2 {
  border-top: 2px solid var(--color-border) !important;
}

.ds-u-border-right--2 {
  border-right: 2px solid var(--color-border) !important;
}

.ds-u-border-bottom--2 {
  border-bottom: 2px solid var(--color-border) !important;
}

.ds-u-border-left--2, .ds-u-border-x--2 {
  border-left: 2px solid var(--color-border) !important;
}

.ds-u-border-x--2 {
  border-right: 2px solid var(--color-border) !important;
}

.ds-u-border-y--2 {
  border-bottom: 2px solid var(--color-border) !important;
  border-top: 2px solid var(--color-border) !important;
}

.ds-u-border--0 {
  border: 0 !important;
}

.ds-u-border-top--0 {
  border-top: 0 !important;
}

.ds-u-border-right--0 {
  border-right: 0 !important;
}

.ds-u-border-bottom--0 {
  border-bottom: 0 !important;
}

.ds-u-border-left--0, .ds-u-border-x--0 {
  border-left: 0 !important;
}

.ds-u-border-x--0 {
  border-right: 0 !important;
}

.ds-u-border-y--0 {
  border-bottom: 0 !important;
  border-top: 0 !important;
}

.ds-u-border--dark {
  border-color: var(--color-border-dark) !important;
}

.ds-u-border--inverse {
  border-color: var(--color-border-inverse) !important;
}

.ds-u-border--error {
  border-color: var(--color-error) !important;
}

.ds-u-border--error-light {
  border-color: var(--color-error-light) !important;
}

.ds-u-border--error-lighter {
  border-color: var(--color-error-lighter) !important;
}

.ds-u-border--warn {
  border-color: var(--color-warn) !important;
}

.ds-u-border--warn-light {
  border-color: var(--color-warn-light) !important;
}

.ds-u-border--warn-lighter {
  border-color: var(--color-warn-lighter) !important;
}

.ds-u-border--success {
  border-color: var(--color-success) !important;
}

.ds-u-border--success-light {
  border-color: var(--color-success-light) !important;
}

.ds-u-border--success-lighter {
  border-color: var(--color-success-lighter) !important;
}

.ds-u-radius {
  border-radius: var(--radius-default);
}

.ds-u-radius--pill {
  border-radius: var(--radius-pill);
}

.ds-u-radius--circle {
  border-radius: var(--radius-circle);
}

.ds-u-display--block {
  display: block !important;
}

.ds-u-display--inline-block {
  display: inline-block !important;
}

.ds-u-display--inline {
  display: inline !important;
}

.ds-u-display--flex {
  display: flex !important;
}

.ds-u-display--inline-flex {
  display: inline-flex !important;
}

.ds-u-display--none {
  display: none !important;
}

.ds-u-visibility--hidden {
  visibility: hidden !important;
}

.ds-u-visibility--visible {
  visibility: visible !important;
}

.ds-u-visibility--screen-reader {
  clip: rect(0, 0, 0, 0);
  word-wrap: normal;
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media print {
  .ds-u-visibility--hidden-print {
    display: none !important;
  }
}
@media (min-width: 544px) {
  .ds-u-sm-display--block {
    display: block !important;
  }
  .ds-u-sm-display--inline-block {
    display: inline-block !important;
  }
  .ds-u-sm-display--flex {
    display: flex !important;
  }
  .ds-u-sm-display--inline-flex {
    display: inline-flex !important;
  }
  .ds-u-sm-display--none {
    display: none !important;
  }
  .ds-u-sm-visibility--hidden {
    visibility: hidden !important;
  }
  .ds-u-sm-visibility--visible {
    visibility: visible !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-display--block {
    display: block !important;
  }
  .ds-u-md-display--inline-block {
    display: inline-block !important;
  }
  .ds-u-md-display--flex {
    display: flex !important;
  }
  .ds-u-md-display--inline-flex {
    display: inline-flex !important;
  }
  .ds-u-md-display--none {
    display: none !important;
  }
  .ds-u-md-visibility--hidden {
    visibility: hidden !important;
  }
  .ds-u-md-visibility--visible {
    visibility: visible !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-display--block {
    display: block !important;
  }
  .ds-u-lg-display--inline-block {
    display: inline-block !important;
  }
  .ds-u-lg-display--flex {
    display: flex !important;
  }
  .ds-u-lg-display--inline-flex {
    display: inline-flex !important;
  }
  .ds-u-lg-display--none {
    display: none !important;
  }
  .ds-u-lg-visibility--hidden {
    visibility: hidden !important;
  }
  .ds-u-lg-visibility--visible {
    visibility: visible !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-display--block {
    display: block !important;
  }
  .ds-u-xl-display--inline-block {
    display: inline-block !important;
  }
  .ds-u-xl-display--flex {
    display: flex !important;
  }
  .ds-u-xl-display--inline-flex {
    display: inline-flex !important;
  }
  .ds-u-xl-display--none {
    display: none !important;
  }
  .ds-u-xl-visibility--hidden {
    visibility: hidden !important;
  }
  .ds-u-xl-visibility--visible {
    visibility: visible !important;
  }
}
.ds-u-flex-direction--row {
  flex-direction: row !important;
}

.ds-u-flex-direction--column {
  flex-direction: column !important;
}

.ds-u-flex-direction--row-reverse {
  flex-direction: row-reverse !important;
}

.ds-u-flex-direction--column-reverse {
  flex-direction: column-reverse !important;
}

@media (min-width: 544px) {
  .ds-u-sm-flex-direction--row {
    flex-direction: row !important;
  }
  .ds-u-sm-flex-direction--column {
    flex-direction: column !important;
  }
  .ds-u-sm-flex-direction--row-reverse {
    flex-direction: row-reverse !important;
  }
  .ds-u-sm-flex-direction--column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-flex-direction--row {
    flex-direction: row !important;
  }
  .ds-u-md-flex-direction--column {
    flex-direction: column !important;
  }
  .ds-u-md-flex-direction--row-reverse {
    flex-direction: row-reverse !important;
  }
  .ds-u-md-flex-direction--column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-flex-direction--row {
    flex-direction: row !important;
  }
  .ds-u-lg-flex-direction--column {
    flex-direction: column !important;
  }
  .ds-u-lg-flex-direction--row-reverse {
    flex-direction: row-reverse !important;
  }
  .ds-u-lg-flex-direction--column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-flex-direction--row {
    flex-direction: row !important;
  }
  .ds-u-xl-flex-direction--column {
    flex-direction: column !important;
  }
  .ds-u-xl-flex-direction--row-reverse {
    flex-direction: row-reverse !important;
  }
  .ds-u-xl-flex-direction--column-reverse {
    flex-direction: column-reverse !important;
  }
}
.ds-u-justify-content--start {
  justify-content: flex-start !important;
}

.ds-u-justify-content--end {
  justify-content: flex-end !important;
}

.ds-u-justify-content--center {
  justify-content: center !important;
}

.ds-u-justify-content--between {
  justify-content: space-between !important;
}

.ds-u-justify-content--around {
  justify-content: space-around !important;
}

@media (min-width: 544px) {
  .ds-u-sm-justify-content--start {
    justify-content: flex-start !important;
  }
  .ds-u-sm-justify-content--end {
    justify-content: flex-end !important;
  }
  .ds-u-sm-justify-content--center {
    justify-content: center !important;
  }
  .ds-u-sm-justify-content--between {
    justify-content: space-between !important;
  }
  .ds-u-sm-justify-content--around {
    justify-content: space-around !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-justify-content--start {
    justify-content: flex-start !important;
  }
  .ds-u-md-justify-content--end {
    justify-content: flex-end !important;
  }
  .ds-u-md-justify-content--center {
    justify-content: center !important;
  }
  .ds-u-md-justify-content--between {
    justify-content: space-between !important;
  }
  .ds-u-md-justify-content--around {
    justify-content: space-around !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-justify-content--start {
    justify-content: flex-start !important;
  }
  .ds-u-lg-justify-content--end {
    justify-content: flex-end !important;
  }
  .ds-u-lg-justify-content--center {
    justify-content: center !important;
  }
  .ds-u-lg-justify-content--between {
    justify-content: space-between !important;
  }
  .ds-u-lg-justify-content--around {
    justify-content: space-around !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-justify-content--start {
    justify-content: flex-start !important;
  }
  .ds-u-xl-justify-content--end {
    justify-content: flex-end !important;
  }
  .ds-u-xl-justify-content--center {
    justify-content: center !important;
  }
  .ds-u-xl-justify-content--between {
    justify-content: space-between !important;
  }
  .ds-u-xl-justify-content--around {
    justify-content: space-around !important;
  }
}
.ds-u-align-items--start {
  align-items: flex-start !important;
}

.ds-u-align-items--end {
  align-items: flex-end !important;
}

.ds-u-align-items--center {
  align-items: center !important;
}

.ds-u-align-items--baseline {
  align-items: baseline !important;
}

.ds-u-align-items--stretch {
  align-items: stretch !important;
}

@media (min-width: 544px) {
  .ds-u-sm-align-items--start {
    align-items: flex-start !important;
  }
  .ds-u-sm-align-items--end {
    align-items: flex-end !important;
  }
  .ds-u-sm-align-items--center {
    align-items: center !important;
  }
  .ds-u-sm-align-items--baseline {
    align-items: baseline !important;
  }
  .ds-u-sm-align-items--stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-align-items--start {
    align-items: flex-start !important;
  }
  .ds-u-md-align-items--end {
    align-items: flex-end !important;
  }
  .ds-u-md-align-items--center {
    align-items: center !important;
  }
  .ds-u-md-align-items--baseline {
    align-items: baseline !important;
  }
  .ds-u-md-align-items--stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-align-items--start {
    align-items: flex-start !important;
  }
  .ds-u-lg-align-items--end {
    align-items: flex-end !important;
  }
  .ds-u-lg-align-items--center {
    align-items: center !important;
  }
  .ds-u-lg-align-items--baseline {
    align-items: baseline !important;
  }
  .ds-u-lg-align-items--stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-align-items--start {
    align-items: flex-start !important;
  }
  .ds-u-xl-align-items--end {
    align-items: flex-end !important;
  }
  .ds-u-xl-align-items--center {
    align-items: center !important;
  }
  .ds-u-xl-align-items--baseline {
    align-items: baseline !important;
  }
  .ds-u-xl-align-items--stretch {
    align-items: stretch !important;
  }
}
.ds-u-flex-wrap--nowrap {
  flex-wrap: nowrap !important;
}

.ds-u-flex-wrap--wrap {
  flex-wrap: wrap !important;
}

.ds-u-flex-wrap--reverse {
  flex-wrap: wrap-reverse !important;
}

@media (min-width: 544px) {
  .ds-u-sm-flex-wrap--nowrap {
    flex-wrap: nowrap !important;
  }
  .ds-u-sm-flex-wrap--wrap {
    flex-wrap: wrap !important;
  }
  .ds-u-sm-flex-wrap--reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-flex-wrap--nowrap {
    flex-wrap: nowrap !important;
  }
  .ds-u-md-flex-wrap--wrap {
    flex-wrap: wrap !important;
  }
  .ds-u-md-flex-wrap--reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-flex-wrap--nowrap {
    flex-wrap: nowrap !important;
  }
  .ds-u-lg-flex-wrap--wrap {
    flex-wrap: wrap !important;
  }
  .ds-u-lg-flex-wrap--reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-flex-wrap--nowrap {
    flex-wrap: nowrap !important;
  }
  .ds-u-xl-flex-wrap--wrap {
    flex-wrap: wrap !important;
  }
  .ds-u-xl-flex-wrap--reverse {
    flex-wrap: wrap-reverse !important;
  }
}
.ds-u-float--left {
  float: left !important;
}

.ds-u-float--right {
  float: right !important;
}

.ds-u-float--none {
  float: none !important;
}

@media (min-width: 544px) {
  .ds-u-sm-float--left {
    float: left !important;
  }
  .ds-u-sm-float--right {
    float: right !important;
  }
  .ds-u-sm-float--none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-float--left {
    float: left !important;
  }
  .ds-u-md-float--right {
    float: right !important;
  }
  .ds-u-md-float--none {
    float: none !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-float--left {
    float: left !important;
  }
  .ds-u-lg-float--right {
    float: right !important;
  }
  .ds-u-lg-float--none {
    float: none !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-float--left {
    float: left !important;
  }
  .ds-u-xl-float--right {
    float: right !important;
  }
  .ds-u-xl-float--none {
    float: none !important;
  }
}
.ds-u-clearfix:after, .ds-u-clearfix:before {
  content: "";
  display: table;
}

.ds-u-clearfix:after {
  clear: both;
}

.ds-u-focus-visible:focus-visible, .ds-u-focus-within:focus-within, .ds-u-focus:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
  position: relative;
  z-index: 100;
}

.ds-u-font-size--sm {
  font-size: var(--font-size-sm) !important;
}

.ds-u-font-size--base, .ds-u-font-size--md {
  font-size: var(--font-size-base) !important;
}

.ds-u-font-size--lg {
  font-size: var(--font-size-lg) !important;
}

.ds-u-font-size--xl {
  font-size: var(--font-size-xl) !important;
}

.ds-u-font-size--2xl {
  font-size: var(--font-size-2xl) !important;
}

.ds-u-font-size--3xl {
  font-size: var(--font-size-3xl) !important;
}

.ds-u-font-size--4xl {
  font-size: var(--font-size-4xl) !important;
}

.ds-u-font-size--5xl {
  font-size: var(--font-size-5xl) !important;
}

@media (min-width: 544px) {
  .ds-u-sm-font-size--sm {
    font-size: var(--font-size-sm) !important;
  }
  .ds-u-sm-font-size--base, .ds-u-sm-font-size--md {
    font-size: var(--font-size-base) !important;
  }
  .ds-u-sm-font-size--lg {
    font-size: var(--font-size-lg) !important;
  }
  .ds-u-sm-font-size--5xl {
    font-size: var(--font-size-5xl) !important;
  }
  .ds-u-sm-font-size--4xl {
    font-size: var(--font-size-4xl) !important;
  }
  .ds-u-sm-font-size--3xl {
    font-size: var(--font-size-3xl) !important;
  }
  .ds-u-sm-font-size--2xl {
    font-size: var(--font-size-2xl) !important;
  }
  .ds-u-sm-font-size--xl {
    font-size: var(--font-size-xl) !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-font-size--sm {
    font-size: var(--font-size-sm) !important;
  }
  .ds-u-md-font-size--base, .ds-u-md-font-size--md {
    font-size: var(--font-size-base) !important;
  }
  .ds-u-md-font-size--lg {
    font-size: var(--font-size-lg) !important;
  }
  .ds-u-md-font-size--5xl {
    font-size: var(--font-size-5xl) !important;
  }
  .ds-u-md-font-size--4xl {
    font-size: var(--font-size-4xl) !important;
  }
  .ds-u-md-font-size--3xl {
    font-size: var(--font-size-3xl) !important;
  }
  .ds-u-md-font-size--2xl {
    font-size: var(--font-size-2xl) !important;
  }
  .ds-u-md-font-size--xl {
    font-size: var(--font-size-xl) !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-font-size--sm {
    font-size: var(--font-size-sm) !important;
  }
  .ds-u-lg-font-size--base, .ds-u-lg-font-size--md {
    font-size: var(--font-size-base) !important;
  }
  .ds-u-lg-font-size--lg {
    font-size: var(--font-size-lg) !important;
  }
  .ds-u-lg-font-size--5xl {
    font-size: var(--font-size-5xl) !important;
  }
  .ds-u-lg-font-size--4xl {
    font-size: var(--font-size-4xl) !important;
  }
  .ds-u-lg-font-size--3xl {
    font-size: var(--font-size-3xl) !important;
  }
  .ds-u-lg-font-size--2xl {
    font-size: var(--font-size-2xl) !important;
  }
  .ds-u-lg-font-size--xl {
    font-size: var(--font-size-xl) !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-font-size--sm {
    font-size: var(--font-size-sm) !important;
  }
  .ds-u-xl-font-size--base, .ds-u-xl-font-size--md {
    font-size: var(--font-size-base) !important;
  }
  .ds-u-xl-font-size--lg {
    font-size: var(--font-size-lg) !important;
  }
  .ds-u-xl-font-size--5xl {
    font-size: var(--font-size-5xl) !important;
  }
  .ds-u-xl-font-size--4xl {
    font-size: var(--font-size-4xl) !important;
  }
  .ds-u-xl-font-size--3xl {
    font-size: var(--font-size-3xl) !important;
  }
  .ds-u-xl-font-size--2xl {
    font-size: var(--font-size-2xl) !important;
  }
  .ds-u-xl-font-size--xl {
    font-size: var(--font-size-xl) !important;
  }
}
.ds-u-font-style--normal {
  font-style: normal !important;
}

.ds-u-font-style--italic {
  font-style: italic !important;
}

.ds-u-font-weight--normal {
  font-weight: var(--font-weight-normal) !important;
}

.ds-u-font-weight--semibold {
  font-weight: 600 !important;
}

.ds-u-font-weight--bold {
  font-weight: var(--font-weight-bold) !important;
}

.ds-l-container {
  margin-inline: auto;
  max-width: var(--site-max-width);
  padding-inline: calc(var(--grid-gutter-width) * 0.5);
}

@media (min-width: 544px) {
  .ds-l-container {
    padding-inline: var(--grid-gutter-width);
  }
}
.ds-l-form-row, .ds-l-row {
  display: flex;
  flex-wrap: wrap;
}

.ds-l-row {
  margin-inline: calc(var(--grid-gutter-width) * -0.5);
}

.ds-l-form-row {
  margin-inline: calc(var(--grid-form-gutter-width) * -0.5);
}

.ds-l-col, .ds-l-col--1, .ds-l-col--10, .ds-l-col--11, .ds-l-col--12, .ds-l-col--2, .ds-l-col--3, .ds-l-col--4, .ds-l-col--5, .ds-l-col--6, .ds-l-col--7, .ds-l-col--8, .ds-l-col--9, .ds-l-col--auto, .ds-l-lg-col, .ds-l-lg-col--1, .ds-l-lg-col--10, .ds-l-lg-col--11, .ds-l-lg-col--12, .ds-l-lg-col--2, .ds-l-lg-col--3, .ds-l-lg-col--4, .ds-l-lg-col--5, .ds-l-lg-col--6, .ds-l-lg-col--7, .ds-l-lg-col--8, .ds-l-lg-col--9, .ds-l-lg-col--auto, .ds-l-md-col, .ds-l-md-col--1, .ds-l-md-col--10, .ds-l-md-col--11, .ds-l-md-col--12, .ds-l-md-col--2, .ds-l-md-col--3, .ds-l-md-col--4, .ds-l-md-col--5, .ds-l-md-col--6, .ds-l-md-col--7, .ds-l-md-col--8, .ds-l-md-col--9, .ds-l-md-col--auto, .ds-l-sm-col, .ds-l-sm-col--1, .ds-l-sm-col--10, .ds-l-sm-col--11, .ds-l-sm-col--12, .ds-l-sm-col--2, .ds-l-sm-col--3, .ds-l-sm-col--4, .ds-l-sm-col--5, .ds-l-sm-col--6, .ds-l-sm-col--7, .ds-l-sm-col--8, .ds-l-sm-col--9, .ds-l-sm-col--auto, .ds-l-xl-col, .ds-l-xl-col--1, .ds-l-xl-col--10, .ds-l-xl-col--11, .ds-l-xl-col--12, .ds-l-xl-col--2, .ds-l-xl-col--3, .ds-l-xl-col--4, .ds-l-xl-col--5, .ds-l-xl-col--6, .ds-l-xl-col--7, .ds-l-xl-col--8, .ds-l-xl-col--9, .ds-l-xl-col--auto {
  box-sizing: border-box;
  min-height: 1px;
  min-width: 0;
  padding-inline: calc(var(--grid-gutter-width) * 0.5);
  width: 100%;
}

.ds-l-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.ds-l-col--auto {
  flex: 0 0 auto;
  max-width: none;
  width: auto;
}

.ds-l-col--1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.ds-l-col--2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.ds-l-col--3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.ds-l-col--4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.ds-l-col--5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.ds-l-col--6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.ds-l-col--7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.ds-l-col--8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.ds-l-col--9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.ds-l-col--10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.ds-l-col--11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.ds-l-col--12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 544px) {
  .ds-l-sm-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .ds-l-sm-col--auto {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
  }
  .ds-l-sm-col--1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ds-l-sm-col--2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ds-l-sm-col--3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ds-l-sm-col--4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ds-l-sm-col--5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ds-l-sm-col--6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ds-l-sm-col--7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ds-l-sm-col--8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ds-l-sm-col--9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ds-l-sm-col--10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ds-l-sm-col--11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ds-l-sm-col--12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .ds-l-md-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .ds-l-md-col--auto {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
  }
  .ds-l-md-col--1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ds-l-md-col--2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ds-l-md-col--3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ds-l-md-col--4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ds-l-md-col--5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ds-l-md-col--6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ds-l-md-col--7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ds-l-md-col--8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ds-l-md-col--9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ds-l-md-col--10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ds-l-md-col--11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ds-l-md-col--12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .ds-l-lg-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .ds-l-lg-col--auto {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
  }
  .ds-l-lg-col--1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ds-l-lg-col--2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ds-l-lg-col--3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ds-l-lg-col--4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ds-l-lg-col--5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ds-l-lg-col--6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ds-l-lg-col--7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ds-l-lg-col--8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ds-l-lg-col--9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ds-l-lg-col--10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ds-l-lg-col--11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ds-l-lg-col--12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .ds-l-xl-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .ds-l-xl-col--auto {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
  }
  .ds-l-xl-col--1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ds-l-xl-col--2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ds-l-xl-col--3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ds-l-xl-col--4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ds-l-xl-col--5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ds-l-xl-col--6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ds-l-xl-col--7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ds-l-xl-col--8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ds-l-xl-col--9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ds-l-xl-col--10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ds-l-xl-col--11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ds-l-xl-col--12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.ds-l-form-row > .ds-l-col, .ds-l-form-row > [class*=-col-] {
  padding-inline: calc(var(--grid-form-gutter-width) * 0.5);
}

.ds-u-leading--base {
  line-height: var(--font-line-height-base) !important;
}

.ds-u-leading--lead {
  line-height: var(--font-line-height-lead) !important;
}

.ds-u-leading--heading {
  line-height: var(--font-line-height-heading) !important;
}

.ds-u-leading--reset {
  line-height: var(--font-line-height-reset) !important;
}

.ds-u-margin--0 {
  margin: 0 !important;
}

.ds-u-margin-top--0 {
  margin-block-start: 0 !important;
}

.ds-u-margin-right--0 {
  margin-inline-end: 0 !important;
}

.ds-u-margin-bottom--0 {
  margin-block-end: 0 !important;
}

.ds-u-margin-left--0 {
  margin-inline-start: 0 !important;
}

.ds-u-margin-x--0 {
  margin-inline: 0 !important;
}

.ds-u-margin-y--0 {
  margin-block: 0 !important;
}

.ds-u-margin--05 {
  margin: 4px !important;
}

.ds-u-margin-top--05 {
  margin-block-start: 4px !important;
}

.ds-u-margin-right--05 {
  margin-inline-end: 4px !important;
}

.ds-u-margin-bottom--05 {
  margin-block-end: 4px !important;
}

.ds-u-margin-left--05 {
  margin-inline-start: 4px !important;
}

.ds-u-margin-x--05 {
  margin-inline: 4px !important;
}

.ds-u-margin-y--05 {
  margin-block: 4px !important;
}

.ds-u-margin--1 {
  margin: 8px !important;
}

.ds-u-margin-top--1 {
  margin-block-start: 8px !important;
}

.ds-u-margin-right--1 {
  margin-inline-end: 8px !important;
}

.ds-u-margin-bottom--1 {
  margin-block-end: 8px !important;
}

.ds-u-margin-left--1 {
  margin-inline-start: 8px !important;
}

.ds-u-margin-x--1 {
  margin-inline: 8px !important;
}

.ds-u-margin-y--1 {
  margin-block: 8px !important;
}

.ds-u-margin--2 {
  margin: 16px !important;
}

.ds-u-margin-top--2 {
  margin-block-start: 16px !important;
}

.ds-u-margin-right--2 {
  margin-inline-end: 16px !important;
}

.ds-u-margin-bottom--2 {
  margin-block-end: 16px !important;
}

.ds-u-margin-left--2 {
  margin-inline-start: 16px !important;
}

.ds-u-margin-x--2 {
  margin-inline: 16px !important;
}

.ds-u-margin-y--2 {
  margin-block: 16px !important;
}

.ds-u-margin--3 {
  margin: 24px !important;
}

.ds-u-margin-top--3 {
  margin-block-start: 24px !important;
}

.ds-u-margin-right--3 {
  margin-inline-end: 24px !important;
}

.ds-u-margin-bottom--3 {
  margin-block-end: 24px !important;
}

.ds-u-margin-left--3 {
  margin-inline-start: 24px !important;
}

.ds-u-margin-x--3 {
  margin-inline: 24px !important;
}

.ds-u-margin-y--3 {
  margin-block: 24px !important;
}

.ds-u-margin--4 {
  margin: 32px !important;
}

.ds-u-margin-top--4 {
  margin-block-start: 32px !important;
}

.ds-u-margin-right--4 {
  margin-inline-end: 32px !important;
}

.ds-u-margin-bottom--4 {
  margin-block-end: 32px !important;
}

.ds-u-margin-left--4 {
  margin-inline-start: 32px !important;
}

.ds-u-margin-x--4 {
  margin-inline: 32px !important;
}

.ds-u-margin-y--4 {
  margin-block: 32px !important;
}

.ds-u-margin--5 {
  margin: 40px !important;
}

.ds-u-margin-top--5 {
  margin-block-start: 40px !important;
}

.ds-u-margin-right--5 {
  margin-inline-end: 40px !important;
}

.ds-u-margin-bottom--5 {
  margin-block-end: 40px !important;
}

.ds-u-margin-left--5 {
  margin-inline-start: 40px !important;
}

.ds-u-margin-x--5 {
  margin-inline: 40px !important;
}

.ds-u-margin-y--5 {
  margin-block: 40px !important;
}

.ds-u-margin--6 {
  margin: 48px !important;
}

.ds-u-margin-top--6 {
  margin-block-start: 48px !important;
}

.ds-u-margin-right--6 {
  margin-inline-end: 48px !important;
}

.ds-u-margin-bottom--6 {
  margin-block-end: 48px !important;
}

.ds-u-margin-left--6 {
  margin-inline-start: 48px !important;
}

.ds-u-margin-x--6 {
  margin-inline: 48px !important;
}

.ds-u-margin-y--6 {
  margin-block: 48px !important;
}

.ds-u-margin--7 {
  margin: 56px !important;
}

.ds-u-margin-top--7 {
  margin-block-start: 56px !important;
}

.ds-u-margin-right--7 {
  margin-inline-end: 56px !important;
}

.ds-u-margin-bottom--7 {
  margin-block-end: 56px !important;
}

.ds-u-margin-left--7 {
  margin-inline-start: 56px !important;
}

.ds-u-margin-x--7 {
  margin-inline: 56px !important;
}

.ds-u-margin-y--7 {
  margin-block: 56px !important;
}

.ds-u-margin--auto {
  margin: auto !important;
}

.ds-u-margin-top--auto {
  margin-block-start: auto !important;
}

.ds-u-margin-right--auto {
  margin-inline-end: auto !important;
}

.ds-u-margin-bottom--auto {
  margin-block-end: auto !important;
}

.ds-u-margin-left--auto {
  margin-inline-start: auto !important;
}

.ds-u-margin-x--auto {
  margin-inline: auto !important;
}

.ds-u-margin-y--auto {
  margin-block: auto !important;
}

@media (min-width: 544px) {
  .ds-u-sm-margin--0 {
    margin: 0 !important;
  }
  .ds-u-sm-margin-top--0 {
    margin-block-start: 0 !important;
  }
  .ds-u-sm-margin-right--0 {
    margin-inline-end: 0 !important;
  }
  .ds-u-sm-margin-bottom--0 {
    margin-block-end: 0 !important;
  }
  .ds-u-sm-margin-left--0 {
    margin-inline-start: 0 !important;
  }
  .ds-u-sm-margin-x--0 {
    margin-inline: 0 !important;
  }
  .ds-u-sm-margin-y--0 {
    margin-block: 0 !important;
  }
  .ds-u-sm-margin--05 {
    margin: 4px !important;
  }
  .ds-u-sm-margin-top--05 {
    margin-block-start: 4px !important;
  }
  .ds-u-sm-margin-right--05 {
    margin-inline-end: 4px !important;
  }
  .ds-u-sm-margin-bottom--05 {
    margin-block-end: 4px !important;
  }
  .ds-u-sm-margin-left--05 {
    margin-inline-start: 4px !important;
  }
  .ds-u-sm-margin-x--05 {
    margin-inline: 4px !important;
  }
  .ds-u-sm-margin-y--05 {
    margin-block: 4px !important;
  }
  .ds-u-sm-margin--1 {
    margin: 8px !important;
  }
  .ds-u-sm-margin-top--1 {
    margin-block-start: 8px !important;
  }
  .ds-u-sm-margin-right--1 {
    margin-inline-end: 8px !important;
  }
  .ds-u-sm-margin-bottom--1 {
    margin-block-end: 8px !important;
  }
  .ds-u-sm-margin-left--1 {
    margin-inline-start: 8px !important;
  }
  .ds-u-sm-margin-x--1 {
    margin-inline: 8px !important;
  }
  .ds-u-sm-margin-y--1 {
    margin-block: 8px !important;
  }
  .ds-u-sm-margin--2 {
    margin: 16px !important;
  }
  .ds-u-sm-margin-top--2 {
    margin-block-start: 16px !important;
  }
  .ds-u-sm-margin-right--2 {
    margin-inline-end: 16px !important;
  }
  .ds-u-sm-margin-bottom--2 {
    margin-block-end: 16px !important;
  }
  .ds-u-sm-margin-left--2 {
    margin-inline-start: 16px !important;
  }
  .ds-u-sm-margin-x--2 {
    margin-inline: 16px !important;
  }
  .ds-u-sm-margin-y--2 {
    margin-block: 16px !important;
  }
  .ds-u-sm-margin--3 {
    margin: 24px !important;
  }
  .ds-u-sm-margin-top--3 {
    margin-block-start: 24px !important;
  }
  .ds-u-sm-margin-right--3 {
    margin-inline-end: 24px !important;
  }
  .ds-u-sm-margin-bottom--3 {
    margin-block-end: 24px !important;
  }
  .ds-u-sm-margin-left--3 {
    margin-inline-start: 24px !important;
  }
  .ds-u-sm-margin-x--3 {
    margin-inline: 24px !important;
  }
  .ds-u-sm-margin-y--3 {
    margin-block: 24px !important;
  }
  .ds-u-sm-margin--4 {
    margin: 32px !important;
  }
  .ds-u-sm-margin-top--4 {
    margin-block-start: 32px !important;
  }
  .ds-u-sm-margin-right--4 {
    margin-inline-end: 32px !important;
  }
  .ds-u-sm-margin-bottom--4 {
    margin-block-end: 32px !important;
  }
  .ds-u-sm-margin-left--4 {
    margin-inline-start: 32px !important;
  }
  .ds-u-sm-margin-x--4 {
    margin-inline: 32px !important;
  }
  .ds-u-sm-margin-y--4 {
    margin-block: 32px !important;
  }
  .ds-u-sm-margin--5 {
    margin: 40px !important;
  }
  .ds-u-sm-margin-top--5 {
    margin-block-start: 40px !important;
  }
  .ds-u-sm-margin-right--5 {
    margin-inline-end: 40px !important;
  }
  .ds-u-sm-margin-bottom--5 {
    margin-block-end: 40px !important;
  }
  .ds-u-sm-margin-left--5 {
    margin-inline-start: 40px !important;
  }
  .ds-u-sm-margin-x--5 {
    margin-inline: 40px !important;
  }
  .ds-u-sm-margin-y--5 {
    margin-block: 40px !important;
  }
  .ds-u-sm-margin--6 {
    margin: 48px !important;
  }
  .ds-u-sm-margin-top--6 {
    margin-block-start: 48px !important;
  }
  .ds-u-sm-margin-right--6 {
    margin-inline-end: 48px !important;
  }
  .ds-u-sm-margin-bottom--6 {
    margin-block-end: 48px !important;
  }
  .ds-u-sm-margin-left--6 {
    margin-inline-start: 48px !important;
  }
  .ds-u-sm-margin-x--6 {
    margin-inline: 48px !important;
  }
  .ds-u-sm-margin-y--6 {
    margin-block: 48px !important;
  }
  .ds-u-sm-margin--7 {
    margin: 56px !important;
  }
  .ds-u-sm-margin-top--7 {
    margin-block-start: 56px !important;
  }
  .ds-u-sm-margin-right--7 {
    margin-inline-end: 56px !important;
  }
  .ds-u-sm-margin-bottom--7 {
    margin-block-end: 56px !important;
  }
  .ds-u-sm-margin-left--7 {
    margin-inline-start: 56px !important;
  }
  .ds-u-sm-margin-x--7 {
    margin-inline: 56px !important;
  }
  .ds-u-sm-margin-y--7 {
    margin-block: 56px !important;
  }
  .ds-u-sm-margin--auto {
    margin: auto !important;
  }
  .ds-u-sm-margin-top--auto {
    margin-block-start: auto !important;
  }
  .ds-u-sm-margin-right--auto {
    margin-inline-end: auto !important;
  }
  .ds-u-sm-margin-bottom--auto {
    margin-block-end: auto !important;
  }
  .ds-u-sm-margin-left--auto {
    margin-inline-start: auto !important;
  }
  .ds-u-sm-margin-x--auto {
    margin-inline: auto !important;
  }
  .ds-u-sm-margin-y--auto {
    margin-block: auto !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-margin--0 {
    margin: 0 !important;
  }
  .ds-u-md-margin-top--0 {
    margin-block-start: 0 !important;
  }
  .ds-u-md-margin-right--0 {
    margin-inline-end: 0 !important;
  }
  .ds-u-md-margin-bottom--0 {
    margin-block-end: 0 !important;
  }
  .ds-u-md-margin-left--0 {
    margin-inline-start: 0 !important;
  }
  .ds-u-md-margin-x--0 {
    margin-inline: 0 !important;
  }
  .ds-u-md-margin-y--0 {
    margin-block: 0 !important;
  }
  .ds-u-md-margin--05 {
    margin: 4px !important;
  }
  .ds-u-md-margin-top--05 {
    margin-block-start: 4px !important;
  }
  .ds-u-md-margin-right--05 {
    margin-inline-end: 4px !important;
  }
  .ds-u-md-margin-bottom--05 {
    margin-block-end: 4px !important;
  }
  .ds-u-md-margin-left--05 {
    margin-inline-start: 4px !important;
  }
  .ds-u-md-margin-x--05 {
    margin-inline: 4px !important;
  }
  .ds-u-md-margin-y--05 {
    margin-block: 4px !important;
  }
  .ds-u-md-margin--1 {
    margin: 8px !important;
  }
  .ds-u-md-margin-top--1 {
    margin-block-start: 8px !important;
  }
  .ds-u-md-margin-right--1 {
    margin-inline-end: 8px !important;
  }
  .ds-u-md-margin-bottom--1 {
    margin-block-end: 8px !important;
  }
  .ds-u-md-margin-left--1 {
    margin-inline-start: 8px !important;
  }
  .ds-u-md-margin-x--1 {
    margin-inline: 8px !important;
  }
  .ds-u-md-margin-y--1 {
    margin-block: 8px !important;
  }
  .ds-u-md-margin--2 {
    margin: 16px !important;
  }
  .ds-u-md-margin-top--2 {
    margin-block-start: 16px !important;
  }
  .ds-u-md-margin-right--2 {
    margin-inline-end: 16px !important;
  }
  .ds-u-md-margin-bottom--2 {
    margin-block-end: 16px !important;
  }
  .ds-u-md-margin-left--2 {
    margin-inline-start: 16px !important;
  }
  .ds-u-md-margin-x--2 {
    margin-inline: 16px !important;
  }
  .ds-u-md-margin-y--2 {
    margin-block: 16px !important;
  }
  .ds-u-md-margin--3 {
    margin: 24px !important;
  }
  .ds-u-md-margin-top--3 {
    margin-block-start: 24px !important;
  }
  .ds-u-md-margin-right--3 {
    margin-inline-end: 24px !important;
  }
  .ds-u-md-margin-bottom--3 {
    margin-block-end: 24px !important;
  }
  .ds-u-md-margin-left--3 {
    margin-inline-start: 24px !important;
  }
  .ds-u-md-margin-x--3 {
    margin-inline: 24px !important;
  }
  .ds-u-md-margin-y--3 {
    margin-block: 24px !important;
  }
  .ds-u-md-margin--4 {
    margin: 32px !important;
  }
  .ds-u-md-margin-top--4 {
    margin-block-start: 32px !important;
  }
  .ds-u-md-margin-right--4 {
    margin-inline-end: 32px !important;
  }
  .ds-u-md-margin-bottom--4 {
    margin-block-end: 32px !important;
  }
  .ds-u-md-margin-left--4 {
    margin-inline-start: 32px !important;
  }
  .ds-u-md-margin-x--4 {
    margin-inline: 32px !important;
  }
  .ds-u-md-margin-y--4 {
    margin-block: 32px !important;
  }
  .ds-u-md-margin--5 {
    margin: 40px !important;
  }
  .ds-u-md-margin-top--5 {
    margin-block-start: 40px !important;
  }
  .ds-u-md-margin-right--5 {
    margin-inline-end: 40px !important;
  }
  .ds-u-md-margin-bottom--5 {
    margin-block-end: 40px !important;
  }
  .ds-u-md-margin-left--5 {
    margin-inline-start: 40px !important;
  }
  .ds-u-md-margin-x--5 {
    margin-inline: 40px !important;
  }
  .ds-u-md-margin-y--5 {
    margin-block: 40px !important;
  }
  .ds-u-md-margin--6 {
    margin: 48px !important;
  }
  .ds-u-md-margin-top--6 {
    margin-block-start: 48px !important;
  }
  .ds-u-md-margin-right--6 {
    margin-inline-end: 48px !important;
  }
  .ds-u-md-margin-bottom--6 {
    margin-block-end: 48px !important;
  }
  .ds-u-md-margin-left--6 {
    margin-inline-start: 48px !important;
  }
  .ds-u-md-margin-x--6 {
    margin-inline: 48px !important;
  }
  .ds-u-md-margin-y--6 {
    margin-block: 48px !important;
  }
  .ds-u-md-margin--7 {
    margin: 56px !important;
  }
  .ds-u-md-margin-top--7 {
    margin-block-start: 56px !important;
  }
  .ds-u-md-margin-right--7 {
    margin-inline-end: 56px !important;
  }
  .ds-u-md-margin-bottom--7 {
    margin-block-end: 56px !important;
  }
  .ds-u-md-margin-left--7 {
    margin-inline-start: 56px !important;
  }
  .ds-u-md-margin-x--7 {
    margin-inline: 56px !important;
  }
  .ds-u-md-margin-y--7 {
    margin-block: 56px !important;
  }
  .ds-u-md-margin--auto {
    margin: auto !important;
  }
  .ds-u-md-margin-top--auto {
    margin-block-start: auto !important;
  }
  .ds-u-md-margin-right--auto {
    margin-inline-end: auto !important;
  }
  .ds-u-md-margin-bottom--auto {
    margin-block-end: auto !important;
  }
  .ds-u-md-margin-left--auto {
    margin-inline-start: auto !important;
  }
  .ds-u-md-margin-x--auto {
    margin-inline: auto !important;
  }
  .ds-u-md-margin-y--auto {
    margin-block: auto !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-margin--0 {
    margin: 0 !important;
  }
  .ds-u-lg-margin-top--0 {
    margin-block-start: 0 !important;
  }
  .ds-u-lg-margin-right--0 {
    margin-inline-end: 0 !important;
  }
  .ds-u-lg-margin-bottom--0 {
    margin-block-end: 0 !important;
  }
  .ds-u-lg-margin-left--0 {
    margin-inline-start: 0 !important;
  }
  .ds-u-lg-margin-x--0 {
    margin-inline: 0 !important;
  }
  .ds-u-lg-margin-y--0 {
    margin-block: 0 !important;
  }
  .ds-u-lg-margin--05 {
    margin: 4px !important;
  }
  .ds-u-lg-margin-top--05 {
    margin-block-start: 4px !important;
  }
  .ds-u-lg-margin-right--05 {
    margin-inline-end: 4px !important;
  }
  .ds-u-lg-margin-bottom--05 {
    margin-block-end: 4px !important;
  }
  .ds-u-lg-margin-left--05 {
    margin-inline-start: 4px !important;
  }
  .ds-u-lg-margin-x--05 {
    margin-inline: 4px !important;
  }
  .ds-u-lg-margin-y--05 {
    margin-block: 4px !important;
  }
  .ds-u-lg-margin--1 {
    margin: 8px !important;
  }
  .ds-u-lg-margin-top--1 {
    margin-block-start: 8px !important;
  }
  .ds-u-lg-margin-right--1 {
    margin-inline-end: 8px !important;
  }
  .ds-u-lg-margin-bottom--1 {
    margin-block-end: 8px !important;
  }
  .ds-u-lg-margin-left--1 {
    margin-inline-start: 8px !important;
  }
  .ds-u-lg-margin-x--1 {
    margin-inline: 8px !important;
  }
  .ds-u-lg-margin-y--1 {
    margin-block: 8px !important;
  }
  .ds-u-lg-margin--2 {
    margin: 16px !important;
  }
  .ds-u-lg-margin-top--2 {
    margin-block-start: 16px !important;
  }
  .ds-u-lg-margin-right--2 {
    margin-inline-end: 16px !important;
  }
  .ds-u-lg-margin-bottom--2 {
    margin-block-end: 16px !important;
  }
  .ds-u-lg-margin-left--2 {
    margin-inline-start: 16px !important;
  }
  .ds-u-lg-margin-x--2 {
    margin-inline: 16px !important;
  }
  .ds-u-lg-margin-y--2 {
    margin-block: 16px !important;
  }
  .ds-u-lg-margin--3 {
    margin: 24px !important;
  }
  .ds-u-lg-margin-top--3 {
    margin-block-start: 24px !important;
  }
  .ds-u-lg-margin-right--3 {
    margin-inline-end: 24px !important;
  }
  .ds-u-lg-margin-bottom--3 {
    margin-block-end: 24px !important;
  }
  .ds-u-lg-margin-left--3 {
    margin-inline-start: 24px !important;
  }
  .ds-u-lg-margin-x--3 {
    margin-inline: 24px !important;
  }
  .ds-u-lg-margin-y--3 {
    margin-block: 24px !important;
  }
  .ds-u-lg-margin--4 {
    margin: 32px !important;
  }
  .ds-u-lg-margin-top--4 {
    margin-block-start: 32px !important;
  }
  .ds-u-lg-margin-right--4 {
    margin-inline-end: 32px !important;
  }
  .ds-u-lg-margin-bottom--4 {
    margin-block-end: 32px !important;
  }
  .ds-u-lg-margin-left--4 {
    margin-inline-start: 32px !important;
  }
  .ds-u-lg-margin-x--4 {
    margin-inline: 32px !important;
  }
  .ds-u-lg-margin-y--4 {
    margin-block: 32px !important;
  }
  .ds-u-lg-margin--5 {
    margin: 40px !important;
  }
  .ds-u-lg-margin-top--5 {
    margin-block-start: 40px !important;
  }
  .ds-u-lg-margin-right--5 {
    margin-inline-end: 40px !important;
  }
  .ds-u-lg-margin-bottom--5 {
    margin-block-end: 40px !important;
  }
  .ds-u-lg-margin-left--5 {
    margin-inline-start: 40px !important;
  }
  .ds-u-lg-margin-x--5 {
    margin-inline: 40px !important;
  }
  .ds-u-lg-margin-y--5 {
    margin-block: 40px !important;
  }
  .ds-u-lg-margin--6 {
    margin: 48px !important;
  }
  .ds-u-lg-margin-top--6 {
    margin-block-start: 48px !important;
  }
  .ds-u-lg-margin-right--6 {
    margin-inline-end: 48px !important;
  }
  .ds-u-lg-margin-bottom--6 {
    margin-block-end: 48px !important;
  }
  .ds-u-lg-margin-left--6 {
    margin-inline-start: 48px !important;
  }
  .ds-u-lg-margin-x--6 {
    margin-inline: 48px !important;
  }
  .ds-u-lg-margin-y--6 {
    margin-block: 48px !important;
  }
  .ds-u-lg-margin--7 {
    margin: 56px !important;
  }
  .ds-u-lg-margin-top--7 {
    margin-block-start: 56px !important;
  }
  .ds-u-lg-margin-right--7 {
    margin-inline-end: 56px !important;
  }
  .ds-u-lg-margin-bottom--7 {
    margin-block-end: 56px !important;
  }
  .ds-u-lg-margin-left--7 {
    margin-inline-start: 56px !important;
  }
  .ds-u-lg-margin-x--7 {
    margin-inline: 56px !important;
  }
  .ds-u-lg-margin-y--7 {
    margin-block: 56px !important;
  }
  .ds-u-lg-margin--auto {
    margin: auto !important;
  }
  .ds-u-lg-margin-top--auto {
    margin-block-start: auto !important;
  }
  .ds-u-lg-margin-right--auto {
    margin-inline-end: auto !important;
  }
  .ds-u-lg-margin-bottom--auto {
    margin-block-end: auto !important;
  }
  .ds-u-lg-margin-left--auto {
    margin-inline-start: auto !important;
  }
  .ds-u-lg-margin-x--auto {
    margin-inline: auto !important;
  }
  .ds-u-lg-margin-y--auto {
    margin-block: auto !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-margin--0 {
    margin: 0 !important;
  }
  .ds-u-xl-margin-top--0 {
    margin-block-start: 0 !important;
  }
  .ds-u-xl-margin-right--0 {
    margin-inline-end: 0 !important;
  }
  .ds-u-xl-margin-bottom--0 {
    margin-block-end: 0 !important;
  }
  .ds-u-xl-margin-left--0 {
    margin-inline-start: 0 !important;
  }
  .ds-u-xl-margin-x--0 {
    margin-inline: 0 !important;
  }
  .ds-u-xl-margin-y--0 {
    margin-block: 0 !important;
  }
  .ds-u-xl-margin--05 {
    margin: 4px !important;
  }
  .ds-u-xl-margin-top--05 {
    margin-block-start: 4px !important;
  }
  .ds-u-xl-margin-right--05 {
    margin-inline-end: 4px !important;
  }
  .ds-u-xl-margin-bottom--05 {
    margin-block-end: 4px !important;
  }
  .ds-u-xl-margin-left--05 {
    margin-inline-start: 4px !important;
  }
  .ds-u-xl-margin-x--05 {
    margin-inline: 4px !important;
  }
  .ds-u-xl-margin-y--05 {
    margin-block: 4px !important;
  }
  .ds-u-xl-margin--1 {
    margin: 8px !important;
  }
  .ds-u-xl-margin-top--1 {
    margin-block-start: 8px !important;
  }
  .ds-u-xl-margin-right--1 {
    margin-inline-end: 8px !important;
  }
  .ds-u-xl-margin-bottom--1 {
    margin-block-end: 8px !important;
  }
  .ds-u-xl-margin-left--1 {
    margin-inline-start: 8px !important;
  }
  .ds-u-xl-margin-x--1 {
    margin-inline: 8px !important;
  }
  .ds-u-xl-margin-y--1 {
    margin-block: 8px !important;
  }
  .ds-u-xl-margin--2 {
    margin: 16px !important;
  }
  .ds-u-xl-margin-top--2 {
    margin-block-start: 16px !important;
  }
  .ds-u-xl-margin-right--2 {
    margin-inline-end: 16px !important;
  }
  .ds-u-xl-margin-bottom--2 {
    margin-block-end: 16px !important;
  }
  .ds-u-xl-margin-left--2 {
    margin-inline-start: 16px !important;
  }
  .ds-u-xl-margin-x--2 {
    margin-inline: 16px !important;
  }
  .ds-u-xl-margin-y--2 {
    margin-block: 16px !important;
  }
  .ds-u-xl-margin--3 {
    margin: 24px !important;
  }
  .ds-u-xl-margin-top--3 {
    margin-block-start: 24px !important;
  }
  .ds-u-xl-margin-right--3 {
    margin-inline-end: 24px !important;
  }
  .ds-u-xl-margin-bottom--3 {
    margin-block-end: 24px !important;
  }
  .ds-u-xl-margin-left--3 {
    margin-inline-start: 24px !important;
  }
  .ds-u-xl-margin-x--3 {
    margin-inline: 24px !important;
  }
  .ds-u-xl-margin-y--3 {
    margin-block: 24px !important;
  }
  .ds-u-xl-margin--4 {
    margin: 32px !important;
  }
  .ds-u-xl-margin-top--4 {
    margin-block-start: 32px !important;
  }
  .ds-u-xl-margin-right--4 {
    margin-inline-end: 32px !important;
  }
  .ds-u-xl-margin-bottom--4 {
    margin-block-end: 32px !important;
  }
  .ds-u-xl-margin-left--4 {
    margin-inline-start: 32px !important;
  }
  .ds-u-xl-margin-x--4 {
    margin-inline: 32px !important;
  }
  .ds-u-xl-margin-y--4 {
    margin-block: 32px !important;
  }
  .ds-u-xl-margin--5 {
    margin: 40px !important;
  }
  .ds-u-xl-margin-top--5 {
    margin-block-start: 40px !important;
  }
  .ds-u-xl-margin-right--5 {
    margin-inline-end: 40px !important;
  }
  .ds-u-xl-margin-bottom--5 {
    margin-block-end: 40px !important;
  }
  .ds-u-xl-margin-left--5 {
    margin-inline-start: 40px !important;
  }
  .ds-u-xl-margin-x--5 {
    margin-inline: 40px !important;
  }
  .ds-u-xl-margin-y--5 {
    margin-block: 40px !important;
  }
  .ds-u-xl-margin--6 {
    margin: 48px !important;
  }
  .ds-u-xl-margin-top--6 {
    margin-block-start: 48px !important;
  }
  .ds-u-xl-margin-right--6 {
    margin-inline-end: 48px !important;
  }
  .ds-u-xl-margin-bottom--6 {
    margin-block-end: 48px !important;
  }
  .ds-u-xl-margin-left--6 {
    margin-inline-start: 48px !important;
  }
  .ds-u-xl-margin-x--6 {
    margin-inline: 48px !important;
  }
  .ds-u-xl-margin-y--6 {
    margin-block: 48px !important;
  }
  .ds-u-xl-margin--7 {
    margin: 56px !important;
  }
  .ds-u-xl-margin-top--7 {
    margin-block-start: 56px !important;
  }
  .ds-u-xl-margin-right--7 {
    margin-inline-end: 56px !important;
  }
  .ds-u-xl-margin-bottom--7 {
    margin-block-end: 56px !important;
  }
  .ds-u-xl-margin-left--7 {
    margin-inline-start: 56px !important;
  }
  .ds-u-xl-margin-x--7 {
    margin-inline: 56px !important;
  }
  .ds-u-xl-margin-y--7 {
    margin-block: 56px !important;
  }
  .ds-u-xl-margin--auto {
    margin: auto !important;
  }
  .ds-u-xl-margin-top--auto {
    margin-block-start: auto !important;
  }
  .ds-u-xl-margin-right--auto {
    margin-inline-end: auto !important;
  }
  .ds-u-xl-margin-bottom--auto {
    margin-block-end: auto !important;
  }
  .ds-u-xl-margin-left--auto {
    margin-inline-start: auto !important;
  }
  .ds-u-xl-margin-x--auto {
    margin-inline: auto !important;
  }
  .ds-u-xl-margin-y--auto {
    margin-block: auto !important;
  }
}
.ds-u-measure--narrow {
  max-width: var(--measure-narrow) !important;
}

.ds-u-measure--base {
  max-width: var(--measure-base) !important;
}

.ds-u-measure--wide {
  max-width: var(--measure-wide) !important;
}

.ds-u-overflow--hidden {
  overflow: hidden !important;
}

.ds-u-overflow--scroll {
  overflow: scroll !important;
}

.ds-u-overflow--auto {
  overflow: auto !important;
}

.ds-u-padding--0 {
  padding: 0 !important;
}

.ds-u-padding-top--0 {
  padding-block-start: 0 !important;
}

.ds-u-padding-right--0 {
  padding-inline-end: 0 !important;
}

.ds-u-padding-bottom--0 {
  padding-block-end: 0 !important;
}

.ds-u-padding-left--0 {
  padding-inline-start: 0 !important;
}

.ds-u-padding-x--0 {
  padding-inline: 0 !important;
}

.ds-u-padding-y--0 {
  padding-block: 0 !important;
}

.ds-u-padding--05 {
  padding: 4px !important;
}

.ds-u-padding-top--05 {
  padding-block-start: 4px !important;
}

.ds-u-padding-right--05 {
  padding-inline-end: 4px !important;
}

.ds-u-padding-bottom--05 {
  padding-block-end: 4px !important;
}

.ds-u-padding-left--05 {
  padding-inline-start: 4px !important;
}

.ds-u-padding-x--05 {
  padding-inline: 4px !important;
}

.ds-u-padding-y--05 {
  padding-block: 4px !important;
}

.ds-u-padding--1 {
  padding: 8px !important;
}

.ds-u-padding-top--1 {
  padding-block-start: 8px !important;
}

.ds-u-padding-right--1 {
  padding-inline-end: 8px !important;
}

.ds-u-padding-bottom--1 {
  padding-block-end: 8px !important;
}

.ds-u-padding-left--1 {
  padding-inline-start: 8px !important;
}

.ds-u-padding-x--1 {
  padding-inline: 8px !important;
}

.ds-u-padding-y--1 {
  padding-block: 8px !important;
}

.ds-u-padding--2 {
  padding: 16px !important;
}

.ds-u-padding-top--2 {
  padding-block-start: 16px !important;
}

.ds-u-padding-right--2 {
  padding-inline-end: 16px !important;
}

.ds-u-padding-bottom--2 {
  padding-block-end: 16px !important;
}

.ds-u-padding-left--2 {
  padding-inline-start: 16px !important;
}

.ds-u-padding-x--2 {
  padding-inline: 16px !important;
}

.ds-u-padding-y--2 {
  padding-block: 16px !important;
}

.ds-u-padding--3 {
  padding: 24px !important;
}

.ds-u-padding-top--3 {
  padding-block-start: 24px !important;
}

.ds-u-padding-right--3 {
  padding-inline-end: 24px !important;
}

.ds-u-padding-bottom--3 {
  padding-block-end: 24px !important;
}

.ds-u-padding-left--3 {
  padding-inline-start: 24px !important;
}

.ds-u-padding-x--3 {
  padding-inline: 24px !important;
}

.ds-u-padding-y--3 {
  padding-block: 24px !important;
}

.ds-u-padding--4 {
  padding: 32px !important;
}

.ds-u-padding-top--4 {
  padding-block-start: 32px !important;
}

.ds-u-padding-right--4 {
  padding-inline-end: 32px !important;
}

.ds-u-padding-bottom--4 {
  padding-block-end: 32px !important;
}

.ds-u-padding-left--4 {
  padding-inline-start: 32px !important;
}

.ds-u-padding-x--4 {
  padding-inline: 32px !important;
}

.ds-u-padding-y--4 {
  padding-block: 32px !important;
}

.ds-u-padding--5 {
  padding: 40px !important;
}

.ds-u-padding-top--5 {
  padding-block-start: 40px !important;
}

.ds-u-padding-right--5 {
  padding-inline-end: 40px !important;
}

.ds-u-padding-bottom--5 {
  padding-block-end: 40px !important;
}

.ds-u-padding-left--5 {
  padding-inline-start: 40px !important;
}

.ds-u-padding-x--5 {
  padding-inline: 40px !important;
}

.ds-u-padding-y--5 {
  padding-block: 40px !important;
}

.ds-u-padding--6 {
  padding: 48px !important;
}

.ds-u-padding-top--6 {
  padding-block-start: 48px !important;
}

.ds-u-padding-right--6 {
  padding-inline-end: 48px !important;
}

.ds-u-padding-bottom--6 {
  padding-block-end: 48px !important;
}

.ds-u-padding-left--6 {
  padding-inline-start: 48px !important;
}

.ds-u-padding-x--6 {
  padding-inline: 48px !important;
}

.ds-u-padding-y--6 {
  padding-block: 48px !important;
}

.ds-u-padding--7 {
  padding: 56px !important;
}

.ds-u-padding-top--7 {
  padding-block-start: 56px !important;
}

.ds-u-padding-right--7 {
  padding-inline-end: 56px !important;
}

.ds-u-padding-bottom--7 {
  padding-block-end: 56px !important;
}

.ds-u-padding-left--7 {
  padding-inline-start: 56px !important;
}

.ds-u-padding-x--7 {
  padding-inline: 56px !important;
}

.ds-u-padding-y--7 {
  padding-block: 56px !important;
}

@media (min-width: 544px) {
  .ds-u-sm-padding--0 {
    padding: 0 !important;
  }
  .ds-u-sm-padding-top--0 {
    padding-block-start: 0 !important;
  }
  .ds-u-sm-padding-right--0 {
    padding-inline-end: 0 !important;
  }
  .ds-u-sm-padding-bottom--0 {
    padding-block-end: 0 !important;
  }
  .ds-u-sm-padding-left--0 {
    padding-inline-start: 0 !important;
  }
  .ds-u-sm-padding-x--0 {
    padding-inline: 0 !important;
  }
  .ds-u-sm-padding-y--0 {
    padding-block: 0 !important;
  }
  .ds-u-sm-padding--05 {
    padding: 4px !important;
  }
  .ds-u-sm-padding-top--05 {
    padding-block-start: 4px !important;
  }
  .ds-u-sm-padding-right--05 {
    padding-inline-end: 4px !important;
  }
  .ds-u-sm-padding-bottom--05 {
    padding-block-end: 4px !important;
  }
  .ds-u-sm-padding-left--05 {
    padding-inline-start: 4px !important;
  }
  .ds-u-sm-padding-x--05 {
    padding-inline: 4px !important;
  }
  .ds-u-sm-padding-y--05 {
    padding-block: 4px !important;
  }
  .ds-u-sm-padding--1 {
    padding: 8px !important;
  }
  .ds-u-sm-padding-top--1 {
    padding-block-start: 8px !important;
  }
  .ds-u-sm-padding-right--1 {
    padding-inline-end: 8px !important;
  }
  .ds-u-sm-padding-bottom--1 {
    padding-block-end: 8px !important;
  }
  .ds-u-sm-padding-left--1 {
    padding-inline-start: 8px !important;
  }
  .ds-u-sm-padding-x--1 {
    padding-inline: 8px !important;
  }
  .ds-u-sm-padding-y--1 {
    padding-block: 8px !important;
  }
  .ds-u-sm-padding--2 {
    padding: 16px !important;
  }
  .ds-u-sm-padding-top--2 {
    padding-block-start: 16px !important;
  }
  .ds-u-sm-padding-right--2 {
    padding-inline-end: 16px !important;
  }
  .ds-u-sm-padding-bottom--2 {
    padding-block-end: 16px !important;
  }
  .ds-u-sm-padding-left--2 {
    padding-inline-start: 16px !important;
  }
  .ds-u-sm-padding-x--2 {
    padding-inline: 16px !important;
  }
  .ds-u-sm-padding-y--2 {
    padding-block: 16px !important;
  }
  .ds-u-sm-padding--3 {
    padding: 24px !important;
  }
  .ds-u-sm-padding-top--3 {
    padding-block-start: 24px !important;
  }
  .ds-u-sm-padding-right--3 {
    padding-inline-end: 24px !important;
  }
  .ds-u-sm-padding-bottom--3 {
    padding-block-end: 24px !important;
  }
  .ds-u-sm-padding-left--3 {
    padding-inline-start: 24px !important;
  }
  .ds-u-sm-padding-x--3 {
    padding-inline: 24px !important;
  }
  .ds-u-sm-padding-y--3 {
    padding-block: 24px !important;
  }
  .ds-u-sm-padding--4 {
    padding: 32px !important;
  }
  .ds-u-sm-padding-top--4 {
    padding-block-start: 32px !important;
  }
  .ds-u-sm-padding-right--4 {
    padding-inline-end: 32px !important;
  }
  .ds-u-sm-padding-bottom--4 {
    padding-block-end: 32px !important;
  }
  .ds-u-sm-padding-left--4 {
    padding-inline-start: 32px !important;
  }
  .ds-u-sm-padding-x--4 {
    padding-inline: 32px !important;
  }
  .ds-u-sm-padding-y--4 {
    padding-block: 32px !important;
  }
  .ds-u-sm-padding--5 {
    padding: 40px !important;
  }
  .ds-u-sm-padding-top--5 {
    padding-block-start: 40px !important;
  }
  .ds-u-sm-padding-right--5 {
    padding-inline-end: 40px !important;
  }
  .ds-u-sm-padding-bottom--5 {
    padding-block-end: 40px !important;
  }
  .ds-u-sm-padding-left--5 {
    padding-inline-start: 40px !important;
  }
  .ds-u-sm-padding-x--5 {
    padding-inline: 40px !important;
  }
  .ds-u-sm-padding-y--5 {
    padding-block: 40px !important;
  }
  .ds-u-sm-padding--6 {
    padding: 48px !important;
  }
  .ds-u-sm-padding-top--6 {
    padding-block-start: 48px !important;
  }
  .ds-u-sm-padding-right--6 {
    padding-inline-end: 48px !important;
  }
  .ds-u-sm-padding-bottom--6 {
    padding-block-end: 48px !important;
  }
  .ds-u-sm-padding-left--6 {
    padding-inline-start: 48px !important;
  }
  .ds-u-sm-padding-x--6 {
    padding-inline: 48px !important;
  }
  .ds-u-sm-padding-y--6 {
    padding-block: 48px !important;
  }
  .ds-u-sm-padding--7 {
    padding: 56px !important;
  }
  .ds-u-sm-padding-top--7 {
    padding-block-start: 56px !important;
  }
  .ds-u-sm-padding-right--7 {
    padding-inline-end: 56px !important;
  }
  .ds-u-sm-padding-bottom--7 {
    padding-block-end: 56px !important;
  }
  .ds-u-sm-padding-left--7 {
    padding-inline-start: 56px !important;
  }
  .ds-u-sm-padding-x--7 {
    padding-inline: 56px !important;
  }
  .ds-u-sm-padding-y--7 {
    padding-block: 56px !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-padding--0 {
    padding: 0 !important;
  }
  .ds-u-md-padding-top--0 {
    padding-block-start: 0 !important;
  }
  .ds-u-md-padding-right--0 {
    padding-inline-end: 0 !important;
  }
  .ds-u-md-padding-bottom--0 {
    padding-block-end: 0 !important;
  }
  .ds-u-md-padding-left--0 {
    padding-inline-start: 0 !important;
  }
  .ds-u-md-padding-x--0 {
    padding-inline: 0 !important;
  }
  .ds-u-md-padding-y--0 {
    padding-block: 0 !important;
  }
  .ds-u-md-padding--05 {
    padding: 4px !important;
  }
  .ds-u-md-padding-top--05 {
    padding-block-start: 4px !important;
  }
  .ds-u-md-padding-right--05 {
    padding-inline-end: 4px !important;
  }
  .ds-u-md-padding-bottom--05 {
    padding-block-end: 4px !important;
  }
  .ds-u-md-padding-left--05 {
    padding-inline-start: 4px !important;
  }
  .ds-u-md-padding-x--05 {
    padding-inline: 4px !important;
  }
  .ds-u-md-padding-y--05 {
    padding-block: 4px !important;
  }
  .ds-u-md-padding--1 {
    padding: 8px !important;
  }
  .ds-u-md-padding-top--1 {
    padding-block-start: 8px !important;
  }
  .ds-u-md-padding-right--1 {
    padding-inline-end: 8px !important;
  }
  .ds-u-md-padding-bottom--1 {
    padding-block-end: 8px !important;
  }
  .ds-u-md-padding-left--1 {
    padding-inline-start: 8px !important;
  }
  .ds-u-md-padding-x--1 {
    padding-inline: 8px !important;
  }
  .ds-u-md-padding-y--1 {
    padding-block: 8px !important;
  }
  .ds-u-md-padding--2 {
    padding: 16px !important;
  }
  .ds-u-md-padding-top--2 {
    padding-block-start: 16px !important;
  }
  .ds-u-md-padding-right--2 {
    padding-inline-end: 16px !important;
  }
  .ds-u-md-padding-bottom--2 {
    padding-block-end: 16px !important;
  }
  .ds-u-md-padding-left--2 {
    padding-inline-start: 16px !important;
  }
  .ds-u-md-padding-x--2 {
    padding-inline: 16px !important;
  }
  .ds-u-md-padding-y--2 {
    padding-block: 16px !important;
  }
  .ds-u-md-padding--3 {
    padding: 24px !important;
  }
  .ds-u-md-padding-top--3 {
    padding-block-start: 24px !important;
  }
  .ds-u-md-padding-right--3 {
    padding-inline-end: 24px !important;
  }
  .ds-u-md-padding-bottom--3 {
    padding-block-end: 24px !important;
  }
  .ds-u-md-padding-left--3 {
    padding-inline-start: 24px !important;
  }
  .ds-u-md-padding-x--3 {
    padding-inline: 24px !important;
  }
  .ds-u-md-padding-y--3 {
    padding-block: 24px !important;
  }
  .ds-u-md-padding--4 {
    padding: 32px !important;
  }
  .ds-u-md-padding-top--4 {
    padding-block-start: 32px !important;
  }
  .ds-u-md-padding-right--4 {
    padding-inline-end: 32px !important;
  }
  .ds-u-md-padding-bottom--4 {
    padding-block-end: 32px !important;
  }
  .ds-u-md-padding-left--4 {
    padding-inline-start: 32px !important;
  }
  .ds-u-md-padding-x--4 {
    padding-inline: 32px !important;
  }
  .ds-u-md-padding-y--4 {
    padding-block: 32px !important;
  }
  .ds-u-md-padding--5 {
    padding: 40px !important;
  }
  .ds-u-md-padding-top--5 {
    padding-block-start: 40px !important;
  }
  .ds-u-md-padding-right--5 {
    padding-inline-end: 40px !important;
  }
  .ds-u-md-padding-bottom--5 {
    padding-block-end: 40px !important;
  }
  .ds-u-md-padding-left--5 {
    padding-inline-start: 40px !important;
  }
  .ds-u-md-padding-x--5 {
    padding-inline: 40px !important;
  }
  .ds-u-md-padding-y--5 {
    padding-block: 40px !important;
  }
  .ds-u-md-padding--6 {
    padding: 48px !important;
  }
  .ds-u-md-padding-top--6 {
    padding-block-start: 48px !important;
  }
  .ds-u-md-padding-right--6 {
    padding-inline-end: 48px !important;
  }
  .ds-u-md-padding-bottom--6 {
    padding-block-end: 48px !important;
  }
  .ds-u-md-padding-left--6 {
    padding-inline-start: 48px !important;
  }
  .ds-u-md-padding-x--6 {
    padding-inline: 48px !important;
  }
  .ds-u-md-padding-y--6 {
    padding-block: 48px !important;
  }
  .ds-u-md-padding--7 {
    padding: 56px !important;
  }
  .ds-u-md-padding-top--7 {
    padding-block-start: 56px !important;
  }
  .ds-u-md-padding-right--7 {
    padding-inline-end: 56px !important;
  }
  .ds-u-md-padding-bottom--7 {
    padding-block-end: 56px !important;
  }
  .ds-u-md-padding-left--7 {
    padding-inline-start: 56px !important;
  }
  .ds-u-md-padding-x--7 {
    padding-inline: 56px !important;
  }
  .ds-u-md-padding-y--7 {
    padding-block: 56px !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-padding--0 {
    padding: 0 !important;
  }
  .ds-u-lg-padding-top--0 {
    padding-block-start: 0 !important;
  }
  .ds-u-lg-padding-right--0 {
    padding-inline-end: 0 !important;
  }
  .ds-u-lg-padding-bottom--0 {
    padding-block-end: 0 !important;
  }
  .ds-u-lg-padding-left--0 {
    padding-inline-start: 0 !important;
  }
  .ds-u-lg-padding-x--0 {
    padding-inline: 0 !important;
  }
  .ds-u-lg-padding-y--0 {
    padding-block: 0 !important;
  }
  .ds-u-lg-padding--05 {
    padding: 4px !important;
  }
  .ds-u-lg-padding-top--05 {
    padding-block-start: 4px !important;
  }
  .ds-u-lg-padding-right--05 {
    padding-inline-end: 4px !important;
  }
  .ds-u-lg-padding-bottom--05 {
    padding-block-end: 4px !important;
  }
  .ds-u-lg-padding-left--05 {
    padding-inline-start: 4px !important;
  }
  .ds-u-lg-padding-x--05 {
    padding-inline: 4px !important;
  }
  .ds-u-lg-padding-y--05 {
    padding-block: 4px !important;
  }
  .ds-u-lg-padding--1 {
    padding: 8px !important;
  }
  .ds-u-lg-padding-top--1 {
    padding-block-start: 8px !important;
  }
  .ds-u-lg-padding-right--1 {
    padding-inline-end: 8px !important;
  }
  .ds-u-lg-padding-bottom--1 {
    padding-block-end: 8px !important;
  }
  .ds-u-lg-padding-left--1 {
    padding-inline-start: 8px !important;
  }
  .ds-u-lg-padding-x--1 {
    padding-inline: 8px !important;
  }
  .ds-u-lg-padding-y--1 {
    padding-block: 8px !important;
  }
  .ds-u-lg-padding--2 {
    padding: 16px !important;
  }
  .ds-u-lg-padding-top--2 {
    padding-block-start: 16px !important;
  }
  .ds-u-lg-padding-right--2 {
    padding-inline-end: 16px !important;
  }
  .ds-u-lg-padding-bottom--2 {
    padding-block-end: 16px !important;
  }
  .ds-u-lg-padding-left--2 {
    padding-inline-start: 16px !important;
  }
  .ds-u-lg-padding-x--2 {
    padding-inline: 16px !important;
  }
  .ds-u-lg-padding-y--2 {
    padding-block: 16px !important;
  }
  .ds-u-lg-padding--3 {
    padding: 24px !important;
  }
  .ds-u-lg-padding-top--3 {
    padding-block-start: 24px !important;
  }
  .ds-u-lg-padding-right--3 {
    padding-inline-end: 24px !important;
  }
  .ds-u-lg-padding-bottom--3 {
    padding-block-end: 24px !important;
  }
  .ds-u-lg-padding-left--3 {
    padding-inline-start: 24px !important;
  }
  .ds-u-lg-padding-x--3 {
    padding-inline: 24px !important;
  }
  .ds-u-lg-padding-y--3 {
    padding-block: 24px !important;
  }
  .ds-u-lg-padding--4 {
    padding: 32px !important;
  }
  .ds-u-lg-padding-top--4 {
    padding-block-start: 32px !important;
  }
  .ds-u-lg-padding-right--4 {
    padding-inline-end: 32px !important;
  }
  .ds-u-lg-padding-bottom--4 {
    padding-block-end: 32px !important;
  }
  .ds-u-lg-padding-left--4 {
    padding-inline-start: 32px !important;
  }
  .ds-u-lg-padding-x--4 {
    padding-inline: 32px !important;
  }
  .ds-u-lg-padding-y--4 {
    padding-block: 32px !important;
  }
  .ds-u-lg-padding--5 {
    padding: 40px !important;
  }
  .ds-u-lg-padding-top--5 {
    padding-block-start: 40px !important;
  }
  .ds-u-lg-padding-right--5 {
    padding-inline-end: 40px !important;
  }
  .ds-u-lg-padding-bottom--5 {
    padding-block-end: 40px !important;
  }
  .ds-u-lg-padding-left--5 {
    padding-inline-start: 40px !important;
  }
  .ds-u-lg-padding-x--5 {
    padding-inline: 40px !important;
  }
  .ds-u-lg-padding-y--5 {
    padding-block: 40px !important;
  }
  .ds-u-lg-padding--6 {
    padding: 48px !important;
  }
  .ds-u-lg-padding-top--6 {
    padding-block-start: 48px !important;
  }
  .ds-u-lg-padding-right--6 {
    padding-inline-end: 48px !important;
  }
  .ds-u-lg-padding-bottom--6 {
    padding-block-end: 48px !important;
  }
  .ds-u-lg-padding-left--6 {
    padding-inline-start: 48px !important;
  }
  .ds-u-lg-padding-x--6 {
    padding-inline: 48px !important;
  }
  .ds-u-lg-padding-y--6 {
    padding-block: 48px !important;
  }
  .ds-u-lg-padding--7 {
    padding: 56px !important;
  }
  .ds-u-lg-padding-top--7 {
    padding-block-start: 56px !important;
  }
  .ds-u-lg-padding-right--7 {
    padding-inline-end: 56px !important;
  }
  .ds-u-lg-padding-bottom--7 {
    padding-block-end: 56px !important;
  }
  .ds-u-lg-padding-left--7 {
    padding-inline-start: 56px !important;
  }
  .ds-u-lg-padding-x--7 {
    padding-inline: 56px !important;
  }
  .ds-u-lg-padding-y--7 {
    padding-block: 56px !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-padding--0 {
    padding: 0 !important;
  }
  .ds-u-xl-padding-top--0 {
    padding-block-start: 0 !important;
  }
  .ds-u-xl-padding-right--0 {
    padding-inline-end: 0 !important;
  }
  .ds-u-xl-padding-bottom--0 {
    padding-block-end: 0 !important;
  }
  .ds-u-xl-padding-left--0 {
    padding-inline-start: 0 !important;
  }
  .ds-u-xl-padding-x--0 {
    padding-inline: 0 !important;
  }
  .ds-u-xl-padding-y--0 {
    padding-block: 0 !important;
  }
  .ds-u-xl-padding--05 {
    padding: 4px !important;
  }
  .ds-u-xl-padding-top--05 {
    padding-block-start: 4px !important;
  }
  .ds-u-xl-padding-right--05 {
    padding-inline-end: 4px !important;
  }
  .ds-u-xl-padding-bottom--05 {
    padding-block-end: 4px !important;
  }
  .ds-u-xl-padding-left--05 {
    padding-inline-start: 4px !important;
  }
  .ds-u-xl-padding-x--05 {
    padding-inline: 4px !important;
  }
  .ds-u-xl-padding-y--05 {
    padding-block: 4px !important;
  }
  .ds-u-xl-padding--1 {
    padding: 8px !important;
  }
  .ds-u-xl-padding-top--1 {
    padding-block-start: 8px !important;
  }
  .ds-u-xl-padding-right--1 {
    padding-inline-end: 8px !important;
  }
  .ds-u-xl-padding-bottom--1 {
    padding-block-end: 8px !important;
  }
  .ds-u-xl-padding-left--1 {
    padding-inline-start: 8px !important;
  }
  .ds-u-xl-padding-x--1 {
    padding-inline: 8px !important;
  }
  .ds-u-xl-padding-y--1 {
    padding-block: 8px !important;
  }
  .ds-u-xl-padding--2 {
    padding: 16px !important;
  }
  .ds-u-xl-padding-top--2 {
    padding-block-start: 16px !important;
  }
  .ds-u-xl-padding-right--2 {
    padding-inline-end: 16px !important;
  }
  .ds-u-xl-padding-bottom--2 {
    padding-block-end: 16px !important;
  }
  .ds-u-xl-padding-left--2 {
    padding-inline-start: 16px !important;
  }
  .ds-u-xl-padding-x--2 {
    padding-inline: 16px !important;
  }
  .ds-u-xl-padding-y--2 {
    padding-block: 16px !important;
  }
  .ds-u-xl-padding--3 {
    padding: 24px !important;
  }
  .ds-u-xl-padding-top--3 {
    padding-block-start: 24px !important;
  }
  .ds-u-xl-padding-right--3 {
    padding-inline-end: 24px !important;
  }
  .ds-u-xl-padding-bottom--3 {
    padding-block-end: 24px !important;
  }
  .ds-u-xl-padding-left--3 {
    padding-inline-start: 24px !important;
  }
  .ds-u-xl-padding-x--3 {
    padding-inline: 24px !important;
  }
  .ds-u-xl-padding-y--3 {
    padding-block: 24px !important;
  }
  .ds-u-xl-padding--4 {
    padding: 32px !important;
  }
  .ds-u-xl-padding-top--4 {
    padding-block-start: 32px !important;
  }
  .ds-u-xl-padding-right--4 {
    padding-inline-end: 32px !important;
  }
  .ds-u-xl-padding-bottom--4 {
    padding-block-end: 32px !important;
  }
  .ds-u-xl-padding-left--4 {
    padding-inline-start: 32px !important;
  }
  .ds-u-xl-padding-x--4 {
    padding-inline: 32px !important;
  }
  .ds-u-xl-padding-y--4 {
    padding-block: 32px !important;
  }
  .ds-u-xl-padding--5 {
    padding: 40px !important;
  }
  .ds-u-xl-padding-top--5 {
    padding-block-start: 40px !important;
  }
  .ds-u-xl-padding-right--5 {
    padding-inline-end: 40px !important;
  }
  .ds-u-xl-padding-bottom--5 {
    padding-block-end: 40px !important;
  }
  .ds-u-xl-padding-left--5 {
    padding-inline-start: 40px !important;
  }
  .ds-u-xl-padding-x--5 {
    padding-inline: 40px !important;
  }
  .ds-u-xl-padding-y--5 {
    padding-block: 40px !important;
  }
  .ds-u-xl-padding--6 {
    padding: 48px !important;
  }
  .ds-u-xl-padding-top--6 {
    padding-block-start: 48px !important;
  }
  .ds-u-xl-padding-right--6 {
    padding-inline-end: 48px !important;
  }
  .ds-u-xl-padding-bottom--6 {
    padding-block-end: 48px !important;
  }
  .ds-u-xl-padding-left--6 {
    padding-inline-start: 48px !important;
  }
  .ds-u-xl-padding-x--6 {
    padding-inline: 48px !important;
  }
  .ds-u-xl-padding-y--6 {
    padding-block: 48px !important;
  }
  .ds-u-xl-padding--7 {
    padding: 56px !important;
  }
  .ds-u-xl-padding-top--7 {
    padding-block-start: 56px !important;
  }
  .ds-u-xl-padding-right--7 {
    padding-inline-end: 56px !important;
  }
  .ds-u-xl-padding-bottom--7 {
    padding-block-end: 56px !important;
  }
  .ds-u-xl-padding-left--7 {
    padding-inline-start: 56px !important;
  }
  .ds-u-xl-padding-x--7 {
    padding-inline: 56px !important;
  }
  .ds-u-xl-padding-y--7 {
    padding-block: 56px !important;
  }
}
.ds-u-text-align--center {
  text-align: center !important;
}

.ds-u-text-align--left {
  text-align: start !important;
}

.ds-u-text-align--right {
  text-align: end !important;
}

@media (min-width: 544px) {
  .ds-u-sm-text-align--center {
    text-align: center !important;
  }
  .ds-u-sm-text-align--left {
    text-align: start !important;
  }
  .ds-u-sm-text-align--right {
    text-align: end !important;
  }
}
@media (min-width: 768px) {
  .ds-u-md-text-align--center {
    text-align: center !important;
  }
  .ds-u-md-text-align--left {
    text-align: start !important;
  }
  .ds-u-md-text-align--right {
    text-align: end !important;
  }
}
@media (min-width: 1024px) {
  .ds-u-lg-text-align--center {
    text-align: center !important;
  }
  .ds-u-lg-text-align--left {
    text-align: start !important;
  }
  .ds-u-lg-text-align--right {
    text-align: end !important;
  }
}
@media (min-width: 1280px) {
  .ds-u-xl-text-align--center {
    text-align: center !important;
  }
  .ds-u-xl-text-align--left {
    text-align: start !important;
  }
  .ds-u-xl-text-align--right {
    text-align: end !important;
  }
}
.ds-u-color--primary:not(:focus) {
  color: var(--color-primary) !important;
}

.ds-u-color--primary-darker:not(:focus) {
  color: var(--color-primary-darker) !important;
}

.ds-u-color--primary-darkest:not(:focus) {
  color: var(--color-primary-darkest) !important;
}

.ds-u-color--secondary:not(:focus) {
  color: var(--color-secondary) !important;
}

.ds-u-color--secondary-light:not(:focus) {
  color: var(--color-secondary-light) !important;
}

.ds-u-color--secondary-lighter:not(:focus) {
  color: var(--color-secondary-lighter) !important;
}

.ds-u-color--secondary-lightest:not(:focus) {
  color: var(--color-secondary-lightest) !important;
}

.ds-u-color--secondary-dark:not(:focus) {
  color: var(--color-secondary-dark) !important;
}

.ds-u-color--secondary-darker:not(:focus) {
  color: var(--color-secondary-darker) !important;
}

.ds-u-color--secondary-darkest:not(:focus) {
  color: var(--color-secondary-darkest) !important;
}

.ds-u-color--gray:not(:focus) {
  color: var(--color-gray) !important;
}

.ds-u-color--gray-lightest:not(:focus) {
  color: var(--color-gray-lightest) !important;
}

.ds-u-color--gray-lighter:not(:focus) {
  color: var(--color-gray-lighter) !important;
}

.ds-u-color--gray-light:not(:focus) {
  color: var(--color-gray-light) !important;
}

.ds-u-color--gray-dark:not(:focus) {
  color: var(--color-gray-dark) !important;
}

.ds-u-color--muted:not(:focus) {
  color: var(--color-muted) !important;
}

.ds-u-color--error:not(:focus) {
  color: var(--color-error) !important;
}

.ds-u-color--error-dark:not(:focus) {
  color: var(--color-error-dark) !important;
}

.ds-u-color--error-darkest:not(:focus) {
  color: var(--color-error-darkest) !important;
}

.ds-u-color--error-light:not(:focus) {
  color: var(--color-error-light) !important;
}

.ds-u-color--success:not(:focus) {
  color: var(--color-success) !important;
}

.ds-u-color--base:not(:focus) {
  color: var(--color-base) !important;
}

.ds-u-color--base-inverse:not(:focus) {
  color: var(--color-base-inverse) !important;
}

.ds-u-color--muted-inverse:not(:focus) {
  color: var(--color-muted-inverse) !important;
}

.ds-u-color--black:not(:focus) {
  color: var(--color-black) !important;
}

.ds-u-color--white:not(:focus) {
  color: var(--color-white) !important;
}

.ds-u-color--inherit:not(:focus) {
  color: inherit !important;
}

.ds-u-text-decoration--underline {
  text-decoration: underline !important;
}

.ds-u-text-decoration--line-through {
  text-decoration: line-through !important;
}

.ds-u-text-decoration--none {
  text-decoration: none !important;
}

.ds-u-text-transform--uppercase {
  text-transform: uppercase !important;
}

.ds-u-text-transform--lowercase {
  text-transform: lowercase !important;
}

.ds-u-text-transform--capitalize {
  text-transform: capitalize !important;
}

.ds-u-valign--top {
  vertical-align: top !important;
}

.ds-u-valign--middle {
  vertical-align: middle !important;
}

.ds-u-valign--bottom {
  vertical-align: bottom !important;
}

.ds-u-word-break {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ds-c-accordion {
  color: var(--accordion__color);
}

.ds-c-accordion__heading {
  font: inherit;
  margin-block: 0;
}

.ds-c-accordion__heading:not(:first-child), ds-accordion-item:not(:first-child) {
  margin-block-start: 8px;
}

.ds-c-accordion__button {
  background-color: var(--accordion__background-color);
  border: 0;
  border-radius: var(--accordion__border-top-left-radius) var(--accordion__border-top-right-radius) var(--accordion__border-bottom-right-radius) var(--accordion__border-bottom-left-radius);
  color: var(--accordion-button__color);
  display: flex;
  font-weight: var(--font-weight-bold);
  justify-content: space-between;
  padding: 16px 24px;
  text-align: start;
  width: 100%;
}

.ds-c-accordion__button:hover {
  background-color: var(--accordion__background-color--hover);
}

.ds-c-accordion__button:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

@media (forced-colors: active) {
  .ds-c-accordion__button {
    -ms-high-contrast-adjust: none;
    background-color: LinkText;
    color: window;
    forced-color-adjust: none;
  }
  .ds-c-accordion__button:focus, .ds-c-accordion__button:hover {
    -ms-high-contrast-adjust: none;
    background-color: window;
    color: LinkText;
    forced-color-adjust: none;
    outline: 4px solid LinkText;
    outline-offset: -4px;
  }
}
.ds-c-accordion__button .ds-c-icon {
  flex-shrink: 0;
  height: 1.25em;
  width: 1.25em;
}

@media (forced-colors: active) {
  .ds-c-accordion__button .ds-c-icon path {
    fill: Window;
  }
}
.ds-c-accordion__content {
  background-color: var(--accordion-content__background-color);
  overflow: auto;
  padding: 16px 24px 8px 32px;
}

.ds-c-accordion__content > :first-child {
  margin-block-start: 0;
}

.ds-c-accordion__content > :last-child {
  margin-block-end: 0;
}

.ds-c-accordion--bordered .ds-c-accordion__content {
  border: var(--accordion__border-width) solid var(--accordion__border-color);
  border-block-start: 0;
  padding: 16px;
}

.ds-c-alert {
  background-color: var(--alert__background-color);
  border-inline-start: var(--alert-bar__width) solid var(--alert__border-left-color);
  color: var(--alert__font-color);
  display: flex;
  padding: var(--alert__padding);
}

.ds-c-alert ul:last-child {
  margin-block-end: 0;
}

.ds-c-alert ul:first-child {
  margin-block-start: 0;
}

@media (forced-colors: active) {
  .ds-c-alert {
    border: 1px solid windowText;
    border-inline-start: var(--alert-bar__width) solid windowText;
  }
}
.ds-c-alert.ds-c-alert--lightweight {
  background-color: var(--alert__background-color--lightweight);
}

.ds-c-alert__a11y-label {
  margin-inline-end: 0.5rem;
}

@media (forced-colors: active) {
  .ds-c-alert__a11y-label {
    clip: auto !important;
    word-wrap: normal !important;
    border: none !important;
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    position: relative !important;
    width: auto !important;
  }
}
.ds-c-alert__header {
  display: flex;
}

.ds-c-alert__icon.ds-c-icon {
  flex-shrink: 0;
  font-size: var(--alert__icon-size);
  height: 1em;
  margin-inline-start: 8px;
  width: 1em;
}

.ds-c-alert__body {
  min-width: 0;
  padding-inline-start: 16px;
}

.ds-c-alert--hide-icon .ds-c-alert__body {
  padding-inline-start: 0;
}

.ds-c-alert__heading {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-block: 0 4px;
}

.ds-c-alert__text {
  margin-block: 0;
}

.ds-c-alert--error {
  background-color: var(--alert__background-color--error);
  border-color: var(--alert__border-color--error);
}

.ds-c-alert--warn {
  background-color: var(--alert__background-color--warn);
  border-color: var(--alert__border-color--warn);
}

.ds-c-alert--success {
  background-color: var(--alert__background-color--success);
  border-color: var(--alert__border-color--success);
}

.ds-c-autocomplete, .ds-c-dropdown {
  max-width: var(--field-max-width);
  position: relative;
}

.ds-c-dropdown__button.ds-c-field {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-background);
  display: flex;
  gap: 2ch;
  justify-content: space-between;
  text-align: start;
}

.ds-c-dropdown__button.ds-c-field[aria-expanded=true] {
  border-block-end-color: rgba(0, 0, 0, 0);
}

.ds-c-dropdown--open .ds-c-dropdown__button.ds-c-field {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-dropdown__label {
  margin-block: 1.5em 0;
}

.ds-c-dropdown__label-text {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-c-dropdown__caret {
  flex-basis: 0 0 auto;
}

[aria-expanded=true] .ds-c-dropdown__caret {
  transform: rotate(0deg);
}

[aria-expanded=false] .ds-c-dropdown__caret {
  transform: rotate(180deg);
}

.ds-c-autocomplete__menu-container, .ds-c-dropdown__menu-container {
  --blur-radius:17px;
  --clip-path-value:calc(var(--blur-radius)*-1);
  --max-height:320px;
  background-color: var(--color-background);
  border: var(--text-input__border-width) solid var(--text-input__border-color);
  border-block-start: none;
  border-end-end-radius: var(--text-input__border-radius);
  border-end-start-radius: var(--text-input__border-radius);
  box-shadow: 0 0 var(--blur-radius) 0 var(--color-gray-light);
  clip-path: inset(0 var(--clip-path-value) var(--clip-path-value) var(--clip-path-value));
  margin-block-start: calc(var(--text-input__border-width) * -1);
  max-height: var(--max-height);
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.ds-c-field--inverse + .ds-c-autocomplete__menu-container, .ds-c-field--inverse + .ds-c-dropdown__menu-container {
  color: var(--color-base);
}

.ds-c-autocomplete__menu, .ds-c-dropdown__menu {
  list-style: none;
  margin: 0;
  max-height: calc(var(--max-height) - var(--text-input__border-width));
  overflow-y: auto;
  padding: 0;
}

.ds-c-dropdown__menu-item, .ds-c-dropdown__menu-item-group-label {
  cursor: default;
  padding: var(--text-input__padding);
}

.ds-c-dropdown__menu-item-group-label {
  font-weight: var(--font-weight-bold);
}

.ds-c-dropdown__menu-item-group ul[role=group] {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ds-c-dropdown__menu-item-group .ds-c-dropdown__menu-item {
  padding-inline-start: calc(var(--text-input__padding) + var(--spacer-2));
}

.ds-c-autocomplete__menu-item--highlighted, .ds-c-dropdown__menu-item--highlighted {
  background-color: var(--color-primary-lightest);
  outline: none;
}

@media (forced-colors: active) {
  .ds-c-autocomplete__menu-item--highlighted, .ds-c-dropdown__menu-item--highlighted {
    -ms-high-contrast-adjust: none;
    background-color: Highlight;
    color: HighlightText;
    forced-color-adjust: none;
  }
}
.ds-c-dropdown__menu-item--selected {
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  font-weight: var(--font-weight-bold);
}

@media (forced-colors: active) {
  .ds-c-dropdown__menu-item--selected {
    -ms-high-contrast-adjust: none;
    background-color: WindowText;
    color: Window;
    forced-color-adjust: none;
  }
}
.ds-c-dropdown__menu-item-selected-indicator {
  padding-inline-end: var(--spacer-1);
}

@media (forced-colors: active) {
  .ds-c-dropdown__menu-item-selected-indicator .ds-c-icon path {
    fill: currentColor;
  }
}
.ds-c-autocomplete__label {
  margin: 0;
  padding: 8px;
}

.ds-c-autocomplete__menu-item {
  padding: var(--text-input__padding);
}

.ds-c-autocomplete__menu-item-message {
  color: var(--color-muted);
  padding: var(--text-input__padding);
}

@media (forced-colors: active) {
  .ds-c-autocomplete__menu-item--highlighted {
    -ms-high-contrast-adjust: none;
    background-color: Highlight;
    color: HighlightText;
    forced-color-adjust: none;
  }
}
.ds-c-autocomplete__menu-item-selected-indicator {
  display: none;
}

.ds-c-autocomplete__error-message {
  float: left;
}

.ds-c-autocomplete__error-message-clear-btn {
  width: calc(100% - 110px);
}

.ds-c-autocomplete__clear-btn {
  float: right;
  margin-block-start: 4px;
  margin-inline-end: 0;
}

.ds-c-badge {
  background-color: var(--badge__background-color);
  border-radius: var(--badge__border-radius);
  color: var(--badge__font-color);
  display: inline-block;
  font-size: var(--font-size-sm);
  line-height: var(--font-line-height-heading);
  margin-inline-end: 4px;
  padding: 4px 8px;
}

.ds-c-badge:only-of-type {
  margin-inline-end: 0;
}

@media (forced-colors: active) {
  .ds-c-badge > span {
    clip: auto;
    word-wrap: normal;
    border: none;
    height: auto;
    overflow: visible;
    padding: 0;
    position: relative;
    width: auto;
  }
  .ds-c-badge {
    -ms-high-contrast-adjust: none;
    background-color: windowText;
    color: window;
    forced-color-adjust: none;
  }
}
.ds-c-badge--big {
  font-size: var(--font-size-base);
}

.ds-c-badge--info {
  background-color: var(--badge__background-color--info);
  color: var(--badge__font-color--info);
}

@media (forced-colors: active) {
  .ds-c-badge--info {
    -ms-high-contrast-adjust: none;
    background-color: windowText;
    color: window;
    forced-color-adjust: none;
  }
}
.ds-c-badge--success {
  background-color: var(--badge__background-color--success);
  color: var(--badge__font-color--success);
}

@media (forced-colors: active) {
  .ds-c-badge--success {
    -ms-high-contrast-adjust: none;
    background-color: windowText;
    color: window;
    forced-color-adjust: none;
  }
}
.ds-c-badge--warn {
  background-color: var(--badge__background-color--warn);
  color: var(--badge__font-color--warn);
}

@media (forced-colors: active) {
  .ds-c-badge--warn {
    -ms-high-contrast-adjust: none;
    background-color: windowText;
    color: window;
    forced-color-adjust: none;
  }
}
.ds-c-badge--alert {
  background-color: var(--badge__background-color--alert);
  color: var(--badge__font-color--alert);
}

@media (forced-colors: active) {
  .ds-c-badge--alert {
    -ms-high-contrast-adjust: none;
    background-color: windowText;
    color: window;
    forced-color-adjust: none;
  }
}
.ds-c-button, .ds-c-button:visited {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--backgroundColor, var(--button__background-color));
  border: var(--button__border-width) solid var(--borderColor, var(--button__border-color));
  border-radius: var(--button__border-radius);
  color: var(--color, var(--button__color));
  display: inline-block;
  font-family: var(--font-family-body);
  font-weight: var(--fontWeight, var(--font-weight-button-md));
  line-height: 1.3;
  padding: var(--space, 8px 24px);
  text-align: center;
}

.ds-c-button:is(a), .ds-c-button:visited:is(a) {
  text-decoration: none;
}

.ds-c-button:is(a):focus, .ds-c-button:visited:is(a):focus {
  background-color: var(--backgroundColor, var(--button__background-color));
  color: var(--color, var(--button__color));
  text-decoration: none;
}

.ds-c-button:is(a)[aria-disabled=true], .ds-c-button:visited:is(a)[aria-disabled=true] {
  pointer-events: none;
}

.ds-c-button:visited > svg, .ds-c-button > svg {
  fill: currentColor;
  height: 1em;
  margin-block: -0.1em;
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  width: 1em;
}

@media (forced-colors: active) {
  .ds-c-button:visited > svg, .ds-c-button > svg {
    fill: ButtonText;
  }
}
.ds-c-button:hover, .ds-c-button:hover:focus, .ds-c-button:visited:hover, .ds-c-button:visited:hover:focus {
  background-color: var(--backgroundColor--h, var(--button__background-color--hover));
  border-color: var(--borderColor--h, var(--button__border-color--hover));
  color: var(--color--h, var(--button__color--hover));
}

.ds-c-button:focus, .ds-c-button:visited:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-button:active, .ds-c-button:active:focus, .ds-c-button:visited:active, .ds-c-button:visited:active:focus {
  background-color: var(--backgroundColor--a, var(--button__background-color--active));
  border-color: var(--borderColor--a, var(--button__border-color--active));
  color: var(--color--a, var(--button__color--active));
}

.ds-c-button:active:focus, .ds-c-button:visited:active:focus {
  box-shadow: none;
}

.ds-c-button:disabled, .ds-c-button:visited:disabled, .ds-c-button:visited[aria-disabled=true], .ds-c-button:visited[aria-disabled=true]:is(:hover, :hover:focus, :focus, :active, :active:focus), .ds-c-button[aria-disabled=true], .ds-c-button[aria-disabled=true]:is(:hover, :hover:focus, :focus, :active, :active:focus) {
  background-color: var(--backgroundColor--d, var(--button__background-color--disabled));
  border-color: var(--borderColor--d, var(--button__border-color--disabled));
  color: var(--color--d, var(--button__color--disabled));
  cursor: not-allowed;
}

.ds-c-button.ds-c-button--alternate {
  --backgroundColor:var(--button-alt__background-color);
  --borderColor:var(--button-alt__border-color);
  --color:var(--button-alt__color);
  --backgroundColor--h:var(--button-alt__background-color--hover);
  --borderColor--h:var(--button-alt__border-color--hover);
  --color--h:var(--button-alt__color--hover);
  --backgroundColor--a:var(--button-alt__background-color--active);
  --borderColor--a:var(--button-alt__border-color--active);
  --color--a:var(--button-alt__color--active);
  --backgroundColor--d:var(--button-alt__background-color--disabled);
  --borderColor--d:var(--button-alt__border-color--disabled);
  --color--d:var(--button-alt__color--disabled);
}

.ds-c-button.ds-c-button--on-dark {
  --backgroundColor:var(--button-dark__background-color);
  --borderColor:var(--button-dark__border-color);
  --color:var(--button-dark__color);
  --backgroundColor--h:var(--button-dark__background-color--hover);
  --borderColor--h:var(--button-dark__border-color--hover);
  --color--h:var(--button-dark__color--hover);
  --backgroundColor--a:var(--button-dark__background-color--active);
  --borderColor--a:var(--button-dark__border-color--active);
  --color--a:var(--button-dark__color--active);
  --backgroundColor--d:var(--button-dark__background-color--disabled);
  --borderColor--d:var(--button-dark__border-color--disabled);
  --color--d:var(--button-dark__color--disabled);
}

.ds-c-button.ds-c-button--alternate.ds-c-button--on-dark {
  --backgroundColor:var(--button-dark-alt__background-color);
  --borderColor:var(--button-dark-alt__border-color);
  --color:var(--button-dark-alt__color);
  --backgroundColor--h:var(--button-dark-alt__background-color--hover);
  --borderColor--h:var(--button-dark-alt__border-color--hover);
  --color--h:var(--button-dark-alt__color--hover);
  --backgroundColor--a:var(--button-dark-alt__background-color--active);
  --borderColor--a:var(--button-dark-alt__border-color--active);
  --color--a:var(--button-dark-alt__color--active);
  --backgroundColor--d:var(--button-dark-alt__background-color--disabled);
  --borderColor--d:var(--button-dark-alt__border-color--disabled);
  --color--d:var(--button-dark-alt__color--disabled);
}

.ds-c-button--solid {
  --backgroundColor:var(--button-solid__background-color);
  --borderColor:var(--button-solid__border-color);
  --color:var(--button-solid__color);
  --backgroundColor--h:var(--button-solid__background-color--hover);
  --borderColor--h:var(--button-solid__border-color--hover);
  --color--h:var(--button-solid__color--hover);
  --backgroundColor--a:var(--button-solid__background-color--active);
  --borderColor--a:var(--button-solid__border-color--active);
  --color--a:var(--button-solid__color--active);
  --backgroundColor--d:var(--button-solid__background-color--disabled);
  --borderColor--d:var(--button-solid__border-color--disabled);
  --color--d:var(--button-solid__color--disabled);
}

.ds-c-button--solid.ds-c-button--alternate {
  --backgroundColor:var(--button-solid-alt__background-color);
  --borderColor:var(--button-solid-alt__border-color);
  --color:var(--button-solid-alt__color);
  --backgroundColor--h:var(--button-solid-alt__background-color--hover);
  --borderColor--h:var(--button-solid-alt__border-color--hover);
  --color--h:var(--button-solid-alt__color--hover);
  --backgroundColor--a:var(--button-solid-alt__background-color--active);
  --borderColor--a:var(--button-solid-alt__border-color--active);
  --color--a:var(--button-solid-alt__color--active);
  --backgroundColor--d:var(--button-solid-alt__background-color--disabled);
  --borderColor--d:var(--button-solid-alt__border-color--disabled);
  --color--d:var(--button-solid-alt__color--disabled);
}

.ds-c-button--solid.ds-c-button--on-dark {
  --backgroundColor:var(--button-solid-dark__background-color);
  --borderColor:var(--button-solid-dark__border-color);
  --color:var(--button-solid-dark__color);
  --backgroundColor--h:var(--button-solid-dark__background-color--hover);
  --borderColor--h:var(--button-solid-dark__border-color--hover);
  --color--h:var(--button-solid-dark__color--hover);
  --backgroundColor--a:var(--button-solid-dark__background-color--active);
  --borderColor--a:var(--button-solid-dark__border-color--active);
  --color--a:var(--button-solid-dark__color--active);
  --backgroundColor--d:var(--button-solid-dark__background-color--disabled);
  --borderColor--d:var(--button-solid-dark__border-color--disabled);
  --color--d:var(--button-solid-dark__color--disabled);
}

.ds-c-button--solid.ds-c-button--alternate.ds-c-button--on-dark {
  --backgroundColor:var(--button-solid-dark-alt__background-color);
  --borderColor:var(--button-solid-dark-alt__border-color);
  --color:var(--button-solid-dark-alt__color);
  --backgroundColor--h:var(--button-solid-dark-alt__background-color--hover);
  --borderColor--h:var(--button-solid-dark-alt__border-color--hover);
  --color--h:var(--button-solid-dark-alt__color--hover);
  --backgroundColor--a:var(--button-solid-dark-alt__background-color--active);
  --borderColor--a:var(--button-solid-dark-alt__border-color--active);
  --color--a:var(--button-solid-dark-alt__color--active);
  --backgroundColor--d:var(--button-solid-dark-alt__background-color--disabled);
  --borderColor--d:var(--button-solid-dark-alt__border-color--disabled);
  --color--d:var(--button-solid-dark-alt__color--disabled);
}

.ds-c-button--ghost {
  --backgroundColor:var(--button-ghost__background-color);
  --borderColor:var(--button-ghost__border-color);
  --color:var(--button-ghost__color);
  --backgroundColor--h:var(--button-ghost__background-color--hover);
  --borderColor--h:var(--button-ghost__border-color--hover);
  --color--h:var(--button-ghost__color--hover);
  --backgroundColor--a:var(--button-ghost__background-color--active);
  --borderColor--a:var(--button-ghost__border-color--active);
  --color--a:var(--button-ghost__color--active);
  --backgroundColor--d:var(--button-ghost__background-color--disabled);
  --borderColor--d:var(--button-ghost__border-color--disabled);
  --color--d:var(--button-ghost__color--disabled);
  text-decoration: underline;
  text-decoration-color: initial;
  text-decoration-thickness: var(--link__text-decoration-thickness);
  text-underline-offset: var(--link__text-decoration-offset);
}

.ds-c-button--ghost:is(a) {
  text-decoration: underline;
}

.ds-c-button--ghost:is(a):active, .ds-c-button--ghost:is(a):hover {
  text-decoration: underline;
  text-decoration-color: inherit;
  text-decoration-thickness: var(--link__text-decoration-thickness--hover);
}

.ds-c-button--ghost.ds-c-button--disabled, .ds-c-button--ghost:disabled {
  text-decoration-color: rgba(0, 0, 0, 0);
}

.ds-c-button--ghost.ds-c-button--disabled:is(a), .ds-c-button--ghost:disabled:is(a) {
  text-decoration: underline;
  text-decoration-color: inherit;
}

.ds-c-button--ghost.ds-c-button--alternate {
  --backgroundColor:var(--button-ghost-alt__background-color);
  --borderColor:var(--button-ghost-alt__border-color);
  --color:var(--button-ghost-alt__color);
  --backgroundColor--h:var(--button-ghost-alt__background-color--hover);
  --borderColor--h:var(--button-ghost-alt__border-color--hover);
  --color--h:var(--button-ghost-alt__color--hover);
  --backgroundColor--a:var(--button-ghost-alt__background-color--active);
  --borderColor--a:var(--button-ghost-alt__border-color--active);
  --color--a:var(--button-ghost-alt__color--active);
  --backgroundColor--d:var(--button-ghost-alt__background-color--disabled);
  --borderColor--d:var(--button-ghost-alt__border-color--disabled);
  --color--d:var(--button-ghost-alt__color--disabled);
}

.ds-c-button--ghost.ds-c-button--on-dark {
  --backgroundColor:var(--button-ghost-dark__background-color);
  --borderColor:var(--button-ghost-dark__border-color);
  --color:var(--button-ghost-dark__color);
  --backgroundColor--h:var(--button-ghost-dark__background-color--hover);
  --borderColor--h:var(--button-ghost-dark__border-color--hover);
  --color--h:var(--button-ghost-dark__color--hover);
  --backgroundColor--a:var(--button-ghost-dark__background-color--active);
  --borderColor--a:var(--button-ghost-dark__border-color--active);
  --color--a:var(--button-ghost-dark__color--active);
  --backgroundColor--d:var(--button-ghost-dark__background-color--disabled);
  --borderColor--d:var(--button-ghost-dark__border-color--disabled);
  --color--d:var(--button-ghost-dark__color--disabled);
}

.ds-c-button--ghost.ds-c-button--alternate.ds-c-button--on-dark {
  --backgroundColor:var(--button-ghost-dark-alt__background-color);
  --borderColor:var(--button-ghost-dark-alt__border-color);
  --color:var(--button-ghost-dark-alt__color);
  --backgroundColor--h:var(--button-ghost-dark-alt__background-color--hover);
  --borderColor--h:var(--button-ghost-dark-alt__border-color--hover);
  --color--h:var(--button-ghost-dark-alt__color--hover);
  --backgroundColor--a:var(--button-ghost-dark-alt__background-color--active);
  --borderColor--a:var(--button-ghost-dark-alt__border-color--active);
  --color--a:var(--button-ghost-dark-alt__color--active);
  --backgroundColor--d:var(--button-ghost-dark-alt__background-color--disabled);
  --borderColor--d:var(--button-ghost-dark-alt__border-color--disabled);
  --color--d:var(--button-ghost-dark-alt__color--disabled);
}

.ds-c-button--big {
  --fontWeight:var(--font-weight-button-lg);
  --space:16px 24px;
  font-size: var(--font-size-xl);
}

.ds-c-button--small {
  --fontWeight:var(--font-weight-button-sm);
  --space:4px 8px;
  font-size: var(--font-size-sm);
}

.ds-c-choice-wrapper {
  column-gap: var(--choice-wrapper__gap);
  display: grid;
  grid-template-areas: "check label" "check hint" "check error-message";
  grid-template-columns: min-content 1fr;
  margin-block-start: 8px;
  max-width: var(--measure-wide);
}

.ds-c-choice-wrapper:has(.ds-c-choice--small) {
  column-gap: var(--choice-wrapper__gap--small);
}

.ds-c-choice-wrapper .ds-c-hint--inverse, .ds-c-choice-wrapper .ds-c-inline-error, .ds-c-choice-wrapper .ds-c-label {
  max-width: max-content;
}

.ds-c-choice + .ds-c-label, .ds-c-choice + label {
  cursor: pointer;
  font-weight: var(--font-weight-normal);
  grid-area: label;
  margin-block-start: var(--choice-label__top-offset);
}

.ds-c-choice--small + .ds-c-label, .ds-c-choice--small + label {
  margin-block-start: -0.125em;
}

.ds-c-choice:disabled + .ds-c-label, .ds-c-choice:disabled + label {
  color: var(--choice-label__color--disabled);
}

.ds-c-choice.ds-c-choice--inverse:disabled + .ds-c-label, .ds-c-choice.ds-c-choice--inverse:disabled + label {
  color: var(--choice-label__color--disabled--inverse);
}

.ds-c-choice.ds-c-choice--inverse:disabled + .ds-c-label, .ds-c-choice.ds-c-choice--inverse:disabled + label, .ds-c-choice:disabled + .ds-c-label, .ds-c-choice:disabled + label {
  cursor: not-allowed;
}

@media (forced-colors: active) {
  .ds-c-choice.ds-c-choice--inverse:disabled + .ds-c-label, .ds-c-choice.ds-c-choice--inverse:disabled + label, .ds-c-choice:disabled + .ds-c-label, .ds-c-choice:disabled + label {
    color: GrayText;
  }
}
.ds-c-choice-wrapper > .ds-c-hint {
  grid-area: hint;
}

.ds-c-choice-wrapper > .ds-c-inline-error {
  grid-area: error-message;
}

.ds-c-choice {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--choice__background-color);
  border: var(--choice__border-width) solid var(--choice__border-color);
  border-radius: var(--choice__border-radius);
  cursor: pointer;
  display: grid;
  grid-area: check;
  height: var(--choice__size);
  margin: 0;
  place-content: center;
  place-items: center;
  position: relative;
  width: var(--choice__size);
}

.ds-c-choice:before {
  border-radius: inherit;
  box-shadow: inset 0 0 4em 1em var(--choice__background-color--checked);
  content: "";
  grid-area: 1/-1;
  height: var(--choice__size);
  opacity: 0;
  width: var(--choice__size);
}

.ds-c-choice:after, .ds-c-choice:before {
  box-sizing: initial;
}

.ds-c-choice:checked:before {
  opacity: 1;
}

.ds-c-choice:checked:focus {
  border-color: var(--choice__border-color--focus);
}

.ds-c-choice.ds-c-choice--error {
  border-color: var(--choice__border-color--error);
}

.ds-c-choice:not(:disabled):hover {
  border-color: var(--choice__border-color--hover, var(--choice__border-color));
}

.ds-c-choice:disabled {
  background-color: var(--choice__background-color--disabled);
  border-color: var(--choice__border-color--disabled);
  color: var(--choice__color--disabled);
}

.ds-c-choice:disabled:before {
  border-color: var(--choice__border-color--disabled);
  box-shadow: inset 0 0 4em 1em var(--choice__border-color--disabled);
}

@media (forced-colors: active) {
  .ds-c-choice:disabled {
    border-color: GrayText;
  }
}
.ds-c-choice:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-choice[type=checkbox]:after {
  background-color: initial;
  border: solid;
  border-block-start-color: rgba(0, 0, 0, 0);
  border-color: var(--color-white);
  border-width: 0 0 4px 4px;
  content: "";
  grid-area: 1/-1;
  height: 4px;
  opacity: 0;
  transform: rotate(-45deg) translateX(0.075em);
  width: 10px;
}

.ds-c-choice[type=checkbox]:checked:after {
  opacity: 1;
}

@media (forced-colors: active) {
  .ds-c-choice[type=checkbox]:disabled:after {
    border-color: GrayText;
  }
}
.ds-c-choice[type=radio] {
  border-radius: 100%;
}

.ds-c-choice[type=radio]:before {
  border-radius: 100%;
  height: var(--choice__size-radio);
  width: var(--choice__size-radio);
}

@media (forced-colors: active) {
  .ds-c-choice[type=radio]:before {
    background-color: WindowText;
    box-shadow: none;
  }
}
.ds-c-choice[type=radio]:checked {
  border-color: var(--choice__background-color--checked);
}

.ds-c-choice[type=radio]:checked:disabled {
  border-color: var(--choice__border-color--disabled);
}

.ds-c-choice[type=radio]:checked:disabled:before {
  box-shadow: inset 0 0 4em 1em var(--choice__border-color--disabled);
}

@media (forced-colors: active) {
  .ds-c-choice[type=radio]:checked:disabled {
    border-color: GrayText;
  }
  .ds-c-choice[type=radio]:checked:disabled:before {
    background-color: GrayText;
  }
}
.ds-c-choice--inverse {
  background-color: var(--choice__background-color--inverse);
  border-color: var(--choice__border-color--inverse);
}

.ds-c-choice--inverse.ds-c-choice--error {
  border-color: var(--choice__border-color--error--inverse);
}

.ds-c-choice--inverse:not(:disabled):hover {
  border-color: var(--choice__border-color--hover, var(--choice__border-color--inverse));
}

.ds-c-choice--inverse:disabled {
  background-color: var(--choice__background-color--disabled--inverse);
  border-color: var(--choice__border-color--disabled--inverse);
}

@media (forced-colors: active) {
  .ds-c-choice--inverse:disabled {
    border-color: GrayText;
  }
}
.ds-c-choice--small, .ds-c-choice--small:before {
  height: var(--choice__size--small);
  width: var(--choice__size--small);
}

.ds-c-choice--small[type=checkbox]:after {
  border-width: 0 0 3px 3px;
  height: 3px;
  width: 7px;
}

.ds-c-choice--small[type=radio]:before {
  height: var(--choice__size-radio--small);
  width: var(--choice__size-radio--small);
}

.ds-c-choice__checkedChild {
  border-inline-start: 4px solid var(--choice__border-color--left);
  margin-block: 8px 16px;
  margin-inline-start: calc(var(--choice__size) * 0.5 - 2px);
  padding: 16px;
  padding-inline-end: 0;
}

.ds-c-choice__checkedChild--inverse {
  border-inline-start-color: var(--color-white);
}

.ds-c-choice__checkedChild--small {
  margin-inline-start: 8px;
}

.ds-c-fieldset > div:last-child .ds-c-choice__checkedChild {
  margin-block-end: 0;
}

.ds-c-close-button {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: var(--color-gray-dark);
  margin-block: -0.625rem;
  padding: 0.625rem;
  position: relative;
  right: -0.625rem;
}

.ds-c-close-button:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-close-button:hover, .ds-c-close-button:hover:focus {
  color: var(--color-gray-darker);
}

.ds-c-close-button:active, .ds-c-close-button:active:focus {
  color: var(--color-gray-darkest);
}

@media (forced-colors: active) {
  .ds-c-close-button .ds-c-icon path {
    fill: ButtonText;
  }
}
.ds-c-dialog {
  background: rgba(0, 0, 0, 0);
  border: none;
  height: auto;
  inset: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  width: auto;
}

.ds-c-dialog__window {
  background-color: var(--dialog__background-color);
  border: none;
  box-shadow: 2px 2px 4px;
  box-sizing: border-box;
  color: var(--color-base);
  display: block;
  font-size: var(--font-size-base);
  margin: auto;
  margin-block-start: 48px;
  max-width: var(--measure-base);
  padding: var(--dialog__padding);
  text-align: start;
  width: 95%;
}

.ds-c-dialog__window:focus {
  outline: none;
}

@media (forced-colors: active) {
  .ds-c-dialog__window, .ds-c-dialog__window:focus {
    outline: 16px solid WindowText;
  }
}
.ds-c-dialog + .backdrop, .ds-c-dialog::backdrop {
  background-color: var(--dialog-overlay__background-color);
}

.ds-c-dialog--narrow .ds-c-dialog__window {
  max-width: var(--measure-narrow);
}

.ds-c-dialog--wide .ds-c-dialog__window {
  max-width: var(--measure-wide);
}

.ds-c-dialog--full .ds-c-dialog__window {
  max-width: var(--site-max-width);
}

.ds-c-dialog__header {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding-block-end: 24px;
}

.ds-c-dialog__heading {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl--mobile);
  font-weight: var(--font-weight-heading-2xl);
  line-height: var(--font-line-height-heading);
  line-height: 1;
  margin-block: 1.5em 0.5em;
  margin: 0;
}

.ds-c-dialog__heading:where(:first-child) {
  margin-block-start: 0;
}

.ds-c-dialog__heading:where(:last-child) {
  margin-block-end: 0;
}

@media (min-width: 768px) {
  .ds-c-dialog__heading {
    font-size: var(--font-size-2xl);
  }
}
@media (forced-colors: active) {
  .ds-c-dialog__close .ds-c-icon path {
    fill: ButtonText;
  }
}
.ds-c-dialog__body {
  overflow-wrap: break-word;
}

.ds-c-dialog__actions {
  margin-block-start: 24px;
}

.ds--dialog-open {
  inset: var(--body_top--dialog-open, 0) 0 auto 0;
  position: fixed;
}

@keyframes slideInDrawer {
  0% {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.ds-c-drawer__toggle {
  display: block;
  font-weight: var(--font-weight-normal);
  padding: 0;
}

@media (forced-colors: active) {
  .ds-c-drawer__toggle {
    padding: 4px 16px;
  }
}
.ds-c-drawer__toggle--inline {
  display: inline;
}

.ds-c-drawer {
  background: var(--drawer__background-color);
  border: 0;
  box-shadow: -2px 0 0 var(--drawer__border-color);
  font-size: var(--font-size-base);
  height: 100%;
  inset: 0 0 0 auto;
  margin: 0;
  max-height: 100%;
  max-width: 100%;
  padding: 0;
  position: fixed;
  width: 100%;
  z-index: 500;
}

.ds-c-drawer::backdrop {
  background: rgba(0, 0, 0, 0);
}

@media (min-width: 768px) {
  .ds-c-drawer {
    animation: slideInDrawer var(--animation-speed-2) ease-in-out both;
    max-width: 33%;
  }
}
@media (min-width: 1280px) {
  .ds-c-drawer {
    max-width: var(--measure-base);
  }
}
@media (forced-colors: active) {
  .ds-c-drawer {
    border: 1px solid WindowText;
    border-left-width: 24px;
  }
}
.ds-c-drawer__window {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
}

.ds-c-drawer__header {
  align-items: center;
  background-color: var(--drawer-header__background-color);
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  justify-content: space-between;
  padding: 16px;
}

@media (forced-colors: active) {
  .ds-c-drawer__header {
    border-block-end: 1px solid ButtonText;
  }
}
.ds-c-drawer__header-heading {
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.ds-c-drawer__close-button {
  align-self: flex-start;
}

.ds-c-drawer__header-heading:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-drawer--is-sticky {
  overflow: auto;
}

.ds-c-drawer__body {
  flex: 1 1 auto;
  padding: 16px;
}

@media (min-width: 768px) {
  .ds-c-drawer__body {
    font-size: var(--font-size-sm);
  }
}
@media (min-width: 1024px) {
  .ds-c-drawer__body {
    font-size: var(--font-size-base);
  }
}
@media (forced-colors: active) {
  .ds-c-drawer__body {
    border-block-start: 1px solid ButtonText;
  }
}
.ds-c-drawer__footer {
  background-color: var(--drawer-footer__background-color);
  flex: 0 0 auto;
  padding: 16px;
}

.ds-c-drawer__footer-title {
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.ds-c-filter-chip__button {
  background-color: var(--filter-chip__background-color);
  border: 1px solid var(--filter-chip__border-color);
  border-radius: var(--filter-chip__border-radius);
  color: var(--filter-chip__color);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  margin-block-start: 8px;
  margin-inline-end: 8px;
  min-height: 0;
  padding: 4px 8px;
  padding-inline-end: 34px;
  position: relative;
  text-align: start;
}

.ds-c-filter-chip__button--big {
  min-height: 44px;
  padding: 8px 16px;
  padding-inline-end: 34px;
}

.ds-c-filter-chip__button:active, .ds-c-filter-chip__button:focus, .ds-c-filter-chip__button:hover {
  background-color: var(--filter-chip__background-color--active);
  border: 1px solid var(--filter-chip__border-color--active);
  color: var(--filter-chip__color--active);
}

.ds-c-filter-chip__button:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-filter-chip__button > * {
  pointer-events: none;
}

.ds-c-filter-chip__clear-icon-container {
  --size:18px;
  border: 1px solid var(--filter-chip__color);
  border-radius: 50%;
  display: inline-block;
  height: var(--size);
  margin-inline-start: 8px;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  vertical-align: middle;
  width: var(--size);
}

.ds-c-filter-chip__clear-icon-container.ds-c-filter-chip__clear-icon-alternate-container {
  border: 0;
}

.ds-c-filter-chip__clear-icon-container .ds-c-icon--close {
  fill: var(--filter-chip__color);
  display: block;
  height: 10px;
  left: 3px;
  position: relative;
  top: 3px;
  width: 10px;
}

@media (forced-colors: active) {
  .ds-c-filter-chip__clear-icon-container .ds-c-icon--close path {
    fill: ButtonText;
  }
}
.ds-c-filter-chip__clear-icon-container .ds-c-icon--close-thin {
  height: 12px;
  width: 12px;
}

.ds-c-filter-chip__button:active .ds-c-filter-chip__clear-icon-container, .ds-c-filter-chip__button:focus .ds-c-filter-chip__clear-icon-container, .ds-c-filter-chip__button:hover .ds-c-filter-chip__clear-icon-container {
  border-color: var(--filter-chip__color--active);
}

.ds-c-filter-chip__button:active .ds-c-filter-chip__clear-icon-container .ds-c-icon--close, .ds-c-filter-chip__button:focus .ds-c-filter-chip__clear-icon-container .ds-c-icon--close, .ds-c-filter-chip__button:hover .ds-c-filter-chip__clear-icon-container .ds-c-icon--close {
  fill: var(--filter-chip__color--active);
}

.ds-c-hint {
  color: var(--hint__color);
  display: block;
  font-weight: var(--font-weight-normal);
  margin-block: 0;
  max-width: var(--field-max-width);
}

.ds-c-hint--inverse {
  color: var(--hint__color--inverse);
}

.ds-c-inline-error {
  color: var(--inline-error__color);
  display: block;
  font-weight: var(--font-weight-normal);
  margin-block: 0;
  max-width: var(--field-max-width);
}

.ds-c-inline-error--inverse {
  color: var(--inline-error__color--inverse);
}

.ds-c-inline-error--bottom {
  margin-block-start: 4px;
}

.ds-c-label {
  font-family: var(--label__font-family);
  font-size: var(--label__font-size);
  font-weight: var(--label__font-weight);
  letter-spacing: var(--label__letter-spacing);
  max-width: var(--field-max-width);
  padding: 0;
  text-transform: var(--label__text-transform);
}

.ds-c-label--inverse {
  color: var(--color-base-inverse);
}

.ds-c-fieldset {
  margin: 24px 0 0;
  min-width: 0;
}

.ds-c-fieldset > .ds-c-label:first-child {
  margin-block-start: 0;
}

.ds-c-month-picker {
  margin-block: 24px;
}

.ds-c-month-picker__buttons {
  margin-block: 16px 8px;
}

.ds-c-month-picker__buttons .ds-c-month-picker__button {
  margin-inline-end: 8px;
}

.ds-c-month-picker__months {
  max-width: 400px;
}

.ds-c-month-picker__months-list {
  display: flex;
  flex-flow: row wrap;
  gap: 8px 0;
  justify-content: space-between;
}

.ds-c-month-picker__month {
  width: 100px;
}

.ds-c-pagination {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.ds-c-pagination .ds-c-pagination__pages {
  display: none;
  margin: 0;
}

@media (forced-colors: active) {
  .ds-c-pagination .ds-c-pagination__pages {
    align-items: center;
    display: inline-flex;
    gap: 1ch;
  }
}
@media (min-width: 545px) {
  .ds-c-pagination .ds-c-pagination__pages {
    align-items: center;
    display: inline-flex;
  }
}
.ds-c-pagination .ds-c-button {
  color: var(--pagination-link__color);
  font-weight: var(--font-weight-normal);
  min-width: 44px;
  padding: 8px 0;
}

.ds-c-pagination .ds-c-button--ghost {
  text-decoration: none;
}

.ds-c-pagination .ds-c-button--ghost:focus {
  color: var(--pagination-link__color--focus);
}

.ds-c-pagination .ds-c-button--ghost:hover {
  color: var(--pagination-link__color--hover);
  text-decoration: underline;
}

.ds-c-pagination .ds-c-button--ghost:active {
  color: var(--pagination-link__color--active);
}

@media (forced-colors: active) {
  .ds-c-pagination .ds-c-button--ghost {
    border: 0;
  }
  .ds-c-pagination .ds-c-button--ghost:hover {
    text-decoration: none;
  }
}
.ds-c-pagination .ds-c-pagination__current-page {
  color: var(--pagination-current-page__color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

.ds-c-pagination .ds-c-pagination__current-page:hover {
  color: currentColor;
  cursor: auto;
  text-decoration: none;
}

.ds-c-pagination .ds-c-pagination__overflow {
  border: 2px solid rgba(0, 0, 0, 0);
  color: var(--pagination-overflow__color);
  display: inline-block;
  padding: 8px;
}

@media (forced-colors: active) {
  .ds-c-pagination .ds-c-pagination__overflow {
    border: 0;
  }
}
.ds-c-pagination .ds-c-pagination__page-count {
  border: 2px solid rgba(0, 0, 0, 0);
  color: var(--pagination-page-count__color);
  display: none;
  padding: 8px;
}

@media (forced-colors: active) {
  .ds-c-pagination .ds-c-pagination__page-count {
    border: 0;
  }
}
@media (max-width: 544px) {
  .ds-c-pagination .ds-c-pagination__page-count {
    display: inline-block;
  }
}
.ds-c-pagination .ds-c-pagination__nav {
  flex: 0 0 auto;
  text-decoration: none;
}

.ds-c-pagination .ds-c-pagination__nav:hover {
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

@media (forced-colors: active) {
  .ds-c-pagination .ds-c-pagination__nav {
    align-self: center;
    border: 0;
    padding: 4px 16px;
  }
  .ds-c-pagination .ds-c-pagination__nav:not([aria-disabled=true]) {
    color: LinkText;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
  }
  .ds-c-pagination .ds-c-pagination__nav:not([aria-disabled=true]):hover {
    background-color: Window;
    text-decoration: none;
  }
  .ds-c-pagination .ds-c-pagination__nav:not([aria-disabled=true]):focus {
    box-shadow: none;
  }
  .ds-c-pagination .ds-c-pagination__nav:not([aria-disabled=true]):focus:hover {
    outline-color: LinkText;
  }
}
.ds-c-pagination [aria-disabled=true] {
  border: 1px solid rgba(0, 0, 0, 0);
  color: var(--pagination-link__color--disabled);
  line-height: 1.3;
  padding: 8px 0;
}

@media (forced-colors: active) {
  .ds-c-pagination [aria-disabled=true] {
    border: 0;
    color: GrayText;
    cursor: not-allowed;
    padding: 4px 16px;
  }
}
.ds-c-pagination .ds-c-pagination__nav--img-container {
  display: inline-block;
  vertical-align: text-top;
}

.ds-c-pagination .ds-c-pagination__nav--img-container-next {
  margin-inline-start: 4px;
}

.ds-c-pagination .ds-c-pagination__nav--img-container-previous {
  margin-inline-end: 4px;
}

.ds-c-pagination .ds-c-pagination__nav--image {
  height: 18px;
  width: 18px;
}

@media (forced-colors: active) {
  .ds-c-pagination .ds-c-pagination__nav--image path {
    fill: LinkText;
  }
}
.ds-c-pagination.ds-c-pagination--compact .ds-c-pagination__page-count {
  display: inline;
}

.ds-c-pagination.ds-c-pagination--compact .ds-c-pagination__pages {
  display: none;
}

.ds-c-privacy-settings-table th:first-child {
  min-width: 110px;
}

.ds-c-privacy-settings-table td:last-child {
  min-width: 18ch;
}

.ds-c-review {
  border-block-end: 2px solid var(--review__border-color);
  display: flex;
  justify-content: space-between;
  padding-block: 16px;
}

@media (forced-colors: active) {
  .ds-c-review a:hover {
    text-decoration: none;
  }
}
.ds-c-review__content {
  margin-inline-end: 16px;
}

.ds-c-review:last-of-type {
  border-block-end: 0;
  padding-block-end: 0;
}

.ds-c-review__heading {
  display: inline-block;
  font-weight: var(--font-weight-bold);
  margin-block: 0;
}

:root {
  --rdp-cell-size:40px;
  --rdp-accent-color:var(--color-primary);
  --rdp-background-color:var(--day-picker-button__background-color--hover);
  --rdp-active-color:var(--color-primary-darkest);
  --rdp-outline:none;
  --rdp-outline-selected:none;
}

.rdp {
  margin: 1em;
  z-index: 1;
}

.rdp-vhidden {
  clip: rect(1px, 1px, 1px, 1px) !important;
  background: rgba(0, 0, 0, 0);
  border: 0 !important;
  box-sizing: border-box;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  top: 0;
  width: 1px !important;
}

.rdp-button_reset, .rdp-vhidden {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.rdp-button_reset {
  background: none;
  color: inherit;
  cursor: default;
  font: inherit;
  outline: none;
  padding: 0;
  position: relative;
}

.rdp-button {
  border: 2px solid rgba(0, 0, 0, 0);
}

.rdp-button:not(:disabled) {
  cursor: pointer;
}

.rdp-button:active, .rdp-button:focus {
  border: var(--rdp-outline);
  color: inherit;
}

.rdp-button:active, .rdp-button:focus, .rdp-button:hover:not(:disabled) {
  background-color: var(--rdp-background-color);
}

.rdp-months {
  display: flex;
}

.rdp-month {
  margin: 0 1em;
}

.rdp-month:first-child {
  margin-left: 0;
}

.rdp-month:last-child {
  margin-right: 0;
}

.rdp-table {
  border-collapse: collapse;
  margin: 0;
  max-width: calc(var(--rdp-cell-size) * 7);
}

.rdp-with_weeknumber .rdp-table {
  border-collapse: collapse;
  max-width: calc(var(--rdp-cell-size) * 8);
}

.rdp-caption {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0;
  text-align: start;
}

.rdp-multiple_months .rdp-caption {
  display: block;
  position: relative;
  text-align: center;
}

.rdp-caption_dropdowns, .rdp-caption_label {
  display: inline-flex;
  position: relative;
}

.rdp-caption_label {
  align-items: center;
  border: 2px solid rgba(0, 0, 0, 0);
  color: currentColor;
  font-family: inherit;
  font-size: 140%;
  font-weight: 700;
  margin: 0;
  padding: 0 0.25em;
  white-space: nowrap;
  z-index: 1;
}

.rdp-nav {
  white-space: nowrap;
}

.rdp-multiple_months .rdp-caption_start .rdp-nav {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.rdp-multiple_months .rdp-caption_end .rdp-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.rdp-nav_button {
  align-items: center;
  border-radius: 100%;
  display: inline-flex;
  height: var(--rdp-cell-size);
  justify-content: center;
  padding: 0.25em;
  width: var(--rdp-cell-size);
}

.rdp-dropdown_month, .rdp-dropdown_year {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.rdp-dropdown {
  -webkit-appearance: none;
  appearance: none;
  background-color: initial;
  border: none;
  bottom: 0;
  cursor: inherit;
  font-family: inherit;
  font-size: inherit;
  left: 0;
  line-height: inherit;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.rdp-dropdown:disabled {
  color: unset;
  opacity: unset;
}

.rdp-dropdown:active:not(:disabled) + .rdp-caption_label, .rdp-dropdown:focus:not(:disabled) + .rdp-caption_label {
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
  border-radius: 6px;
}

.rdp-dropdown_icon {
  margin: 0 0 0 5px;
}

.rdp-head {
  border: 0;
}

.rdp-head_row, .rdp-row {
  height: 100%;
}

.rdp-head_cell {
  font-size: 0.75em;
  font-weight: 700;
  height: 100%;
  height: var(--rdp-cell-size);
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}

.rdp-tbody {
  border: 0;
}

.rdp-tfoot {
  margin: 0.5em;
}

.rdp-cell {
  height: 100%;
  height: var(--rdp-cell-size);
  padding: 0;
  text-align: center;
  width: var(--rdp-cell-size);
}

.rdp-weeknumber {
  font-size: 0.75em;
}

.rdp-day, .rdp-weeknumber {
  align-items: center;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 100%;
  box-sizing: border-box;
  display: flex;
  height: var(--rdp-cell-size);
  justify-content: center;
  margin: 0;
  max-width: var(--rdp-cell-size);
  overflow: hidden;
  width: var(--rdp-cell-size);
}

.rdp-day_today:not(.rdp-day_outside) {
  font-weight: 700;
}

.rdp-day_selected:active:not(:disabled), .rdp-day_selected:focus:not(:disabled), .rdp-day_selected:hover:not(:disabled), .rdp-day_selected:not(:disabled) {
  background-color: var(--rdp-accent-color);
  color: #fff;
}

.rdp-day_selected:focus:not(:disabled) {
  border: var(--rdp-outline-selected);
}

.rdp-day_disabled {
  color: var(--color-muted);
  overflow: visible;
}

.rdp-day_disabled:after {
  background: var(--color-muted);
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: calc(100% + 4px);
}

@media (forced-colors: active) {
  .rdp-day_disabled:after {
    background-color: GrayText;
    cursor: not-allowed;
  }
}
.rdp:not([dir=rtl]) .rdp-day_range_start:not(.rdp-day_range_end) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.rdp:not([dir=rtl]) .rdp-day_range_end:not(.rdp-day_range_start), .rdp[dir=rtl] .rdp-day_range_start:not(.rdp-day_range_end) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.rdp[dir=rtl] .rdp-day_range_end:not(.rdp-day_range_start) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.rdp-day_range_end.rdp-day_range_start {
  border-radius: 100%;
}

.rdp-day_range_middle {
  border-radius: 0;
}

.rdp-caption_dropdowns {
  flex-grow: 1;
}

.rdp-dropdown_month, .rdp-dropdown_year {
  display: block;
  width: 50%;
}

.rdp-dropdown_month:nth-child(2), .rdp-dropdown_year:nth-child(2) {
  text-align: end;
}

.rdp-button:active, .rdp-button:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.rdp-button:active, .rdp-button:active:hover:not(:disabled), .rdp-day_selected:active:hover:not(:disabled), .rdp-day_selected:active:not(:disabled) {
  background-color: var(--rdp-active-color);
  color: #fff;
}

@media (forced-colors: active) {
  .rdp-button:disabled {
    border-color: GrayText;
    color: GrayText;
    opacity: 1;
  }
  .rdp-day_selected:active:not(:disabled), .rdp-day_selected:focus:not(:disabled), .rdp-day_selected:hover:not(:disabled), .rdp-day_selected:not(:disabled) {
    -ms-high-contrast-adjust: none;
    background-color: Highlight;
    border-color: Highlight;
    color: Field;
    forced-color-adjust: none;
  }
}
.rdp-caption_label {
  border: none;
  font-size: var(--font-size-xl);
  padding: 0 8px;
}

.rdp-dropdown:active:not(:disabled) + .rdp-caption_label, .rdp-dropdown:focus:not(:disabled) + .rdp-caption_label {
  background-color: initial;
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.rdp-dropdown_icon.ds-c-icon--arrows-stacked {
  height: 14px;
  width: 14px;
}

.ds-c-single-input-date-field__nav {
  -webkit-appearance: none;
  appearance: none;
  background-color: initial;
  border: none;
  border-radius: var(--text-input__border-radius);
  color: var(--color-primary);
  cursor: pointer;
  display: inline-block;
  padding: 8px;
}

.ds-c-single-input-date-field__nav:hover:not(:disabled) {
  background-color: var(--day-picker-button__background-color--hover);
  color: var(--color-primary-darker);
}

.ds-c-single-input-date-field__nav:active:not(:disabled), .ds-c-single-input-date-field__nav:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-single-input-date-field__nav:active:not(:disabled) {
  background-color: var(--button-solid__background-color--active);
  color: var(--color-white);
}

.ds-c-single-input-date-field__nav .ds-c-icon--arrow {
  height: 19px;
  width: 19px;
}

.ds-c-single-input-date-field__nav:disabled {
  pointer-events: none;
  visibility: hidden;
}

.ds-c-single-input-date-field {
  position: relative;
}

.ds-c-single-input-date-field .rdp {
  background-color: var(--color-background);
  border: 1px solid var(--color-gray-dark);
  border-radius: 8px;
  box-shadow: 0 0 17px 0 var(--color-gray-light);
  left: 0;
  margin: 8px 0 0;
  padding: 16px;
  position: absolute;
  top: 100%;
}

.ds-c-single-input-date-field--with-picker .ds-c-single-input-date-field__field-wrapper {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 4px;
  margin-top: 4px;
}

.ds-c-single-input-date-field--with-picker .ds-c-single-input-date-field__field-wrapper .ds-c-field {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-bottom: 0;
  margin-right: calc(var(--text-input__border-width) * -1);
  margin-top: 0;
}

.ds-c-single-input-date-field--with-picker .ds-c-single-input-date-field__field-wrapper .ds-c-field:active, .ds-c-single-input-date-field--with-picker .ds-c-single-input-date-field__field-wrapper .ds-c-field:focus {
  z-index: 1;
}

.ds-c-single-input-date-field--with-picker .ds-c-single-input-date-field__field-wrapper .ds-c-field.ds-c-field--error {
  margin-right: calc(var(--text-input__border-width--error) * -1);
}

.ds-c-single-input-date-field__field-wrapper .ds-c-field {
  max-width: 12ch;
}

.ds-c-single-input-date-field__field-wrapper .ds-c-single-input-date-field__button {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--day-picker-button__background-color--hover);
  border: var(--text-input__border-width) solid var(--text-input__border-color);
  border-radius: var(--text-input__border-radius);
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  color: var(--color-primary);
  cursor: pointer;
  margin: 0;
  padding: 4px 8px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.ds-c-single-input-date-field__field-wrapper .ds-c-single-input-date-field__button:after {
  background: var(--text-input__divider-color);
  bottom: 0;
  content: "";
  display: block;
  left: calc(var(--text-input__border-width) * -1);
  position: absolute;
  top: 0;
  width: var(--text-input__border-width);
}

.ds-c-single-input-date-field__field-wrapper .ds-c-single-input-date-field__button:active, .ds-c-single-input-date-field__field-wrapper .ds-c-single-input-date-field__button:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-single-input-date-field__field-wrapper .ds-c-single-input-date-field__button:active:after, .ds-c-single-input-date-field__field-wrapper .ds-c-single-input-date-field__button:focus:after {
  display: none;
}

.ds-c-single-input-date-field__field-wrapper .ds-c-field--error + .ds-c-single-input-date-field__button {
  border: var(--text-input__border-width--error) solid var(--text-input__border-color--error);
}

.ds-c-single-input-date-field__field-wrapper .ds-c-field--error + .ds-c-single-input-date-field__button:after {
  left: calc(var(--text-input__border-width--error) * -1);
  width: var(--text-input__border-width--error);
}

.ds-c-single-input-date-field__field-wrapper .ds-c-field--error.ds-c-field--inverse + .ds-c-single-input-date-field__button {
  border: var(--text-input__border-width--error) solid var(--text-input__border-color--error--inverse);
}

.ds-c-single-input-date-field__field-wrapper .ds-c-icon--calendar {
  height: 75%;
}

.ds-c-skip-nav {
  left: 0;
  padding: 8px 16px;
  position: absolute;
  top: -96px;
  z-index: 100;
}

.ds-c-skip-nav:focus {
  background-color: var(--color-white);
  left: 0;
  top: 0;
}

.ds-c-spinner {
  display: inline-block;
  height: 32px;
  position: relative;
  width: 32px;
}

.ds-c-spinner:after, .ds-c-spinner:before {
  border-width: 4px;
  height: 32px;
  width: 32px;
}

.ds-c-button > .ds-c-spinner {
  fill: currentColor;
  height: 1em;
  margin-block: -0.1em;
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  width: 1em;
}

@media (forced-colors: active) {
  .ds-c-button > .ds-c-spinner {
    fill: ButtonText;
  }
}
.ds-c-button > .ds-c-spinner:after, .ds-c-button > .ds-c-spinner:before {
  border-width: 0.125em;
  height: 1em;
  left: 0;
  top: 0;
  width: 1em;
}

.ds-c-spinner:after, .ds-c-spinner:before {
  border-radius: var(--radius-circle);
  border-style: solid;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}

.ds-c-spinner:before {
  border-color: inherit;
  opacity: 0.2;
}

.ds-c-spinner:after {
  animation: spin var(--animation-speed-4) infinite linear;
  border-color: rgba(0, 0, 0, 0);
  border-inline-start-color: inherit;
  transform: translateZ(0);
}

@media (forced-colors: active) {
  .ds-c-spinner:after {
    border-color: WindowText;
    border-inline-start-color: Window;
  }
}
.ds-c-spinner--filled {
  background-color: var(--spinner__background-color);
  border-radius: 50%;
  color: var(--spinner__color);
  height: 48px;
  width: 48px;
}

.ds-c-spinner--filled:after, .ds-c-spinner--filled:before {
  border-width: 4px;
  height: 32px;
  left: 8px;
  top: 8px;
  width: 32px;
}

.ds-c-spinner--filled.ds-c-spinner--inverse {
  background-color: var(--spinner__background-color--inverse);
}

.ds-c-spinner--filled.ds-c-spinner--inverse:not(:focus) {
  color: var(--spinner__color--inverse);
}

.ds-c-spinner--small {
  height: 16px;
  width: 16px;
}

.ds-c-spinner--small:after, .ds-c-spinner--small:before {
  border-width: 2px;
  height: 16px;
  left: 0;
  top: 0;
  width: 16px;
}

.ds-c-spinner--small.ds-c-spinner--filled {
  height: 24px;
  width: 24px;
}

.ds-c-spinner--small.ds-c-spinner--filled:after, .ds-c-spinner--small.ds-c-spinner--filled:before {
  border-width: 2px;
  height: 16px;
  left: 4px;
  top: 4px;
  width: 16px;
}

.ds-c-spinner--big {
  height: 40px;
  width: 40px;
}

.ds-c-spinner--big:after, .ds-c-spinner--big:before {
  border-width: 5px;
  height: 40px;
  left: 0;
  top: 0;
  width: 40px;
}

.ds-c-spinner--big.ds-c-spinner--filled {
  height: 56px;
  width: 56px;
}

.ds-c-spinner--big.ds-c-spinner--filled:after, .ds-c-spinner--big.ds-c-spinner--filled:before {
  border-width: 5px;
  height: 40px;
  left: 8px;
  top: 8px;
  width: 40px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.ds-c-step-list[role=list] {
  margin-block-start: 32px;
  padding-inline-start: 42px;
}

@media (forced-colors: active) {
  .ds-c-step-list[role=list] a:hover {
    text-decoration: none;
  }
}
.ds-c-step {
  color: var(--steplist__color);
  counter-increment: step-counter;
  margin-block-end: 16px;
  padding-block-end: 16px;
  position: relative;
}

.ds-c-step:before {
  align-items: center;
  border: 2px solid var(--steplist-step__border-color--default);
  border-radius: var(--radius-circle);
  color: var(--steplist-step__color);
  content: counter(step-counter);
  display: flex;
  font-size: var(--font-size-sm);
  height: 24px;
  inset: 7px auto auto -34px;
  justify-content: center;
  line-height: 20px;
  position: absolute;
  width: 24px;
}

@media (min-width: 768px) {
  .ds-c-step:before {
    font-size: var(--font-size-xl);
    height: 32px;
    left: -42px;
    line-height: 28px;
    padding-inline-start: 1px;
    top: 3px;
    width: 32px;
  }
}
@media (forced-colors: active) {
  .ds-c-step:before {
    -ms-high-contrast-adjust: none;
    border-color: GrayText;
    color: GrayText;
    forced-color-adjust: none;
  }
}
.ds-c-step:after {
  border-bottom: 1px solid var(--steplist-step__border-color);
  content: "";
  height: 1px;
  inset: auto 0 0 -42px;
  position: absolute;
}

.ds-c-step--completed, .ds-c-step--current {
  padding-block-end: 16px;
}

.ds-c-step--completed:before, .ds-c-step--current:before {
  border: 0;
  color: var(--steplist-step__color--current);
}

.ds-c-step--current .ds-c-step__heading {
  color: var(--steplist__color--current);
}

.ds-c-step--current:before {
  background: var(--steplist__background-color--current);
}

@media (forced-colors: active) {
  .ds-c-step--current:before {
    background-color: Highlight;
    color: Window;
    font-weight: 700;
  }
}
.ds-c-step--completed .ds-c-step__heading, .ds-c-step--completed .ds-c-step__substeps {
  color: var(--steplist-step__color--completed);
}

.ds-c-step--completed:before {
  background: var(--steplist-step__background-color--completed);
}

@media (forced-colors: active) {
  .ds-c-step--completed:before {
    background-color: WindowText;
    color: Window;
  }
}
.ds-c-step__heading {
  font-weight: var(--font-weight-bold);
  line-height: 2.5;
  margin: 0;
}

.ds-c-step__actions {
  font-size: var(--font-size-sm);
  margin-inline-start: auto;
}

.ds-c-step__content--with-content + .ds-c-step__actions {
  margin-block-start: 16px;
}

.ds-c-step--completed .ds-c-step__actions a {
  font-weight: var(--font-weight-normal);
}

.ds-c-step__completed-text {
  display: inline-block;
  margin-inline-end: 16px;
}

.ds-c-step__completed-text .ds-c-icon {
  height: 12px;
  margin-inline-end: 8px;
  width: 16px;
}

@media (forced-colors: active) {
  .ds-c-step__completed-text .ds-c-icon-color--success {
    color: WindowText;
  }
}
.ds-c-step__description {
  font-size: var(--font-size-sm);
  margin-block-end: 8px;
}

.ds-c-step--completed .ds-c-step__description, .ds-c-step--current .ds-c-step__description {
  margin-block-start: 8px;
}

ol.ds-c-step__substeps {
  padding-inline-start: 40px;
}

.ds-c-substep {
  font-size: var(--font-size-sm);
}

.ds-c-substep:before {
  content: "•";
  font: inherit;
  left: -24px;
  position: relative;
}

.ds-c-substep__heading {
  display: inline;
  margin-inline-end: 8px;
}

.ds-c-icon {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
  display: inline-block;
  font-size: var(--font-size-base);
  height: 1.5em;
  vertical-align: middle;
  width: 1.5em;
}

@media (forced-colors: active) {
  .ds-c-icon {
    fill: WindowText;
  }
  .ds-c-icon path {
    fill: WindowText;
    stroke: WindowText;
  }
}
.ds-c-icon-color--primary {
  color: var(--color-primary);
}

@media (forced-colors: active) {
  .ds-c-icon-color--primary {
    color: WindowText;
  }
}
.ds-c-icon-color--inverse {
  color: var(--color-base-inverse);
}

.ds-c-icon-color--error {
  color: var(--color-error);
}

.ds-c-icon-color--warn {
  color: var(--color-warn);
}

.ds-c-icon-color--success {
  color: var(--color-success);
}

.ds-c-icon--arrow-up {
  transform: rotate(-90deg);
}

.ds-c-icon--arrow-left {
  transform: rotate(180deg);
}

.ds-c-icon--arrow-down {
  transform: rotate(90deg);
}

.ds-c-icon--pdf__text {
  fill: var(--color-white);
}

@media (forced-colors: active) {
  .ds-c-icon--pdf__text {
    fill: Window;
  }
  .ds-c-icon--star path {
    fill: Window;
    stroke: WindowText;
  }
  .ds-c-icon--star-filled path {
    fill: WindowText;
    stroke: WindowText;
  }
  .ds-c-icon--usa-flag {
    -ms-high-contrast-adjust: none;
    forced-color-adjust: none;
  }
  .ds-c-icon--usa-flag path:first-of-type, .ds-c-icon--usa-flag path:nth-of-type(5) {
    fill: #fff;
  }
  .ds-c-icon--usa-flag path:nth-of-type(2), .ds-c-icon--usa-flag path:nth-of-type(4) {
    fill: #db3e1f;
  }
  .ds-c-icon--usa-flag path:nth-of-type(3) {
    fill: #1e33b1;
  }
  .ds-c-icon--minus-circle .ds-c-icon--minus-circle__circle {
    fill: Window;
    stroke: WindowText;
  }
  .ds-c-icon--minus-circle .ds-c-icon--minus-circle__group {
    fill: WindowText;
  }
  .ds-c-icon--plus-circle .ds-c-icon--plus-circle__circle {
    fill: Window;
    stroke: WindowText;
  }
  .ds-c-icon--plus-circle .ds-c-icon--plus-circle__group {
    fill: WindowText;
  }
}
.ds-c-table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}

.ds-c-table th, .ds-c-table thead td {
  background-color: var(--table-header__background-color);
}

.ds-c-table tbody th {
  font-weight: var(--font-weight-normal);
}

.ds-c-table td, .ds-c-table th {
  border: 1px solid var(--table__border-color);
  padding: var(--table__padding);
  text-align: start;
}

.ds-c-table--borderless thead th, .ds-c-table--borderless thead tr {
  background-color: initial;
}

.ds-c-table--borderless thead th {
  border-top: 0;
}

.ds-c-table--borderless td, .ds-c-table--borderless th {
  border-left: 0;
  border-right: 0;
}

.ds-c-table--compact td, .ds-c-table--compact th, .ds-c-table--dense td, .ds-c-table--dense th {
  padding: 4px 16px;
}

.ds-c-table--striped tbody tr:nth-child(2n) {
  background-color: var(--table__background-color--striped);
}

.ds-c-table--striped tbody tr:nth-child(odd):before {
  background-color: initial;
}

.ds-c-table__wrapper {
  overflow-x: auto;
}

.ds-c-table__scroll-alert {
  font-weight: var(--font-weight-normal);
  margin: 8px 0;
}

.ds-c-table__caption {
  font-weight: var(--font-weight-bold);
  margin-block-end: 8px;
  text-align: start;
}

.ds-c-table--stacked thead {
  display: none;
}

.ds-c-table--stacked td, .ds-c-table--stacked th {
  border-bottom-width: 0;
  display: block;
}

.ds-c-table--stacked tr {
  border-bottom: 4px solid var(--table__border-color);
  border-top: 0;
  display: block;
}

.ds-c-table--stacked tr td:first-child, .ds-c-table--stacked tr th:first-child {
  border-top: 0;
}

.ds-c-table--stacked tr:first-child td:first-child, .ds-c-table--stacked tr:first-child th:first-child {
  border-top: 4px solid var(--table__border-color);
}

.ds-c-table--stacked td[data-title]:before, .ds-c-table--stacked th[data-title]:before {
  content: attr(data-title);
  display: block;
  font-weight: 700;
  padding-block-end: 4px;
}

.ds-c-table--stacked.ds-c-table--striped tbody tr:nth-child(2n) {
  background-color: initial;
}

@media (max-width: 544px) {
  .ds-c-sm-table--stacked thead {
    display: none;
  }
  .ds-c-sm-table--stacked td, .ds-c-sm-table--stacked th {
    border-bottom-width: 0;
    display: block;
  }
  .ds-c-sm-table--stacked tr {
    border-bottom: 4px solid var(--table__border-color);
    border-top: 0;
    display: block;
  }
  .ds-c-sm-table--stacked tr td:first-child, .ds-c-sm-table--stacked tr th:first-child {
    border-top: 0;
  }
  .ds-c-sm-table--stacked tr:first-child td:first-child, .ds-c-sm-table--stacked tr:first-child th:first-child {
    border-top: 4px solid var(--table__border-color);
  }
  .ds-c-sm-table--stacked td[data-title]:before, .ds-c-sm-table--stacked th[data-title]:before {
    content: attr(data-title);
    display: block;
    font-weight: 700;
    padding-block-end: 4px;
  }
  .ds-c-sm-table--stacked.ds-c-table--striped tbody tr:nth-child(2n) {
    background-color: initial;
  }
}
@media (max-width: 768px) {
  .ds-c-md-table--stacked thead {
    display: none;
  }
  .ds-c-md-table--stacked td, .ds-c-md-table--stacked th {
    border-bottom-width: 0;
    display: block;
  }
  .ds-c-md-table--stacked tr {
    border-bottom: 4px solid var(--table__border-color);
    border-top: 0;
    display: block;
  }
  .ds-c-md-table--stacked tr td:first-child, .ds-c-md-table--stacked tr th:first-child {
    border-top: 0;
  }
  .ds-c-md-table--stacked tr:first-child td:first-child, .ds-c-md-table--stacked tr:first-child th:first-child {
    border-top: 4px solid var(--table__border-color);
  }
  .ds-c-md-table--stacked td[data-title]:before, .ds-c-md-table--stacked th[data-title]:before {
    content: attr(data-title);
    display: block;
    font-weight: 700;
    padding-block-end: 4px;
  }
  .ds-c-md-table--stacked.ds-c-table--striped tbody tr:nth-child(2n) {
    background-color: initial;
  }
}
@media (max-width: 1024px) {
  .ds-c-lg-table--stacked thead {
    display: none;
  }
  .ds-c-lg-table--stacked td, .ds-c-lg-table--stacked th {
    border-bottom-width: 0;
    display: block;
  }
  .ds-c-lg-table--stacked tr {
    border-bottom: 4px solid var(--table__border-color);
    border-top: 0;
    display: block;
  }
  .ds-c-lg-table--stacked tr td:first-child, .ds-c-lg-table--stacked tr th:first-child {
    border-top: 0;
  }
  .ds-c-lg-table--stacked tr:first-child td:first-child, .ds-c-lg-table--stacked tr:first-child th:first-child {
    border-top: 4px solid var(--table__border-color);
  }
  .ds-c-lg-table--stacked td[data-title]:before, .ds-c-lg-table--stacked th[data-title]:before {
    content: attr(data-title);
    display: block;
    font-weight: 700;
    padding-block-end: 4px;
  }
  .ds-c-lg-table--stacked.ds-c-table--striped tbody tr:nth-child(2n) {
    background-color: initial;
  }
}
.ds-c-tabs {
  border-bottom: 1px solid var(--tabs__border-color);
  display: flex;
}

.ds-c-tabs__panel {
  background-color: var(--tabs-panel__background-color);
  border: 1px solid var(--tabs__border-color);
  border-block-start: 0;
  padding: 24px;
}

.ds-c-tabs__panel[aria-hidden=true] {
  display: none;
}

.ds-c-tabs__item, .ds-c-tabs__item:visited {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--tabs__background-color);
  border-block: 1px solid var(--tabs__border-color);
  border-inline-start: 1px solid var(--tabs__border-color);
  border-radius: 0;
  color: var(--tabs__color);
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--font-line-height-reset);
  margin-block-end: -1px;
  padding: 16px 8px;
  position: relative;
  text-decoration: none;
}

@media (min-width: 544px) {
  .ds-c-tabs__item, .ds-c-tabs__item:visited {
    padding-inline: 16px;
  }
}
@media (min-width: 768px) {
  .ds-c-tabs__item, .ds-c-tabs__item:visited {
    font-size: var(--font-size-base);
    padding-inline: 24px;
  }
}
.ds-c-tabs__item:last-child, .ds-c-tabs__item:visited:last-child {
  border-inline-end: 1px solid var(--tabs__border-color);
}

.ds-c-tabs__item:after, .ds-c-tabs__item:visited:after {
  background-color: var(--tabs__border-color--selected);
  content: "";
  height: 4px;
  inset: -1px -1px auto;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
}

.ds-c-tabs__item:visited[aria-selected=true], .ds-c-tabs__item[aria-selected=true] {
  background-color: var(--tabs__background-color--selected);
  border-block-end-color: var(--tabs__background-color--selected);
  color: var(--tabs__color--selected);
  pointer-events: none;
}

.ds-c-tabs__item:visited[aria-selected=true]:after, .ds-c-tabs__item[aria-selected=true]:after {
  opacity: 1;
  transform: scaleX(1);
}

@media (forced-colors: active) {
  .ds-c-tabs__item:visited[aria-selected=true], .ds-c-tabs__item[aria-selected=true] {
    border-color: windowText windowText window;
    color: windowText;
  }
  .ds-c-tabs__item:visited[aria-selected=true]:after, .ds-c-tabs__item[aria-selected=true]:after {
    background-color: windowText;
  }
}
.ds-c-tabs__item:hover, .ds-c-tabs__item:visited:hover {
  background-color: var(--tabs__background-color--hover);
  color: var(--tabs__color--hover);
}

.ds-c-tabs__item:focus, .ds-c-tabs__item:visited:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
  position: relative;
  z-index: 100;
}

.ds-c-tabs__item:active, .ds-c-tabs__item:visited:active {
  color: var(--tabs__color--active);
}

.ds-c-tabs__item:visited[aria-disabled=true], .ds-c-tabs__item[aria-disabled=true] {
  background-color: var(--tabs__background-color--disabled);
  border-color: var(--tabs__border-color--disabled);
  color: var(--tabs__color--disabled);
}

@media (forced-colors: active) {
  .ds-c-tabs__item:visited[aria-disabled=true], .ds-c-tabs__item[aria-disabled=true] {
    color: GrayText;
    cursor: not-allowed;
  }
}
.ds-c-tabs__item:visited > svg, .ds-c-tabs__item > svg {
  fill: currentColor;
  height: 1em;
  margin-block: -0.1em;
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  width: 1em;
}

@media (forced-colors: active) {
  .ds-c-tabs__item:visited > svg, .ds-c-tabs__item > svg {
    fill: ButtonText;
  }
}
.ds-c-field {
  -webkit-appearance: none;
  appearance: none;
  border: var(--text-input__border-width) solid var(--text-input__border-color);
  border-radius: var(--text-input__border-radius);
  color: var(--text-input__color);
  display: block;
  line-height: var(--text-input__line-height);
  margin-block-start: 4px;
  max-width: var(--field-max-width);
  outline: none;
  padding: var(--text-input__padding);
  width: 100%;
}

.ds-c-field:-moz-ui-invalid {
  box-shadow: none;
}

.ds-c-field:disabled {
  background-color: var(--text-input__background-color--disabled);
  border-color: var(--text-input__border-color--disabled);
  border-width: var(--text-input__border-width--disabled, var(--text-input__border-width));
}

@media (forced-colors: active) {
  .ds-c-field:disabled {
    cursor: not-allowed;
  }
  .ds-c-field:disabled > option {
    color: GrayText;
  }
}
.ds-c-field:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-field--small {
  max-width: var(--field-max-width--small);
}

.ds-c-field--medium {
  max-width: var(--field-max-width--medium);
}

.ds-c-field-mask {
  line-height: var(--text-input__line-height);
}

.ds-c-field--inverse {
  border-color: var(--text-input__border-color--inverse);
}

.ds-c-field--error {
  border: var(--text-input__border-width--error) solid var(--text-input__border-color--error);
}

.ds-c-field--error.ds-c-field--inverse {
  border: var(--text-input__border-width--error) solid var(--text-input__border-color--error--inverse);
}

.ds-c-external-link__icon {
  height: 1em;
  margin-inline-start: 8px;
  position: relative;
  top: -2px;
  width: 1em;
}

.ds-c-tooltip__trigger-icon, .ds-c-tooltip__trigger-link {
  background: none;
  border: 0;
}

.ds-c-tooltip__container {
  display: inline;
}

.ds-base--inverse .ds-c-tooltip__trigger-link, .ds-c-tooltip__trigger-link {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-position: under;
}

@media (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .ds-base--inverse .ds-c-tooltip__trigger-link, .ds-c-tooltip__trigger-link {
    text-underline-offset: 4px;
  }
}
.ds-c-tooltip__trigger {
  display: inline;
  font-weight: var(--font-weight-normal);
}

.ds-c-tooltip__trigger-icon {
  padding: 4px;
}

.ds-c-tooltip__trigger-icon:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

.ds-c-tooltip__trigger-link {
  color: var(--tooltip-trigger__color);
  padding: 0;
}

@media (forced-colors: active) {
  .ds-base--inverse .ds-c-tooltip__trigger-link, .ds-c-tooltip__trigger-link {
    color: ButtonText;
  }
}
.ds-c-tooltip__arrow {
  box-sizing: initial;
  height: 16px;
  pointer-events: none;
  width: 16px;
}

.ds-c-tooltip__arrow:after {
  background: var(--tooltip__background-color);
  box-sizing: initial;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  width: 8px;
}

.ds-c-tooltip__content {
  border-radius: var(--radius-large);
  box-shadow: 0 0 17px var(--tooltip__box-shadow-color);
  color: var(--tooltip__color);
  padding: 16px;
}

.ds-c-tooltip__content:first-child {
  margin-block-start: 0;
}

.ds-c-tooltip__content:last-child {
  margin-block-end: 0;
}

.ds-c-tooltip__header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-block-end: 8px;
}

.ds-c-tooltip__header .ds-c-tooltip__close-button {
  min-width: 32px;
}

.ds-c-tooltip__header--right {
  justify-content: flex-end;
}

.ds-c-tooltip__interactive-border {
  box-sizing: initial;
  height: 100%;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.ds-c-tooltip {
  background: var(--tooltip__background-color);
  border-color: var(--tooltip__border-color);
  border-radius: var(--radius-large);
  border-style: solid;
  border-width: var(--tooltip__border-width);
  display: none;
  opacity: 0;
}

.ds-c-tooltip-enter {
  display: inline-block;
  opacity: 0;
}

.ds-c-tooltip-enter-active {
  transition: opacity var(--animation-speed-1);
}

.ds-c-tooltip-enter-active, .ds-c-tooltip-enter-done, .ds-c-tooltip-exit {
  display: inline-block;
  opacity: 1;
}

.ds-c-tooltip-exit-active {
  display: inline-block;
  opacity: 0;
  transition: opacity var(--animation-speed-1);
}

.ds-c-tooltip-exit-done {
  display: none;
  opacity: 0;
}

.ds-c-tooltip[data-popper-placement^=top] .ds-c-tooltip__arrow {
  top: 100%;
}

.ds-c-tooltip[data-popper-placement^=top] .ds-c-tooltip__arrow:after {
  border-block-end: var(--tooltip__border-width) solid var(--tooltip__border-color);
  border-inline-end: var(--tooltip__border-width) solid var(--tooltip__border-color);
  top: 1px;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.ds-c-tooltip[data-popper-placement^=bottom] .ds-c-tooltip__arrow {
  top: -8px;
}

.ds-c-tooltip[data-popper-placement^=bottom] .ds-c-tooltip__arrow:after {
  border-block-start: var(--tooltip__border-width) solid var(--tooltip__border-color);
  border-inline-start: var(--tooltip__border-width) solid var(--tooltip__border-color);
  bottom: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.ds-c-tooltip[data-popper-placement^=left] .ds-c-tooltip__arrow {
  right: -8px;
}

.ds-c-tooltip[data-popper-placement^=left] .ds-c-tooltip__arrow:after {
  border-block-start: var(--tooltip__border-width) solid var(--tooltip__border-color);
  border-inline-end: var(--tooltip__border-width) solid var(--tooltip__border-color);
  left: 0;
  transform: translateX(50%) translateY(50%) rotate(45deg);
}

.ds-c-tooltip[data-popper-placement^=right] .ds-c-tooltip__arrow {
  left: -8px;
}

.ds-c-tooltip[data-popper-placement^=right] .ds-c-tooltip__arrow:after {
  border-block-end: var(--tooltip__border-width) solid var(--tooltip__border-color);
  border-inline-start: var(--tooltip__border-width) solid var(--tooltip__border-color);
  left: -2px;
  transform: translateX(50%) translateY(50%) rotate(45deg);
}

.ds-c-tooltip-icon__container {
  border: 4px solid rgba(0, 0, 0, 0);
  border-radius: 100%;
  display: inline-block;
  height: 24px;
  position: relative;
  vertical-align: middle;
  width: 24px;
}

@media (forced-colors: active) {
  .ds-c-tooltip-icon__container {
    border-color: Window;
  }
}
.ds-c-tooltip-icon {
  fill: var(--tooltip-icon__color);
  display: inline-block;
  height: 16px;
  left: 0;
  overflow: visible !important;
  position: absolute;
  text-align: center;
  top: 0;
  width: 16px;
}

@media (forced-colors: active) {
  .ds-c-tooltip-icon path {
    fill: ButtonText;
  }
}
.ds-c-tooltip-icon--active .ds-c-tooltip-icon__container, .ds-c-tooltip__trigger:active .ds-c-tooltip-icon__container, .ds-c-tooltip__trigger:focus .ds-c-tooltip-icon__container, .ds-c-tooltip__trigger:hover .ds-c-tooltip-icon__container {
  border-color: var(--tooltip__border-color--active);
  color: var(--tooltip-icon__color);
}

.ds-c-tooltip-icon--inverse {
  fill: var(--tooltip-icon__color--inverse);
}

.ds-c-tooltip__trigger--inverse.ds-c-tooltip-icon--active .ds-c-tooltip-icon__container, .ds-c-tooltip__trigger--inverse.ds-c-tooltip__trigger:active .ds-c-tooltip-icon__container, .ds-c-tooltip__trigger--inverse.ds-c-tooltip__trigger:focus .ds-c-tooltip-icon__container, .ds-c-tooltip__trigger--inverse.ds-c-tooltip__trigger:hover .ds-c-tooltip-icon__container {
  border-color: var(--tooltip__border-color--inverse-active);
  color: var(--tooltip-icon__color--inverse);
}

.ds-c-field-mask {
  position: relative;
}

.ds-c-field__before {
  inset: var(--text-input__padding) auto var(--text-input__padding) var(--text-input__padding);
  position: absolute;
}

.ds-c-field__before--currency {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--text-input-currency-icon__line-height, inherit);
  padding-block-start: 1px;
}

.ds-c-field--currency {
  padding-inline-start: var(--text-input-currency-icon__spacing, 20px);
}

.ds-c-label-mask {
  color: var(--color-muted);
  font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
}

.ds-c-field--day, .ds-c-field--month, .ds-c-field--year {
  box-sizing: initial;
}

.ds-c-field--day, .ds-c-field--month {
  width: 4ch;
}

.ds-c-field--year {
  width: 6ch;
}

.ds-c-datefield__container {
  align-items: flex-end;
}

.ds-c-datefield__separator {
  display: var(--date-field__show-separators, none);
  font-size: var(--font-size-2xl);
  line-height: 1;
  margin: 0;
  padding: var(--text-input__padding) 0;
}

.ds-c-datefield__label {
  font-weight: var(--font-weight-normal);
  margin-block-start: 8px;
}

.ds-c-usa-banner {
  --font-family:"Inter","Roboto","Helvetica Neue","Arial Nova","Nimbus Sans","Arial",sans-serif;
  --heading__line-height:1.1;
  --domain-icon__color:#0071bc;
  --security-icon__color:#12890e;
  background-color: var(--usa-banner__background-color);
  color: var(--usa-banner-color, inherit);
  font-family: var(--font-family);
}

.ds-c-usa-banner__guidance-container, .ds-c-usa-banner__header {
  --gutter-width:var(--usa-banner-gutter-width,var(--grid-gutter-width));
  margin-inline: auto;
  max-width: var(--usa-banner__max-width, var(--usa-banner__no-max-width, var(--site-max-width)));
  padding-inline: calc(var(--gutter-width) * 0.5);
}

@media (min-width: 544px) {
  .ds-c-usa-banner__guidance-container, .ds-c-usa-banner__header {
    padding-inline: var(--gutter-width);
  }
}
.ds-c-usa-banner__header {
  display: grid;
  gap: 2px 1ch;
  grid-template: repeat(2, min-content)/1.5em auto;
  grid-template-areas: "icon text" "spacer action";
  line-height: var(--heading__line-height);
  min-height: 3rem;
  padding-block: 0.5rem;
  position: relative;
}

@media (max-width: 769px) {
  .ds-c-usa-banner__header.ds-c-usa-banner__header--expanded {
    padding-inline-end: 3.25rem;
  }
}
@media (min-width: 769px) {
  .ds-c-usa-banner__header {
    align-items: center;
    display: flex;
    min-height: auto;
  }
}
.ds-c-usa-banner__header-icon {
  grid-area: icon;
  height: 1em;
  width: 1em;
}

.ds-c-usa-banner__header-text {
  grid-area: text;
  margin: 0;
}

.ds-c-usa-banner__action {
  grid-area: action;
  margin: 0;
}

.ds-c-usa-banner__header--expanded .ds-c-usa-banner__action {
  display: none;
}

.ds-c-usa-banner__action-icon {
  color: currentColor;
  height: 0.75em;
  margin-inline-start: 0.5ch;
  vertical-align: initial;
  width: 0.75em;
}

.ds-c-usa-banner__button {
  align-items: stretch;
  background-color: initial;
  border: 0;
  cursor: pointer;
  display: flex;
  inset: 0;
  inset-inline-start: auto;
  justify-content: flex-end;
  padding: 0;
  position: absolute;
  width: 100%;
}

.ds-c-usa-banner__button:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .ds-c-usa-banner__button:focus {
    box-shadow: none;
    outline: 0.25em solid var(--color-focus-dark);
    outline-offset: -0.25em;
  }
}
@media (min-width: 768px) {
  .ds-c-usa-banner__button {
    display: inline-block;
    grid-area: action;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 1.1;
    position: relative;
    text-align: start;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 767px) {
  .ds-c-usa-banner__button-text {
    clip: rect(0, 0, 0, 0);
    word-wrap: normal;
    border: 0;
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
.ds-c-usa-banner__action, .ds-c-usa-banner__button-text {
  color: var(--usa-banner-link__color, var(--link__color));
  text-decoration: underline;
}

[aria-expanded=true] .ds-c-usa-banner__button-icon-container {
  background-color: var(--usa-banner-close-button__background-color--mobile);
  display: flex;
  place-content: center;
  place-items: center;
  width: 3rem;
}

@media (min-width: 768px) {
  [aria-expanded=true] .ds-c-usa-banner__button-icon-container {
    display: none;
  }
}
.ds-c-usa-banner__button-icon {
  color: var(--usa-banner-close-button__color--mobile);
  font-size: inherit !important;
  height: 1em;
  width: 1em;
}

.ds-c-usa-banner__guidance-container {
  padding-block: 3rem 1.5rem;
}

.ds-c-usa-banner__guidance-container:not([hidden]) {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ds-c-usa-banner__guidance-container:not([hidden]) {
    grid-template-columns: 1fr 1fr;
  }
}
.ds-c-usa-banner__guidance-item {
  display: grid;
  gap: 0 1ch;
  grid-template-areas: "icon text";
  grid-template-columns: min-content auto;
}

.ds-c-usa-banner__guidance-item:first-child {
  --icon-color:var(--domain-icon__color);
}

.ds-c-usa-banner__guidance-item:last-child {
  --icon-color:var(--security-icon__color);
}

.ds-c-usa-banner__guidance-icon {
  color: var(--icon-color);
  height: 2.5em;
  width: 2.5em;
}

.ds-c-usa-banner__guidance-text {
  margin: 0;
}

.ds-c-usa-banner__inline-lock-icon {
  height: 0.75em;
  width: 0.75em;
}

.ds-c-vertical-nav__label--parent:hover, .ds-c-vertical-nav__label:hover, .ds-c-vertical-nav__label:visited:hover {
  background-color: var(--vertical-nav-item__background-color--hover);
  color: var(--vertical-nav-item__color--hover);
  text-decoration: none;
}

.ds-c-vertical-nav__label--parent.ds-c-vertical-nav__label--current:focus, .ds-c-vertical-nav__label--parent:focus, .ds-c-vertical-nav__label.ds-c-vertical-nav__label--current:focus, .ds-c-vertical-nav__label:focus, .ds-c-vertical-nav__label:visited.ds-c-vertical-nav__label--current:focus, .ds-c-vertical-nav__label:visited:focus {
  box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
  outline: 3px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
  position: relative;
  z-index: 100;
}

.ds-c-vertical-nav > .ds-c-vertical-nav__item {
  background-color: initial;
  border-block-start: 1px solid var(--vertical-nav-item__border-color);
}

.ds-c-vertical-nav > .ds-c-vertical-nav__item:first-child {
  border-block-start: 0;
}

@media (forced-colors: active) {
  .ds-c-vertical-nav {
    border-block: 1px solid LinkText;
    border-inline-end: 1px solid LinkText;
  }
  .ds-c-vertical-nav .ds-c-vertical-nav__item {
    border-block: 1px solid LinkText;
  }
}
.ds-c-vertical-nav--collapsed {
  display: none;
}

.ds-c-vertical-nav__label, .ds-c-vertical-nav__label:visited {
  border-inline-start: 4px solid rgba(0, 0, 0, 0);
  color: var(--vertical-nav-label__color);
  display: block;
  line-height: var(--font-line-height-heading);
  padding: 8px 16px;
  text-decoration: none;
}

@media (forced-colors: active) {
  .ds-c-vertical-nav__label--current.ds-c-vertical-nav__label--parent {
    color: window;
  }
}
.ds-c-vertical-nav__label--parent {
  background-color: initial;
  border-block: 0;
  border-inline-end: 0;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (forced-colors: active) {
  .ds-c-vertical-nav__label--parent {
    -ms-high-contrast-adjust: none;
    background-color: LinkText;
    forced-color-adjust: none;
  }
  .ds-c-vertical-nav__label--parent:focus, .ds-c-vertical-nav__label--parent:hover {
    -ms-high-contrast-adjust: none;
    background-color: window;
    color: LinkText;
    forced-color-adjust: none;
    outline: 4px solid LinkText;
    outline-offset: -4px;
  }
}
.ds-c-vertical-nav__label--parent .ds-c-icon {
  color: var(--vertical-nav-label-icon__color);
  height: var(--font-size-md);
  width: var(--font-size-md);
}

@media (forced-colors: active) {
  .ds-c-vertical-nav__label--parent .ds-c-icon path {
    fill: Window;
  }
}
.ds-c-vertical-nav__label--current, .ds-c-vertical-nav__label--current:visited {
  border-inline-start-color: var(--vertical-nav-label__border-color--current);
  color: var(--vertical-nav-label__color--current);
  font-weight: var(--font-weight-bold);
}

@media (forced-colors: active) {
  .ds-c-vertical-nav__label--current, .ds-c-vertical-nav__label--current:visited {
    border-inline-start-color: WindowText;
  }
}
.ds-c-vertical-nav__subnav .ds-c-vertical-nav__label {
  font-size: var(--font-size-sm);
  padding-inline-start: 24px;
}

@media (forced-colors: active) {
  .ds-c-vertical-nav__subnav .ds-c-vertical-nav__label:focus, .ds-c-vertical-nav__subnav .ds-c-vertical-nav__label:hover {
    text-decoration: underline;
  }
}
.ds-c-vertical-nav__subnav .ds-c-vertical-nav__label--current {
  border-color: rgba(0, 0, 0, 0);
}

@media (forced-colors: active) {
  .ds-c-vertical-nav__subnav .ds-c-vertical-nav__label--current {
    border-color: WindowText;
  }
}
.ds-c-vertical-nav__subnav .ds-c-vertical-nav__subnav .ds-c-vertical-nav__label {
  padding-inline-start: 32px;
}

@media (forced-colors: active) {
  .ds-c-vertical-nav__subnav {
    margin-inline-start: 16px;
  }
}
:root, ::before, ::after, ::backdrop {
  --radius-circle: 100%;
  --radius-default: 3px;
  --radius-large: 8px;
  --radius-medium: 4px;
  --radius-pill: 9999px;
  --radius-small: 2px;
  --site-margins: 3rem;
  --site-margins-mobile: 1.5rem;
  --site-max-width: 1104px;
  --media-width-xs: 0px;
  --media-width-sm: 544px;
  --media-width-md: 768px;
  --media-width-lg: 1024px;
  --media-width-xl: 1280px;
  --measure-narrow: 45ex;
  --measure-base: 65ex;
  --measure-wide: 80ex;
  --spacer-1: 8px;
  --spacer-2: 16px;
  --spacer-3: 24px;
  --spacer-4: 32px;
  --spacer-5: 40px;
  --spacer-6: 48px;
  --spacer-7: 56px;
  --spacer-none: 0px;
  --spacer-half: 4px;
  --grid-columns: 12;
  --grid-gutter-width: var(--spacer-4);
  --grid-form-gutter-width: var(--spacer-2);
  --animation-speed-1: 250ms;
  --animation-speed-2: 300ms;
  --animation-speed-3: 500ms;
  --animation-speed-4: 800ms;
  --field-max-width: 460px;
  --field-max-width--small: 6rem;
  --field-max-width--medium: 12rem;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-transparent: transparent;
  --color-transparent-black-alpha50: #00000080;
  --color-transparent-black-alpha25: #00000040;
  --color-transparent-white-alpha50: #ffffff80;
  --color-transparent-white-alpha25: #ffffff40;
  --color-background: #ffffff;
  --color-background-inverse: #00395e;
  --color-base: #262626;
  --color-base-inverse: #ffffff;
  --color-border: #d9d9d9;
  --color-border-dark: #0f1e38;
  --color-border-inverse: #ffffff;
  --color-error-lightest: #fef5f7;
  --color-error-lighter: #f7bbc5;
  --color-error-light: #eb6077;
  --color-error: #e31c3d;
  --color-error-dark: #cc1937;
  --color-error-darker: #9f142b;
  --color-error-darkest: #720e1f;
  --color-focus-light: #ffffff;
  --color-focus-dark: #bd13b8;
  --color-gray-lightest: #f2f2f2;
  --color-gray-lighter: #d9d9d9;
  --color-gray-light: #a6a6a6;
  --color-gray: #808080;
  --color-gray-dark: #5a5a5a;
  --color-gray-darker: #404040;
  --color-gray-darkest: #262626;
  --color-muted: #5a5a5a;
  --color-muted-inverse: #e9ecf1;
  --color-primary-lightest: #e6f1f8;
  --color-primary-lighter: #b3d4eb;
  --color-primary-light: #4d9cd0;
  --color-primary: #0071bc;
  --color-primary-dark: #0066a9;
  --color-primary-darker: #004f84;
  --color-primary-darkest: #00395e;
  --color-secondary-lightest: #e7f3e7;
  --color-secondary-lighter: #b8dcb7;
  --color-secondary-light: #59ac56;
  --color-secondary: #12890e;
  --color-secondary-dark: #107b0d;
  --color-secondary-darker: #0d600a;
  --color-secondary-darkest: #094507;
  --color-accent-primary-lightest: #fcebe6;
  --color-accent-primary-lighter: #f5c3b3;
  --color-accent-primary-light: #e7724f;
  --color-accent-primary: #dd3603;
  --color-accent-primary-dark: #c73103;
  --color-accent-primary-darker: #9b2602;
  --color-accent-primary-darkest: #6f1b02;
  --color-info-lightest: #e6f9fd;
  --color-info-lighter: #b3ecf8;
  --color-info-light: #4ed2ee;
  --color-info: #02bfe7;
  --color-info-dark: #02acd0;
  --color-info-darker: #0186a2;
  --color-info-darkest: #016074;
  --color-success-lightest: #f6faf5;
  --color-success-lighter: #b8dcb7;
  --color-success-light: #59ac56;
  --color-success: #12890e;
  --color-success-dark: #107b0d;
  --color-success-darker: #0d600a;
  --color-success-darkest: #094507;
  --color-warn-lightest: #fef9e9;
  --color-warn-lighter: #fdedbc;
  --color-warn-light: #fad662;
  --color-warn: #f8c41f;
  --color-warn-dark: #dfb01c;
  --color-warn-darker: #ae8916;
  --color-warn-darkest: #7c6210;
  --color-visited: #4c2c92;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.3125rem;
  --font-size-2xl--mobile: 1.5rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl--mobile: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl--mobile: 2.25rem;
  --font-size-4xl: 3rem;
  --font-size-5xl--mobile: 2.25rem;
  --font-size-5xl--tablet: 3rem;
  --font-size-5xl: 3.75rem;
  --font-line-height-reset: 1;
  --font-line-height-heading: 1.2999999523162842;
  --font-line-height-base: 1.5;
  --font-line-height-lead: 1.7000000476837158;
  --font-family-heading: "Open Sans", "Inter", "Roboto", "Helvetica Neue", "Arial Nova", "Nimbus Sans", "Arial", "sans-serif";
  --font-family-body: "Open Sans", "Inter", "Roboto", "Helvetica Neue", "Arial Nova", "Nimbus Sans", "Arial", "sans-serif";
  --font-family-button: "Open Sans", "Inter", "Roboto", "Helvetica Neue", "Arial Nova", "Nimbus Sans", "Arial", "sans-serif";
  --font-family-link: "Open Sans", "Inter", "Roboto", "Helvetica Neue", "Arial Nova", "Nimbus Sans", "Arial", "sans-serif";
  --font-weight-heading-5xl: var(--font-weight-bold);
  --font-weight-heading-4xl: var(--font-weight-normal);
  --font-weight-heading-3xl: var(--font-weight-normal);
  --font-weight-heading-2xl: var(--font-weight-bold);
  --font-weight-heading-xl: var(--font-weight-bold);
  --font-weight-heading-lg: var(--font-weight-bold);
  --font-weight-heading-md: var(--font-weight-bold);
  --font-weight-heading-sm: var(--font-weight-normal);
  --font-weight-body-lg: var(--font-weight-normal);
  --font-weight-body-md: var(--font-weight-normal);
  --font-weight-body-sm: var(--font-weight-normal);
  --font-weight-button-lg: var(--font-weight-bold);
  --font-weight-button-md: var(--font-weight-bold);
  --font-weight-button-sm: var(--font-weight-normal);
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --global__color: var(--color-base);
  --global__color--inverse: var(--color-base-inverse);
  --global__font-family: var(--font-family-body);
  --global__font-size: var(--font-size-base);
  --global__line-height: var(--font-line-height-base);
  --accordion__color: var(--color-base);
  --accordion__border-top-left-radius: 0px;
  --accordion__border-top-right-radius: 0px;
  --accordion__border-bottom-left-radius: 0px;
  --accordion__border-bottom-right-radius: 0px;
  --accordion__border-width: var(--spacer-half);
  --accordion-button__color: var(--color-base);
  --accordion-content__background-color: var(--color-white);
  --accordion__background-color: var(--color-gray-lightest);
  --accordion__background-color--hover: var(--color-gray-lighter);
  --accordion__border-color: var(--color-gray-lightest);
  --alert__background-color--lightweight: var(--color-white);
  --alert__border-left-color: var(--color-info);
  --alert__border-color--error: var(--color-error);
  --alert__border-color--success: var(--color-success);
  --alert__border-color--warn: var(--color-warn);
  --alert__font-color: var(--color-base);
  --alert__background-color: var(--color-info-lightest);
  --alert__background-color--error: var(--color-error-lightest);
  --alert__background-color--success: var(--color-success-lightest);
  --alert__background-color--warn: var(--color-warn-lightest);
  --alert__icon-size: 1.5rem;
  --alert__padding: var(--spacer-2);
  --alert-bar__width: var(--spacer-1);
  --badge__background-color--alert: var(--color-error);
  --badge__background-color--info: var(--color-primary);
  --badge__background-color--success: var(--color-success);
  --badge__background-color--warn: var(--color-warn);
  --badge__font-color: var(--color-white);
  --badge__font-color--alert: var(--color-white);
  --badge__font-color--info: var(--color-white);
  --badge__font-color--success: var(--color-white);
  --badge__font-color--warn: var(--color-base);
  --badge__background-color: var(--color-gray-dark);
  --badge__border-radius: var(--radius-pill);
  --button__background-color: var(--color-transparent);
  --button__background-color--active: var(--color-gray-lighter);
  --button__background-color--hover: var(--color-gray-lightest);
  --button__background-color--disabled: var(--color-transparent);
  --button__border-color: var(--color-primary);
  --button__border-color--active: var(--color-primary-darkest);
  --button__border-color--hover: var(--color-primary-darker);
  --button__border-color--disabled: var(--color-gray-lighter);
  --button__border-radius: var(--radius-default);
  --button__border-width: 1px;
  --button__color: var(--color-primary);
  --button__color--active: var(--color-primary-darkest);
  --button__color--hover: var(--color-primary-darker);
  --button__color--disabled: var(--color-gray-lighter);
  --button-alt__background-color: var(--color-transparent);
  --button-alt__background-color--active: var(--color-gray-lighter);
  --button-alt__background-color--hover: var(--color-gray-lightest);
  --button-alt__background-color--disabled: var(--color-transparent);
  --button-alt__border-color: var(--color-secondary);
  --button-alt__border-color--active: var(--color-secondary-darkest);
  --button-alt__border-color--hover: var(--color-secondary-darker);
  --button-alt__border-color--disabled: var(--color-gray-lighter);
  --button-alt__color: var(--color-secondary);
  --button-alt__color--active: var(--color-secondary-darkest);
  --button-alt__color--hover: var(--color-secondary-darker);
  --button-alt__color--disabled: var(--color-gray-lighter);
  --button-dark__background-color: var(--color-transparent);
  --button-dark__background-color--active: var(--color-transparent);
  --button-dark__background-color--hover: var(--color-transparent);
  --button-dark__background-color--disabled: var(--color-transparent);
  --button-dark__border-color: var(--color-gray-lightest);
  --button-dark__border-color--active: var(--color-gray-lighter);
  --button-dark__border-color--hover: var(--color-white);
  --button-dark__border-color--disabled: var(--color-gray-dark);
  --button-dark__color: var(--color-gray-lightest);
  --button-dark__color--active: var(--color-gray-lighter);
  --button-dark__color--hover: var(--color-white);
  --button-dark__color--disabled: var(--color-gray-dark);
  --button-dark-alt__background-color: var(--color-transparent);
  --button-dark-alt__background-color--active: var(--color-transparent);
  --button-dark-alt__background-color--hover: var(--color-transparent);
  --button-dark-alt__background-color--disabled: var(--color-transparent);
  --button-dark-alt__border-color: var(--color-secondary-lighter);
  --button-dark-alt__border-color--active: var(--color-secondary-light);
  --button-dark-alt__border-color--hover: var(--color-secondary-lightest);
  --button-dark-alt__border-color--disabled: var(--color-gray-dark);
  --button-dark-alt__color: var(--color-secondary-lighter);
  --button-dark-alt__color--active: var(--color-secondary-light);
  --button-dark-alt__color--hover: var(--color-secondary-lightest);
  --button-dark-alt__color--disabled: var(--color-gray-dark);
  --button-solid__background-color: var(--color-primary);
  --button-solid__background-color--active: var(--color-primary-darkest);
  --button-solid__background-color--hover: var(--color-primary-darker);
  --button-solid__background-color--disabled: var(--color-gray-lighter);
  --button-solid__border-color: var(--color-primary);
  --button-solid__border-color--active: var(--color-primary-darkest);
  --button-solid__border-color--hover: var(--color-primary-darker);
  --button-solid__border-color--disabled: var(--color-gray-lighter);
  --button-solid__color: var(--color-white);
  --button-solid__color--active: var(--color-white);
  --button-solid__color--hover: var(--color-white);
  --button-solid__color--disabled: var(--color-gray-darker);
  --button-solid-alt__background-color: var(--color-secondary);
  --button-solid-alt__background-color--active: var(--color-secondary-darkest);
  --button-solid-alt__background-color--hover: var(--color-secondary-darker);
  --button-solid-alt__background-color--disabled: var(--color-gray-lighter);
  --button-solid-alt__border-color: var(--color-secondary);
  --button-solid-alt__border-color--active: var(--color-secondary-darkest);
  --button-solid-alt__border-color--hover: var(--color-secondary-darker);
  --button-solid-alt__border-color--disabled: var(--color-gray-lighter);
  --button-solid-alt__color: var(--color-white);
  --button-solid-alt__color--active: var(--color-white);
  --button-solid-alt__color--hover: var(--color-white);
  --button-solid-alt__color--disabled: var(--color-gray-darker);
  --button-solid-dark__background-color: var(--color-gray-lightest);
  --button-solid-dark__background-color--active: var(--color-gray-lighter);
  --button-solid-dark__background-color--hover: var(--color-white);
  --button-solid-dark__background-color--disabled: var(--color-gray-darker);
  --button-solid-dark__border-color: var(--color-gray-lightest);
  --button-solid-dark__border-color--active: var(--color-gray-lighter);
  --button-solid-dark__border-color--hover: var(--color-white);
  --button-solid-dark__border-color--disabled: var(--color-gray-darker);
  --button-solid-dark__color: var(--color-base);
  --button-solid-dark__color--active: var(--color-base);
  --button-solid-dark__color--hover: var(--color-base);
  --button-solid-dark__color--disabled: var(--color-base);
  --button-solid-dark-alt__background-color: var(--color-secondary-lighter);
  --button-solid-dark-alt__background-color--active: var(--color-secondary);
  --button-solid-dark-alt__background-color--hover: var(--color-secondary-lightest);
  --button-solid-dark-alt__background-color--disabled: var(--color-gray-darker);
  --button-solid-dark-alt__border-color: var(--color-secondary-lighter);
  --button-solid-dark-alt__border-color--active: var(--color-secondary);
  --button-solid-dark-alt__border-color--hover: var(--color-secondary-lightest);
  --button-solid-dark-alt__border-color--disabled: var(--color-gray-darker);
  --button-solid-dark-alt__color: var(--color-base);
  --button-solid-dark-alt__color--active: var(--color-base);
  --button-solid-dark-alt__color--hover: var(--color-base);
  --button-solid-dark-alt__color--disabled: var(--color-base);
  --button-ghost__background-color: var(--color-transparent);
  --button-ghost__background-color--active: var(--color-transparent);
  --button-ghost__background-color--hover: var(--color-transparent);
  --button-ghost__background-color--disabled: var(--color-transparent);
  --button-ghost__border-color: var(--color-transparent);
  --button-ghost__border-color--active: var(--color-transparent);
  --button-ghost__border-color--hover: var(--color-transparent);
  --button-ghost__border-color--disabled: var(--color-transparent);
  --button-ghost__color: var(--color-primary);
  --button-ghost__color--active: var(--color-primary-darkest);
  --button-ghost__color--hover: var(--color-primary-darker);
  --button-ghost__color--disabled: var(--color-gray-lighter);
  --button-ghost-alt__background-color: var(--color-transparent);
  --button-ghost-alt__background-color--active: var(--color-transparent);
  --button-ghost-alt__background-color--hover: var(--color-transparent);
  --button-ghost-alt__background-color--disabled: var(--color-transparent);
  --button-ghost-alt__border-color: var(--color-transparent);
  --button-ghost-alt__border-color--active: var(--color-transparent);
  --button-ghost-alt__border-color--hover: var(--color-transparent);
  --button-ghost-alt__border-color--disabled: var(--color-transparent);
  --button-ghost-alt__color: var(--color-secondary);
  --button-ghost-alt__color--active: var(--color-secondary-darkest);
  --button-ghost-alt__color--hover: var(--color-secondary-darker);
  --button-ghost-alt__color--disabled: var(--color-gray-lighter);
  --button-ghost-dark__background-color: var(--color-transparent);
  --button-ghost-dark__background-color--active: var(--color-transparent);
  --button-ghost-dark__background-color--hover: var(--color-transparent);
  --button-ghost-dark__background-color--disabled: var(--color-transparent);
  --button-ghost-dark__border-color: var(--color-transparent);
  --button-ghost-dark__border-color--active: var(--color-transparent);
  --button-ghost-dark__border-color--hover: var(--color-transparent);
  --button-ghost-dark__border-color--disabled: var(--color-transparent);
  --button-ghost-dark__color: var(--color-gray-lightest);
  --button-ghost-dark__color--active: var(--color-gray-lighter);
  --button-ghost-dark__color--hover: var(--color-white);
  --button-ghost-dark__color--disabled: var(--color-gray-dark);
  --button-ghost-dark-alt__background-color: var(--color-transparent);
  --button-ghost-dark-alt__background-color--active: var(--color-transparent);
  --button-ghost-dark-alt__background-color--hover: var(--color-transparent);
  --button-ghost-dark-alt__background-color--disabled: var(--color-transparent);
  --button-ghost-dark-alt__border-color: var(--color-transparent);
  --button-ghost-dark-alt__border-color--active: var(--color-transparent);
  --button-ghost-dark-alt__border-color--hover: var(--color-transparent);
  --button-ghost-dark-alt__border-color--disabled: var(--color-transparent);
  --button-ghost-dark-alt__color: var(--color-secondary-lighter);
  --button-ghost-dark-alt__color--active: var(--color-secondary);
  --button-ghost-dark-alt__color--hover: var(--color-secondary-lightest);
  --button-ghost-dark-alt__color--disabled: var(--color-gray-dark);
  --choice__background-color: var(--color-background);
  --choice__background-color--checked: var(--color-primary);
  --choice__background-color--inverse: var(--color-transparent);
  --choice__border-color: var(--color-base);
  --choice__border-color--checked: var(--color-primary);
  --choice__border-color--error: var(--color-base);
  --choice__border-color--error--inverse: var(--color-white);
  --choice__border-color--inverse: var(--color-white);
  --choice__border-color--left: var(--color-primary);
  --choice__border-radius: 0px;
  --choice__border-width: 2px;
  --choice__color--unchecked: var(--color-white);
  --choice__color--disabled: var(--color-muted);
  --choice__size--small: 20px;
  --choice__size-radio: 22px;
  --choice__size-radio--small: 12px;
  --choice-label__color--disabled: var(--color-muted);
  --choice-label__color--disabled--inverse: var(--color-muted-inverse);
  --choice-label__top-offset: 0.25rem;
  --choice__background-color--disabled: var(--color-gray-lighter);
  --choice__border-color--disabled: var(--color-gray-light);
  --choice__border-color--focus: var(--color-primary-darker);
  --choice__border-color--disabled--inverse: var(--color-gray-light);
  --choice__size: 32px;
  --choice__background-color--disabled--inverse: #e9ecf126;
  --choice-wrapper__gap: 0.5rem;
  --choice-wrapper__gap--small: 0.5rem;
  --date-field__show-separators: 1;
  --day-picker-button__background-color--hover: var(--color-primary-lightest);
  --dialog__background-color: var(--color-background);
  --dialog-overlay__background-color: var(--color-transparent-black-alpha50);
  --dialog__padding: var(--spacer-4);
  --drawer__background-color: var(--color-background);
  --drawer__border-color: var(--color-border);
  --drawer-close__color: var(--color-black);
  --drawer-toggle__background-color--hover: var(--color-info);
  --drawer-toggle__background-color--hover--inverse: var(--color-white);
  --drawer-toggle__color--hover: var(--color-white);
  --drawer-toggle__color--hover--inverse: var(--color-gray-darker);
  --drawer-header__background-color: var(--color-gray-lightest);
  --drawer-footer__background-color: var(--color-info-lightest);
  --drawer__animation-timing: var(--animation-speed-2);
  --filter-chip__background-color: var(--color-primary-lightest);
  --filter-chip__background-color--active: var(--color-primary);
  --filter-chip__border-color: var(--color-primary);
  --filter-chip__border-color--active: var(--color-primary);
  --filter-chip__border-radius: var(--radius-pill);
  --filter-chip__color: var(--color-base);
  --filter-chip__color--active: var(--color-white);
  --filter-chip-icon__color: var(--color-base);
  --filter-chip-icon__color-active: var(--color-white);
  --hint__color: var(--color-muted);
  --hint__color--inverse: var(--color-muted-inverse);
  --label__font-family: var(--font-family-body);
  --label__font-size: var(--font-size-md);
  --label__font-weight: var(--font-weight-bold);
  --label__letter-spacing: 0px;
  --label__text-transform: inherit;
  --inline-error__color: var(--color-error);
  --inline-error__color--inverse: var(--color-error-lighter);
  --link__color: var(--color-primary);
  --link__color--active: var(--color-primary-darkest);
  --link__color--hover: var(--color-primary-darker);
  --link__color--visited: var(--color-visited);
  --link__text-decoration-offset: 0.0390625rem;
  --link__text-decoration-thickness: 0.0625rem;
  --link__text-decoration-thickness--hover: 0.0625rem;
  --link-inverse__color--active: var(--color-muted-inverse);
  --link-inverse__color--hover: var(--color-muted-inverse);
  --link-inverse__color--visited: var(--color-muted-inverse);
  --link-inverse__color: var(--color-base-inverse);
  --pagination-link__color: var(--color-primary);
  --pagination-link__color--hover: var(--color-primary-darker);
  --pagination-link__color--active: var(--color-primary-darkest);
  --pagination-link__color--focus: var(--color-primary-darker);
  --pagination-link__color--disabled: var(--color-gray-lighter);
  --pagination-overflow__color: var(--color-gray-dark);
  --pagination-page-count__color: var(--color-gray-dark);
  --pagination-current-page__color: var(--color-base);
  --steplist__background-color--current: var(--color-primary);
  --steplist__color: var(--color-muted);
  --steplist__color--current: var(--color-primary);
  --steplist-step__border-color: var(--color-border);
  --steplist-step__border-color--default: var(--color-muted);
  --steplist-step__background-color--completed: var(--color-base);
  --steplist-step__color: var(--color-muted);
  --steplist-step__color--current: var(--color-white);
  --steplist-step__color--completed: var(--color-base);
  --review__border-color: var(--color-border);
  --spinner__background-color: var(--color-background);
  --spinner__color: var(--color-base);
  --spinner__color--inverse: var(--color-white);
  --spinner__background-color--inverse: var(--color-background-inverse);
  --table__border-color: var(--color-black);
  --table__background-color--striped: var(--color-gray-lightest);
  --table__padding: var(--spacer-2);
  --table-header__background-color: var(--color-gray-lightest);
  --tabs__border-color: var(--color-border);
  --tabs__background-color: var(--color-background);
  --tabs__background-color--selected: var(--color-background);
  --tabs__background-color--hover: var(--color-background);
  --tabs__background-color--disabled: var(--color-gray-lighter);
  --tabs__border-color--selected: var(--color-primary);
  --tabs__border-color--disabled: var(--color-gray-lighter);
  --tabs__color: var(--color-base);
  --tabs__color--hover: var(--color-primary);
  --tabs__color--selected: var(--color-primary);
  --tabs-panel__background-color: var(--color-background);
  --tabs__color--active: var(--color-primary-darker);
  --tabs__color--disabled: var(--color-gray-darker);
  --text-input__background-color--disabled: var(--color-gray-lighter);
  --text-input__border-width: 2px;
  --text-input__border-width--disabled: 2px;
  --text-input__border-width--error: 3px;
  --text-input__border-color: var(--color-base);
  --text-input__border-color--disabled: var(--color-gray-light);
  --text-input__border-color--error: var(--color-error);
  --text-input__border-color--error--inverse: var(--color-error-lighter);
  --text-input__border-color--inverse: var(--color-black);
  --text-input__border-radius: var(--radius-default);
  --text-input__color: var(--color-base);
  --text-input__divider-color: var(--color-gray-light);
  --text-input__padding: var(--spacer-1);
  --text-input__line-height: 1.2999999523162842;
  --text-input-currency-icon__line-height: var(--text-input__line-height);
  --text-input-currency-icon__spacing: 20px;
  --tooltip__background-color: var(--color-background);
  --tooltip__border-color: var(--color-gray-darker);
  --tooltip__border-color--active: #0071bc40;
  --tooltip__border-color--inverse-active: #ffffff40;
  --tooltip__border-width: 1px;
  --tooltip__box-shadow-color: var(--color-gray-light);
  --tooltip__color: var(--color-base);
  --tooltip-icon__color: var(--color-primary);
  --tooltip-icon__color--inverse: var(--color-white);
  --tooltip-trigger__color: var(--color-base);
  --vertical-nav-item__background-color--hover: var(--color-gray-lightest);
  --vertical-nav-item__border-color: var(--color-gray-dark);
  --vertical-nav-item__color--hover: var(--color-primary);
  --vertical-nav-label__border-color--current: var(--color-primary);
  --vertical-nav-label__color: var(--color-base);
  --vertical-nav-label__color--current: var(--color-primary);
  --vertical-nav-label-icon__color: var(--color-base);
  --usa-banner__background-color: var(--color-gray-lightest);
  --usa-banner-domain-icon__color: var(--color-primary);
  --usa-banner-close-button__color--mobile: var(--color-primary);
  --usa-banner-close-button__background-color--mobile: var(--color-gray-lighter);
  --usa-banner-security-icon__color: var(--color-success-light);
}

/*!
 * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab,
.fa-sharp-solid,
.fa-classic,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 0));
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0::before {
  content: "\30 ";
}

.fa-1::before {
  content: "\31 ";
}

.fa-2::before {
  content: "\32 ";
}

.fa-3::before {
  content: "\33 ";
}

.fa-4::before {
  content: "\34 ";
}

.fa-5::before {
  content: "\35 ";
}

.fa-6::before {
  content: "\36 ";
}

.fa-7::before {
  content: "\37 ";
}

.fa-8::before {
  content: "\38 ";
}

.fa-9::before {
  content: "\39 ";
}

.fa-fill-drip::before {
  content: "\f576";
}

.fa-arrows-to-circle::before {
  content: "\e4bd";
}

.fa-circle-chevron-right::before {
  content: "\f138";
}

.fa-chevron-circle-right::before {
  content: "\f138";
}

.fa-at::before {
  content: "\@";
}

.fa-trash-can::before {
  content: "\f2ed";
}

.fa-trash-alt::before {
  content: "\f2ed";
}

.fa-text-height::before {
  content: "\f034";
}

.fa-user-xmark::before {
  content: "\f235";
}

.fa-user-times::before {
  content: "\f235";
}

.fa-stethoscope::before {
  content: "\f0f1";
}

.fa-message::before {
  content: "\f27a";
}

.fa-comment-alt::before {
  content: "\f27a";
}

.fa-info::before {
  content: "\f129";
}

.fa-down-left-and-up-right-to-center::before {
  content: "\f422";
}

.fa-compress-alt::before {
  content: "\f422";
}

.fa-explosion::before {
  content: "\e4e9";
}

.fa-file-lines::before {
  content: "\f15c";
}

.fa-file-alt::before {
  content: "\f15c";
}

.fa-file-text::before {
  content: "\f15c";
}

.fa-wave-square::before {
  content: "\f83e";
}

.fa-ring::before {
  content: "\f70b";
}

.fa-building-un::before {
  content: "\e4d9";
}

.fa-dice-three::before {
  content: "\f527";
}

.fa-calendar-days::before {
  content: "\f073";
}

.fa-calendar-alt::before {
  content: "\f073";
}

.fa-anchor-circle-check::before {
  content: "\e4aa";
}

.fa-building-circle-arrow-right::before {
  content: "\e4d1";
}

.fa-volleyball::before {
  content: "\f45f";
}

.fa-volleyball-ball::before {
  content: "\f45f";
}

.fa-arrows-up-to-line::before {
  content: "\e4c2";
}

.fa-sort-down::before {
  content: "\f0dd";
}

.fa-sort-desc::before {
  content: "\f0dd";
}

.fa-circle-minus::before {
  content: "\f056";
}

.fa-minus-circle::before {
  content: "\f056";
}

.fa-door-open::before {
  content: "\f52b";
}

.fa-right-from-bracket::before {
  content: "\f2f5";
}

.fa-sign-out-alt::before {
  content: "\f2f5";
}

.fa-atom::before {
  content: "\f5d2";
}

.fa-soap::before {
  content: "\e06e";
}

.fa-icons::before {
  content: "\f86d";
}

.fa-heart-music-camera-bolt::before {
  content: "\f86d";
}

.fa-microphone-lines-slash::before {
  content: "\f539";
}

.fa-microphone-alt-slash::before {
  content: "\f539";
}

.fa-bridge-circle-check::before {
  content: "\e4c9";
}

.fa-pump-medical::before {
  content: "\e06a";
}

.fa-fingerprint::before {
  content: "\f577";
}

.fa-hand-point-right::before {
  content: "\f0a4";
}

.fa-magnifying-glass-location::before {
  content: "\f689";
}

.fa-search-location::before {
  content: "\f689";
}

.fa-forward-step::before {
  content: "\f051";
}

.fa-step-forward::before {
  content: "\f051";
}

.fa-face-smile-beam::before {
  content: "\f5b8";
}

.fa-smile-beam::before {
  content: "\f5b8";
}

.fa-flag-checkered::before {
  content: "\f11e";
}

.fa-football::before {
  content: "\f44e";
}

.fa-football-ball::before {
  content: "\f44e";
}

.fa-school-circle-exclamation::before {
  content: "\e56c";
}

.fa-crop::before {
  content: "\f125";
}

.fa-angles-down::before {
  content: "\f103";
}

.fa-angle-double-down::before {
  content: "\f103";
}

.fa-users-rectangle::before {
  content: "\e594";
}

.fa-people-roof::before {
  content: "\e537";
}

.fa-people-line::before {
  content: "\e534";
}

.fa-beer-mug-empty::before {
  content: "\f0fc";
}

.fa-beer::before {
  content: "\f0fc";
}

.fa-diagram-predecessor::before {
  content: "\e477";
}

.fa-arrow-up-long::before {
  content: "\f176";
}

.fa-long-arrow-up::before {
  content: "\f176";
}

.fa-fire-flame-simple::before {
  content: "\f46a";
}

.fa-burn::before {
  content: "\f46a";
}

.fa-person::before {
  content: "\f183";
}

.fa-male::before {
  content: "\f183";
}

.fa-laptop::before {
  content: "\f109";
}

.fa-file-csv::before {
  content: "\f6dd";
}

.fa-menorah::before {
  content: "\f676";
}

.fa-truck-plane::before {
  content: "\e58f";
}

.fa-record-vinyl::before {
  content: "\f8d9";
}

.fa-face-grin-stars::before {
  content: "\f587";
}

.fa-grin-stars::before {
  content: "\f587";
}

.fa-bong::before {
  content: "\f55c";
}

.fa-spaghetti-monster-flying::before {
  content: "\f67b";
}

.fa-pastafarianism::before {
  content: "\f67b";
}

.fa-arrow-down-up-across-line::before {
  content: "\e4af";
}

.fa-spoon::before {
  content: "\f2e5";
}

.fa-utensil-spoon::before {
  content: "\f2e5";
}

.fa-jar-wheat::before {
  content: "\e517";
}

.fa-envelopes-bulk::before {
  content: "\f674";
}

.fa-mail-bulk::before {
  content: "\f674";
}

.fa-file-circle-exclamation::before {
  content: "\e4eb";
}

.fa-circle-h::before {
  content: "\f47e";
}

.fa-hospital-symbol::before {
  content: "\f47e";
}

.fa-pager::before {
  content: "\f815";
}

.fa-address-book::before {
  content: "\f2b9";
}

.fa-contact-book::before {
  content: "\f2b9";
}

.fa-strikethrough::before {
  content: "\f0cc";
}

.fa-k::before {
  content: "K";
}

.fa-landmark-flag::before {
  content: "\e51c";
}

.fa-pencil::before {
  content: "\f303";
}

.fa-pencil-alt::before {
  content: "\f303";
}

.fa-backward::before {
  content: "\f04a";
}

.fa-caret-right::before {
  content: "\f0da";
}

.fa-comments::before {
  content: "\f086";
}

.fa-paste::before {
  content: "\f0ea";
}

.fa-file-clipboard::before {
  content: "\f0ea";
}

.fa-code-pull-request::before {
  content: "\e13c";
}

.fa-clipboard-list::before {
  content: "\f46d";
}

.fa-truck-ramp-box::before {
  content: "\f4de";
}

.fa-truck-loading::before {
  content: "\f4de";
}

.fa-user-check::before {
  content: "\f4fc";
}

.fa-vial-virus::before {
  content: "\e597";
}

.fa-sheet-plastic::before {
  content: "\e571";
}

.fa-blog::before {
  content: "\f781";
}

.fa-user-ninja::before {
  content: "\f504";
}

.fa-person-arrow-up-from-line::before {
  content: "\e539";
}

.fa-scroll-torah::before {
  content: "\f6a0";
}

.fa-torah::before {
  content: "\f6a0";
}

.fa-broom-ball::before {
  content: "\f458";
}

.fa-quidditch::before {
  content: "\f458";
}

.fa-quidditch-broom-ball::before {
  content: "\f458";
}

.fa-toggle-off::before {
  content: "\f204";
}

.fa-box-archive::before {
  content: "\f187";
}

.fa-archive::before {
  content: "\f187";
}

.fa-person-drowning::before {
  content: "\e545";
}

.fa-arrow-down-9-1::before {
  content: "\f886";
}

.fa-sort-numeric-desc::before {
  content: "\f886";
}

.fa-sort-numeric-down-alt::before {
  content: "\f886";
}

.fa-face-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-spray-can::before {
  content: "\f5bd";
}

.fa-truck-monster::before {
  content: "\f63b";
}

.fa-w::before {
  content: "W";
}

.fa-earth-africa::before {
  content: "\f57c";
}

.fa-globe-africa::before {
  content: "\f57c";
}

.fa-rainbow::before {
  content: "\f75b";
}

.fa-circle-notch::before {
  content: "\f1ce";
}

.fa-tablet-screen-button::before {
  content: "\f3fa";
}

.fa-tablet-alt::before {
  content: "\f3fa";
}

.fa-paw::before {
  content: "\f1b0";
}

.fa-cloud::before {
  content: "\f0c2";
}

.fa-trowel-bricks::before {
  content: "\e58a";
}

.fa-face-flushed::before {
  content: "\f579";
}

.fa-flushed::before {
  content: "\f579";
}

.fa-hospital-user::before {
  content: "\f80d";
}

.fa-tent-arrow-left-right::before {
  content: "\e57f";
}

.fa-gavel::before {
  content: "\f0e3";
}

.fa-legal::before {
  content: "\f0e3";
}

.fa-binoculars::before {
  content: "\f1e5";
}

.fa-microphone-slash::before {
  content: "\f131";
}

.fa-box-tissue::before {
  content: "\e05b";
}

.fa-motorcycle::before {
  content: "\f21c";
}

.fa-bell-concierge::before {
  content: "\f562";
}

.fa-concierge-bell::before {
  content: "\f562";
}

.fa-pen-ruler::before {
  content: "\f5ae";
}

.fa-pencil-ruler::before {
  content: "\f5ae";
}

.fa-people-arrows::before {
  content: "\e068";
}

.fa-people-arrows-left-right::before {
  content: "\e068";
}

.fa-mars-and-venus-burst::before {
  content: "\e523";
}

.fa-square-caret-right::before {
  content: "\f152";
}

.fa-caret-square-right::before {
  content: "\f152";
}

.fa-scissors::before {
  content: "\f0c4";
}

.fa-cut::before {
  content: "\f0c4";
}

.fa-sun-plant-wilt::before {
  content: "\e57a";
}

.fa-toilets-portable::before {
  content: "\e584";
}

.fa-hockey-puck::before {
  content: "\f453";
}

.fa-table::before {
  content: "\f0ce";
}

.fa-magnifying-glass-arrow-right::before {
  content: "\e521";
}

.fa-tachograph-digital::before {
  content: "\f566";
}

.fa-digital-tachograph::before {
  content: "\f566";
}

.fa-users-slash::before {
  content: "\e073";
}

.fa-clover::before {
  content: "\e139";
}

.fa-reply::before {
  content: "\f3e5";
}

.fa-mail-reply::before {
  content: "\f3e5";
}

.fa-star-and-crescent::before {
  content: "\f699";
}

.fa-house-fire::before {
  content: "\e50c";
}

.fa-square-minus::before {
  content: "\f146";
}

.fa-minus-square::before {
  content: "\f146";
}

.fa-helicopter::before {
  content: "\f533";
}

.fa-compass::before {
  content: "\f14e";
}

.fa-square-caret-down::before {
  content: "\f150";
}

.fa-caret-square-down::before {
  content: "\f150";
}

.fa-file-circle-question::before {
  content: "\e4ef";
}

.fa-laptop-code::before {
  content: "\f5fc";
}

.fa-swatchbook::before {
  content: "\f5c3";
}

.fa-prescription-bottle::before {
  content: "\f485";
}

.fa-bars::before {
  content: "\f0c9";
}

.fa-navicon::before {
  content: "\f0c9";
}

.fa-people-group::before {
  content: "\e533";
}

.fa-hourglass-end::before {
  content: "\f253";
}

.fa-hourglass-3::before {
  content: "\f253";
}

.fa-heart-crack::before {
  content: "\f7a9";
}

.fa-heart-broken::before {
  content: "\f7a9";
}

.fa-square-up-right::before {
  content: "\f360";
}

.fa-external-link-square-alt::before {
  content: "\f360";
}

.fa-face-kiss-beam::before {
  content: "\f597";
}

.fa-kiss-beam::before {
  content: "\f597";
}

.fa-film::before {
  content: "\f008";
}

.fa-ruler-horizontal::before {
  content: "\f547";
}

.fa-people-robbery::before {
  content: "\e536";
}

.fa-lightbulb::before {
  content: "\f0eb";
}

.fa-caret-left::before {
  content: "\f0d9";
}

.fa-circle-exclamation::before {
  content: "\f06a";
}

.fa-exclamation-circle::before {
  content: "\f06a";
}

.fa-school-circle-xmark::before {
  content: "\e56d";
}

.fa-arrow-right-from-bracket::before {
  content: "\f08b";
}

.fa-sign-out::before {
  content: "\f08b";
}

.fa-circle-chevron-down::before {
  content: "\f13a";
}

.fa-chevron-circle-down::before {
  content: "\f13a";
}

.fa-unlock-keyhole::before {
  content: "\f13e";
}

.fa-unlock-alt::before {
  content: "\f13e";
}

.fa-cloud-showers-heavy::before {
  content: "\f740";
}

.fa-headphones-simple::before {
  content: "\f58f";
}

.fa-headphones-alt::before {
  content: "\f58f";
}

.fa-sitemap::before {
  content: "\f0e8";
}

.fa-circle-dollar-to-slot::before {
  content: "\f4b9";
}

.fa-donate::before {
  content: "\f4b9";
}

.fa-memory::before {
  content: "\f538";
}

.fa-road-spikes::before {
  content: "\e568";
}

.fa-fire-burner::before {
  content: "\e4f1";
}

.fa-flag::before {
  content: "\f024";
}

.fa-hanukiah::before {
  content: "\f6e6";
}

.fa-feather::before {
  content: "\f52d";
}

.fa-volume-low::before {
  content: "\f027";
}

.fa-volume-down::before {
  content: "\f027";
}

.fa-comment-slash::before {
  content: "\f4b3";
}

.fa-cloud-sun-rain::before {
  content: "\f743";
}

.fa-compress::before {
  content: "\f066";
}

.fa-wheat-awn::before {
  content: "\e2cd";
}

.fa-wheat-alt::before {
  content: "\e2cd";
}

.fa-ankh::before {
  content: "\f644";
}

.fa-hands-holding-child::before {
  content: "\e4fa";
}

.fa-asterisk::before {
  content: "\*";
}

.fa-square-check::before {
  content: "\f14a";
}

.fa-check-square::before {
  content: "\f14a";
}

.fa-peseta-sign::before {
  content: "\e221";
}

.fa-heading::before {
  content: "\f1dc";
}

.fa-header::before {
  content: "\f1dc";
}

.fa-ghost::before {
  content: "\f6e2";
}

.fa-list::before {
  content: "\f03a";
}

.fa-list-squares::before {
  content: "\f03a";
}

.fa-square-phone-flip::before {
  content: "\f87b";
}

.fa-phone-square-alt::before {
  content: "\f87b";
}

.fa-cart-plus::before {
  content: "\f217";
}

.fa-gamepad::before {
  content: "\f11b";
}

.fa-circle-dot::before {
  content: "\f192";
}

.fa-dot-circle::before {
  content: "\f192";
}

.fa-face-dizzy::before {
  content: "\f567";
}

.fa-dizzy::before {
  content: "\f567";
}

.fa-egg::before {
  content: "\f7fb";
}

.fa-house-medical-circle-xmark::before {
  content: "\e513";
}

.fa-campground::before {
  content: "\f6bb";
}

.fa-folder-plus::before {
  content: "\f65e";
}

.fa-futbol::before {
  content: "\f1e3";
}

.fa-futbol-ball::before {
  content: "\f1e3";
}

.fa-soccer-ball::before {
  content: "\f1e3";
}

.fa-paintbrush::before {
  content: "\f1fc";
}

.fa-paint-brush::before {
  content: "\f1fc";
}

.fa-lock::before {
  content: "\f023";
}

.fa-gas-pump::before {
  content: "\f52f";
}

.fa-hot-tub-person::before {
  content: "\f593";
}

.fa-hot-tub::before {
  content: "\f593";
}

.fa-map-location::before {
  content: "\f59f";
}

.fa-map-marked::before {
  content: "\f59f";
}

.fa-house-flood-water::before {
  content: "\e50e";
}

.fa-tree::before {
  content: "\f1bb";
}

.fa-bridge-lock::before {
  content: "\e4cc";
}

.fa-sack-dollar::before {
  content: "\f81d";
}

.fa-pen-to-square::before {
  content: "\f044";
}

.fa-edit::before {
  content: "\f044";
}

.fa-car-side::before {
  content: "\f5e4";
}

.fa-share-nodes::before {
  content: "\f1e0";
}

.fa-share-alt::before {
  content: "\f1e0";
}

.fa-heart-circle-minus::before {
  content: "\e4ff";
}

.fa-hourglass-half::before {
  content: "\f252";
}

.fa-hourglass-2::before {
  content: "\f252";
}

.fa-microscope::before {
  content: "\f610";
}

.fa-sink::before {
  content: "\e06d";
}

.fa-bag-shopping::before {
  content: "\f290";
}

.fa-shopping-bag::before {
  content: "\f290";
}

.fa-arrow-down-z-a::before {
  content: "\f881";
}

.fa-sort-alpha-desc::before {
  content: "\f881";
}

.fa-sort-alpha-down-alt::before {
  content: "\f881";
}

.fa-mitten::before {
  content: "\f7b5";
}

.fa-person-rays::before {
  content: "\e54d";
}

.fa-users::before {
  content: "\f0c0";
}

.fa-eye-slash::before {
  content: "\f070";
}

.fa-flask-vial::before {
  content: "\e4f3";
}

.fa-hand::before {
  content: "\f256";
}

.fa-hand-paper::before {
  content: "\f256";
}

.fa-om::before {
  content: "\f679";
}

.fa-worm::before {
  content: "\e599";
}

.fa-house-circle-xmark::before {
  content: "\e50b";
}

.fa-plug::before {
  content: "\f1e6";
}

.fa-chevron-up::before {
  content: "\f077";
}

.fa-hand-spock::before {
  content: "\f259";
}

.fa-stopwatch::before {
  content: "\f2f2";
}

.fa-face-kiss::before {
  content: "\f596";
}

.fa-kiss::before {
  content: "\f596";
}

.fa-bridge-circle-xmark::before {
  content: "\e4cb";
}

.fa-face-grin-tongue::before {
  content: "\f589";
}

.fa-grin-tongue::before {
  content: "\f589";
}

.fa-chess-bishop::before {
  content: "\f43a";
}

.fa-face-grin-wink::before {
  content: "\f58c";
}

.fa-grin-wink::before {
  content: "\f58c";
}

.fa-ear-deaf::before {
  content: "\f2a4";
}

.fa-deaf::before {
  content: "\f2a4";
}

.fa-deafness::before {
  content: "\f2a4";
}

.fa-hard-of-hearing::before {
  content: "\f2a4";
}

.fa-road-circle-check::before {
  content: "\e564";
}

.fa-dice-five::before {
  content: "\f523";
}

.fa-square-rss::before {
  content: "\f143";
}

.fa-rss-square::before {
  content: "\f143";
}

.fa-land-mine-on::before {
  content: "\e51b";
}

.fa-i-cursor::before {
  content: "\f246";
}

.fa-stamp::before {
  content: "\f5bf";
}

.fa-stairs::before {
  content: "\e289";
}

.fa-i::before {
  content: "I";
}

.fa-hryvnia-sign::before {
  content: "\f6f2";
}

.fa-hryvnia::before {
  content: "\f6f2";
}

.fa-pills::before {
  content: "\f484";
}

.fa-face-grin-wide::before {
  content: "\f581";
}

.fa-grin-alt::before {
  content: "\f581";
}

.fa-tooth::before {
  content: "\f5c9";
}

.fa-v::before {
  content: "V";
}

.fa-bangladeshi-taka-sign::before {
  content: "\e2e6";
}

.fa-bicycle::before {
  content: "\f206";
}

.fa-staff-snake::before {
  content: "\e579";
}

.fa-rod-asclepius::before {
  content: "\e579";
}

.fa-rod-snake::before {
  content: "\e579";
}

.fa-staff-aesculapius::before {
  content: "\e579";
}

.fa-head-side-cough-slash::before {
  content: "\e062";
}

.fa-truck-medical::before {
  content: "\f0f9";
}

.fa-ambulance::before {
  content: "\f0f9";
}

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598";
}

.fa-snowman::before {
  content: "\f7d0";
}

.fa-mortar-pestle::before {
  content: "\f5a7";
}

.fa-road-barrier::before {
  content: "\e562";
}

.fa-school::before {
  content: "\f549";
}

.fa-igloo::before {
  content: "\f7ae";
}

.fa-joint::before {
  content: "\f595";
}

.fa-angle-right::before {
  content: "\f105";
}

.fa-horse::before {
  content: "\f6f0";
}

.fa-q::before {
  content: "Q";
}

.fa-g::before {
  content: "G";
}

.fa-notes-medical::before {
  content: "\f481";
}

.fa-temperature-half::before {
  content: "\f2c9";
}

.fa-temperature-2::before {
  content: "\f2c9";
}

.fa-thermometer-2::before {
  content: "\f2c9";
}

.fa-thermometer-half::before {
  content: "\f2c9";
}

.fa-dong-sign::before {
  content: "\e169";
}

.fa-capsules::before {
  content: "\f46b";
}

.fa-poo-storm::before {
  content: "\f75a";
}

.fa-poo-bolt::before {
  content: "\f75a";
}

.fa-face-frown-open::before {
  content: "\f57a";
}

.fa-frown-open::before {
  content: "\f57a";
}

.fa-hand-point-up::before {
  content: "\f0a6";
}

.fa-money-bill::before {
  content: "\f0d6";
}

.fa-bookmark::before {
  content: "\f02e";
}

.fa-align-justify::before {
  content: "\f039";
}

.fa-umbrella-beach::before {
  content: "\f5ca";
}

.fa-helmet-un::before {
  content: "\e503";
}

.fa-bullseye::before {
  content: "\f140";
}

.fa-bacon::before {
  content: "\f7e5";
}

.fa-hand-point-down::before {
  content: "\f0a7";
}

.fa-arrow-up-from-bracket::before {
  content: "\e09a";
}

.fa-folder::before {
  content: "\f07b";
}

.fa-folder-blank::before {
  content: "\f07b";
}

.fa-file-waveform::before {
  content: "\f478";
}

.fa-file-medical-alt::before {
  content: "\f478";
}

.fa-radiation::before {
  content: "\f7b9";
}

.fa-chart-simple::before {
  content: "\e473";
}

.fa-mars-stroke::before {
  content: "\f229";
}

.fa-vial::before {
  content: "\f492";
}

.fa-gauge::before {
  content: "\f624";
}

.fa-dashboard::before {
  content: "\f624";
}

.fa-gauge-med::before {
  content: "\f624";
}

.fa-tachometer-alt-average::before {
  content: "\f624";
}

.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}

.fa-magic-wand-sparkles::before {
  content: "\e2ca";
}

.fa-e::before {
  content: "E";
}

.fa-pen-clip::before {
  content: "\f305";
}

.fa-pen-alt::before {
  content: "\f305";
}

.fa-bridge-circle-exclamation::before {
  content: "\e4ca";
}

.fa-user::before {
  content: "\f007";
}

.fa-school-circle-check::before {
  content: "\e56b";
}

.fa-dumpster::before {
  content: "\f793";
}

.fa-van-shuttle::before {
  content: "\f5b6";
}

.fa-shuttle-van::before {
  content: "\f5b6";
}

.fa-building-user::before {
  content: "\e4da";
}

.fa-square-caret-left::before {
  content: "\f191";
}

.fa-caret-square-left::before {
  content: "\f191";
}

.fa-highlighter::before {
  content: "\f591";
}

.fa-key::before {
  content: "\f084";
}

.fa-bullhorn::before {
  content: "\f0a1";
}

.fa-globe::before {
  content: "\f0ac";
}

.fa-synagogue::before {
  content: "\f69b";
}

.fa-person-half-dress::before {
  content: "\e548";
}

.fa-road-bridge::before {
  content: "\e563";
}

.fa-location-arrow::before {
  content: "\f124";
}

.fa-c::before {
  content: "C";
}

.fa-tablet-button::before {
  content: "\f10a";
}

.fa-building-lock::before {
  content: "\e4d6";
}

.fa-pizza-slice::before {
  content: "\f818";
}

.fa-money-bill-wave::before {
  content: "\f53a";
}

.fa-chart-area::before {
  content: "\f1fe";
}

.fa-area-chart::before {
  content: "\f1fe";
}

.fa-house-flag::before {
  content: "\e50d";
}

.fa-person-circle-minus::before {
  content: "\e540";
}

.fa-ban::before {
  content: "\f05e";
}

.fa-cancel::before {
  content: "\f05e";
}

.fa-camera-rotate::before {
  content: "\e0d8";
}

.fa-spray-can-sparkles::before {
  content: "\f5d0";
}

.fa-air-freshener::before {
  content: "\f5d0";
}

.fa-star::before {
  content: "\f005";
}

.fa-repeat::before {
  content: "\f363";
}

.fa-cross::before {
  content: "\f654";
}

.fa-box::before {
  content: "\f466";
}

.fa-venus-mars::before {
  content: "\f228";
}

.fa-arrow-pointer::before {
  content: "\f245";
}

.fa-mouse-pointer::before {
  content: "\f245";
}

.fa-maximize::before {
  content: "\f31e";
}

.fa-expand-arrows-alt::before {
  content: "\f31e";
}

.fa-charging-station::before {
  content: "\f5e7";
}

.fa-shapes::before {
  content: "\f61f";
}

.fa-triangle-circle-square::before {
  content: "\f61f";
}

.fa-shuffle::before {
  content: "\f074";
}

.fa-random::before {
  content: "\f074";
}

.fa-person-running::before {
  content: "\f70c";
}

.fa-running::before {
  content: "\f70c";
}

.fa-mobile-retro::before {
  content: "\e527";
}

.fa-grip-lines-vertical::before {
  content: "\f7a5";
}

.fa-spider::before {
  content: "\f717";
}

.fa-hands-bound::before {
  content: "\e4f9";
}

.fa-file-invoice-dollar::before {
  content: "\f571";
}

.fa-plane-circle-exclamation::before {
  content: "\e556";
}

.fa-x-ray::before {
  content: "\f497";
}

.fa-spell-check::before {
  content: "\f891";
}

.fa-slash::before {
  content: "\f715";
}

.fa-computer-mouse::before {
  content: "\f8cc";
}

.fa-mouse::before {
  content: "\f8cc";
}

.fa-arrow-right-to-bracket::before {
  content: "\f090";
}

.fa-sign-in::before {
  content: "\f090";
}

.fa-shop-slash::before {
  content: "\e070";
}

.fa-store-alt-slash::before {
  content: "\e070";
}

.fa-server::before {
  content: "\f233";
}

.fa-virus-covid-slash::before {
  content: "\e4a9";
}

.fa-shop-lock::before {
  content: "\e4a5";
}

.fa-hourglass-start::before {
  content: "\f251";
}

.fa-hourglass-1::before {
  content: "\f251";
}

.fa-blender-phone::before {
  content: "\f6b6";
}

.fa-building-wheat::before {
  content: "\e4db";
}

.fa-person-breastfeeding::before {
  content: "\e53a";
}

.fa-right-to-bracket::before {
  content: "\f2f6";
}

.fa-sign-in-alt::before {
  content: "\f2f6";
}

.fa-venus::before {
  content: "\f221";
}

.fa-passport::before {
  content: "\f5ab";
}

.fa-thumbtack-slash::before {
  content: "\e68f";
}

.fa-thumb-tack-slash::before {
  content: "\e68f";
}

.fa-heart-pulse::before {
  content: "\f21e";
}

.fa-heartbeat::before {
  content: "\f21e";
}

.fa-people-carry-box::before {
  content: "\f4ce";
}

.fa-people-carry::before {
  content: "\f4ce";
}

.fa-temperature-high::before {
  content: "\f769";
}

.fa-microchip::before {
  content: "\f2db";
}

.fa-crown::before {
  content: "\f521";
}

.fa-weight-hanging::before {
  content: "\f5cd";
}

.fa-xmarks-lines::before {
  content: "\e59a";
}

.fa-file-prescription::before {
  content: "\f572";
}

.fa-weight-scale::before {
  content: "\f496";
}

.fa-weight::before {
  content: "\f496";
}

.fa-user-group::before {
  content: "\f500";
}

.fa-user-friends::before {
  content: "\f500";
}

.fa-arrow-up-a-z::before {
  content: "\f15e";
}

.fa-sort-alpha-up::before {
  content: "\f15e";
}

.fa-chess-knight::before {
  content: "\f441";
}

.fa-face-laugh-squint::before {
  content: "\f59b";
}

.fa-laugh-squint::before {
  content: "\f59b";
}

.fa-wheelchair::before {
  content: "\f193";
}

.fa-circle-arrow-up::before {
  content: "\f0aa";
}

.fa-arrow-circle-up::before {
  content: "\f0aa";
}

.fa-toggle-on::before {
  content: "\f205";
}

.fa-person-walking::before {
  content: "\f554";
}

.fa-walking::before {
  content: "\f554";
}

.fa-l::before {
  content: "L";
}

.fa-fire::before {
  content: "\f06d";
}

.fa-bed-pulse::before {
  content: "\f487";
}

.fa-procedures::before {
  content: "\f487";
}

.fa-shuttle-space::before {
  content: "\f197";
}

.fa-space-shuttle::before {
  content: "\f197";
}

.fa-face-laugh::before {
  content: "\f599";
}

.fa-laugh::before {
  content: "\f599";
}

.fa-folder-open::before {
  content: "\f07c";
}

.fa-heart-circle-plus::before {
  content: "\e500";
}

.fa-code-fork::before {
  content: "\e13b";
}

.fa-city::before {
  content: "\f64f";
}

.fa-microphone-lines::before {
  content: "\f3c9";
}

.fa-microphone-alt::before {
  content: "\f3c9";
}

.fa-pepper-hot::before {
  content: "\f816";
}

.fa-unlock::before {
  content: "\f09c";
}

.fa-colon-sign::before {
  content: "\e140";
}

.fa-headset::before {
  content: "\f590";
}

.fa-store-slash::before {
  content: "\e071";
}

.fa-road-circle-xmark::before {
  content: "\e566";
}

.fa-user-minus::before {
  content: "\f503";
}

.fa-mars-stroke-up::before {
  content: "\f22a";
}

.fa-mars-stroke-v::before {
  content: "\f22a";
}

.fa-champagne-glasses::before {
  content: "\f79f";
}

.fa-glass-cheers::before {
  content: "\f79f";
}

.fa-clipboard::before {
  content: "\f328";
}

.fa-house-circle-exclamation::before {
  content: "\e50a";
}

.fa-file-arrow-up::before {
  content: "\f574";
}

.fa-file-upload::before {
  content: "\f574";
}

.fa-wifi::before {
  content: "\f1eb";
}

.fa-wifi-3::before {
  content: "\f1eb";
}

.fa-wifi-strong::before {
  content: "\f1eb";
}

.fa-bath::before {
  content: "\f2cd";
}

.fa-bathtub::before {
  content: "\f2cd";
}

.fa-underline::before {
  content: "\f0cd";
}

.fa-user-pen::before {
  content: "\f4ff";
}

.fa-user-edit::before {
  content: "\f4ff";
}

.fa-signature::before {
  content: "\f5b7";
}

.fa-stroopwafel::before {
  content: "\f551";
}

.fa-bold::before {
  content: "\f032";
}

.fa-anchor-lock::before {
  content: "\e4ad";
}

.fa-building-ngo::before {
  content: "\e4d7";
}

.fa-manat-sign::before {
  content: "\e1d5";
}

.fa-not-equal::before {
  content: "\f53e";
}

.fa-border-top-left::before {
  content: "\f853";
}

.fa-border-style::before {
  content: "\f853";
}

.fa-map-location-dot::before {
  content: "\f5a0";
}

.fa-map-marked-alt::before {
  content: "\f5a0";
}

.fa-jedi::before {
  content: "\f669";
}

.fa-square-poll-vertical::before {
  content: "\f681";
}

.fa-poll::before {
  content: "\f681";
}

.fa-mug-hot::before {
  content: "\f7b6";
}

.fa-car-battery::before {
  content: "\f5df";
}

.fa-battery-car::before {
  content: "\f5df";
}

.fa-gift::before {
  content: "\f06b";
}

.fa-dice-two::before {
  content: "\f528";
}

.fa-chess-queen::before {
  content: "\f445";
}

.fa-glasses::before {
  content: "\f530";
}

.fa-chess-board::before {
  content: "\f43c";
}

.fa-building-circle-check::before {
  content: "\e4d2";
}

.fa-person-chalkboard::before {
  content: "\e53d";
}

.fa-mars-stroke-right::before {
  content: "\f22b";
}

.fa-mars-stroke-h::before {
  content: "\f22b";
}

.fa-hand-back-fist::before {
  content: "\f255";
}

.fa-hand-rock::before {
  content: "\f255";
}

.fa-square-caret-up::before {
  content: "\f151";
}

.fa-caret-square-up::before {
  content: "\f151";
}

.fa-cloud-showers-water::before {
  content: "\e4e4";
}

.fa-chart-bar::before {
  content: "\f080";
}

.fa-bar-chart::before {
  content: "\f080";
}

.fa-hands-bubbles::before {
  content: "\e05e";
}

.fa-hands-wash::before {
  content: "\e05e";
}

.fa-less-than-equal::before {
  content: "\f537";
}

.fa-train::before {
  content: "\f238";
}

.fa-eye-low-vision::before {
  content: "\f2a8";
}

.fa-low-vision::before {
  content: "\f2a8";
}

.fa-crow::before {
  content: "\f520";
}

.fa-sailboat::before {
  content: "\e445";
}

.fa-window-restore::before {
  content: "\f2d2";
}

.fa-square-plus::before {
  content: "\f0fe";
}

.fa-plus-square::before {
  content: "\f0fe";
}

.fa-torii-gate::before {
  content: "\f6a1";
}

.fa-frog::before {
  content: "\f52e";
}

.fa-bucket::before {
  content: "\e4cf";
}

.fa-image::before {
  content: "\f03e";
}

.fa-microphone::before {
  content: "\f130";
}

.fa-cow::before {
  content: "\f6c8";
}

.fa-caret-up::before {
  content: "\f0d8";
}

.fa-screwdriver::before {
  content: "\f54a";
}

.fa-folder-closed::before {
  content: "\e185";
}

.fa-house-tsunami::before {
  content: "\e515";
}

.fa-square-nfi::before {
  content: "\e576";
}

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5";
}

.fa-martini-glass::before {
  content: "\f57b";
}

.fa-glass-martini-alt::before {
  content: "\f57b";
}

.fa-rotate-left::before {
  content: "\f2ea";
}

.fa-rotate-back::before {
  content: "\f2ea";
}

.fa-rotate-backward::before {
  content: "\f2ea";
}

.fa-undo-alt::before {
  content: "\f2ea";
}

.fa-table-columns::before {
  content: "\f0db";
}

.fa-columns::before {
  content: "\f0db";
}

.fa-lemon::before {
  content: "\f094";
}

.fa-head-side-mask::before {
  content: "\e063";
}

.fa-handshake::before {
  content: "\f2b5";
}

.fa-gem::before {
  content: "\f3a5";
}

.fa-dolly::before {
  content: "\f472";
}

.fa-dolly-box::before {
  content: "\f472";
}

.fa-smoking::before {
  content: "\f48d";
}

.fa-minimize::before {
  content: "\f78c";
}

.fa-compress-arrows-alt::before {
  content: "\f78c";
}

.fa-monument::before {
  content: "\f5a6";
}

.fa-snowplow::before {
  content: "\f7d2";
}

.fa-angles-right::before {
  content: "\f101";
}

.fa-angle-double-right::before {
  content: "\f101";
}

.fa-cannabis::before {
  content: "\f55f";
}

.fa-circle-play::before {
  content: "\f144";
}

.fa-play-circle::before {
  content: "\f144";
}

.fa-tablets::before {
  content: "\f490";
}

.fa-ethernet::before {
  content: "\f796";
}

.fa-euro-sign::before {
  content: "\f153";
}

.fa-eur::before {
  content: "\f153";
}

.fa-euro::before {
  content: "\f153";
}

.fa-chair::before {
  content: "\f6c0";
}

.fa-circle-check::before {
  content: "\f058";
}

.fa-check-circle::before {
  content: "\f058";
}

.fa-circle-stop::before {
  content: "\f28d";
}

.fa-stop-circle::before {
  content: "\f28d";
}

.fa-compass-drafting::before {
  content: "\f568";
}

.fa-drafting-compass::before {
  content: "\f568";
}

.fa-plate-wheat::before {
  content: "\e55a";
}

.fa-icicles::before {
  content: "\f7ad";
}

.fa-person-shelter::before {
  content: "\e54f";
}

.fa-neuter::before {
  content: "\f22c";
}

.fa-id-badge::before {
  content: "\f2c1";
}

.fa-marker::before {
  content: "\f5a1";
}

.fa-face-laugh-beam::before {
  content: "\f59a";
}

.fa-laugh-beam::before {
  content: "\f59a";
}

.fa-helicopter-symbol::before {
  content: "\e502";
}

.fa-universal-access::before {
  content: "\f29a";
}

.fa-circle-chevron-up::before {
  content: "\f139";
}

.fa-chevron-circle-up::before {
  content: "\f139";
}

.fa-lari-sign::before {
  content: "\e1c8";
}

.fa-volcano::before {
  content: "\f770";
}

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553";
}

.fa-sterling-sign::before {
  content: "\f154";
}

.fa-gbp::before {
  content: "\f154";
}

.fa-pound-sign::before {
  content: "\f154";
}

.fa-viruses::before {
  content: "\e076";
}

.fa-square-person-confined::before {
  content: "\e577";
}

.fa-user-tie::before {
  content: "\f508";
}

.fa-arrow-down-long::before {
  content: "\f175";
}

.fa-long-arrow-down::before {
  content: "\f175";
}

.fa-tent-arrow-down-to-line::before {
  content: "\e57e";
}

.fa-certificate::before {
  content: "\f0a3";
}

.fa-reply-all::before {
  content: "\f122";
}

.fa-mail-reply-all::before {
  content: "\f122";
}

.fa-suitcase::before {
  content: "\f0f2";
}

.fa-person-skating::before {
  content: "\f7c5";
}

.fa-skating::before {
  content: "\f7c5";
}

.fa-filter-circle-dollar::before {
  content: "\f662";
}

.fa-funnel-dollar::before {
  content: "\f662";
}

.fa-camera-retro::before {
  content: "\f083";
}

.fa-circle-arrow-down::before {
  content: "\f0ab";
}

.fa-arrow-circle-down::before {
  content: "\f0ab";
}

.fa-file-import::before {
  content: "\f56f";
}

.fa-arrow-right-to-file::before {
  content: "\f56f";
}

.fa-square-arrow-up-right::before {
  content: "\f14c";
}

.fa-external-link-square::before {
  content: "\f14c";
}

.fa-box-open::before {
  content: "\f49e";
}

.fa-scroll::before {
  content: "\f70e";
}

.fa-spa::before {
  content: "\f5bb";
}

.fa-location-pin-lock::before {
  content: "\e51f";
}

.fa-pause::before {
  content: "\f04c";
}

.fa-hill-avalanche::before {
  content: "\e507";
}

.fa-temperature-empty::before {
  content: "\f2cb";
}

.fa-temperature-0::before {
  content: "\f2cb";
}

.fa-thermometer-0::before {
  content: "\f2cb";
}

.fa-thermometer-empty::before {
  content: "\f2cb";
}

.fa-bomb::before {
  content: "\f1e2";
}

.fa-registered::before {
  content: "\f25d";
}

.fa-address-card::before {
  content: "\f2bb";
}

.fa-contact-card::before {
  content: "\f2bb";
}

.fa-vcard::before {
  content: "\f2bb";
}

.fa-scale-unbalanced-flip::before {
  content: "\f516";
}

.fa-balance-scale-right::before {
  content: "\f516";
}

.fa-subscript::before {
  content: "\f12c";
}

.fa-diamond-turn-right::before {
  content: "\f5eb";
}

.fa-directions::before {
  content: "\f5eb";
}

.fa-burst::before {
  content: "\e4dc";
}

.fa-house-laptop::before {
  content: "\e066";
}

.fa-laptop-house::before {
  content: "\e066";
}

.fa-face-tired::before {
  content: "\f5c8";
}

.fa-tired::before {
  content: "\f5c8";
}

.fa-money-bills::before {
  content: "\e1f3";
}

.fa-smog::before {
  content: "\f75f";
}

.fa-crutch::before {
  content: "\f7f7";
}

.fa-cloud-arrow-up::before {
  content: "\f0ee";
}

.fa-cloud-upload::before {
  content: "\f0ee";
}

.fa-cloud-upload-alt::before {
  content: "\f0ee";
}

.fa-palette::before {
  content: "\f53f";
}

.fa-arrows-turn-right::before {
  content: "\e4c0";
}

.fa-vest::before {
  content: "\e085";
}

.fa-ferry::before {
  content: "\e4ea";
}

.fa-arrows-down-to-people::before {
  content: "\e4b9";
}

.fa-seedling::before {
  content: "\f4d8";
}

.fa-sprout::before {
  content: "\f4d8";
}

.fa-left-right::before {
  content: "\f337";
}

.fa-arrows-alt-h::before {
  content: "\f337";
}

.fa-boxes-packing::before {
  content: "\e4c7";
}

.fa-circle-arrow-left::before {
  content: "\f0a8";
}

.fa-arrow-circle-left::before {
  content: "\f0a8";
}

.fa-group-arrows-rotate::before {
  content: "\e4f6";
}

.fa-bowl-food::before {
  content: "\e4c6";
}

.fa-candy-cane::before {
  content: "\f786";
}

.fa-arrow-down-wide-short::before {
  content: "\f160";
}

.fa-sort-amount-asc::before {
  content: "\f160";
}

.fa-sort-amount-down::before {
  content: "\f160";
}

.fa-cloud-bolt::before {
  content: "\f76c";
}

.fa-thunderstorm::before {
  content: "\f76c";
}

.fa-text-slash::before {
  content: "\f87d";
}

.fa-remove-format::before {
  content: "\f87d";
}

.fa-face-smile-wink::before {
  content: "\f4da";
}

.fa-smile-wink::before {
  content: "\f4da";
}

.fa-file-word::before {
  content: "\f1c2";
}

.fa-file-powerpoint::before {
  content: "\f1c4";
}

.fa-arrows-left-right::before {
  content: "\f07e";
}

.fa-arrows-h::before {
  content: "\f07e";
}

.fa-house-lock::before {
  content: "\e510";
}

.fa-cloud-arrow-down::before {
  content: "\f0ed";
}

.fa-cloud-download::before {
  content: "\f0ed";
}

.fa-cloud-download-alt::before {
  content: "\f0ed";
}

.fa-children::before {
  content: "\e4e1";
}

.fa-chalkboard::before {
  content: "\f51b";
}

.fa-blackboard::before {
  content: "\f51b";
}

.fa-user-large-slash::before {
  content: "\f4fa";
}

.fa-user-alt-slash::before {
  content: "\f4fa";
}

.fa-envelope-open::before {
  content: "\f2b6";
}

.fa-handshake-simple-slash::before {
  content: "\e05f";
}

.fa-handshake-alt-slash::before {
  content: "\e05f";
}

.fa-mattress-pillow::before {
  content: "\e525";
}

.fa-guarani-sign::before {
  content: "\e19a";
}

.fa-arrows-rotate::before {
  content: "\f021";
}

.fa-refresh::before {
  content: "\f021";
}

.fa-sync::before {
  content: "\f021";
}

.fa-fire-extinguisher::before {
  content: "\f134";
}

.fa-cruzeiro-sign::before {
  content: "\e152";
}

.fa-greater-than-equal::before {
  content: "\f532";
}

.fa-shield-halved::before {
  content: "\f3ed";
}

.fa-shield-alt::before {
  content: "\f3ed";
}

.fa-book-atlas::before {
  content: "\f558";
}

.fa-atlas::before {
  content: "\f558";
}

.fa-virus::before {
  content: "\e074";
}

.fa-envelope-circle-check::before {
  content: "\e4e8";
}

.fa-layer-group::before {
  content: "\f5fd";
}

.fa-arrows-to-dot::before {
  content: "\e4be";
}

.fa-archway::before {
  content: "\f557";
}

.fa-heart-circle-check::before {
  content: "\e4fd";
}

.fa-house-chimney-crack::before {
  content: "\f6f1";
}

.fa-house-damage::before {
  content: "\f6f1";
}

.fa-file-zipper::before {
  content: "\f1c6";
}

.fa-file-archive::before {
  content: "\f1c6";
}

.fa-square::before {
  content: "\f0c8";
}

.fa-martini-glass-empty::before {
  content: "\f000";
}

.fa-glass-martini::before {
  content: "\f000";
}

.fa-couch::before {
  content: "\f4b8";
}

.fa-cedi-sign::before {
  content: "\e0df";
}

.fa-italic::before {
  content: "\f033";
}

.fa-table-cells-column-lock::before {
  content: "\e678";
}

.fa-church::before {
  content: "\f51d";
}

.fa-comments-dollar::before {
  content: "\f653";
}

.fa-democrat::before {
  content: "\f747";
}

.fa-z::before {
  content: "Z";
}

.fa-person-skiing::before {
  content: "\f7c9";
}

.fa-skiing::before {
  content: "\f7c9";
}

.fa-road-lock::before {
  content: "\e567";
}

.fa-a::before {
  content: "A";
}

.fa-temperature-arrow-down::before {
  content: "\e03f";
}

.fa-temperature-down::before {
  content: "\e03f";
}

.fa-feather-pointed::before {
  content: "\f56b";
}

.fa-feather-alt::before {
  content: "\f56b";
}

.fa-p::before {
  content: "P";
}

.fa-snowflake::before {
  content: "\f2dc";
}

.fa-newspaper::before {
  content: "\f1ea";
}

.fa-rectangle-ad::before {
  content: "\f641";
}

.fa-ad::before {
  content: "\f641";
}

.fa-circle-arrow-right::before {
  content: "\f0a9";
}

.fa-arrow-circle-right::before {
  content: "\f0a9";
}

.fa-filter-circle-xmark::before {
  content: "\e17b";
}

.fa-locust::before {
  content: "\e520";
}

.fa-sort::before {
  content: "\f0dc";
}

.fa-unsorted::before {
  content: "\f0dc";
}

.fa-list-ol::before {
  content: "\f0cb";
}

.fa-list-1-2::before {
  content: "\f0cb";
}

.fa-list-numeric::before {
  content: "\f0cb";
}

.fa-person-dress-burst::before {
  content: "\e544";
}

.fa-money-check-dollar::before {
  content: "\f53d";
}

.fa-money-check-alt::before {
  content: "\f53d";
}

.fa-vector-square::before {
  content: "\f5cb";
}

.fa-bread-slice::before {
  content: "\f7ec";
}

.fa-language::before {
  content: "\f1ab";
}

.fa-face-kiss-wink-heart::before {
  content: "\f598";
}

.fa-kiss-wink-heart::before {
  content: "\f598";
}

.fa-filter::before {
  content: "\f0b0";
}

.fa-question::before {
  content: "\?";
}

.fa-file-signature::before {
  content: "\f573";
}

.fa-up-down-left-right::before {
  content: "\f0b2";
}

.fa-arrows-alt::before {
  content: "\f0b2";
}

.fa-house-chimney-user::before {
  content: "\e065";
}

.fa-hand-holding-heart::before {
  content: "\f4be";
}

.fa-puzzle-piece::before {
  content: "\f12e";
}

.fa-money-check::before {
  content: "\f53c";
}

.fa-star-half-stroke::before {
  content: "\f5c0";
}

.fa-star-half-alt::before {
  content: "\f5c0";
}

.fa-code::before {
  content: "\f121";
}

.fa-whiskey-glass::before {
  content: "\f7a0";
}

.fa-glass-whiskey::before {
  content: "\f7a0";
}

.fa-building-circle-exclamation::before {
  content: "\e4d3";
}

.fa-magnifying-glass-chart::before {
  content: "\e522";
}

.fa-arrow-up-right-from-square::before {
  content: "\f08e";
}

.fa-external-link::before {
  content: "\f08e";
}

.fa-cubes-stacked::before {
  content: "\e4e6";
}

.fa-won-sign::before {
  content: "\f159";
}

.fa-krw::before {
  content: "\f159";
}

.fa-won::before {
  content: "\f159";
}

.fa-virus-covid::before {
  content: "\e4a8";
}

.fa-austral-sign::before {
  content: "\e0a9";
}

.fa-f::before {
  content: "F";
}

.fa-leaf::before {
  content: "\f06c";
}

.fa-road::before {
  content: "\f018";
}

.fa-taxi::before {
  content: "\f1ba";
}

.fa-cab::before {
  content: "\f1ba";
}

.fa-person-circle-plus::before {
  content: "\e541";
}

.fa-chart-pie::before {
  content: "\f200";
}

.fa-pie-chart::before {
  content: "\f200";
}

.fa-bolt-lightning::before {
  content: "\e0b7";
}

.fa-sack-xmark::before {
  content: "\e56a";
}

.fa-file-excel::before {
  content: "\f1c3";
}

.fa-file-contract::before {
  content: "\f56c";
}

.fa-fish-fins::before {
  content: "\e4f2";
}

.fa-building-flag::before {
  content: "\e4d5";
}

.fa-face-grin-beam::before {
  content: "\f582";
}

.fa-grin-beam::before {
  content: "\f582";
}

.fa-object-ungroup::before {
  content: "\f248";
}

.fa-poop::before {
  content: "\f619";
}

.fa-location-pin::before {
  content: "\f041";
}

.fa-map-marker::before {
  content: "\f041";
}

.fa-kaaba::before {
  content: "\f66b";
}

.fa-toilet-paper::before {
  content: "\f71e";
}

.fa-helmet-safety::before {
  content: "\f807";
}

.fa-hard-hat::before {
  content: "\f807";
}

.fa-hat-hard::before {
  content: "\f807";
}

.fa-eject::before {
  content: "\f052";
}

.fa-circle-right::before {
  content: "\f35a";
}

.fa-arrow-alt-circle-right::before {
  content: "\f35a";
}

.fa-plane-circle-check::before {
  content: "\e555";
}

.fa-face-rolling-eyes::before {
  content: "\f5a5";
}

.fa-meh-rolling-eyes::before {
  content: "\f5a5";
}

.fa-object-group::before {
  content: "\f247";
}

.fa-chart-line::before {
  content: "\f201";
}

.fa-line-chart::before {
  content: "\f201";
}

.fa-mask-ventilator::before {
  content: "\e524";
}

.fa-arrow-right::before {
  content: "\f061";
}

.fa-signs-post::before {
  content: "\f277";
}

.fa-map-signs::before {
  content: "\f277";
}

.fa-cash-register::before {
  content: "\f788";
}

.fa-person-circle-question::before {
  content: "\e542";
}

.fa-h::before {
  content: "H";
}

.fa-tarp::before {
  content: "\e57b";
}

.fa-screwdriver-wrench::before {
  content: "\f7d9";
}

.fa-tools::before {
  content: "\f7d9";
}

.fa-arrows-to-eye::before {
  content: "\e4bf";
}

.fa-plug-circle-bolt::before {
  content: "\e55b";
}

.fa-heart::before {
  content: "\f004";
}

.fa-mars-and-venus::before {
  content: "\f224";
}

.fa-house-user::before {
  content: "\e1b0";
}

.fa-home-user::before {
  content: "\e1b0";
}

.fa-dumpster-fire::before {
  content: "\f794";
}

.fa-house-crack::before {
  content: "\e3b1";
}

.fa-martini-glass-citrus::before {
  content: "\f561";
}

.fa-cocktail::before {
  content: "\f561";
}

.fa-face-surprise::before {
  content: "\f5c2";
}

.fa-surprise::before {
  content: "\f5c2";
}

.fa-bottle-water::before {
  content: "\e4c5";
}

.fa-circle-pause::before {
  content: "\f28b";
}

.fa-pause-circle::before {
  content: "\f28b";
}

.fa-toilet-paper-slash::before {
  content: "\e072";
}

.fa-apple-whole::before {
  content: "\f5d1";
}

.fa-apple-alt::before {
  content: "\f5d1";
}

.fa-kitchen-set::before {
  content: "\e51a";
}

.fa-r::before {
  content: "R";
}

.fa-temperature-quarter::before {
  content: "\f2ca";
}

.fa-temperature-1::before {
  content: "\f2ca";
}

.fa-thermometer-1::before {
  content: "\f2ca";
}

.fa-thermometer-quarter::before {
  content: "\f2ca";
}

.fa-cube::before {
  content: "\f1b2";
}

.fa-bitcoin-sign::before {
  content: "\e0b4";
}

.fa-shield-dog::before {
  content: "\e573";
}

.fa-solar-panel::before {
  content: "\f5ba";
}

.fa-lock-open::before {
  content: "\f3c1";
}

.fa-elevator::before {
  content: "\e16d";
}

.fa-money-bill-transfer::before {
  content: "\e528";
}

.fa-money-bill-trend-up::before {
  content: "\e529";
}

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f";
}

.fa-square-poll-horizontal::before {
  content: "\f682";
}

.fa-poll-h::before {
  content: "\f682";
}

.fa-circle::before {
  content: "\f111";
}

.fa-backward-fast::before {
  content: "\f049";
}

.fa-fast-backward::before {
  content: "\f049";
}

.fa-recycle::before {
  content: "\f1b8";
}

.fa-user-astronaut::before {
  content: "\f4fb";
}

.fa-plane-slash::before {
  content: "\e069";
}

.fa-trademark::before {
  content: "\f25c";
}

.fa-basketball::before {
  content: "\f434";
}

.fa-basketball-ball::before {
  content: "\f434";
}

.fa-satellite-dish::before {
  content: "\f7c0";
}

.fa-circle-up::before {
  content: "\f35b";
}

.fa-arrow-alt-circle-up::before {
  content: "\f35b";
}

.fa-mobile-screen-button::before {
  content: "\f3cd";
}

.fa-mobile-alt::before {
  content: "\f3cd";
}

.fa-volume-high::before {
  content: "\f028";
}

.fa-volume-up::before {
  content: "\f028";
}

.fa-users-rays::before {
  content: "\e593";
}

.fa-wallet::before {
  content: "\f555";
}

.fa-clipboard-check::before {
  content: "\f46c";
}

.fa-file-audio::before {
  content: "\f1c7";
}

.fa-burger::before {
  content: "\f805";
}

.fa-hamburger::before {
  content: "\f805";
}

.fa-wrench::before {
  content: "\f0ad";
}

.fa-bugs::before {
  content: "\e4d0";
}

.fa-rupee-sign::before {
  content: "\f156";
}

.fa-rupee::before {
  content: "\f156";
}

.fa-file-image::before {
  content: "\f1c5";
}

.fa-circle-question::before {
  content: "\f059";
}

.fa-question-circle::before {
  content: "\f059";
}

.fa-plane-departure::before {
  content: "\f5b0";
}

.fa-handshake-slash::before {
  content: "\e060";
}

.fa-book-bookmark::before {
  content: "\e0bb";
}

.fa-code-branch::before {
  content: "\f126";
}

.fa-hat-cowboy::before {
  content: "\f8c0";
}

.fa-bridge::before {
  content: "\e4c8";
}

.fa-phone-flip::before {
  content: "\f879";
}

.fa-phone-alt::before {
  content: "\f879";
}

.fa-truck-front::before {
  content: "\e2b7";
}

.fa-cat::before {
  content: "\f6be";
}

.fa-anchor-circle-exclamation::before {
  content: "\e4ab";
}

.fa-truck-field::before {
  content: "\e58d";
}

.fa-route::before {
  content: "\f4d7";
}

.fa-clipboard-question::before {
  content: "\e4e3";
}

.fa-panorama::before {
  content: "\e209";
}

.fa-comment-medical::before {
  content: "\f7f5";
}

.fa-teeth-open::before {
  content: "\f62f";
}

.fa-file-circle-minus::before {
  content: "\e4ed";
}

.fa-tags::before {
  content: "\f02c";
}

.fa-wine-glass::before {
  content: "\f4e3";
}

.fa-forward-fast::before {
  content: "\f050";
}

.fa-fast-forward::before {
  content: "\f050";
}

.fa-face-meh-blank::before {
  content: "\f5a4";
}

.fa-meh-blank::before {
  content: "\f5a4";
}

.fa-square-parking::before {
  content: "\f540";
}

.fa-parking::before {
  content: "\f540";
}

.fa-house-signal::before {
  content: "\e012";
}

.fa-bars-progress::before {
  content: "\f828";
}

.fa-tasks-alt::before {
  content: "\f828";
}

.fa-faucet-drip::before {
  content: "\e006";
}

.fa-cart-flatbed::before {
  content: "\f474";
}

.fa-dolly-flatbed::before {
  content: "\f474";
}

.fa-ban-smoking::before {
  content: "\f54d";
}

.fa-smoking-ban::before {
  content: "\f54d";
}

.fa-terminal::before {
  content: "\f120";
}

.fa-mobile-button::before {
  content: "\f10b";
}

.fa-house-medical-flag::before {
  content: "\e514";
}

.fa-basket-shopping::before {
  content: "\f291";
}

.fa-shopping-basket::before {
  content: "\f291";
}

.fa-tape::before {
  content: "\f4db";
}

.fa-bus-simple::before {
  content: "\f55e";
}

.fa-bus-alt::before {
  content: "\f55e";
}

.fa-eye::before {
  content: "\f06e";
}

.fa-face-sad-cry::before {
  content: "\f5b3";
}

.fa-sad-cry::before {
  content: "\f5b3";
}

.fa-audio-description::before {
  content: "\f29e";
}

.fa-person-military-to-person::before {
  content: "\e54c";
}

.fa-file-shield::before {
  content: "\e4f0";
}

.fa-user-slash::before {
  content: "\f506";
}

.fa-pen::before {
  content: "\f304";
}

.fa-tower-observation::before {
  content: "\e586";
}

.fa-file-code::before {
  content: "\f1c9";
}

.fa-signal::before {
  content: "\f012";
}

.fa-signal-5::before {
  content: "\f012";
}

.fa-signal-perfect::before {
  content: "\f012";
}

.fa-bus::before {
  content: "\f207";
}

.fa-heart-circle-xmark::before {
  content: "\e501";
}

.fa-house-chimney::before {
  content: "\e3af";
}

.fa-home-lg::before {
  content: "\e3af";
}

.fa-window-maximize::before {
  content: "\f2d0";
}

.fa-face-frown::before {
  content: "\f119";
}

.fa-frown::before {
  content: "\f119";
}

.fa-prescription::before {
  content: "\f5b1";
}

.fa-shop::before {
  content: "\f54f";
}

.fa-store-alt::before {
  content: "\f54f";
}

.fa-floppy-disk::before {
  content: "\f0c7";
}

.fa-save::before {
  content: "\f0c7";
}

.fa-vihara::before {
  content: "\f6a7";
}

.fa-scale-unbalanced::before {
  content: "\f515";
}

.fa-balance-scale-left::before {
  content: "\f515";
}

.fa-sort-up::before {
  content: "\f0de";
}

.fa-sort-asc::before {
  content: "\f0de";
}

.fa-comment-dots::before {
  content: "\f4ad";
}

.fa-commenting::before {
  content: "\f4ad";
}

.fa-plant-wilt::before {
  content: "\e5aa";
}

.fa-diamond::before {
  content: "\f219";
}

.fa-face-grin-squint::before {
  content: "\f585";
}

.fa-grin-squint::before {
  content: "\f585";
}

.fa-hand-holding-dollar::before {
  content: "\f4c0";
}

.fa-hand-holding-usd::before {
  content: "\f4c0";
}

.fa-bacterium::before {
  content: "\e05a";
}

.fa-hand-pointer::before {
  content: "\f25a";
}

.fa-drum-steelpan::before {
  content: "\f56a";
}

.fa-hand-scissors::before {
  content: "\f257";
}

.fa-hands-praying::before {
  content: "\f684";
}

.fa-praying-hands::before {
  content: "\f684";
}

.fa-arrow-rotate-right::before {
  content: "\f01e";
}

.fa-arrow-right-rotate::before {
  content: "\f01e";
}

.fa-arrow-rotate-forward::before {
  content: "\f01e";
}

.fa-redo::before {
  content: "\f01e";
}

.fa-biohazard::before {
  content: "\f780";
}

.fa-location-crosshairs::before {
  content: "\f601";
}

.fa-location::before {
  content: "\f601";
}

.fa-mars-double::before {
  content: "\f227";
}

.fa-child-dress::before {
  content: "\e59c";
}

.fa-users-between-lines::before {
  content: "\e591";
}

.fa-lungs-virus::before {
  content: "\e067";
}

.fa-face-grin-tears::before {
  content: "\f588";
}

.fa-grin-tears::before {
  content: "\f588";
}

.fa-phone::before {
  content: "\f095";
}

.fa-calendar-xmark::before {
  content: "\f273";
}

.fa-calendar-times::before {
  content: "\f273";
}

.fa-child-reaching::before {
  content: "\e59d";
}

.fa-head-side-virus::before {
  content: "\e064";
}

.fa-user-gear::before {
  content: "\f4fe";
}

.fa-user-cog::before {
  content: "\f4fe";
}

.fa-arrow-up-1-9::before {
  content: "\f163";
}

.fa-sort-numeric-up::before {
  content: "\f163";
}

.fa-door-closed::before {
  content: "\f52a";
}

.fa-shield-virus::before {
  content: "\e06c";
}

.fa-dice-six::before {
  content: "\f526";
}

.fa-mosquito-net::before {
  content: "\e52c";
}

.fa-bridge-water::before {
  content: "\e4ce";
}

.fa-person-booth::before {
  content: "\f756";
}

.fa-text-width::before {
  content: "\f035";
}

.fa-hat-wizard::before {
  content: "\f6e8";
}

.fa-pen-fancy::before {
  content: "\f5ac";
}

.fa-person-digging::before {
  content: "\f85e";
}

.fa-digging::before {
  content: "\f85e";
}

.fa-trash::before {
  content: "\f1f8";
}

.fa-gauge-simple::before {
  content: "\f629";
}

.fa-gauge-simple-med::before {
  content: "\f629";
}

.fa-tachometer-average::before {
  content: "\f629";
}

.fa-book-medical::before {
  content: "\f7e6";
}

.fa-poo::before {
  content: "\f2fe";
}

.fa-quote-right::before {
  content: "\f10e";
}

.fa-quote-right-alt::before {
  content: "\f10e";
}

.fa-shirt::before {
  content: "\f553";
}

.fa-t-shirt::before {
  content: "\f553";
}

.fa-tshirt::before {
  content: "\f553";
}

.fa-cubes::before {
  content: "\f1b3";
}

.fa-divide::before {
  content: "\f529";
}

.fa-tenge-sign::before {
  content: "\f7d7";
}

.fa-tenge::before {
  content: "\f7d7";
}

.fa-headphones::before {
  content: "\f025";
}

.fa-hands-holding::before {
  content: "\f4c2";
}

.fa-hands-clapping::before {
  content: "\e1a8";
}

.fa-republican::before {
  content: "\f75e";
}

.fa-arrow-left::before {
  content: "\f060";
}

.fa-person-circle-xmark::before {
  content: "\e543";
}

.fa-ruler::before {
  content: "\f545";
}

.fa-align-left::before {
  content: "\f036";
}

.fa-dice-d6::before {
  content: "\f6d1";
}

.fa-restroom::before {
  content: "\f7bd";
}

.fa-j::before {
  content: "J";
}

.fa-users-viewfinder::before {
  content: "\e595";
}

.fa-file-video::before {
  content: "\f1c8";
}

.fa-up-right-from-square::before {
  content: "\f35d";
}

.fa-external-link-alt::before {
  content: "\f35d";
}

.fa-table-cells::before {
  content: "\f00a";
}

.fa-th::before {
  content: "\f00a";
}

.fa-file-pdf::before {
  content: "\f1c1";
}

.fa-book-bible::before {
  content: "\f647";
}

.fa-bible::before {
  content: "\f647";
}

.fa-o::before {
  content: "O";
}

.fa-suitcase-medical::before {
  content: "\f0fa";
}

.fa-medkit::before {
  content: "\f0fa";
}

.fa-user-secret::before {
  content: "\f21b";
}

.fa-otter::before {
  content: "\f700";
}

.fa-person-dress::before {
  content: "\f182";
}

.fa-female::before {
  content: "\f182";
}

.fa-comment-dollar::before {
  content: "\f651";
}

.fa-business-time::before {
  content: "\f64a";
}

.fa-briefcase-clock::before {
  content: "\f64a";
}

.fa-table-cells-large::before {
  content: "\f009";
}

.fa-th-large::before {
  content: "\f009";
}

.fa-book-tanakh::before {
  content: "\f827";
}

.fa-tanakh::before {
  content: "\f827";
}

.fa-phone-volume::before {
  content: "\f2a0";
}

.fa-volume-control-phone::before {
  content: "\f2a0";
}

.fa-hat-cowboy-side::before {
  content: "\f8c1";
}

.fa-clipboard-user::before {
  content: "\f7f3";
}

.fa-child::before {
  content: "\f1ae";
}

.fa-lira-sign::before {
  content: "\f195";
}

.fa-satellite::before {
  content: "\f7bf";
}

.fa-plane-lock::before {
  content: "\e558";
}

.fa-tag::before {
  content: "\f02b";
}

.fa-comment::before {
  content: "\f075";
}

.fa-cake-candles::before {
  content: "\f1fd";
}

.fa-birthday-cake::before {
  content: "\f1fd";
}

.fa-cake::before {
  content: "\f1fd";
}

.fa-envelope::before {
  content: "\f0e0";
}

.fa-angles-up::before {
  content: "\f102";
}

.fa-angle-double-up::before {
  content: "\f102";
}

.fa-paperclip::before {
  content: "\f0c6";
}

.fa-arrow-right-to-city::before {
  content: "\e4b3";
}

.fa-ribbon::before {
  content: "\f4d6";
}

.fa-lungs::before {
  content: "\f604";
}

.fa-arrow-up-9-1::before {
  content: "\f887";
}

.fa-sort-numeric-up-alt::before {
  content: "\f887";
}

.fa-litecoin-sign::before {
  content: "\e1d3";
}

.fa-border-none::before {
  content: "\f850";
}

.fa-circle-nodes::before {
  content: "\e4e2";
}

.fa-parachute-box::before {
  content: "\f4cd";
}

.fa-indent::before {
  content: "\f03c";
}

.fa-truck-field-un::before {
  content: "\e58e";
}

.fa-hourglass::before {
  content: "\f254";
}

.fa-hourglass-empty::before {
  content: "\f254";
}

.fa-mountain::before {
  content: "\f6fc";
}

.fa-user-doctor::before {
  content: "\f0f0";
}

.fa-user-md::before {
  content: "\f0f0";
}

.fa-circle-info::before {
  content: "\f05a";
}

.fa-info-circle::before {
  content: "\f05a";
}

.fa-cloud-meatball::before {
  content: "\f73b";
}

.fa-camera::before {
  content: "\f030";
}

.fa-camera-alt::before {
  content: "\f030";
}

.fa-square-virus::before {
  content: "\e578";
}

.fa-meteor::before {
  content: "\f753";
}

.fa-car-on::before {
  content: "\e4dd";
}

.fa-sleigh::before {
  content: "\f7cc";
}

.fa-arrow-down-1-9::before {
  content: "\f162";
}

.fa-sort-numeric-asc::before {
  content: "\f162";
}

.fa-sort-numeric-down::before {
  content: "\f162";
}

.fa-hand-holding-droplet::before {
  content: "\f4c1";
}

.fa-hand-holding-water::before {
  content: "\f4c1";
}

.fa-water::before {
  content: "\f773";
}

.fa-calendar-check::before {
  content: "\f274";
}

.fa-braille::before {
  content: "\f2a1";
}

.fa-prescription-bottle-medical::before {
  content: "\f486";
}

.fa-prescription-bottle-alt::before {
  content: "\f486";
}

.fa-landmark::before {
  content: "\f66f";
}

.fa-truck::before {
  content: "\f0d1";
}

.fa-crosshairs::before {
  content: "\f05b";
}

.fa-person-cane::before {
  content: "\e53c";
}

.fa-tent::before {
  content: "\e57d";
}

.fa-vest-patches::before {
  content: "\e086";
}

.fa-check-double::before {
  content: "\f560";
}

.fa-arrow-down-a-z::before {
  content: "\f15d";
}

.fa-sort-alpha-asc::before {
  content: "\f15d";
}

.fa-sort-alpha-down::before {
  content: "\f15d";
}

.fa-money-bill-wheat::before {
  content: "\e52a";
}

.fa-cookie::before {
  content: "\f563";
}

.fa-arrow-rotate-left::before {
  content: "\f0e2";
}

.fa-arrow-left-rotate::before {
  content: "\f0e2";
}

.fa-arrow-rotate-back::before {
  content: "\f0e2";
}

.fa-arrow-rotate-backward::before {
  content: "\f0e2";
}

.fa-undo::before {
  content: "\f0e2";
}

.fa-hard-drive::before {
  content: "\f0a0";
}

.fa-hdd::before {
  content: "\f0a0";
}

.fa-face-grin-squint-tears::before {
  content: "\f586";
}

.fa-grin-squint-tears::before {
  content: "\f586";
}

.fa-dumbbell::before {
  content: "\f44b";
}

.fa-rectangle-list::before {
  content: "\f022";
}

.fa-list-alt::before {
  content: "\f022";
}

.fa-tarp-droplet::before {
  content: "\e57c";
}

.fa-house-medical-circle-check::before {
  content: "\e511";
}

.fa-person-skiing-nordic::before {
  content: "\f7ca";
}

.fa-skiing-nordic::before {
  content: "\f7ca";
}

.fa-calendar-plus::before {
  content: "\f271";
}

.fa-plane-arrival::before {
  content: "\f5af";
}

.fa-circle-left::before {
  content: "\f359";
}

.fa-arrow-alt-circle-left::before {
  content: "\f359";
}

.fa-train-subway::before {
  content: "\f239";
}

.fa-subway::before {
  content: "\f239";
}

.fa-chart-gantt::before {
  content: "\e0e4";
}

.fa-indian-rupee-sign::before {
  content: "\e1bc";
}

.fa-indian-rupee::before {
  content: "\e1bc";
}

.fa-inr::before {
  content: "\e1bc";
}

.fa-crop-simple::before {
  content: "\f565";
}

.fa-crop-alt::before {
  content: "\f565";
}

.fa-money-bill-1::before {
  content: "\f3d1";
}

.fa-money-bill-alt::before {
  content: "\f3d1";
}

.fa-left-long::before {
  content: "\f30a";
}

.fa-long-arrow-alt-left::before {
  content: "\f30a";
}

.fa-dna::before {
  content: "\f471";
}

.fa-virus-slash::before {
  content: "\e075";
}

.fa-minus::before {
  content: "\f068";
}

.fa-subtract::before {
  content: "\f068";
}

.fa-chess::before {
  content: "\f439";
}

.fa-arrow-left-long::before {
  content: "\f177";
}

.fa-long-arrow-left::before {
  content: "\f177";
}

.fa-plug-circle-check::before {
  content: "\e55c";
}

.fa-street-view::before {
  content: "\f21d";
}

.fa-franc-sign::before {
  content: "\e18f";
}

.fa-volume-off::before {
  content: "\f026";
}

.fa-hands-asl-interpreting::before {
  content: "\f2a3";
}

.fa-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-asl-interpreting::before {
  content: "\f2a3";
}

.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-gear::before {
  content: "\f013";
}

.fa-cog::before {
  content: "\f013";
}

.fa-droplet-slash::before {
  content: "\f5c7";
}

.fa-tint-slash::before {
  content: "\f5c7";
}

.fa-mosque::before {
  content: "\f678";
}

.fa-mosquito::before {
  content: "\e52b";
}

.fa-star-of-david::before {
  content: "\f69a";
}

.fa-person-military-rifle::before {
  content: "\e54b";
}

.fa-cart-shopping::before {
  content: "\f07a";
}

.fa-shopping-cart::before {
  content: "\f07a";
}

.fa-vials::before {
  content: "\f493";
}

.fa-plug-circle-plus::before {
  content: "\e55f";
}

.fa-place-of-worship::before {
  content: "\f67f";
}

.fa-grip-vertical::before {
  content: "\f58e";
}

.fa-arrow-turn-up::before {
  content: "\f148";
}

.fa-level-up::before {
  content: "\f148";
}

.fa-u::before {
  content: "U";
}

.fa-square-root-variable::before {
  content: "\f698";
}

.fa-square-root-alt::before {
  content: "\f698";
}

.fa-clock::before {
  content: "\f017";
}

.fa-clock-four::before {
  content: "\f017";
}

.fa-backward-step::before {
  content: "\f048";
}

.fa-step-backward::before {
  content: "\f048";
}

.fa-pallet::before {
  content: "\f482";
}

.fa-faucet::before {
  content: "\e005";
}

.fa-baseball-bat-ball::before {
  content: "\f432";
}

.fa-s::before {
  content: "S";
}

.fa-timeline::before {
  content: "\e29c";
}

.fa-keyboard::before {
  content: "\f11c";
}

.fa-caret-down::before {
  content: "\f0d7";
}

.fa-house-chimney-medical::before {
  content: "\f7f2";
}

.fa-clinic-medical::before {
  content: "\f7f2";
}

.fa-temperature-three-quarters::before {
  content: "\f2c8";
}

.fa-temperature-3::before {
  content: "\f2c8";
}

.fa-thermometer-3::before {
  content: "\f2c8";
}

.fa-thermometer-three-quarters::before {
  content: "\f2c8";
}

.fa-mobile-screen::before {
  content: "\f3cf";
}

.fa-mobile-android-alt::before {
  content: "\f3cf";
}

.fa-plane-up::before {
  content: "\e22d";
}

.fa-piggy-bank::before {
  content: "\f4d3";
}

.fa-battery-half::before {
  content: "\f242";
}

.fa-battery-3::before {
  content: "\f242";
}

.fa-mountain-city::before {
  content: "\e52e";
}

.fa-coins::before {
  content: "\f51e";
}

.fa-khanda::before {
  content: "\f66d";
}

.fa-sliders::before {
  content: "\f1de";
}

.fa-sliders-h::before {
  content: "\f1de";
}

.fa-folder-tree::before {
  content: "\f802";
}

.fa-network-wired::before {
  content: "\f6ff";
}

.fa-map-pin::before {
  content: "\f276";
}

.fa-hamsa::before {
  content: "\f665";
}

.fa-cent-sign::before {
  content: "\e3f5";
}

.fa-flask::before {
  content: "\f0c3";
}

.fa-person-pregnant::before {
  content: "\e31e";
}

.fa-wand-sparkles::before {
  content: "\f72b";
}

.fa-ellipsis-vertical::before {
  content: "\f142";
}

.fa-ellipsis-v::before {
  content: "\f142";
}

.fa-ticket::before {
  content: "\f145";
}

.fa-power-off::before {
  content: "\f011";
}

.fa-right-long::before {
  content: "\f30b";
}

.fa-long-arrow-alt-right::before {
  content: "\f30b";
}

.fa-flag-usa::before {
  content: "\f74d";
}

.fa-laptop-file::before {
  content: "\e51d";
}

.fa-tty::before {
  content: "\f1e4";
}

.fa-teletype::before {
  content: "\f1e4";
}

.fa-diagram-next::before {
  content: "\e476";
}

.fa-person-rifle::before {
  content: "\e54e";
}

.fa-house-medical-circle-exclamation::before {
  content: "\e512";
}

.fa-closed-captioning::before {
  content: "\f20a";
}

.fa-person-hiking::before {
  content: "\f6ec";
}

.fa-hiking::before {
  content: "\f6ec";
}

.fa-venus-double::before {
  content: "\f226";
}

.fa-images::before {
  content: "\f302";
}

.fa-calculator::before {
  content: "\f1ec";
}

.fa-people-pulling::before {
  content: "\e535";
}

.fa-n::before {
  content: "N";
}

.fa-cable-car::before {
  content: "\f7da";
}

.fa-tram::before {
  content: "\f7da";
}

.fa-cloud-rain::before {
  content: "\f73d";
}

.fa-building-circle-xmark::before {
  content: "\e4d4";
}

.fa-ship::before {
  content: "\f21a";
}

.fa-arrows-down-to-line::before {
  content: "\e4b8";
}

.fa-download::before {
  content: "\f019";
}

.fa-face-grin::before {
  content: "\f580";
}

.fa-grin::before {
  content: "\f580";
}

.fa-delete-left::before {
  content: "\f55a";
}

.fa-backspace::before {
  content: "\f55a";
}

.fa-eye-dropper::before {
  content: "\f1fb";
}

.fa-eye-dropper-empty::before {
  content: "\f1fb";
}

.fa-eyedropper::before {
  content: "\f1fb";
}

.fa-file-circle-check::before {
  content: "\e5a0";
}

.fa-forward::before {
  content: "\f04e";
}

.fa-mobile::before {
  content: "\f3ce";
}

.fa-mobile-android::before {
  content: "\f3ce";
}

.fa-mobile-phone::before {
  content: "\f3ce";
}

.fa-face-meh::before {
  content: "\f11a";
}

.fa-meh::before {
  content: "\f11a";
}

.fa-align-center::before {
  content: "\f037";
}

.fa-book-skull::before {
  content: "\f6b7";
}

.fa-book-dead::before {
  content: "\f6b7";
}

.fa-id-card::before {
  content: "\f2c2";
}

.fa-drivers-license::before {
  content: "\f2c2";
}

.fa-outdent::before {
  content: "\f03b";
}

.fa-dedent::before {
  content: "\f03b";
}

.fa-heart-circle-exclamation::before {
  content: "\e4fe";
}

.fa-house::before {
  content: "\f015";
}

.fa-home::before {
  content: "\f015";
}

.fa-home-alt::before {
  content: "\f015";
}

.fa-home-lg-alt::before {
  content: "\f015";
}

.fa-calendar-week::before {
  content: "\f784";
}

.fa-laptop-medical::before {
  content: "\f812";
}

.fa-b::before {
  content: "B";
}

.fa-file-medical::before {
  content: "\f477";
}

.fa-dice-one::before {
  content: "\f525";
}

.fa-kiwi-bird::before {
  content: "\f535";
}

.fa-arrow-right-arrow-left::before {
  content: "\f0ec";
}

.fa-exchange::before {
  content: "\f0ec";
}

.fa-rotate-right::before {
  content: "\f2f9";
}

.fa-redo-alt::before {
  content: "\f2f9";
}

.fa-rotate-forward::before {
  content: "\f2f9";
}

.fa-utensils::before {
  content: "\f2e7";
}

.fa-cutlery::before {
  content: "\f2e7";
}

.fa-arrow-up-wide-short::before {
  content: "\f161";
}

.fa-sort-amount-up::before {
  content: "\f161";
}

.fa-mill-sign::before {
  content: "\e1ed";
}

.fa-bowl-rice::before {
  content: "\e2eb";
}

.fa-skull::before {
  content: "\f54c";
}

.fa-tower-broadcast::before {
  content: "\f519";
}

.fa-broadcast-tower::before {
  content: "\f519";
}

.fa-truck-pickup::before {
  content: "\f63c";
}

.fa-up-long::before {
  content: "\f30c";
}

.fa-long-arrow-alt-up::before {
  content: "\f30c";
}

.fa-stop::before {
  content: "\f04d";
}

.fa-code-merge::before {
  content: "\f387";
}

.fa-upload::before {
  content: "\f093";
}

.fa-hurricane::before {
  content: "\f751";
}

.fa-mound::before {
  content: "\e52d";
}

.fa-toilet-portable::before {
  content: "\e583";
}

.fa-compact-disc::before {
  content: "\f51f";
}

.fa-file-arrow-down::before {
  content: "\f56d";
}

.fa-file-download::before {
  content: "\f56d";
}

.fa-caravan::before {
  content: "\f8ff";
}

.fa-shield-cat::before {
  content: "\e572";
}

.fa-bolt::before {
  content: "\f0e7";
}

.fa-zap::before {
  content: "\f0e7";
}

.fa-glass-water::before {
  content: "\e4f4";
}

.fa-oil-well::before {
  content: "\e532";
}

.fa-vault::before {
  content: "\e2c5";
}

.fa-mars::before {
  content: "\f222";
}

.fa-toilet::before {
  content: "\f7d8";
}

.fa-plane-circle-xmark::before {
  content: "\e557";
}

.fa-yen-sign::before {
  content: "\f157";
}

.fa-cny::before {
  content: "\f157";
}

.fa-jpy::before {
  content: "\f157";
}

.fa-rmb::before {
  content: "\f157";
}

.fa-yen::before {
  content: "\f157";
}

.fa-ruble-sign::before {
  content: "\f158";
}

.fa-rouble::before {
  content: "\f158";
}

.fa-rub::before {
  content: "\f158";
}

.fa-ruble::before {
  content: "\f158";
}

.fa-sun::before {
  content: "\f185";
}

.fa-guitar::before {
  content: "\f7a6";
}

.fa-face-laugh-wink::before {
  content: "\f59c";
}

.fa-laugh-wink::before {
  content: "\f59c";
}

.fa-horse-head::before {
  content: "\f7ab";
}

.fa-bore-hole::before {
  content: "\e4c3";
}

.fa-industry::before {
  content: "\f275";
}

.fa-circle-down::before {
  content: "\f358";
}

.fa-arrow-alt-circle-down::before {
  content: "\f358";
}

.fa-arrows-turn-to-dots::before {
  content: "\e4c1";
}

.fa-florin-sign::before {
  content: "\e184";
}

.fa-arrow-down-short-wide::before {
  content: "\f884";
}

.fa-sort-amount-desc::before {
  content: "\f884";
}

.fa-sort-amount-down-alt::before {
  content: "\f884";
}

.fa-less-than::before {
  content: "\<";
}

.fa-angle-down::before {
  content: "\f107";
}

.fa-car-tunnel::before {
  content: "\e4de";
}

.fa-head-side-cough::before {
  content: "\e061";
}

.fa-grip-lines::before {
  content: "\f7a4";
}

.fa-thumbs-down::before {
  content: "\f165";
}

.fa-user-lock::before {
  content: "\f502";
}

.fa-arrow-right-long::before {
  content: "\f178";
}

.fa-long-arrow-right::before {
  content: "\f178";
}

.fa-anchor-circle-xmark::before {
  content: "\e4ac";
}

.fa-ellipsis::before {
  content: "\f141";
}

.fa-ellipsis-h::before {
  content: "\f141";
}

.fa-chess-pawn::before {
  content: "\f443";
}

.fa-kit-medical::before {
  content: "\f479";
}

.fa-first-aid::before {
  content: "\f479";
}

.fa-person-through-window::before {
  content: "\e5a9";
}

.fa-toolbox::before {
  content: "\f552";
}

.fa-hands-holding-circle::before {
  content: "\e4fb";
}

.fa-bug::before {
  content: "\f188";
}

.fa-credit-card::before {
  content: "\f09d";
}

.fa-credit-card-alt::before {
  content: "\f09d";
}

.fa-car::before {
  content: "\f1b9";
}

.fa-automobile::before {
  content: "\f1b9";
}

.fa-hand-holding-hand::before {
  content: "\e4f7";
}

.fa-book-open-reader::before {
  content: "\f5da";
}

.fa-book-reader::before {
  content: "\f5da";
}

.fa-mountain-sun::before {
  content: "\e52f";
}

.fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}

.fa-dice-d20::before {
  content: "\f6cf";
}

.fa-truck-droplet::before {
  content: "\e58c";
}

.fa-file-circle-xmark::before {
  content: "\e5a1";
}

.fa-temperature-arrow-up::before {
  content: "\e040";
}

.fa-temperature-up::before {
  content: "\e040";
}

.fa-medal::before {
  content: "\f5a2";
}

.fa-bed::before {
  content: "\f236";
}

.fa-square-h::before {
  content: "\f0fd";
}

.fa-h-square::before {
  content: "\f0fd";
}

.fa-podcast::before {
  content: "\f2ce";
}

.fa-temperature-full::before {
  content: "\f2c7";
}

.fa-temperature-4::before {
  content: "\f2c7";
}

.fa-thermometer-4::before {
  content: "\f2c7";
}

.fa-thermometer-full::before {
  content: "\f2c7";
}

.fa-bell::before {
  content: "\f0f3";
}

.fa-superscript::before {
  content: "\f12b";
}

.fa-plug-circle-xmark::before {
  content: "\e560";
}

.fa-star-of-life::before {
  content: "\f621";
}

.fa-phone-slash::before {
  content: "\f3dd";
}

.fa-paint-roller::before {
  content: "\f5aa";
}

.fa-handshake-angle::before {
  content: "\f4c4";
}

.fa-hands-helping::before {
  content: "\f4c4";
}

.fa-location-dot::before {
  content: "\f3c5";
}

.fa-map-marker-alt::before {
  content: "\f3c5";
}

.fa-file::before {
  content: "\f15b";
}

.fa-greater-than::before {
  content: "\>";
}

.fa-person-swimming::before {
  content: "\f5c4";
}

.fa-swimmer::before {
  content: "\f5c4";
}

.fa-arrow-down::before {
  content: "\f063";
}

.fa-droplet::before {
  content: "\f043";
}

.fa-tint::before {
  content: "\f043";
}

.fa-eraser::before {
  content: "\f12d";
}

.fa-earth-americas::before {
  content: "\f57d";
}

.fa-earth::before {
  content: "\f57d";
}

.fa-earth-america::before {
  content: "\f57d";
}

.fa-globe-americas::before {
  content: "\f57d";
}

.fa-person-burst::before {
  content: "\e53b";
}

.fa-dove::before {
  content: "\f4ba";
}

.fa-battery-empty::before {
  content: "\f244";
}

.fa-battery-0::before {
  content: "\f244";
}

.fa-socks::before {
  content: "\f696";
}

.fa-inbox::before {
  content: "\f01c";
}

.fa-section::before {
  content: "\e447";
}

.fa-gauge-high::before {
  content: "\f625";
}

.fa-tachometer-alt::before {
  content: "\f625";
}

.fa-tachometer-alt-fast::before {
  content: "\f625";
}

.fa-envelope-open-text::before {
  content: "\f658";
}

.fa-hospital::before {
  content: "\f0f8";
}

.fa-hospital-alt::before {
  content: "\f0f8";
}

.fa-hospital-wide::before {
  content: "\f0f8";
}

.fa-wine-bottle::before {
  content: "\f72f";
}

.fa-chess-rook::before {
  content: "\f447";
}

.fa-bars-staggered::before {
  content: "\f550";
}

.fa-reorder::before {
  content: "\f550";
}

.fa-stream::before {
  content: "\f550";
}

.fa-dharmachakra::before {
  content: "\f655";
}

.fa-hotdog::before {
  content: "\f80f";
}

.fa-person-walking-with-cane::before {
  content: "\f29d";
}

.fa-blind::before {
  content: "\f29d";
}

.fa-drum::before {
  content: "\f569";
}

.fa-ice-cream::before {
  content: "\f810";
}

.fa-heart-circle-bolt::before {
  content: "\e4fc";
}

.fa-fax::before {
  content: "\f1ac";
}

.fa-paragraph::before {
  content: "\f1dd";
}

.fa-check-to-slot::before {
  content: "\f772";
}

.fa-vote-yea::before {
  content: "\f772";
}

.fa-star-half::before {
  content: "\f089";
}

.fa-boxes-stacked::before {
  content: "\f468";
}

.fa-boxes::before {
  content: "\f468";
}

.fa-boxes-alt::before {
  content: "\f468";
}

.fa-link::before {
  content: "\f0c1";
}

.fa-chain::before {
  content: "\f0c1";
}

.fa-ear-listen::before {
  content: "\f2a2";
}

.fa-assistive-listening-systems::before {
  content: "\f2a2";
}

.fa-tree-city::before {
  content: "\e587";
}

.fa-play::before {
  content: "\f04b";
}

.fa-font::before {
  content: "\f031";
}

.fa-table-cells-row-lock::before {
  content: "\e67a";
}

.fa-rupiah-sign::before {
  content: "\e23d";
}

.fa-magnifying-glass::before {
  content: "\f002";
}

.fa-search::before {
  content: "\f002";
}

.fa-table-tennis-paddle-ball::before {
  content: "\f45d";
}

.fa-ping-pong-paddle-ball::before {
  content: "\f45d";
}

.fa-table-tennis::before {
  content: "\f45d";
}

.fa-person-dots-from-line::before {
  content: "\f470";
}

.fa-diagnoses::before {
  content: "\f470";
}

.fa-trash-can-arrow-up::before {
  content: "\f82a";
}

.fa-trash-restore-alt::before {
  content: "\f82a";
}

.fa-naira-sign::before {
  content: "\e1f6";
}

.fa-cart-arrow-down::before {
  content: "\f218";
}

.fa-walkie-talkie::before {
  content: "\f8ef";
}

.fa-file-pen::before {
  content: "\f31c";
}

.fa-file-edit::before {
  content: "\f31c";
}

.fa-receipt::before {
  content: "\f543";
}

.fa-square-pen::before {
  content: "\f14b";
}

.fa-pen-square::before {
  content: "\f14b";
}

.fa-pencil-square::before {
  content: "\f14b";
}

.fa-suitcase-rolling::before {
  content: "\f5c1";
}

.fa-person-circle-exclamation::before {
  content: "\e53f";
}

.fa-chevron-down::before {
  content: "\f078";
}

.fa-battery-full::before {
  content: "\f240";
}

.fa-battery::before {
  content: "\f240";
}

.fa-battery-5::before {
  content: "\f240";
}

.fa-skull-crossbones::before {
  content: "\f714";
}

.fa-code-compare::before {
  content: "\e13a";
}

.fa-list-ul::before {
  content: "\f0ca";
}

.fa-list-dots::before {
  content: "\f0ca";
}

.fa-school-lock::before {
  content: "\e56f";
}

.fa-tower-cell::before {
  content: "\e585";
}

.fa-down-long::before {
  content: "\f309";
}

.fa-long-arrow-alt-down::before {
  content: "\f309";
}

.fa-ranking-star::before {
  content: "\e561";
}

.fa-chess-king::before {
  content: "\f43f";
}

.fa-person-harassing::before {
  content: "\e549";
}

.fa-brazilian-real-sign::before {
  content: "\e46c";
}

.fa-landmark-dome::before {
  content: "\f752";
}

.fa-landmark-alt::before {
  content: "\f752";
}

.fa-arrow-up::before {
  content: "\f062";
}

.fa-tv::before {
  content: "\f26c";
}

.fa-television::before {
  content: "\f26c";
}

.fa-tv-alt::before {
  content: "\f26c";
}

.fa-shrimp::before {
  content: "\e448";
}

.fa-list-check::before {
  content: "\f0ae";
}

.fa-tasks::before {
  content: "\f0ae";
}

.fa-jug-detergent::before {
  content: "\e519";
}

.fa-circle-user::before {
  content: "\f2bd";
}

.fa-user-circle::before {
  content: "\f2bd";
}

.fa-user-shield::before {
  content: "\f505";
}

.fa-wind::before {
  content: "\f72e";
}

.fa-car-burst::before {
  content: "\f5e1";
}

.fa-car-crash::before {
  content: "\f5e1";
}

.fa-y::before {
  content: "Y";
}

.fa-person-snowboarding::before {
  content: "\f7ce";
}

.fa-snowboarding::before {
  content: "\f7ce";
}

.fa-truck-fast::before {
  content: "\f48b";
}

.fa-shipping-fast::before {
  content: "\f48b";
}

.fa-fish::before {
  content: "\f578";
}

.fa-user-graduate::before {
  content: "\f501";
}

.fa-circle-half-stroke::before {
  content: "\f042";
}

.fa-adjust::before {
  content: "\f042";
}

.fa-clapperboard::before {
  content: "\e131";
}

.fa-circle-radiation::before {
  content: "\f7ba";
}

.fa-radiation-alt::before {
  content: "\f7ba";
}

.fa-baseball::before {
  content: "\f433";
}

.fa-baseball-ball::before {
  content: "\f433";
}

.fa-jet-fighter-up::before {
  content: "\e518";
}

.fa-diagram-project::before {
  content: "\f542";
}

.fa-project-diagram::before {
  content: "\f542";
}

.fa-copy::before {
  content: "\f0c5";
}

.fa-volume-xmark::before {
  content: "\f6a9";
}

.fa-volume-mute::before {
  content: "\f6a9";
}

.fa-volume-times::before {
  content: "\f6a9";
}

.fa-hand-sparkles::before {
  content: "\e05d";
}

.fa-grip::before {
  content: "\f58d";
}

.fa-grip-horizontal::before {
  content: "\f58d";
}

.fa-share-from-square::before {
  content: "\f14d";
}

.fa-share-square::before {
  content: "\f14d";
}

.fa-child-combatant::before {
  content: "\e4e0";
}

.fa-child-rifle::before {
  content: "\e4e0";
}

.fa-gun::before {
  content: "\e19b";
}

.fa-square-phone::before {
  content: "\f098";
}

.fa-phone-square::before {
  content: "\f098";
}

.fa-plus::before {
  content: "\+";
}

.fa-add::before {
  content: "\+";
}

.fa-expand::before {
  content: "\f065";
}

.fa-computer::before {
  content: "\e4e5";
}

.fa-xmark::before {
  content: "\f00d";
}

.fa-close::before {
  content: "\f00d";
}

.fa-multiply::before {
  content: "\f00d";
}

.fa-remove::before {
  content: "\f00d";
}

.fa-times::before {
  content: "\f00d";
}

.fa-arrows-up-down-left-right::before {
  content: "\f047";
}

.fa-arrows::before {
  content: "\f047";
}

.fa-chalkboard-user::before {
  content: "\f51c";
}

.fa-chalkboard-teacher::before {
  content: "\f51c";
}

.fa-peso-sign::before {
  content: "\e222";
}

.fa-building-shield::before {
  content: "\e4d8";
}

.fa-baby::before {
  content: "\f77c";
}

.fa-users-line::before {
  content: "\e592";
}

.fa-quote-left::before {
  content: "\f10d";
}

.fa-quote-left-alt::before {
  content: "\f10d";
}

.fa-tractor::before {
  content: "\f722";
}

.fa-trash-arrow-up::before {
  content: "\f829";
}

.fa-trash-restore::before {
  content: "\f829";
}

.fa-arrow-down-up-lock::before {
  content: "\e4b0";
}

.fa-lines-leaning::before {
  content: "\e51e";
}

.fa-ruler-combined::before {
  content: "\f546";
}

.fa-copyright::before {
  content: "\f1f9";
}

.fa-equals::before {
  content: "\=";
}

.fa-blender::before {
  content: "\f517";
}

.fa-teeth::before {
  content: "\f62e";
}

.fa-shekel-sign::before {
  content: "\f20b";
}

.fa-ils::before {
  content: "\f20b";
}

.fa-shekel::before {
  content: "\f20b";
}

.fa-sheqel::before {
  content: "\f20b";
}

.fa-sheqel-sign::before {
  content: "\f20b";
}

.fa-map::before {
  content: "\f279";
}

.fa-rocket::before {
  content: "\f135";
}

.fa-photo-film::before {
  content: "\f87c";
}

.fa-photo-video::before {
  content: "\f87c";
}

.fa-folder-minus::before {
  content: "\f65d";
}

.fa-store::before {
  content: "\f54e";
}

.fa-arrow-trend-up::before {
  content: "\e098";
}

.fa-plug-circle-minus::before {
  content: "\e55e";
}

.fa-sign-hanging::before {
  content: "\f4d9";
}

.fa-sign::before {
  content: "\f4d9";
}

.fa-bezier-curve::before {
  content: "\f55b";
}

.fa-bell-slash::before {
  content: "\f1f6";
}

.fa-tablet::before {
  content: "\f3fb";
}

.fa-tablet-android::before {
  content: "\f3fb";
}

.fa-school-flag::before {
  content: "\e56e";
}

.fa-fill::before {
  content: "\f575";
}

.fa-angle-up::before {
  content: "\f106";
}

.fa-drumstick-bite::before {
  content: "\f6d7";
}

.fa-holly-berry::before {
  content: "\f7aa";
}

.fa-chevron-left::before {
  content: "\f053";
}

.fa-bacteria::before {
  content: "\e059";
}

.fa-hand-lizard::before {
  content: "\f258";
}

.fa-notdef::before {
  content: "\e1fe";
}

.fa-disease::before {
  content: "\f7fa";
}

.fa-briefcase-medical::before {
  content: "\f469";
}

.fa-genderless::before {
  content: "\f22d";
}

.fa-chevron-right::before {
  content: "\f054";
}

.fa-retweet::before {
  content: "\f079";
}

.fa-car-rear::before {
  content: "\f5de";
}

.fa-car-alt::before {
  content: "\f5de";
}

.fa-pump-soap::before {
  content: "\e06b";
}

.fa-video-slash::before {
  content: "\f4e2";
}

.fa-battery-quarter::before {
  content: "\f243";
}

.fa-battery-2::before {
  content: "\f243";
}

.fa-radio::before {
  content: "\f8d7";
}

.fa-baby-carriage::before {
  content: "\f77d";
}

.fa-carriage-baby::before {
  content: "\f77d";
}

.fa-traffic-light::before {
  content: "\f637";
}

.fa-thermometer::before {
  content: "\f491";
}

.fa-vr-cardboard::before {
  content: "\f729";
}

.fa-hand-middle-finger::before {
  content: "\f806";
}

.fa-percent::before {
  content: "\%";
}

.fa-percentage::before {
  content: "\%";
}

.fa-truck-moving::before {
  content: "\f4df";
}

.fa-glass-water-droplet::before {
  content: "\e4f5";
}

.fa-display::before {
  content: "\e163";
}

.fa-face-smile::before {
  content: "\f118";
}

.fa-smile::before {
  content: "\f118";
}

.fa-thumbtack::before {
  content: "\f08d";
}

.fa-thumb-tack::before {
  content: "\f08d";
}

.fa-trophy::before {
  content: "\f091";
}

.fa-person-praying::before {
  content: "\f683";
}

.fa-pray::before {
  content: "\f683";
}

.fa-hammer::before {
  content: "\f6e3";
}

.fa-hand-peace::before {
  content: "\f25b";
}

.fa-rotate::before {
  content: "\f2f1";
}

.fa-sync-alt::before {
  content: "\f2f1";
}

.fa-spinner::before {
  content: "\f110";
}

.fa-robot::before {
  content: "\f544";
}

.fa-peace::before {
  content: "\f67c";
}

.fa-gears::before {
  content: "\f085";
}

.fa-cogs::before {
  content: "\f085";
}

.fa-warehouse::before {
  content: "\f494";
}

.fa-arrow-up-right-dots::before {
  content: "\e4b7";
}

.fa-splotch::before {
  content: "\f5bc";
}

.fa-face-grin-hearts::before {
  content: "\f584";
}

.fa-grin-hearts::before {
  content: "\f584";
}

.fa-dice-four::before {
  content: "\f524";
}

.fa-sim-card::before {
  content: "\f7c4";
}

.fa-transgender::before {
  content: "\f225";
}

.fa-transgender-alt::before {
  content: "\f225";
}

.fa-mercury::before {
  content: "\f223";
}

.fa-arrow-turn-down::before {
  content: "\f149";
}

.fa-level-down::before {
  content: "\f149";
}

.fa-person-falling-burst::before {
  content: "\e547";
}

.fa-award::before {
  content: "\f559";
}

.fa-ticket-simple::before {
  content: "\f3ff";
}

.fa-ticket-alt::before {
  content: "\f3ff";
}

.fa-building::before {
  content: "\f1ad";
}

.fa-angles-left::before {
  content: "\f100";
}

.fa-angle-double-left::before {
  content: "\f100";
}

.fa-qrcode::before {
  content: "\f029";
}

.fa-clock-rotate-left::before {
  content: "\f1da";
}

.fa-history::before {
  content: "\f1da";
}

.fa-face-grin-beam-sweat::before {
  content: "\f583";
}

.fa-grin-beam-sweat::before {
  content: "\f583";
}

.fa-file-export::before {
  content: "\f56e";
}

.fa-arrow-right-from-file::before {
  content: "\f56e";
}

.fa-shield::before {
  content: "\f132";
}

.fa-shield-blank::before {
  content: "\f132";
}

.fa-arrow-up-short-wide::before {
  content: "\f885";
}

.fa-sort-amount-up-alt::before {
  content: "\f885";
}

.fa-house-medical::before {
  content: "\e3b2";
}

.fa-golf-ball-tee::before {
  content: "\f450";
}

.fa-golf-ball::before {
  content: "\f450";
}

.fa-circle-chevron-left::before {
  content: "\f137";
}

.fa-chevron-circle-left::before {
  content: "\f137";
}

.fa-house-chimney-window::before {
  content: "\e00d";
}

.fa-pen-nib::before {
  content: "\f5ad";
}

.fa-tent-arrow-turn-left::before {
  content: "\e580";
}

.fa-tents::before {
  content: "\e582";
}

.fa-wand-magic::before {
  content: "\f0d0";
}

.fa-magic::before {
  content: "\f0d0";
}

.fa-dog::before {
  content: "\f6d3";
}

.fa-carrot::before {
  content: "\f787";
}

.fa-moon::before {
  content: "\f186";
}

.fa-wine-glass-empty::before {
  content: "\f5ce";
}

.fa-wine-glass-alt::before {
  content: "\f5ce";
}

.fa-cheese::before {
  content: "\f7ef";
}

.fa-yin-yang::before {
  content: "\f6ad";
}

.fa-music::before {
  content: "\f001";
}

.fa-code-commit::before {
  content: "\f386";
}

.fa-temperature-low::before {
  content: "\f76b";
}

.fa-person-biking::before {
  content: "\f84a";
}

.fa-biking::before {
  content: "\f84a";
}

.fa-broom::before {
  content: "\f51a";
}

.fa-shield-heart::before {
  content: "\e574";
}

.fa-gopuram::before {
  content: "\f664";
}

.fa-earth-oceania::before {
  content: "\e47b";
}

.fa-globe-oceania::before {
  content: "\e47b";
}

.fa-square-xmark::before {
  content: "\f2d3";
}

.fa-times-square::before {
  content: "\f2d3";
}

.fa-xmark-square::before {
  content: "\f2d3";
}

.fa-hashtag::before {
  content: "\#";
}

.fa-up-right-and-down-left-from-center::before {
  content: "\f424";
}

.fa-expand-alt::before {
  content: "\f424";
}

.fa-oil-can::before {
  content: "\f613";
}

.fa-t::before {
  content: "T";
}

.fa-hippo::before {
  content: "\f6ed";
}

.fa-chart-column::before {
  content: "\e0e3";
}

.fa-infinity::before {
  content: "\f534";
}

.fa-vial-circle-check::before {
  content: "\e596";
}

.fa-person-arrow-down-to-line::before {
  content: "\e538";
}

.fa-voicemail::before {
  content: "\f897";
}

.fa-fan::before {
  content: "\f863";
}

.fa-person-walking-luggage::before {
  content: "\e554";
}

.fa-up-down::before {
  content: "\f338";
}

.fa-arrows-alt-v::before {
  content: "\f338";
}

.fa-cloud-moon-rain::before {
  content: "\f73c";
}

.fa-calendar::before {
  content: "\f133";
}

.fa-trailer::before {
  content: "\e041";
}

.fa-bahai::before {
  content: "\f666";
}

.fa-haykal::before {
  content: "\f666";
}

.fa-sd-card::before {
  content: "\f7c2";
}

.fa-dragon::before {
  content: "\f6d5";
}

.fa-shoe-prints::before {
  content: "\f54b";
}

.fa-circle-plus::before {
  content: "\f055";
}

.fa-plus-circle::before {
  content: "\f055";
}

.fa-face-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-hand-holding::before {
  content: "\f4bd";
}

.fa-plug-circle-exclamation::before {
  content: "\e55d";
}

.fa-link-slash::before {
  content: "\f127";
}

.fa-chain-broken::before {
  content: "\f127";
}

.fa-chain-slash::before {
  content: "\f127";
}

.fa-unlink::before {
  content: "\f127";
}

.fa-clone::before {
  content: "\f24d";
}

.fa-person-walking-arrow-loop-left::before {
  content: "\e551";
}

.fa-arrow-up-z-a::before {
  content: "\f882";
}

.fa-sort-alpha-up-alt::before {
  content: "\f882";
}

.fa-fire-flame-curved::before {
  content: "\f7e4";
}

.fa-fire-alt::before {
  content: "\f7e4";
}

.fa-tornado::before {
  content: "\f76f";
}

.fa-file-circle-plus::before {
  content: "\e494";
}

.fa-book-quran::before {
  content: "\f687";
}

.fa-quran::before {
  content: "\f687";
}

.fa-anchor::before {
  content: "\f13d";
}

.fa-border-all::before {
  content: "\f84c";
}

.fa-face-angry::before {
  content: "\f556";
}

.fa-angry::before {
  content: "\f556";
}

.fa-cookie-bite::before {
  content: "\f564";
}

.fa-arrow-trend-down::before {
  content: "\e097";
}

.fa-rss::before {
  content: "\f09e";
}

.fa-feed::before {
  content: "\f09e";
}

.fa-draw-polygon::before {
  content: "\f5ee";
}

.fa-scale-balanced::before {
  content: "\f24e";
}

.fa-balance-scale::before {
  content: "\f24e";
}

.fa-gauge-simple-high::before {
  content: "\f62a";
}

.fa-tachometer::before {
  content: "\f62a";
}

.fa-tachometer-fast::before {
  content: "\f62a";
}

.fa-shower::before {
  content: "\f2cc";
}

.fa-desktop::before {
  content: "\f390";
}

.fa-desktop-alt::before {
  content: "\f390";
}

.fa-m::before {
  content: "M";
}

.fa-table-list::before {
  content: "\f00b";
}

.fa-th-list::before {
  content: "\f00b";
}

.fa-comment-sms::before {
  content: "\f7cd";
}

.fa-sms::before {
  content: "\f7cd";
}

.fa-book::before {
  content: "\f02d";
}

.fa-user-plus::before {
  content: "\f234";
}

.fa-check::before {
  content: "\f00c";
}

.fa-battery-three-quarters::before {
  content: "\f241";
}

.fa-battery-4::before {
  content: "\f241";
}

.fa-house-circle-check::before {
  content: "\e509";
}

.fa-angle-left::before {
  content: "\f104";
}

.fa-diagram-successor::before {
  content: "\e47a";
}

.fa-truck-arrow-right::before {
  content: "\e58b";
}

.fa-arrows-split-up-and-left::before {
  content: "\e4bc";
}

.fa-hand-fist::before {
  content: "\f6de";
}

.fa-fist-raised::before {
  content: "\f6de";
}

.fa-cloud-moon::before {
  content: "\f6c3";
}

.fa-briefcase::before {
  content: "\f0b1";
}

.fa-person-falling::before {
  content: "\e546";
}

.fa-image-portrait::before {
  content: "\f3e0";
}

.fa-portrait::before {
  content: "\f3e0";
}

.fa-user-tag::before {
  content: "\f507";
}

.fa-rug::before {
  content: "\e569";
}

.fa-earth-europe::before {
  content: "\f7a2";
}

.fa-globe-europe::before {
  content: "\f7a2";
}

.fa-cart-flatbed-suitcase::before {
  content: "\f59d";
}

.fa-luggage-cart::before {
  content: "\f59d";
}

.fa-rectangle-xmark::before {
  content: "\f410";
}

.fa-rectangle-times::before {
  content: "\f410";
}

.fa-times-rectangle::before {
  content: "\f410";
}

.fa-window-close::before {
  content: "\f410";
}

.fa-baht-sign::before {
  content: "\e0ac";
}

.fa-book-open::before {
  content: "\f518";
}

.fa-book-journal-whills::before {
  content: "\f66a";
}

.fa-journal-whills::before {
  content: "\f66a";
}

.fa-handcuffs::before {
  content: "\e4f8";
}

.fa-triangle-exclamation::before {
  content: "\f071";
}

.fa-exclamation-triangle::before {
  content: "\f071";
}

.fa-warning::before {
  content: "\f071";
}

.fa-database::before {
  content: "\f1c0";
}

.fa-share::before {
  content: "\f064";
}

.fa-mail-forward::before {
  content: "\f064";
}

.fa-bottle-droplet::before {
  content: "\e4c4";
}

.fa-mask-face::before {
  content: "\e1d7";
}

.fa-hill-rockslide::before {
  content: "\e508";
}

.fa-right-left::before {
  content: "\f362";
}

.fa-exchange-alt::before {
  content: "\f362";
}

.fa-paper-plane::before {
  content: "\f1d8";
}

.fa-road-circle-exclamation::before {
  content: "\e565";
}

.fa-dungeon::before {
  content: "\f6d9";
}

.fa-align-right::before {
  content: "\f038";
}

.fa-money-bill-1-wave::before {
  content: "\f53b";
}

.fa-money-bill-wave-alt::before {
  content: "\f53b";
}

.fa-life-ring::before {
  content: "\f1cd";
}

.fa-hands::before {
  content: "\f2a7";
}

.fa-sign-language::before {
  content: "\f2a7";
}

.fa-signing::before {
  content: "\f2a7";
}

.fa-calendar-day::before {
  content: "\f783";
}

.fa-water-ladder::before {
  content: "\f5c5";
}

.fa-ladder-water::before {
  content: "\f5c5";
}

.fa-swimming-pool::before {
  content: "\f5c5";
}

.fa-arrows-up-down::before {
  content: "\f07d";
}

.fa-arrows-v::before {
  content: "\f07d";
}

.fa-face-grimace::before {
  content: "\f57f";
}

.fa-grimace::before {
  content: "\f57f";
}

.fa-wheelchair-move::before {
  content: "\e2ce";
}

.fa-wheelchair-alt::before {
  content: "\e2ce";
}

.fa-turn-down::before {
  content: "\f3be";
}

.fa-level-down-alt::before {
  content: "\f3be";
}

.fa-person-walking-arrow-right::before {
  content: "\e552";
}

.fa-square-envelope::before {
  content: "\f199";
}

.fa-envelope-square::before {
  content: "\f199";
}

.fa-dice::before {
  content: "\f522";
}

.fa-bowling-ball::before {
  content: "\f436";
}

.fa-brain::before {
  content: "\f5dc";
}

.fa-bandage::before {
  content: "\f462";
}

.fa-band-aid::before {
  content: "\f462";
}

.fa-calendar-minus::before {
  content: "\f272";
}

.fa-circle-xmark::before {
  content: "\f057";
}

.fa-times-circle::before {
  content: "\f057";
}

.fa-xmark-circle::before {
  content: "\f057";
}

.fa-gifts::before {
  content: "\f79c";
}

.fa-hotel::before {
  content: "\f594";
}

.fa-earth-asia::before {
  content: "\f57e";
}

.fa-globe-asia::before {
  content: "\f57e";
}

.fa-id-card-clip::before {
  content: "\f47f";
}

.fa-id-card-alt::before {
  content: "\f47f";
}

.fa-magnifying-glass-plus::before {
  content: "\f00e";
}

.fa-search-plus::before {
  content: "\f00e";
}

.fa-thumbs-up::before {
  content: "\f164";
}

.fa-user-clock::before {
  content: "\f4fd";
}

.fa-hand-dots::before {
  content: "\f461";
}

.fa-allergies::before {
  content: "\f461";
}

.fa-file-invoice::before {
  content: "\f570";
}

.fa-window-minimize::before {
  content: "\f2d1";
}

.fa-mug-saucer::before {
  content: "\f0f4";
}

.fa-coffee::before {
  content: "\f0f4";
}

.fa-brush::before {
  content: "\f55d";
}

.fa-mask::before {
  content: "\f6fa";
}

.fa-magnifying-glass-minus::before {
  content: "\f010";
}

.fa-search-minus::before {
  content: "\f010";
}

.fa-ruler-vertical::before {
  content: "\f548";
}

.fa-user-large::before {
  content: "\f406";
}

.fa-user-alt::before {
  content: "\f406";
}

.fa-train-tram::before {
  content: "\e5b4";
}

.fa-user-nurse::before {
  content: "\f82f";
}

.fa-syringe::before {
  content: "\f48e";
}

.fa-cloud-sun::before {
  content: "\f6c4";
}

.fa-stopwatch-20::before {
  content: "\e06f";
}

.fa-square-full::before {
  content: "\f45c";
}

.fa-magnet::before {
  content: "\f076";
}

.fa-jar::before {
  content: "\e516";
}

.fa-note-sticky::before {
  content: "\f249";
}

.fa-sticky-note::before {
  content: "\f249";
}

.fa-bug-slash::before {
  content: "\e490";
}

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6";
}

.fa-bone::before {
  content: "\f5d7";
}

.fa-table-cells-row-unlock::before {
  content: "\e691";
}

.fa-user-injured::before {
  content: "\f728";
}

.fa-face-sad-tear::before {
  content: "\f5b4";
}

.fa-sad-tear::before {
  content: "\f5b4";
}

.fa-plane::before {
  content: "\f072";
}

.fa-tent-arrows-down::before {
  content: "\e581";
}

.fa-exclamation::before {
  content: "\!";
}

.fa-arrows-spin::before {
  content: "\e4bb";
}

.fa-print::before {
  content: "\f02f";
}

.fa-turkish-lira-sign::before {
  content: "\e2bb";
}

.fa-try::before {
  content: "\e2bb";
}

.fa-turkish-lira::before {
  content: "\e2bb";
}

.fa-dollar-sign::before {
  content: "\$";
}

.fa-dollar::before {
  content: "\$";
}

.fa-usd::before {
  content: "\$";
}

.fa-x::before {
  content: "X";
}

.fa-magnifying-glass-dollar::before {
  content: "\f688";
}

.fa-search-dollar::before {
  content: "\f688";
}

.fa-users-gear::before {
  content: "\f509";
}

.fa-users-cog::before {
  content: "\f509";
}

.fa-person-military-pointing::before {
  content: "\e54a";
}

.fa-building-columns::before {
  content: "\f19c";
}

.fa-bank::before {
  content: "\f19c";
}

.fa-institution::before {
  content: "\f19c";
}

.fa-museum::before {
  content: "\f19c";
}

.fa-university::before {
  content: "\f19c";
}

.fa-umbrella::before {
  content: "\f0e9";
}

.fa-trowel::before {
  content: "\e589";
}

.fa-d::before {
  content: "D";
}

.fa-stapler::before {
  content: "\e5af";
}

.fa-masks-theater::before {
  content: "\f630";
}

.fa-theater-masks::before {
  content: "\f630";
}

.fa-kip-sign::before {
  content: "\e1c4";
}

.fa-hand-point-left::before {
  content: "\f0a5";
}

.fa-handshake-simple::before {
  content: "\f4c6";
}

.fa-handshake-alt::before {
  content: "\f4c6";
}

.fa-jet-fighter::before {
  content: "\f0fb";
}

.fa-fighter-jet::before {
  content: "\f0fb";
}

.fa-square-share-nodes::before {
  content: "\f1e1";
}

.fa-share-alt-square::before {
  content: "\f1e1";
}

.fa-barcode::before {
  content: "\f02a";
}

.fa-plus-minus::before {
  content: "\e43c";
}

.fa-video::before {
  content: "\f03d";
}

.fa-video-camera::before {
  content: "\f03d";
}

.fa-graduation-cap::before {
  content: "\f19d";
}

.fa-mortar-board::before {
  content: "\f19d";
}

.fa-hand-holding-medical::before {
  content: "\e05c";
}

.fa-person-circle-check::before {
  content: "\e53e";
}

.fa-turn-up::before {
  content: "\f3bf";
}

.fa-level-up-alt::before {
  content: "\f3bf";
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/webfonts/fa-solid-900.woff2") format("woff2"), url("../fonts/webfonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/webfonts/fa-brands-400.woff2") format("woff2"), url("../fonts/webfonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-aws:before {
  content: "\f375";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-pixiv:before {
  content: "\e640";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-modx:before {
  content: "\f285";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-square-js:before {
  content: "\f3b9";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-jxl:before {
  content: "\e67b";
}

.fa-dart-lang:before {
  content: "\e693";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-unity:before {
  content: "\e049";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-vk:before {
  content: "\f189";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-square-reddit:before {
  content: "\f1a2";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-square-font-awesome:before {
  content: "\e5ad";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-brave:before {
  content: "\e63c";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-square-instagram:before {
  content: "\e055";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-square-hacker-news:before {
  content: "\f3af";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-edge:before {
  content: "\f282";
}

.fa-threads:before {
  content: "\e618";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-square-snapchat:before {
  content: "\f2ad";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-safari:before {
  content: "\f267";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-square-font-awesome-stroke:before {
  content: "\f35c";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-square-viadeo:before {
  content: "\f2aa";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-centos:before {
  content: "\f789";
}

.fa-adn:before {
  content: "\f170";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-opensuse:before {
  content: "\e62b";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-square-dribbble:before {
  content: "\f397";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-node:before {
  content: "\f419";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-debian:before {
  content: "\e60b";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-square-twitter:before {
  content: "\f081";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-golang:before {
  content: "\e40f";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-square-kickstarter:before {
  content: "\f3bb";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-square-youtube:before {
  content: "\f431";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-rendact:before {
  content: "\f3e4";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-nfc-directional:before {
  content: "\e530";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-meta:before {
  content: "\e49b";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-square-letterboxd:before {
  content: "\e62e";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-hips:before {
  content: "\f452";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-discord:before {
  content: "\f392";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-shoelace:before {
  content: "\e60c";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-square-steam:before {
  content: "\f1b7";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-square-vimeo:before {
  content: "\f194";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-flag:before {
  content: "\f2b4";
}

.fa-font-awesome-logo-full:before {
  content: "\f2b4";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-apple:before {
  content: "\f179";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-padlet:before {
  content: "\e4a0";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-square-github:before {
  content: "\f092";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-neos:before {
  content: "\f612";
}

.fa-square-threads:before {
  content: "\e619";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-angular:before {
  content: "\f420";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envira:before {
  content: "\f299";
}

.fa-google-scholar:before {
  content: "\e63b";
}

.fa-square-gitlab:before {
  content: "\e5ae";
}

.fa-gitlab-square:before {
  content: "\e5ae";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-square-odnoklassniki:before {
  content: "\f264";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-sith:before {
  content: "\f512";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-hashnode:before {
  content: "\e499";
}

.fa-react:before {
  content: "\f41b";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-gg:before {
  content: "\f260";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-square-pinterest:before {
  content: "\f0d3";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-xing:before {
  content: "\f168";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-less:before {
  content: "\f41d";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-signal-messenger:before {
  content: "\e663";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-nfc-symbol:before {
  content: "\e531";
}

.fa-mintbit:before {
  content: "\e62f";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-brave-reverse:before {
  content: "\e63d";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-square-google-plus:before {
  content: "\f0d4";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-web-awesome:before {
  content: "\e682";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-square-xing:before {
  content: "\f169";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-fly:before {
  content: "\f417";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-viber:before {
  content: "\f409";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-letterboxd:before {
  content: "\e62d";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-audible:before {
  content: "\f373";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-bilibili:before {
  content: "\e3d9";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-x-twitter:before {
  content: "\e61b";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-42-group:before {
  content: "\e080";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-square-pied-piper:before {
  content: "\e01e";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-square-web-awesome-stroke:before {
  content: "\e684";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-square-facebook:before {
  content: "\f082";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-flutter:before {
  content: "\e694";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-square-lastfm:before {
  content: "\f203";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-figma:before {
  content: "\f799";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-cmplid:before {
  content: "\e360";
}

.fa-upwork:before {
  content: "\e641";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-square-upwork:before {
  content: "\e67c";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-docker:before {
  content: "\f395";
}

.fa-screenpal:before {
  content: "\e570";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-square-web-awesome:before {
  content: "\e683";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-wirsindhandwerk:before {
  content: "\e2d0";
}

.fa-wsh:before {
  content: "\e2d0";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-apper:before {
  content: "\f371";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-bluesky:before {
  content: "\e671";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ab";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-square-behance:before {
  content: "\f1b5";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-webflow:before {
  content: "\e65c";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-space-awesome:before {
  content: "\e5ac";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-square-git:before {
  content: "\f1d2";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-square-tumblr:before {
  content: "\f174";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-trello:before {
  content: "\f181";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-android:before {
  content: "\f17b";
}

.fa-bots:before {
  content: "\e340";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-uber:before {
  content: "\f402";
}

.fa-github:before {
  content: "\f09b";
}

.fa-php:before {
  content: "\f457";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-stubber:before {
  content: "\e5c7";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f2c6";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-odysee:before {
  content: "\e5c6";
}

.fa-square-whatsapp:before {
  content: "\f40c";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f198";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-usb:before {
  content: "\f287";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-square-x-twitter:before {
  content: "\e61a";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f23a";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-sitrox:before {
  content: "\e44a";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-strava:before {
  content: "\f428";
}

.fa-ember:before {
  content: "\f423";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-zhihu:before {
  content: "\f63f";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-pix:before {
  content: "\e43a";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

html {
  height: 100%;
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.site-container {
  box-sizing: unset;
  display: block;
  margin: 0 auto;
  position: relative;
  padding: var(--spacer-3) var(--spacer-5);
}
@media (min-width: 1280px) {
  .site-container {
    max-width: var(--media-width-xl);
    padding: var(--spacer-4);
  }
}
@media (min-width: 1440px) {
  .site-container {
    max-width: 1440px;
  }
}

.container {
  max-width: var(--text-max-width);
  display: block;
  margin: 0 auto;
}

.flexbox {
  display: flex;
  width: 100%;
  /* To enable viewing resources on mobile; LLM code */
}
@media (max-width: 767px) {
  .flexbox {
    flex-direction: column;
  }
}

.match-sides[data-state=collapsed] {
  flex: 0 0 32px;
}
@media (min-width: 768px) {
  .match-sides {
    flex: 0 0 275px;
  }
}
@media (min-width: 1024px) {
  .match-sides {
    flex: 0 0 300px;
  }
}
@media (min-width: 1280px) {
  .match-sides {
    flex: 0 0 325px;
  }
}
@media (min-width: 1920px) {
  .match-sides {
    flex: 0 0 350px;
  }
}

main {
  display: table-cell;
}

.homepage {
  display: initial;
}

aside.left-sidebar {
  background: #F3F3F3;
  padding: 0;
  flex-shrink: 0;
  /* Hide left nav on mobile; LLM code */
}
@media (max-width: 767px) {
  aside.left-sidebar {
    display: none;
  }
}
aside.right-sidebar {
  padding: var(--spacer-2);
  border-left: 1px solid #DCDCDC;
}
@media (min-width: 1280px) {
  aside.right-sidebar {
    padding: var(--spacer-2) var(--spacer-4);
  }
}
@media (max-width: 767px) {
  aside.right-sidebar {
    /*display: none;*/
    /* Show resources at bottom of page on mobile; LLM code */
    display: block;
    width: 100%;
    border-left: none;
    border-top: 1px solid #DCDCDC;
    margin-top: var(--spacer-3);
    padding-top: var(--spacer-3);
  }
}
aside + .match-middle {
  padding: 0 var(--spacer-2);
  flex: 1;
}
@media (min-width: 1024px) {
  aside + .match-middle {
    padding: 0 var(--spacer-4);
  }
}
@media (max-width: 767px) {
  aside[data-state=expanded] {
    flex: 0 0 100%;
  }
}
@media (min-width: calc(var(--media-width-md) / 1px)px) and (max-width: 1023px) {
  aside[data-state=expanded] {
    flex: 0 0 400px;
  }
}
@media (max-width: 1023px) {
  aside[data-state=expanded] + .match-middle {
    margin-left: calc((308px + 32px) * -1);
  }
}
aside[data-state=collapsed] + .match-middle {
  width: 100%;
}
@media (min-width: 768px) {
  aside[data-state=collapsed] + .match-middle {
    width: calc(100% - 260px - 32px);
  }
}
@media (min-width: 1024px) {
  aside[data-state=collapsed] + .match-middle {
    width: calc(100% - 300px - 32px);
  }
}
@media (min-width: 1280px) {
  aside[data-state=collapsed] + .match-middle {
    width: calc(100% - 400px - 32px);
    padding: 0 var(--spacer-6);
  }
}
@media (min-width: 1920px) {
  aside[data-state=collapsed] + .match-middle {
    width: calc(100% - 500px - 32px);
  }
}

footer .footer-left {
  padding: 0;
}

#logoutContainer {
  display: none;
}

#loginIndicator {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 1rem 3rem 1rem 1rem;
  background-color: #F3F3F3;
  border-top: 1px solid #DCDCDC;
  border-left: 1px solid #DCDCDC;
  border-top-left-radius: 10px;
  box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: -3px 3px 10px 0px rgba(0, 0, 0, 0.08);
}
#loginIndicator .span__login-greeting {
  margin-right: 0.25rem;
}
#loginIndicator .span__login-lamp {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #782312;
  margin-right: 0.5rem;
}
#loginIndicator .span__login-lamp--success {
  background-color: #2a7a3b;
}
#loginIndicator .span__login-lamp--error {
  background-color: #F3F3F3;
}
#loginIndicator form#oidc_logout {
  display: inline-block;
}
#loginIndicator form#oidc_logout input[type=submit] {
  background-color: transparent !important;
  text-decoration: underline;
  color: #046791;
}

.invisible {
  height: 0px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.display-none {
  display: none !important;
}

/* LLM code */
@media (max-width: 767px) {
  .reg-text.match-middle {
    width: 100%;
    padding: 0 var(--spacer-3);
  }
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #fff;
  color: #1B1B1B;
  font-family: "Roboto Slab", Helvetica, sans-serif;
  line-height: var(--font-line-height-base);
}

h1 {
  font-size: 30px;
  font-family: "Lora", Georgia, serif;
  margin-bottom: var(--spacer-5);
  margin-top: 0;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  h1 {
    font-size: var(--font-size-3xl);
  }
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: bold;
  font-family: "Lora", Georgia, serif;
}

.homepage-component__heading {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  font-family: "Lora", Georgia, serif;
  color: #1B1B1B;
}

su,
e[t="51"] {
  vertical-align: super;
  font-size: 70%;
}

sub,
e[t="52"] {
  vertical-align: sub;
  font-size: 70%;
}

e[t="01"] {
  text-transform: uppercase;
}

e[t="02"] {
  font-weight: bold;
}

e[t="03"] {
  font-style: italic;
}

e[t="04"],
e[t="05"] {
  font-variant: small-caps;
}

.heading1 {
  text-transform: uppercase;
  text-align: center;
}

.sidebar__li {
  list-style: none;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Roboto Slab", Helvetica, sans-serif;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.flash-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F3;
  text-align: center;
  font-size: 12px;
  padding: 0.5rem;
  position: relative;
  line-height: 1.2;
  min-height: fit-content;
}
.flash-banner a {
  font-weight: bold;
}
.flash-banner a:visited {
  color: #07648D;
}
.flash-banner a:visited:hover {
  color: #534891;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.site-homepage--update {
  /* New side-by-side layout container */
  /* Left side container */
  /* Right side container */
}
.site-homepage--update main {
  display: flex;
  flex-direction: column;
}
.site-homepage--update main .link-btn {
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-homepage--update main .link-btn:hover, .site-homepage--update main .link-btn:visited {
  color: #fff;
}
.site-homepage--update main a.contact {
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  color: #BC1C16;
}
.site-homepage--update main a.contact:link::after {
  filter: brightness(0.02) invert(1);
}
.site-homepage--update main a.contact:visited::after {
  filter: brightness(0.02) invert(1);
}
.site-homepage--update .main-content-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  /* Stack vertically on mobile */
}
@media (max-width: 779px) {
  .site-homepage--update .main-content-wrapper {
    flex-direction: column;
  }
}
.site-homepage--update .regulation-navigation {
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 779px) {
  .site-homepage--update .regulation-navigation {
    width: 100%;
    margin-bottom: 20px;
  }
}
.site-homepage--update .content-section {
  flex: 1;
}
@media (max-width: 779px) {
  .site-homepage--update .content-section {
    padding-left: 0;
  }
}
.site-homepage--update nav {
  position: relative;
  color: #5B616B;
  background-color: #F3F3F3;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 779px) {
  .site-homepage--update nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.site-homepage--update nav.open {
  width: 400px;
  min-width: 400px;
}
@media (max-width: 779px) {
  .site-homepage--update nav.open {
    width: 100%;
  }
}
.site-homepage--update nav.closed {
  width: 114px;
  min-width: 114px;
}
@media (max-width: 779px) {
  .site-homepage--update nav.closed {
    width: 100%;
    height: 45px;
  }
}
.site-homepage--update nav#placeholderNav {
  min-height: 10px;
}
@media (min-width: 780px) {
  .site-homepage--update nav#placeholderNav {
    width: 114px;
    min-width: 114px;
    max-width: 114px;
  }
}
@media (min-width: 1024px) {
  .site-homepage--update nav#placeholderNav {
    width: 400px;
    min-width: 400px;
    max-width: 400px;
  }
}
.site-homepage--update nav.open .nav-toggle__button {
  right: 8px;
}
.site-homepage--update nav.closed .nav-toggle__button {
  right: auto;
  left: 5px;
  display: flex;
  align-items: center;
}
@media (max-width: 779px) {
  .site-homepage--update nav.closed .nav-toggle__button br {
    display: none;
  }
}
.site-homepage--update nav .nav-toggle__button {
  position: absolute;
  top: 8px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  color: #1A4480 !important;
  padding: 0 !important;
  z-index: 1;
}
.site-homepage--update nav .nav-toggle__button.icon-only {
  background-color: #F3F3F3;
  height: auto;
  width: auto;
}
@media (max-width: 779px) {
  .site-homepage--update nav .nav-toggle__button.icon-only {
    position: absolute;
    height: unset;
    width: unset;
    top: unset;
    right: unset;
    left: 0;
    margin-left: 4px;
  }
}
.site-homepage--update nav .nav-toggle__button.icon-only i {
  align-self: flex-start;
  background-color: #F3F3F3;
  border-radius: 4px;
  font-size: 18px;
  padding: 1px 1px 0px;
  margin-right: 2px;
}
.site-homepage--update nav .nav-toggle__button.icon-only i.nav-toggle__button--hovered {
  background-color: #DCDCDC;
}
@media (max-width: 779px) {
  .site-homepage--update nav .nav-toggle__button.icon-only i {
    font-size: 32px;
  }
}
.site-homepage--update nav .nav-toggle__button.full-btn {
  background-color: #F3F3F3;
  height: 36px;
  width: 36px;
}
.site-homepage--update nav .nav-toggle__button.full-btn:hover, .site-homepage--update nav .nav-toggle__button.full-btn:focus, .site-homepage--update nav .nav-toggle__button.full-btn:focus-visible {
  background-color: #DCDCDC;
  outline: 0;
  border: none;
}
.site-homepage--update nav .nav-toggle__button.full-btn:hover:before, .site-homepage--update nav .nav-toggle__button.full-btn:hover:after, .site-homepage--update nav .nav-toggle__button.full-btn:focus:before, .site-homepage--update nav .nav-toggle__button.full-btn:focus:after, .site-homepage--update nav .nav-toggle__button.full-btn:focus-visible:before, .site-homepage--update nav .nav-toggle__button.full-btn:focus-visible:after {
  border: none;
  opacity: 0;
}
.site-homepage--update nav .nav-toggle__button .v-btn__content {
  opacity: 1 !important;
}
.site-homepage--update nav .nav-toggle__button .v-btn__content i {
  transition: none;
}
.site-homepage--update nav .nav-toggle__button--label {
  color: #1A4480;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: normal;
  text-align: left;
  display: inline-block;
  line-height: 1.2;
  padding-left: 4px;
}
@media (max-width: 779px) {
  .site-homepage--update nav .nav-toggle__button--label {
    font-size: 16px;
  }
}
.site-homepage--update nav .toc__container > .v-tabs > .v-tabs-bar,
.site-homepage--update nav .toc__container > .v-tabs-items {
  background-color: transparent;
}
.site-homepage--update nav .toc__container {
  padding: 0 25px;
}
.site-homepage--update nav .toc__container .v-tabs {
  padding-right: 25px;
  margin-bottom: var(--spacer-1-5);
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container {
  border-bottom: 1px solid #DCDCDC;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab {
  box-sizing: border-box;
  padding: 0;
  min-width: 50px;
  margin-right: 15px;
  font-size: 14px;
  line-height: 22px;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #5B616B;
  font-weight: 400;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:hover, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:focus, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:focus-visible {
  background-color: #DCDCDC;
  outline: 0;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:hover:before, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:hover:after, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:focus:before, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:focus:after, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:focus-visible:before, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab:focus-visible:after {
  opacity: 0;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab.v-btn:focus-visible > .v-btn__overlay {
  opacity: 0;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected {
  font-weight: 700;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:hover, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:focus, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:focus-visible {
  background-color: #DCDCDC;
  outline: 0;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:hover:before, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:hover:after, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:focus:before, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:focus:after, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:focus-visible:before, .site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab--selected:focus-visible:after {
  opacity: 0;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab .v-btn__content {
  margin-top: -1px;
  margin-left: -1px;
}
.site-homepage--update nav .toc__container .v-tabs .v-slide-group__container .v-tab .v-tab__slider {
  height: 5px;
  background-color: #F3F3F3;
  bottom: 1px;
}
.site-homepage--update nav .toc__container .toc-title__heading {
  font-family: "Roboto Slab", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 24px;
  font-weight: 36px;
  margin: 0 0 4px !important;
}
.site-homepage--update nav .toc__container .toc-title__subheading {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 24px !important;
}
.site-homepage--update nav .toc__container .toc-subchapter__container {
  margin-bottom: 24px;
}
.site-homepage--update nav .toc__container .toc-subchapter__container .toc-subchapter__label {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-top: 0px;
  margin-bottom: 12px;
}
.site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container {
  margin-left: 4px;
}
.site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  border-radius: 4px;
}
.site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:hover, .site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:focus, .site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:focus-visible {
  background-color: #DCDCDC;
  outline: 0;
}
.site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:hover:before, .site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:hover:after, .site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:focus:before, .site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:focus:after, .site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:focus-visible:before, .site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor:focus-visible:after {
  opacity: 0;
}
.site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor .toc-part__label {
  font-size: 16px;
  line-height: 24px;
  color: #1A4480;
  padding: 6px 12px;
}
.site-homepage--update nav .toc__container .toc-subchapter__container .toc-part__container .toc-part__anchor .toc-part__label--bold {
  font-weight: 700;
}
.site-homepage--update #main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}
.site-homepage--update #main-content .top-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--spacer-1-5) * 0.5) var(--spacer-1-5);
  box-sizing: border-box;
}
.site-homepage--update #main-content .top-container > * {
  width: 100%;
  max-width: var(--media-width-xl);
}
@media (min-width: 1024px) {
  .site-homepage--update #main-content .top-container {
    padding: 20px 40px;
  }
}
@media (min-width: 1280px) {
  .site-homepage--update #main-content .top-container > * {
    max-width: var(--media-width-xl);
  }
}
@media (min-width: 1440px) {
  .site-homepage--update #main-content .top-container > * {
    max-width: 1440px;
  }
}
.site-homepage--update #main-content .featured {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
.site-homepage--update #main-content .featured > .featured-materials {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 629px) {
  .site-homepage--update #main-content .featured {
    flex-direction: column;
  }
  .site-homepage--update #main-content .featured > .featured-materials {
    min-width: 100%;
  }
}
.site-homepage--update #main-content h3 {
  margin-top: 0;
  padding-top: 0;
}
.site-homepage--update #main-content .featured-materials {
  display: flex;
  flex-direction: column;
  min-height: 100px;
  box-sizing: border-box;
  align-items: center;
  background-color: #f6efe9;
  padding: 14px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.site-homepage--update #main-content .featured-materials.interactive {
  background-color: #fff;
}
.site-homepage--update #main-content .featured-materials.interactive h3 {
  color: #782312;
}
.site-homepage--update #main-content .featured-materials.featured-documents {
  justify-content: space-between;
}
.site-homepage--update #main-content .featured-materials .eo-text {
  text-align: center;
}
.site-homepage--update #main-content .featured-materials .eo-text p {
  margin: 0;
  font-size: 90%;
}
.site-homepage--update #main-content .featured-materials .eo-text p a {
  text-decoration: none;
}
.site-homepage--update #main-content .featured-materials .eo-identifiers {
  text-align: center;
  color: #1B1B1B;
  font-size: 90%;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 1040px) {
  .site-homepage--update #main-content .featured-materials .eo-identifiers {
    white-space: pre-line;
  }
}
.site-homepage--update #main-content .cta__container {
  container: cta-container/inline-size;
}
@container cta-container (max-width: 629px) {
  .site-homepage--update #main-content .cta__container .cta {
    flex-direction: column;
  }
  .site-homepage--update #main-content .cta__container .cta .resources__container {
    margin-right: 0;
    padding-bottom: var(--spacer-1-5);
  }
  .site-homepage--update #main-content .cta__container .cta .resources__container .content-tabs {
    padding-right: 12px;
    padding-left: 0px;
    font-family: "Roboto Slab", Helvetica, sans-serif;
  }
}
@container cta-container (min-width: 630px) {
  .site-homepage--update #main-content .cta__container .cta {
    flex-direction: row;
  }
  .site-homepage--update #main-content .cta__container .cta .resources__container {
    margin-right: 15px;
    padding-top: 19px;
  }
  .site-homepage--update #main-content .cta__container .cta .featured-materials__container {
    margin-left: 15px;
    margin-bottom: 30px;
  }
  .site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials__title {
    font-size: clamp(1rem, 2.2cqi, 1.5rem);
  }
}
@container cta-container (min-width: 630px) and (max-width: 658px) {
  .site-homepage--update #main-content .cta__container .featured-materials__title {
    line-height: 1.5rem;
  }
}
@container cta-container (min-width: 800px) {
  .site-homepage--update #main-content .cta__container .cta .resources__container .content-tabs {
    flex: 1 1 auto;
  }
}
.site-homepage--update #main-content .cta__container .cta {
  display: flex;
}
.site-homepage--update #main-content .cta__container .cta .resources__container {
  flex: 2;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .rules-container {
  margin: 16px 0 0;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .rules-container .related-rule-list {
  margin-top: 20px;
  margin-bottom: 40px;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .v-tabs .v-slide-group__container .v-tab {
  border-bottom: 1px solid #DCDCDC;
  font-weight: 700;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .v-tabs .v-slide-group__container .v-tab:focus-visible:before, .site-homepage--update #main-content .cta__container .cta .resources__container .v-tabs .v-slide-group__container .v-tab:focus-visible:after {
  border: none;
  opacity: 0;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .v-tabs .v-slide-group__container .v-tab--selected {
  border-bottom: 1px solid #DCDCDC;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .v-tabs .v-slide-group__container .v-btn__content {
  margin-top: -1px;
  margin-left: -1px;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .v-tabs .v-slide-group__container .v-tab__slider {
  height: 3px;
  background-color: #782312;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .category-labels {
  margin-bottom: 0px;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .recent-rules-descriptive-text {
  font-size: 12px;
  line-height: 18px;
  color: #767676;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .content-tabs {
  font-family: "Lora", Georgia, serif;
  letter-spacing: 0;
  color: #1B1B1B;
  text-transform: none !important;
  line-height: 36px;
  font-size: clamp(1rem, 2.2cqi, 1.5rem);
}
.site-homepage--update #main-content .cta__container .cta .resources__container .content-tabs:focus-visible {
  outline: none;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .recent-date {
  color: #767676;
  font-weight: 400;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .recent-fr-citation {
  color: #767676;
  font-weight: 400;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .supplemental-content-list .spacer {
  margin-top: var(--spacer-3);
}
.site-homepage--update #main-content .cta__container .cta .resources__container .supplemental-content {
  margin-bottom: unset;
}
.site-homepage--update #main-content .cta__container .cta .resources__container .supplemental-content .supplemental-content-date {
  color: #767676;
  font-weight: 400;
  padding-right: var(--spacer-half);
  margin-right: var(--spacer-half);
  font-size: var(--font-size-sm);
}
.site-homepage--update #main-content .cta__container .cta .resources__container .supplemental-content .supplemental-content-title {
  color: #767676;
  font-weight: 400;
  font-size: var(--font-size-sm);
}
.site-homepage--update #main-content .cta__container .cta .resources__container .document__subjects {
  margin-top: var(--spacer-half);
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F3F3F3;
  padding: 24px 8px 32px;
  border-radius: 3px;
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__title {
  text-align: center;
  margin-bottom: 8px;
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__categories--parent {
  container: featured-materials-categories/inline-size;
  width: 100%;
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__categories--parent .featured-materials__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__categories--parent .featured-materials__categories span {
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  color: #5B616B;
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__categories--parent .featured-materials__categories span:not(:last-child) {
  padding-right: 1em;
  margin-right: 1em;
  border-right: 1px solid #DCDCDC;
}
@container featured-materials-categories (max-width: 274px) {
  .site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__categories--parent .featured-materials__categories span {
    font-size: 12px;
    line-height: 20px;
  }
  .site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__categories--parent .featured-materials__categories span:not(:last-child) {
    padding-right: 0.5em;
    margin-right: 0.5em;
  }
}
@container featured-materials-categories (max-width: 215px) {
  .site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__categories--parent .featured-materials__categories span {
    font-size: 11px;
  }
  .site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__categories--parent .featured-materials__categories span:not(:last-child) {
    padding-right: 0.3em;
    margin-right: 0.3em;
  }
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__text {
  margin: 0 24px 16px;
}
.site-homepage--update #main-content .cta__container .cta .featured-materials__container .featured-materials .featured-materials__text p {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  font-size: 16px;
  line-height: 24px;
}
.site-homepage--update #main-content .cta__container .cta .v-slide-group__prev {
  display: none !important;
}
.site-homepage--update #main-content .value-proposition {
  background-color: #f6efe9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}
.site-homepage--update #main-content .value-proposition h2 {
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
}
.site-homepage--update #main-content .value-proposition p {
  line-height: 1.6;
}
.site-homepage--update #main-content .value-proposition a {
  text-decoration: none;
}
.site-homepage--update #main-content .value-proposition .value-proposition__text {
  font-size: var(--font-size-lg);
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.error-msg__container {
  font-size: var(--font-size-lg);
  margin-bottom: 1em;
}

.v-overlay__content .subjects__select-container--menu {
  background-color: #fff;
  max-height: 300px;
}
.v-overlay__content .subjects__select-container--menu .subjects__list-container form {
  position: sticky;
  top: 0px;
}

.search-page #searchApp.search-view {
  margin-top: var(--spacer-3);
  margin-bottom: var(--spacer-3);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  max-width: var(--eds-width-md);
  box-sizing: content-box;
  padding: 0 var(--grid-form-gutter-width);
}
@media (min-width: 1024px) {
  .search-page #searchApp.search-view {
    padding: 0 var(--grid-gutter-width);
  }
}
.search-page #searchApp.search-view h1 {
  margin-bottom: var(--spacer-2);
}
.search-page #searchApp.search-view .query-filters__section {
  margin-bottom: var(--spacer-2);
}
.search-page #searchApp.search-view .search__fieldset {
  margin-top: var(--spacer-2);
  border: unset;
  padding: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacer-2);
}
.search-page #searchApp.search-view .search__fieldset .doc-type__toggle fieldset {
  flex-wrap: wrap;
}
.search-page #searchApp.search-view .search__fieldset--dropdowns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacer-1);
}
.search-page #searchApp.search-view .search-form .search-suggestion {
  margin: 0px;
  font-size: var(--font-size-sm);
}
.search-page #searchApp.search-view .search-results .loading__span {
  display: block;
  margin-bottom: calc(100px + var(--spacer-4));
}
.search-page #searchApp.search-view .search-results-count {
  margin-bottom: var(--spacer-4);
}
.search-page #searchApp.search-view .search-results-count .login-cta__div--search-results {
  margin-top: var(--spacer-2);
}
.search-page #searchApp.search-view .search-results .doc__list .no-results__span {
  display: block;
  margin-top: var(--spacer-2);
  margin-bottom: var(--spacer-3);
  font-size: var(--font-size-lg);
  line-height: 1.5rem;
}
.search-page #searchApp.search-view .search-results .doc__list .result__link a {
  text-decoration: none;
}
.search-page #searchApp.search-view .search-results .doc__list .result__link a.external {
  display: block;
}
.search-page #searchApp.search-view .pagination-expand-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (min-width: 780px) {
  .search-page #searchApp.search-view .pagination-expand-row {
    justify-content: flex-start;
  }
}
.search-page #searchApp.search-view .pagination-expand-row .pagination-expand-container {
  width: 100%;
  max-width: 521px;
}
@media (min-width: 780px) {
  .search-page #searchApp.search-view .pagination-expand-row .pagination-expand-container {
    width: auto;
    max-width: unset;
  }
}
@media (min-width: 780px) {
  .search-page #searchApp.search-view .pagination-expand-row .pagination-expand-container nav.pagination-controls .pagination-control {
    min-width: unset;
  }
}
.search-page #searchApp.search-view .pagination-expand-row .pagination-expand-container .pagination-expand-cta {
  margin-top: 14px;
}

.search-field {
  background-color: #fff;
}
.search-field input {
  margin-block-start: 0;
}
.search-field label.v-field-label {
  margin-inline-start: var(--spacer-1);
  color: #5B616B;
  opacity: 1;
}
.search-field .v-field__input {
  padding-left: var(--spacer-1);
}
.search-field .v-field__append-inner i,
.search-field .v-field__clearable i {
  opacity: 1;
  color: #782312;
}
.search-field .v-field__append-inner i:focus-within {
  outline: none;
}
.search-field .v-field__append-inner i:focus::after {
  opacity: 0.12;
}
.search-field .v-field__append-inner i::after {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: scale(1.3);
  width: 100%;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}
.search-field .v-field__clearable i {
  padding-right: 2px;
  border-right: 1px solid #DCDCDC;
}
.search-field .v-field__outline > * {
  opacity: 1;
  border-color: #DCDCDC;
}
.search-field .v-field--focused .v-field__outline > * {
  border-color: #782312;
}

.research__container > * {
  padding: var(--spacer-2);
}
.research__container--results {
  margin-top: var(--spacer-4);
}
.research__container--no-results {
  margin-bottom: var(--spacer-4);
}
.research__container .research__title {
  display: flex;
  align-items: center;
  font-size: var(--font-size-lg);
  line-height: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  background-color: #F3F3F3;
  margin-block-start: 0;
  margin-block-end: 0;
}
.research__container .research__row {
  display: flex;
  font-size: var(--font-size-md);
  border: 1px solid #DCDCDC;
  border-top: unset;
}
.research__container .research__row .row__title {
  display: inline-block;
  flex: 0 0 280px;
  margin-right: var(--spacer-4);
}
@media (max-width: 780px) {
  .research__container .research__row .row__title {
    flex: 0 0 135px;
  }
}
.research__container .research__row .row__content--list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: var(--spacer-1-5);
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

@media (max-width: 1023px) {
  .statute-page #statuteApp h1 {
    font-size: 36px;
    margin-top: 24px;
  }
}
.statute-page #statuteApp .statute__container {
  padding: 0 var(--spacer-5);
}
@media (min-width: 1280px) {
  .statute-page #statuteApp .statute__container {
    padding-left: var(--spacer-4);
  }
}
.statute-page #statuteApp .statute__container .content {
  display: flex;
  flex-direction: row;
  /*padding-top: 30px; not needed for modified version*/
  padding-bottom: 30px;
}
@media (max-width: 1023px) {
  .statute-page #statuteApp .statute__container .content {
    flex-direction: column;
  }
}
.statute-page #statuteApp .statute__container .content a {
  text-decoration: none;
}
.statute-page #statuteApp .statute__container .content a .section-number {
  font-weight: 700;
}
.statute-page #statuteApp .statute__container .content li {
  line-height: 1.8;
  list-style-type: none;
}
.statute-page #statuteApp .statute__container .content h1 {
  margin-top: 40px;
}
.statute-page #statuteApp .statute__container .content h2 {
  margin-block: 0.5em !important;
}
.statute-page #statuteApp .statute__container .content h3 {
  font-size: 1.5rem;
  line-height: 36px;
  font-weight: 500;
  margin-block: 0.5em;
}
.statute-page #statuteApp .statute__container .content h4 {
  font-size: 1.5rem;
  color: #1B1B1B;
  margin-block-end: 0.5em !important;
}
.statute-page #statuteApp .statute__container .content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-block-end: 0.5em !important;
}
.statute-page #statuteApp .statute__container .content h6 {
  font-weight: 600;
}
.statute-page #statuteApp .statute__container .content .content__selector {
  flex: 0 0 200px;
  margin-right: 25px;
}
.statute-page #statuteApp .statute__container .content .content__selector h3 {
  font-size: 1.5rem;
  line-height: 36px;
  margin: 0 0 16px;
}
.statute-page #statuteApp .statute__container .content .content__selector h4 {
  margin: 0 0 12px;
}
.statute-page #statuteApp .statute__container .content .content__selector h4.acts-item__heading {
  color: #1A4480;
  transition: none;
}
.statute-page #statuteApp .statute__container .content .content__selector h4.acts-item__heading--active {
  color: #534891;
}
@media (min-width: 1024px) {
  .statute-page #statuteApp .statute__container .content .content__selector .selector__parent {
    position: sticky;
    top: 104px;
  }
}
.statute-page #statuteApp .statute__container .content .content__selector .titles-list__link {
  text-decoration: none;
  transition: none;
}
.statute-page #statuteApp .statute__container .content .content__selector .titles-list__link:hover, .statute-page #statuteApp .statute__container .content .content__selector .titles-list__link:focus, .statute-page #statuteApp .statute__container .content .content__selector .titles-list__link--active {
  color: #534891;
  border-bottom: 1px solid #534891;
}
.statute-page #statuteApp .statute__container .content .content__selector .titles-list__link--loading {
  pointer-events: none;
}
.statute-page #statuteApp .statute__container .content .content__selector ul {
  list-style-type: none;
}
.statute-page #statuteApp .statute__container .content .content__selector ul.acts__list {
  padding-left: 0;
}
.statute-page #statuteApp .statute__container .content .content__selector ul.titles__list {
  margin: 0;
}
.statute-page #statuteApp .statute__container .content .table__parent {
  padding: 0.75rem;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  width: 100%;
}
.statute-page #statuteApp .statute__container .content .table__parent.loading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.statute-page #statuteApp .statute__container .content .table__parent .table__caption {
  padding-bottom: 1.5rem;
  color: #1B1B1B;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .statute__list-item {
  padding: 12px 0;
  border-bottom: 1px solid #DCDCDC;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .statute__list-item:first-of-type {
  padding-top: 0px;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .statute__list-item:last-of-type {
  border: none;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .statute__list-item table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .statute__list-item table .table__row:first-of-type .row__cell--body {
  padding-top: 0.5rem;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .statute__list-item table .table__row .row__cell--body {
  vertical-align: top;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .table__row--header,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .table__row--header {
  position: sticky;
  top: 104px;
  z-index: 1;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .table__row--body,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .table__row--body {
  border-bottom: 1px solid #DCDCDC;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .table__row:first-of-type .row__cell--body,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .table__row:first-of-type .row__cell--body {
  padding-top: 18px;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell {
  padding: 0.5rem 0 0.5rem 1.5rem;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell a,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell a {
  text-decoration: none;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell a:hover,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell a:hover {
  color: #534891;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell .cell__title,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell .cell__title {
  font-weight: bold;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell .cell__subtitle,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell .cell__subtitle {
  font-size: 14px;
  line-height: 22px;
  font-weight: normal;
  font-style: italic;
  text-transform: capitalize;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell .cell__usc-label,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell .cell__usc-label {
  padding: 0.5rem 0;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell .cell__name,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell .cell__name {
  font-size: 0.75rem;
  line-height: 18px;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell--header,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell--header {
  background-color: #DCDCDC;
  color: #1B1B1B;
  text-align: left;
  vertical-align: top;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell--body,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell--body {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell--primary,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell--primary {
  width: 220px;
  box-sizing: border-box;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell:first-of-type,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell:first-of-type {
  padding-left: 1rem;
  padding-right: 1rem;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell:last-of-type,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell:last-of-type {
  padding-right: 1rem;
}
.statute-page #statuteApp .statute__container .content .table__parent #statuteList .row__cell--body.row__cell--primary,
.statute-page #statuteApp .statute__container .content .table__parent #statuteTable .row__cell--body.row__cell--primary {
  background-color: #F3F3F3;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.view-and-compare {
  display: flex;
  justify-content: center;
  min-height: 54px;
  padding: var(--spacer-1) var(--spacer-2);
  background-color: #F2E4D4;
  color: #fff;
  position: sticky;
  z-index: 2;
  top: 104px;
}
@media (min-width: 780px) {
  .view-and-compare {
    top: 104px;
  }
}
.view-and-compare[data-state=hide] {
  display: none;
}
.view-and-compare .view-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.view-and-compare .print-view-container {
  display: none;
}
.view-and-compare .view-title {
  font-weight: bold;
  border-right: 1px solid #DCDCDC;
  padding-right: var(--spacer-2);
  margin-right: var(--spacer-2);
}
.view-and-compare .view-select {
  padding-left: 10px;
  display: inline-block;
}
.view-and-compare .view-select select {
  border: none;
  padding: 0.8em var(--spacer-2) 0.8em var(--spacer-1-5);
  border-radius: 0;
}
.view-and-compare .close-button {
  position: absolute;
  right: var(--spacer-2);
  cursor: pointer;
  border: none;
  background: none;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-and-compare .close-button svg path {
  fill: #fff;
}
.view-and-compare .close-button:hover svg path {
  fill: #FFEAEA;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.dropdown-menu__container {
  position: absolute;
  right: 0px;
  top: 40px;
  white-space: nowrap;
  background: #782312;
  padding: 20px 30px;
  z-index: 1;
  border: 1px solid #DCDCDC;
  border-radius: 3px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

header {
  box-sizing: unset;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 104px;
}
header.sticky {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 3;
  box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.08);
}
header.sticky + .content aside {
  top: 104px;
}
@media (min-width: 780px) {
  header.sticky + .content aside {
    top: 104px;
  }
}
header .header--content-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
header .header--content-container .header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  padding: 0 var(--grid-form-gutter-width);
}
@media (min-width: 1024px) {
  header .header--content-container .header__row {
    padding: 0 var(--grid-gutter-width);
  }
}
header .header--content-container .header__row--first {
  height: 56px;
  gap: 1rem;
}
@media (min-width: 544px) {
  header .header--content-container .header__row--first {
    gap: 1.5rem;
  }
}
header .header--content-container .header__row--second {
  height: 48px;
  background: #782312;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}
header .header--content-container .header--brand {
  display: flex;
  align-items: baseline;
  font-size: var(--font-size-xl);
  line-height: 36px;
}
@media (max-width: 779px) {
  header .header--content-container .header--brand {
    font-size: var(--font-size-sm);
    line-height: 18px;
  }
}
header .header--content-container .header--brand a {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  display: inline-block;
  padding-right: 7px;
}
@media (min-width: 780px) {
  header .header--content-container .header--brand a br {
    display: none;
  }
}
header .header--content-container .header--brand .subtext {
  font-size: var(--font-size-sm);
  color: #5B616B;
  display: inline-block;
}
@media (min-width: 780px) {
  header .header--content-container .header--brand .subtext br {
    display: none;
  }
}
header .header--content-container .header--jump-to {
  display: flex;
  align-items: center;
  flex: unset;
}
header .header--content-container .header__access-link {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
}
@media (max-width: 543px) {
  header .header--content-container .header__access-link--wide {
    display: none;
  }
}
header .header--content-container .header__access-link--wide.hover {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  border-bottom: 2px solid #782312;
}
@media (min-width: 544px) {
  header .header--content-container .header__access-link--narrow {
    display: none;
  }
}
header .header--content-container .header__access-link--narrow.hover {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  border-bottom: 2px solid #782312;
}
header .header--content-container .header__access-link.header--links__anchor.active {
  cursor: default;
  pointer-events: none;
}
header .header--content-container .header--links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 779px) {
  header .header--content-container .header--links {
    border: none;
    margin-right: 0;
  }
}
header .header--content-container .header--links .links--container {
  position: relative;
}
@media (max-width: 1239px) {
  header .header--content-container .header--links .links--container {
    display: flex;
  }
}
header .header--content-container .header--links .links--container .more__button {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 780px) {
  header .header--content-container .header--links .links--container .more__button {
    display: none;
  }
}
@media (max-width: 779px) {
  header .header--content-container .header--links .links--container .more__button {
    border: none;
    padding: 0 10px;
  }
}
header .header--content-container .header--links .links--container .more__button svg {
  margin-right: 5px;
}
header .header--content-container .header--links .links--container .more__button svg path {
  fill: #fff;
}
@media (min-width: 780px) {
  header .header--content-container .header--links .links--container .more--dropdown-menu {
    background: #782312;
    display: none;
  }
}
header .header--content-container .header--links .links--container ul.links__list {
  list-style: none;
  padding: 0;
}
header .header--content-container .header--links .links--container ul.links__list.links__list--dropdown {
  margin: 0;
}
header .header--content-container .header--links .links--container ul.links__list.links__list--dropdown li:not(:last-child) {
  margin-bottom: 12px;
}
header .header--content-container .header--links .links--container ul.links__list.links__list--dropdown li .header--links__anchor {
  font-size: var(--font-size-md);
  line-height: 22px;
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  color: #fff;
  height: 24px;
  line-height: 24px;
  text-decoration: none;
}
header .header--content-container .header--links .links--container ul.links__list.links__list--dropdown li .header--links__anchor:hover, header .header--content-container .header--links .links--container ul.links__list.links__list--dropdown li .header--links__anchor:focus, header .header--content-container .header--links .links--container ul.links__list.links__list--dropdown li .header--links__anchor.active {
  border-bottom: 2px solid #fff;
  padding: 0;
}
header .header--content-container .header--links .links--container ul.links__list.links__list--wide {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  margin-block: 0px;
}
@media (max-width: 779px) {
  header .header--content-container .header--links .links--container ul.links__list.links__list--wide {
    display: none;
  }
}
header .header--content-container .header--links .links--container ul.links__list.links__list--wide li {
  display: inline-block;
}
header .header--content-container .header--links .links--container ul.links__list.links__list--wide li .header--links__anchor {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  color: #fff;
  height: 24px;
  line-height: 24px;
  text-decoration: none;
}
header .header--content-container .header--links .links--container ul.links__list.links__list--wide li .header--links__anchor:hover, header .header--content-container .header--links .links--container ul.links__list.links__list--wide li .header--links__anchor:focus, header .header--content-container .header--links .links--container ul.links__list.links__list--wide li .header--links__anchor.active {
  border-bottom: 2px solid #fff;
  padding: 0;
}
header .header--content-container .header--search {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}
header .header--content-container .header--search .search__form {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 779px) {
  header .header--content-container .header--search .search__form {
    background-color: #fff;
    left: 10px;
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 779px) {
  header .header--content-container .header--search .search__form--expanded {
    position: absolute;
    left: -19px;
  }
}
header .header--content-container .header--search .search__form .form__button--toggle-mobile-search {
  cursor: pointer;
  background: none;
  border: none;
  box-sizing: border-box;
  width: 40px;
  height: 45px;
  padding-top: 2px;
  padding-right: 7px;
}
@media (min-width: 780px) {
  header .header--content-container .header--search .search__form .form__button--toggle-mobile-search {
    display: none;
  }
}
header .header--content-container .header--search .search__form input {
  height: 40px;
  width: 100%;
  max-width: 320px;
  padding: var(--spacer-1) 0 var(--spacer-1) var(--spacer-2);
  border: 1px solid #DCDCDC;
  border-right: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  margin-block: 0;
}
@media (max-width: 779px) {
  header .header--content-container .header--search .search__form input.hidden {
    display: none;
  }
}
@media (max-width: 779px) {
  header .header--content-container .header--search .search__form input.visible--mobile {
    max-width: unset;
  }
}
header .header--content-container .header--search .search__form input[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
  margin-left: 6px;
}
@media (max-width: 779px) {
  header .header--content-container .header--search .search__form input {
    height: 45px;
    width: calc(100vw - 100px);
    margin-left: 0px;
  }
}
header .header--content-container .header--search .search__form input::placeholder {
  color: #5B616B;
  font-weight: 400;
  height: 40px;
}
header .header--content-container .header--search .search__form .search__button--submit {
  cursor: pointer;
  background: none;
  border: none;
  box-sizing: border-box;
  color: #534891;
  height: 40px;
  width: 40px;
  border: 1px solid #DCDCDC;
  border-left: none;
  border-radius: 0 3px 3px 0;
}
@media (max-width: 779px) {
  header .header--content-container .header--search .search__form .search__button--submit.hidden {
    display: none;
  }
}
@media (max-width: 779px) {
  header .header--content-container .header--search .search__form .search__button--submit {
    height: 45px;
  }
}
header .header--content-container .header--search .search__form .search__button--submit:hover .fa {
  color: #534891;
}
header .header--content-container .header--search .search__form .search__button--submit .fa {
  font-size: 16px;
  color: #782312;
}
@media (max-width: 779px) {
  header .header--content-container .header--search .search__form .search__button--submit .fa {
    display: none;
  }
}
@media (min-width: 780px) {
  header .header--content-container .header--search .search__form .search__button--submit svg {
    display: none;
  }
}
header .header--content-container .header--sign-in {
  height: 40px;
}
header .header--content-container .header--sign-in span.disabled {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  text-transform: capitalize;
}
header .header--content-container .header--sign-in a {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  color: #07648D;
  text-transform: capitalize;
}
header .header--content-container .header--sign-in a:hover, header .header--content-container .header--sign-in a:focus, header .header--content-container .header--sign-in a.active {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  border-bottom: 2px solid #782312;
  padding: 0;
}
header .header--content-container .header--sign-in .user-account__button {
  height: 100%;
}
header .header--content-container .header--sign-in .user-account__button svg circle {
  stroke: #07648D;
}
header .header--content-container .header--sign-in .user-account__button svg path {
  fill: #07648D;
}
header .header--content-container .header--sign-in .user-account__button--expanded svg circle, header .header--content-container .header--sign-in .user-account__button:hover svg circle, header .header--content-container .header--sign-in .user-account__button:focus svg circle, header .header--content-container .header--sign-in .user-account__button.active svg circle {
  stroke: #1A4480;
  fill: #1A4480;
}
header .header--content-container .header--sign-in .user-account__button--expanded svg path, header .header--content-container .header--sign-in .user-account__button:hover svg path, header .header--content-container .header--sign-in .user-account__button:focus svg path, header .header--content-container .header--sign-in .user-account__button.active svg path {
  fill: #fff;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account {
  top: 56px;
  right: 2rem;
  white-space: normal;
}
@media (max-width: 779px) {
  header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account {
    right: 1rem;
  }
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container {
  padding: 0.5rem;
  padding-bottom: 0;
  display: inline-block;
  min-width: 145px;
  max-width: 340px;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container .account-info--username {
  overflow-wrap: anywhere;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container .account-info--msg {
  display: flex;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container .account-info--msg .account-message {
  flex-grow: 1;
  width: 0;
  margin: 0.25rem 0;
  font-size: var(--font-size-sm);
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container .account-info--links {
  margin: 0.75rem 0;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container .account-info--links a {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  color: #07648D;
  transition: none;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container .account-info--links a:hover, header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container .account-info--links a:focus, header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account-info__container .account-info--links a.active {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  border-bottom: 2px solid #782312;
  padding: 0;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account hr {
  border: 0;
  height: 1px;
  background: #DCDCDC;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out {
  padding: 0.5rem;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out button,
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out form input {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  color: #534891;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out button:hover, header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out button:focus, header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out button.active,
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out form input:hover,
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out form input:focus,
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out form input.active {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  border-bottom: 2px solid #782312;
  padding: 0;
}
header .header--content-container .header--sign-in .user-account__button + .dropdown-menu--account .account--sign-out form input {
  background-color: unset;
  height: 22px;
}
header .header--content-container .header--sign-in:has(> a), header .header--content-container .header--sign-in:has(> span.disabled) {
  margin-top: auto;
}
header .header--content-container .header--sign-in.active span.disabled {
  text-decoration: none;
  color: #BC1C16;
  font-weight: 700;
  border-bottom: 2px solid #782312;
  cursor: default;
  padding: 0;
}
@media (max-width: 779px) {
  header .header--content-container .header--search:has(.search__form--expanded) ~ .header--sign-in,
  header .header--content-container .header--search:has(.search__form--expanded) ~ .header__access-link {
    display: none;
  }
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

aside.left-sidebar {
  box-sizing: unset;
  /*color: $reverse_text_color;*/
  height: calc(100vh - 104px);
  overflow-y: scroll;
  position: sticky;
  top: 0;
  z-index: 1;
  transition: flex-basis 0.25s ease-out;
}
@media (max-width: 1023px) {
  aside.left-sidebar[data-state=expanded] + .reg-text .tooltip {
    z-index: 0;
  }
}
aside.left-sidebar[data-state=collapsed] {
  width: 1em;
  padding: 0 1em 1em;
  scrollbar-width: none;
}
aside.left-sidebar[data-state=collapsed]::-webkit-scrollbar {
  display: none;
}
aside.left-sidebar[data-state=collapsed] div,
aside.left-sidebar[data-state=collapsed] h2,
aside.left-sidebar[data-state=collapsed] h3,
aside.left-sidebar[data-state=collapsed] h4,
aside.left-sidebar[data-state=collapsed] li > a {
  display: none;
}
aside.left-sidebar[data-state=collapsed] div.toc-controls {
  margin: 0 -1em;
  display: block;
}
aside.left-sidebar[data-state=collapsed] div.toc-controls [data-set-state=collapsed] {
  display: none;
}
aside.left-sidebar[data-state=collapsed] div.toc-controls [data-set-state=expanded] {
  width: 100%;
  display: block;
}
aside.left-sidebar[data-state=collapsed] ul li.subtoc.active {
  background: none;
}
aside.left-sidebar[data-state=collapsed] ul li.orphan {
  display: none;
}
aside.left-sidebar .toc-titles {
  border-radius: var(--radius-default);
  padding: var(--spacer-1) 0;
  margin: 0 var(--spacer-2);
}
aside.left-sidebar .toc-titles h3 {
  margin: var(--spacer-1) var(--spacer-1) var(--spacer-1) var(--spacer-2) !important;
}
aside.left-sidebar .subpart-range {
  margin-left: 5px;
  font-size: var(--font-size-sm);
}
aside.left-sidebar .subpart-name {
  font-size: var(--font-size-sm);
  font-weight: normal;
  color: #1B1B1B;
  padding-right: var(--spacer-4);
}
aside.left-sidebar .toc-subgroup-list {
  padding-left: 0;
}
aside.left-sidebar h3.toc-subgroup-name {
  margin-left: var(--spacer-4);
  margin-right: var(--spacer-2);
  font-size: var(--font-size-md);
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}
aside.left-sidebar .toc-section-number {
  font-size: var(--font-size-sm);
}
aside.left-sidebar .toc-section-name {
  color: #1B1B1B;
  font-weight: normal;
  font-size: var(--font-size-sm);
}
aside.left-sidebar button.subpart-toggle {
  width: 64px;
  box-sizing: border-box;
  background: none;
  border: none;
  color: #1A4480;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: var(--spacer-3) var(--spacer-2) var(--spacer-2);
  margin-right: var(--spacer-2);
  border-radius: var(--radius-default);
}
aside.left-sidebar button.subpart-toggle:hover, aside.left-sidebar button.subpart-toggle:focus {
  color: #534891;
  background: #DCDCDC;
  transition: all 0.1s ease-in;
}
aside.left-sidebar ul {
  padding: 0 0 var(--spacer-2) 0 !important;
  gap: 0;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}
aside.left-sidebar ul li {
  list-style: none;
}
aside.left-sidebar ul li.active {
  background: #DCDCDC;
}
aside.left-sidebar ul li.active .subpart-info {
  color: #1B1B1B;
}
aside.left-sidebar ul li a {
  text-decoration: none;
  font-weight: bold;
}
aside.left-sidebar ul li.orphan .menu-section {
  margin-left: var(--spacer-2);
  padding-left: var(--spacer-2);
}
aside.left-sidebar ul li ul.toggle-toc-menu-sections {
  margin: 0 !important;
}
aside.left-sidebar a {
  color: #1A4480;
}
aside.left-sidebar a:hover, aside.left-sidebar a:focus {
  color: #534891;
  background: #DCDCDC;
}
aside.left-sidebar a.subpart-info {
  display: table-cell;
  width: calc(100% - 64px);
}
aside.left-sidebar a.subpart-info:hover .toc-titles, aside.left-sidebar a.subpart-info:focus .toc-titles {
  background: #DCDCDC;
  transition: all 0.1s ease-in;
}
aside.left-sidebar .menu-section {
  display: block;
  margin: 0 var(--spacer-2);
  border-radius: var(--radius-default);
  padding: 0.25em 1.6em;
}
@media (min-width: 1280px) {
  aside.left-sidebar .menu-section {
    padding: var(--spacer-1) var(--spacer-4);
  }
}
aside.left-sidebar .menu-section:not(li.active ul a.menu-section):hover, aside.left-sidebar .menu-section:not(li.active ul a.menu-section):focus {
  background: #DCDCDC;
}
aside.left-sidebar .menu-section.active {
  background: #DCDCDC;
  border-left-color: #5B616B;
  border-left-style: solid;
}
aside.left-sidebar .menu-section li {
  padding: 0 var(--spacer-2);
}
aside.left-sidebar li.active ul a.menu-section:hover,
aside.left-sidebar li.active ul a.menu-section:focus {
  background: #DCDCDC;
}

.toc-header {
  border-bottom: 1px solid #5B616B;
  margin: 25px 40px 16px 32px;
  padding-bottom: 16px;
  color: #1B1B1B;
}
.toc-header .toc-subchapter {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
}
.toc-header .toc-part {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}
.toc-header .toc-part .description {
  font-weight: normal;
}

.toc-controls {
  box-sizing: border-box;
  border-bottom: 1px solid #5B616B;
}
.toc-controls button {
  outline: none;
  color: #1A4480;
  border: none;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  padding: var(--spacer-2);
  border-radius: 0;
  line-height: 1.2;
}
.toc-controls button:hover, .toc-controls button:focus {
  background: #F2E4D4;
  color: #534891;
  transition: all 0.1s ease-in;
}
.toc-controls button img {
  height: var(--font-size-base);
  padding-right: 9px;
  display: inline-block;
  vertical-align: middle;
  line-height: var(--font-size-md);
  fill: #782312;
}
.toc-controls button span {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: var(--font-size-md);
}
.toc-controls button[data-set-state=collapsed] {
  padding-left: calc(var(--spacer-3) + var(--spacer-2));
}
.toc-controls button[data-set-state=expanded] {
  margin: 0 auto;
  display: none;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

aside.right-sidebar {
  box-sizing: content-box;
  padding-top: var(--spacer-5);
  padding-bottom: var(--spacer-5);
  max-width: 400px;
  position: sticky;
  height: calc(100vh - 104px - var(--spacer-5));
  overflow-y: scroll;
  overflow-x: auto;
  /* LLM code */
}
@media (min-width: 1024px) {
  aside.right-sidebar {
    height: calc(100vh - 104px - var(--spacer-5));
  }
}
@media (max-width: 767px) {
  aside.right-sidebar {
    height: auto; /* Let content determine height on mobile */
    max-height: none; /* Remove any max height constraints */
    position: static; /* Remove sticky positioning on mobile */
    overflow: visible; /* No need for scrolling when height is auto */
    max-width: 100%; /* Full width on mobile */
    width: calc(100% - 56px); /* Adds margin on each side */
    margin: 0 auto; /* Centers the sidebar */
  }
}
aside.right-sidebar h1 {
  font-size: calc(var(--font-size-base) * 1.4);
  font-family: "Roboto Slab", Helvetica, sans-serif;
}
@media (min-width: 1440px) {
  aside.right-sidebar h1 {
    font-size: var(--font-size-2xl);
  }
}
aside.right-sidebar h2 {
  font-size: var(--font-size-lg);
  font-family: "Roboto Slab", Helvetica, sans-serif;
}
aside.right-sidebar #subpart-resources-heading {
  margin-bottom: 0px !important;
}
aside.right-sidebar .label__container {
  display: flex;
  margin-top: 1rem;
}
aside.right-sidebar #view-button {
  box-sizing: border-box;
  font-size: var(--font-size-base);
  color: #07648D;
  border: 1px solid #07648D;
  text-align: left;
  background: none;
  padding: var(--spacer-2) var(--spacer-3);
  border-radius: var(--radius-default);
  margin: 0 auto var(--spacer-2) auto;
  width: 100%;
}
aside.right-sidebar #view-button svg {
  display: inline-block;
  vertical-align: middle;
}
aside.right-sidebar #view-button svg rect,
aside.right-sidebar #view-button svg line {
  stroke: #07648D;
}
aside.right-sidebar #view-button svg path {
  fill: #07648D;
}
aside.right-sidebar #view-button .button-inner-container {
  display: inline-block;
  padding-left: 0.75rem;
  vertical-align: middle;
  font-weight: 600;
  line-height: 1.4;
}
aside.right-sidebar #view-button .button-subheader {
  font-weight: normal;
  font-size: 12px;
  color: #1B1B1B;
}
aside.right-sidebar #view-button:hover, aside.right-sidebar #view-button:focus, aside.right-sidebar #view-button[data-state=show] {
  color: #fff;
  background: #1A4480;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
aside.right-sidebar #view-button:hover .button-subheader, aside.right-sidebar #view-button:focus .button-subheader, aside.right-sidebar #view-button[data-state=show] .button-subheader {
  color: #fff;
}
aside.right-sidebar #view-button:hover svg rect,
aside.right-sidebar #view-button:hover svg line, aside.right-sidebar #view-button:focus svg rect,
aside.right-sidebar #view-button:focus svg line, aside.right-sidebar #view-button[data-state=show] svg rect,
aside.right-sidebar #view-button[data-state=show] svg line {
  stroke: #fff;
}
aside.right-sidebar #view-button:hover svg path, aside.right-sidebar #view-button:focus svg path, aside.right-sidebar #view-button[data-state=show] svg path {
  fill: #fff;
}
aside.right-sidebar #view-button[data-state=show]:hover {
  color: #07648D;
  background: none;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
aside.right-sidebar #view-button[data-state=show]:hover .button-subheader {
  color: #1B1B1B;
}
aside.right-sidebar #view-button[data-state=show]:hover svg rect,
aside.right-sidebar #view-button[data-state=show]:hover svg line {
  stroke: #07648D;
}
aside.right-sidebar #view-button[data-state=show]:hover svg path {
  fill: #07648D;
}
aside.right-sidebar ul {
  list-style: none;
  padding: 0 0 var(--spacer-2) 0;
}
aside.right-sidebar ul li {
  font-size: var(--font-size-sm);
  line-height: 1.3;
}
@media (min-width: 1280px) {
  aside.right-sidebar ul li {
    font-size: var(--font-size-md);
    line-height: 1.4;
  }
}

button.collapsible-title {
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1.2 !important;
}

.collapsible-title {
  font-size: var(--font-size-md);
  font-weight: bold;
  padding: 1px 6px 1px 0;
  background: none;
  border: none;
  color: #07648D;
  margin-top: var(--spacer-2);
  display: flex;
  border-radius: var(--radius-default);
  text-align: left;
  width: 100%;
  justify-content: space-between;
  line-height: 1.3 !important;
}
.collapsible-title.subcategory {
  font-size: var(--font-size-sm);
  margin-top: 0;
  margin-bottom: var(--spacer-2);
}
.collapsible-title.visible {
  color: #1B1B1B;
}
.collapsible-title.visible i.fa {
  color: #07648D;
}
.collapsible-title.show-more {
  margin-top: 0;
  padding-top: var(--spacer-2);
}
.collapsible-title .fa {
  float: right;
}

.childless {
  color: #1B1B1B;
}

.show-more-button {
  color: #07648D;
  border: none;
  background: none;
  font-size: var(--font-size-sm);
  cursor: pointer;
  width: 100%;
  text-align: left;
  margin-bottom: var(--spacer-2);
}
.show-more-button i {
  float: right;
}

.show-more-inactive {
  color: #5B616B;
  font-size: var(--font-size-sm);
  margin-top: var(--spacer-2);
}

.view-all__container {
  margin: 1rem 0;
}
.view-all__container .show-subpart-resources {
  color: #07648D;
  font-size: 14px;
  text-decoration: none;
}

.bold {
  font-weight: 600;
}

.login__spacer {
  margin-bottom: 75px;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.reg-text {
  overflow-wrap: break-word;
  overflow: auto;
}
.reg-text section,
.reg-text h1,
.reg-text h2,
.reg-text p {
  padding-left: 5px;
}
.reg-text section:focus,
.reg-text h1:focus,
.reg-text h2:focus,
.reg-text p:focus {
  /*background: $section_highlight_color;*/
}
.reg-text h1 {
  color: #1B1B1B;
  font-size: calc(var(--font-size-base) * 1.5);
  line-height: 1.4;
}
@media (min-width: 1440px) {
  .reg-text h1 {
    font-size: calc(var(--font-size-base) * 1.9);
    line-height: 1.5;
  }
}
.reg-text mark.highlight {
  background-color: #F2E4D4;
}
.reg-text .reference {
  position: absolute;
  margin-left: -1.5em;
  opacity: 0;
}
.reg-text .reference:focus {
  opacity: 1;
}
.reg-text section.part-meta {
  font-size: var(--font-size-sm);
}
.reg-text h1 > .reference,
.reg-text h2 > .reference {
  margin-left: -1.2em;
}
@media (min-width: 1440px) {
  .reg-text h1 > .reference,
  .reg-text h2 > .reference {
    margin-left: -1.4em;
  }
}
.reg-text :hover > .reference {
  opacity: 1;
}
.reg-text .section-title {
  color: #782312;
}
.reg-text .section-info-row {
  display: flex;
}
.reg-text .view-resources-link .count {
  font-size: 12px;
}
.reg-text .info-links {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: -10px;
  padding-left: 5px;
  line-height: 20px;
}
.reg-text .info-links > div {
  display: inline;
}
@media (max-width: 767px) {
  .reg-text .info-links > div:first-child {
    display: none;
  }
}
@media (min-width: 1024px) {
  .reg-text .info-links {
    flex-direction: row;
  }
  .reg-text .info-links > div:first-child {
    padding-right: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 1280px) {
  .reg-text .info-links {
    flex-direction: row;
  }
  .reg-text .info-links > div:first-child {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #DCDCDC;
  }
}
.reg-text .part-title {
  max-width: var(--text-max-width);
  margin: var(--spacer-5) 0 var(--spacer-3);
}
.reg-text h2 {
  color: #1B1B1B;
  font-size: calc(var(--font-size-base) * 1.2);
}
@media (min-width: 1440px) {
  .reg-text h2 {
    font-size: var(--font-size-2xl);
  }
}
.reg-text .table-section .table_head {
  margin: 15px 0 25px;
}
.reg-text .table-section .table_head p {
  margin: 0 !important;
}
.reg-text .table-section .table_head p:first-child {
  font-size: var(--font-size-md);
  line-height: 1.5;
  font-weight: 700;
  font-family: "Lora", Georgia, serif;
  margin-top: 0 !important;
  margin-bottom: 5px !important;
}
.reg-text .table-section .gpotbl_div table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #DCDCDC;
  table-layout: auto;
  width: 100%;
}
.reg-text .table-section .gpotbl_div table th,
.reg-text .table-section .gpotbl_div table th ~ td {
  table-layout: fixed;
}
.reg-text .table-section .gpotbl_div table th,
.reg-text .table-section .gpotbl_div table td {
  border: 1px solid #DCDCDC;
  padding: 9px 12px;
  font-size: var(--font-size-sm);
  line-height: 1.4;
  text-align: left;
  vertical-align: top;
}
.reg-text .table-section .gpotbl_div table th {
  background: #DCDCDC;
}
.reg-text .table-section .gpotbl_div table th[rowspan] {
  vertical-align: middle;
}
.reg-text .table-section .gpotbl_div table th[colspan] {
  text-align: center;
}
.reg-text .appendix-section {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: 10px;
  color: #5B616B;
}
.reg-text .appendix-section h2.section-title {
  padding: 0px;
  color: #5B616B;
  font-size: var(--font-size-md);
  line-height: 1.4;
  margin-top: 25px !important;
}
@media (min-width: 1280px) {
  .reg-text .appendix-section h2.section-title {
    font-size: var(--font-size-lg);
    line-height: 1.5;
  }
}
.reg-text .appendix-section h3.heading1 {
  padding: 0px;
  color: #5B616B;
  font-family: "Lora", Georgia, serif;
  font-size: var(--font-size-sm);
  line-height: 1.3;
  text-transform: capitalize;
  text-align: left;
  margin-top: 25px;
}
@media (min-width: 1280px) {
  .reg-text .appendix-section h3.heading1 {
    font-size: var(--font-size-md);
    line-height: 1.4;
  }
}
.reg-text .appendix-section .paragraphs p {
  padding: 0px;
}
.reg-text .appendix-section .paragraphs p e {
  font-variant: normal;
  font-weight: 700;
}
.reg-text .footnote-section {
  font-size: 12px;
  line-height: 1.5;
  color: #5B616B;
}
.reg-text fp,
.reg-text fp-1,
.reg-text fp1-2,
.reg-text fp-2,
.reg-text fp-3,
.reg-text fp-4,
.reg-text fp-5,
.reg-text fp-6,
.reg-text .synthetic-part-fp {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  color: #5B616B;
  display: block;
}
.reg-text fp:not(:last-child), .reg-text fp:only-child,
.reg-text fp-1:not(:last-child),
.reg-text fp-1:only-child,
.reg-text fp1-2:not(:last-child),
.reg-text fp1-2:only-child,
.reg-text fp-2:not(:last-child),
.reg-text fp-2:only-child,
.reg-text fp-3:not(:last-child),
.reg-text fp-3:only-child,
.reg-text fp-4:not(:last-child),
.reg-text fp-4:only-child,
.reg-text fp-5:not(:last-child),
.reg-text fp-5:only-child,
.reg-text fp-6:not(:last-child),
.reg-text fp-6:only-child,
.reg-text .synthetic-part-fp:not(:last-child),
.reg-text .synthetic-part-fp:only-child {
  padding-bottom: 1em;
}
.reg-text fp:last-child:not(:only-child),
.reg-text fp-1:last-child:not(:only-child),
.reg-text fp1-2:last-child:not(:only-child),
.reg-text fp-2:last-child:not(:only-child),
.reg-text fp-3:last-child:not(:only-child),
.reg-text fp-4:last-child:not(:only-child),
.reg-text fp-5:last-child:not(:only-child),
.reg-text fp-6:last-child:not(:only-child),
.reg-text .synthetic-part-fp:last-child:not(:only-child) {
  margin-bottom: 1em;
}
.reg-text fp su,
.reg-text fp-1 su,
.reg-text fp1-2 su,
.reg-text fp-2 su,
.reg-text fp-3 su,
.reg-text fp-4 su,
.reg-text fp-5 su,
.reg-text fp-6 su,
.reg-text .synthetic-part-fp su {
  font-size: 70%;
}
.reg-text .up-to-date {
  box-sizing: unset;
  max-width: var(--text-max-width);
  margin: var(--spacer-5) auto 10px !important;
  font-size: var(--font-size-sm);
  color: #5B616B;
}
@media (min-width: 1440px) {
  .reg-text .up-to-date {
    padding: 0 0 0 10px;
  }
  .reg-text .up-to-date.subpart {
    padding: 0 var(--spacer-6);
  }
  .reg-text .up-to-date.subpart b {
    padding-left: 5px;
  }
  .reg-text .up-to-date + .part-title {
    margin: 0 var(--spacer-6);
  }
}
.reg-text .up-to-date + article {
  margin: 0 auto var(--spacer-5);
}
.reg-text .up-to-date + .part-title {
  margin: 0 auto var(--spacer-3);
}

article {
  box-sizing: unset;
  max-width: var(--text-max-width);
  margin-top: var(--spacer-5);
  margin-bottom: var(--spacer-4);
}
@media (min-width: 1440px) {
  article {
    margin: var(--spacer-5) auto;
    padding: 0 var(--spacer-6);
  }
}
article i {
  font-weight: bold;
}
article p,
article section {
  padding: 0 var(--spacer-3) 0 var(--spacer-3);
}
article p.depth-1,
article section.depth-1 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + section,
article section.depth-1 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + section + section,
article section.depth-1 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + section + section + section,
article section.depth-1 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + section + section + section + section,
article section.depth-1 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + section + section + section + section + section,
article section.depth-1 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + img,
article section.depth-1 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + img + img,
article section.depth-1 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + img + img + img,
article section.depth-1 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + img + img + img + img,
article section.depth-1 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-1 + img + img + img + img + img,
article section.depth-1 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 0);
}
article p.depth-2,
article section.depth-2 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + section,
article section.depth-2 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + section + section,
article section.depth-2 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + section + section + section,
article section.depth-2 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + section + section + section + section,
article section.depth-2 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + section + section + section + section + section,
article section.depth-2 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + img,
article section.depth-2 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + img + img,
article section.depth-2 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + img + img + img,
article section.depth-2 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + img + img + img + img,
article section.depth-2 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-2 + img + img + img + img + img,
article section.depth-2 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 1);
}
article p.depth-3,
article section.depth-3 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + section,
article section.depth-3 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + section + section,
article section.depth-3 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + section + section + section,
article section.depth-3 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + section + section + section + section,
article section.depth-3 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + section + section + section + section + section,
article section.depth-3 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + img,
article section.depth-3 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + img + img,
article section.depth-3 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + img + img + img,
article section.depth-3 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + img + img + img + img,
article section.depth-3 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-3 + img + img + img + img + img,
article section.depth-3 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 2);
}
article p.depth-4,
article section.depth-4 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + section,
article section.depth-4 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + section + section,
article section.depth-4 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + section + section + section,
article section.depth-4 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + section + section + section + section,
article section.depth-4 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + section + section + section + section + section,
article section.depth-4 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + img,
article section.depth-4 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + img + img,
article section.depth-4 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + img + img + img,
article section.depth-4 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + img + img + img + img,
article section.depth-4 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-4 + img + img + img + img + img,
article section.depth-4 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 3);
}
article p.depth-5,
article section.depth-5 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + section,
article section.depth-5 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + section + section,
article section.depth-5 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + section + section + section,
article section.depth-5 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + section + section + section + section,
article section.depth-5 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + section + section + section + section + section,
article section.depth-5 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + img,
article section.depth-5 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + img + img,
article section.depth-5 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + img + img + img,
article section.depth-5 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + img + img + img + img,
article section.depth-5 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-5 + img + img + img + img + img,
article section.depth-5 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 4);
}
article p.depth-6,
article section.depth-6 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + section,
article section.depth-6 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + section + section,
article section.depth-6 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + section + section + section,
article section.depth-6 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + section + section + section + section,
article section.depth-6 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + section + section + section + section + section,
article section.depth-6 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + img,
article section.depth-6 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + img + img,
article section.depth-6 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + img + img + img,
article section.depth-6 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + img + img + img + img,
article section.depth-6 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-6 + img + img + img + img + img,
article section.depth-6 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 5);
}
article p.depth-7,
article section.depth-7 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + section,
article section.depth-7 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + section + section,
article section.depth-7 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + section + section + section,
article section.depth-7 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + section + section + section + section,
article section.depth-7 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + section + section + section + section + section,
article section.depth-7 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + img,
article section.depth-7 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + img + img,
article section.depth-7 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + img + img + img,
article section.depth-7 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + img + img + img + img,
article section.depth-7 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-7 + img + img + img + img + img,
article section.depth-7 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 6);
}
article p.depth-8,
article section.depth-8 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + section,
article section.depth-8 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + section + section,
article section.depth-8 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + section + section + section,
article section.depth-8 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + section + section + section + section,
article section.depth-8 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + section + section + section + section + section,
article section.depth-8 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + img,
article section.depth-8 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + img + img,
article section.depth-8 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + img + img + img,
article section.depth-8 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + img + img + img + img,
article section.depth-8 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-8 + img + img + img + img + img,
article section.depth-8 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 7);
}
article p.depth-9,
article section.depth-9 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + section,
article section.depth-9 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + section + section,
article section.depth-9 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + section + section + section,
article section.depth-9 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + section + section + section + section,
article section.depth-9 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + section + section + section + section + section,
article section.depth-9 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + img,
article section.depth-9 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + img + img,
article section.depth-9 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + img + img + img,
article section.depth-9 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + img + img + img + img,
article section.depth-9 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-9 + img + img + img + img + img,
article section.depth-9 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 8);
}
article p.depth-10,
article section.depth-10 {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + section,
article section.depth-10 + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + section + section,
article section.depth-10 + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + section + section + section,
article section.depth-10 + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + section + section + section + section,
article section.depth-10 + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + section + section + section + section + section,
article section.depth-10 + section + section + section + section + section {
  padding-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + img,
article section.depth-10 + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + img + img,
article section.depth-10 + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + img + img + img,
article section.depth-10 + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + img + img + img + img,
article section.depth-10 + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article p.depth-10 + img + img + img + img + img,
article section.depth-10 + img + img + img + img + img {
  padding-left: 20px;
  border-left: 2px solid #FFEAEA;
  margin-left: calc(var(--spacer-3) + var(--spacer-3) * 9);
}
article .paragraphs {
  font-size: var(--font-size-sm);
  line-height: 1.4;
}
@media (min-width: 1280px) {
  article .paragraphs {
    font-size: var(--font-size-md);
    line-height: 1.5;
  }
}
article .section-text {
  line-height: 1.8em;
  display: inline;
}

.next-previous {
  display: flex;
  margin: var(--spacer-7) auto;
}
.next-previous .next-prev {
  direction: table-cell;
  width: 50%;
  text-decoration: none;
}
.next-previous .next-prev.previous:before {
  background-image: url("../images/previous.svg");
}
.next-previous .next-prev.next {
  text-align: right;
}
.next-previous .next-prev.next:before {
  background-image: url("../images/next.svg");
}
.next-previous .next-prev-label {
  font-weight: bold;
}
.next-previous .next-prev-title {
  font-size: var(--font-size-sm);
  color: #1B1B1B;
}

.effective-date-note {
  font-size: 13px;
  line-height: 18px;
  color: #5B616B;
}
.effective-date-note .effective-date-note-header {
  font-weight: bold;
  text-transform: capitalize;
}

.reg-image {
  max-width: 90%;
}

.btn {
  background-color: #534891;
  color: #fff;
  border-radius: 3px;
  padding: 9px 10px 10px;
  border: none;
  cursor: pointer;
  line-height: 11px;
}

.btn.inverted {
  color: #782312;
  border: #534891 2px solid;
  background-color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.btn.disabled {
  background-color: #DCDCDC;
  color: #5B616B;
}

.bold {
  font-weight: 600;
  font-size: 14px;
}

.bold.disabled {
  color: #5B616B;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.reg-part-homepage {
  margin: var(--spacer-3);
}
@media (min-width: 1024px) {
  .reg-part-homepage {
    margin: var(--spacer-5) 0 var(--spacer-4) var(--spacer-4);
  }
}
@media (min-width: 1440px) {
  .reg-part-homepage {
    margin: var(--spacer-3) var(--spacer-4);
  }
}
.reg-part-homepage h1 {
  color: #1B1B1B;
  font-size: calc(var(--font-size-base) * 1.5);
  line-height: 1.4;
  margin-bottom: var(--spacer-4) !important;
}
@media (min-width: 1440px) {
  .reg-part-homepage h1 {
    font-size: calc(var(--font-size-base) * 1.9);
    line-height: 1.5;
  }
}
.reg-part-homepage h2 {
  color: #1B1B1B;
}
.reg-part-homepage .last-updated {
  margin-bottom: var(--spacer-4) !important;
  font-style: italic;
  font-weight: 600;
}
.reg-part-homepage section.part-meta {
  font-size: var(--font-size-sm);
}

.reg-part-toc {
  max-width: var(--text-max-width);
}
@media (min-width: 1440px) {
  .reg-part-toc {
    margin: 0 auto;
  }
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.doc-type__label {
  display: inline-block;
  font-size: 11px;
  width: fit-content;
  border-radius: 3px;
  padding: 2px 5px 3px;
  color: #1B1B1B;
  background: #f6efe9;
}

.category-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.category-labels .result-label {
  display: inline-block;
  font-size: 11px;
  width: fit-content;
  border-radius: 3px;
  padding: 2px 5px 3px;
  background: #F2E4D4;
  font-weight: 600;
}

.reg-results-container .result .category-labels {
  margin-bottom: 0;
}

.result {
  margin-bottom: 24px;
}
.result .category-labels {
  margin-bottom: 8px;
}
.result__context {
  color: #767676;
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.result__context--date {
  margin-right: 8px;
}
.result__context--date--bar {
  padding-right: 8px;
  border-right: 1px solid #DCDCDC;
}
.result__context--division {
  text-transform: none;
}
.result__context--division--bar {
  padding-left: 8px;
  border-left: 1px solid #DCDCDC;
}
.result__link {
  font-size: var(--font-size-md);
  margin-bottom: 8px;
}
.result__link a {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.result__link--file-type {
  padding: 0 8px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  border: 1px solid;
  border-radius: 26px;
}
.result__snippet {
  font-size: var(--font-size-sm);
}
.result .search-highlight {
  font-weight: bold;
}
.result .collapsible-title {
  font-size: var(--font-size-sm);
  line-height: 22px;
  font-weight: 400;
  width: auto;
  margin-top: var(--spacer-1);
}
.result .collapsible-title.visible {
  color: #07648D;
}
.result .collapsible-title i {
  font-size: 12px;
  margin: auto 0 auto var(--spacer-half);
}

.related-sections {
  margin-top: 8px;
  margin-bottom: 0px;
}
.related-sections .related-sections-title {
  color: #767676;
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}
.related-sections .title__span,
.related-sections .section-sign,
.related-sections .pipe-separator {
  color: #5B616B;
  font-size: 14px;
}
.related-sections .related-section-link {
  color: #767676;
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 22px;
}
.related-sections .related-section-link a {
  text-decoration: none;
}
.related-sections .related-sections-none {
  color: #767676;
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 22px;
}

.resources-content-container .result .category-labels {
  margin-bottom: 12px;
}
.resources-content-container .related-sections {
  margin-bottom: 40px;
  color: #5B616B;
  font-size: 12px;
}
.resources-content-container .related-sections .related-sections-title {
  font-weight: 600;
  color: #5B616B;
  text-transform: none;
  font-size: 12px;
}
.resources-content-container .related-sections .title__span,
.resources-content-container .related-sections .section-sign,
.resources-content-container .related-sections .related-sections-none {
  font-size: 12px;
}
.resources-content-container .related-sections a {
  text-decoration: none;
  font-size: 12px;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

footer {
  padding: var(--spacer-4) 0;
  border-top: 1px solid #DCDCDC;
  background: #f6efe9;
  box-sizing: unset !important;
}
footer p {
  font-size: var(--font-size-sm);
  color: #1B1B1B;
  box-sizing: content-box;
}
footer h4,
footer h5 {
  font-family: "Lora", Georgia, serif !important;
  color: #1B1B1B !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}
footer h4 {
  font-size: var(--font-size-lg);
  margin-top: 0 !important;
  margin-bottom: var(--spacer-2) !important;
}
footer h5 {
  margin: -20px 0 0 100px !important;
  font-size: var(--font-size-lg);
}
footer .address {
  margin-bottom: var(--spacer-3);
  font-size: 12px;
}
footer .last-update-footer {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacer-2);
}
footer .about-footer {
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacer-2);
}
footer .about-footer a {
  color: #BC1C16;
}
@media (max-width: 1023px) {
  footer .footer-left {
    flex: none;
  }
}
footer .footer-left > * {
  padding: 0 var(--spacer-3) 0 var(--spacer-4);
}
@media (max-width: 1023px) {
  footer .footer-left > * {
    padding: 0 var(--spacer-4);
  }
}
footer .footer-left a img {
  margin-bottom: var(--spacer-2);
}
footer .footer-left a:hover {
  opacity: 0.8;
}
footer .footer-left i {
  width: 36px;
}
footer .footer-left img {
  width: 100%;
  max-width: 219px;
}
footer .footer-middle > * {
  padding: 0;
}
@media (max-width: 1023px) {
  footer .footer-middle > * {
    padding: 0 var(--spacer-4);
  }
}
@media (min-width: 1024px) {
  footer .footer-middle > * {
    max-width: calc(90% - var(--spacer-3));
    padding-left: var(--spacer-3);
  }
}
@media (max-width: 1023px) {
  footer .footer-middle {
    padding: var(--spacer-4) 0;
  }
}
footer .footer-right {
  box-sizing: content-box;
  padding: 0 var(--spacer-2);
}
@media (min-width: 1280px) {
  footer .footer-right {
    padding: 0 var(--spacer-4) 0 0;
  }
}
@media (max-width: 1023px) {
  footer .footer-right {
    flex: none;
    padding: 0;
  }
}
footer .footer-right > * {
  padding: 0 var(--spacer-5) 0 0;
}
@media (max-width: 1023px) {
  footer .footer-right > * {
    padding: 0 var(--spacer-4);
    margin-left: 0;
  }
}
footer .footer-right i {
  font-size: 30px;
  line-height: 34px;
  color: #07648D;
  padding-right: var(--spacer-2);
}
footer .footer-right i:hover {
  color: #534891;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
footer .print-footer {
  display: none;
}
@media (max-width: 1023px) {
  footer > div {
    flex-direction: column;
  }
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

main.error-page {
  display: flex;
  width: 75%;
  height: 100%;
  padding: 0;
  max-width: 920px;
  margin: auto;
}
main.error-page div.error-left {
  flex: auto;
  margin: auto;
  padding-right: var(--spacer-1-5);
}
main.error-page div.error-left p {
  font-family: "Roboto Slab", Helvetica, sans-serif;
}
main.error-page div.error-left h1 {
  margin-top: 0;
}
main.error-page img.error-image {
  flex: auto;
  width: 185px;
  max-width: 185px;
}

.dropdown-list {
  padding: 0;
}

.dropdown-header {
  list-style: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: var(--spacer-1);
}

.dropdown-item {
  color: #1B1B1B;
  list-style: none;
  padding-left: var(--spacer-1);
  padding-top: var(--spacer-half);
  padding-bottom: var(--spacer-half);
}
.dropdown-item:hover {
  color: #534891;
}

.dropdown-link {
  text-decoration: none;
  color: #1B1B1B;
  font-size: 1em;
}

.dropdown-content {
  background-color: #F3F3F3;
  width: 20%;
  border-radius: 10px;
  padding-top: var(--spacer-1);
  padding-bottom: var(--spacer-1);
}

.dropdown-button {
  background: none;
  text-align: left;
}

.dropdown-part-button {
  color: #F2E4D4;
  border: none;
  background: none;
  font-size: 1em;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

ul.table-of-contents {
  display: block;
  margin-left: 0;
  padding-left: 0;
  max-width: var(--text-max-width);
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}
ul.table-of-contents h3 {
  margin: 1em 0 1em 0 !important;
  margin-bottom: var(--spacer-2) !important;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}
ul.table-of-contents li {
  list-style: none;
  color: #5B616B;
  margin: var(--spacer-3) 0;
}
ul.table-of-contents li .subpart-name {
  font-weight: normal;
}
ul.table-of-contents ul {
  display: block;
  margin-left: 0;
  padding-left: 0;
}
ul.table-of-contents ul li {
  margin: 0 0 var(--spacer-1) var(--spacer-2);
}
ul.table-of-contents ul li p {
  margin-top: var(--spacer-1-5);
  margin-bottom: var(--spacer-half);
}
ul.table-of-contents a {
  text-decoration: none;
}
ul.table-of-contents .menu-section {
  text-decoration: none;
  font-size: var(--font-size-md);
}
ul.table-of-contents .toc-section-number {
  font-weight: bold;
  min-width: 70px;
}
ul.table-of-contents .toc-section-name {
  flex: 1;
  margin-left: var(--spacer-2);
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

main.get-account-access h1 {
  margin-bottom: var(--spacer-2);
}
main.get-account-access aside.login-invite {
  margin-top: var(--spacer-2);
  margin-bottom: var(--spacer-2);
  font-size: var(--font-size-sm);
}
main.get-account-access section.access-list {
  margin-top: var(--spacer-2);
}

main.about,
main.get-account-access {
  display: block;
  margin: var(--spacer-3) auto var(--spacer-7);
  max-width: var(--text-max-width);
}
main.about section,
main.get-account-access section {
  margin-top: var(--spacer-5);
  clear: both;
}
main.about .ds-l-container,
main.get-account-access .ds-l-container {
  padding: 0;
}
main.about .ds-l-container img,
main.get-account-access .ds-l-container img {
  margin-top: var(--spacer-2);
}
main.about h2,
main.get-account-access h2 {
  /*color: $secondary_text_color;*/
}
main.about h3,
main.get-account-access h3 {
  margin: 1em 0 1em 0 !important;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}
main.about ul,
main.get-account-access ul {
  padding-left: 40px;
}
main.about .ecfr-graphic,
main.get-account-access .ecfr-graphic {
  border: 1px solid #DCDCDC;
}
main.about .subtitle,
main.get-account-access .subtitle {
  font-weight: 600;
}
main.about .note,
main.get-account-access .note {
  font-style: italic;
}
main.about :target::before,
main.get-account-access :target::before {
  margin-top: 0;
  height: auto;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

main.login {
  display: block;
  margin: var(--spacer-3) auto var(--spacer-7);
  max-width: var(--text-max-width);
  max-height: 100%;
}
main.login button.action-btn.default-btn {
  margin-top: 16px;
  color: #fff;
  font-weight: bold;
}
main.login h2 {
  color: #782312;
}
main.login h3 {
  margin: 1em 0 1em 0 !important;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}
main.login ul {
  padding-left: 40px;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.text-btn {
  border: none;
  background: none;
  padding: 0;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}

.action-btn {
  font-family: "Roboto Slab", Helvetica, sans-serif;
  font-size: var(--font-size-sm);
  line-height: 18px;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  padding: 10px 12px 12px;
  cursor: pointer;
  text-transform: capitalize;
  border: 1px;
  border-style: solid;
}

.default-btn {
  display: flex;
  color: #fff;
  background-color: #534891;
}
.default-btn:hover, .default-btn:focus, .default-btn:focus:visited {
  background-color: #534891;
}

.selected-btn {
  display: flex;
  background: none;
  color: #2a7a3b;
  border-color: #2a7a3b;
}
.selected-btn > svg {
  padding-right: 5px;
  box-sizing: content-box;
}
.selected-btn path {
  stroke: #2a7a3b;
  fill: #2a7a3b;
}

.loading-icon {
  padding-right: 5px;
}

.component-container {
  position: relative;
}

.trigger-btn,
.link-btn {
  color: #534891;
  cursor: pointer;
  line-height: 1.2;
}
.trigger-btn:focus,
.link-btn:focus {
  color: #534891;
}
.trigger-btn:hover,
.link-btn:hover {
  color: #534891;
}

.tooltip {
  cursor: default;
  background: #f6efe9;
  border: 1px solid #DCDCDC;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
  z-index: 3;
  position: absolute;
  box-sizing: content-box;
}
.tooltip p {
  color: #5B616B;
  padding: 0;
}
.tooltip.hovered {
  padding: 0 15px;
}
.tooltip.hovered .hover-msg {
  font-family: "Roboto Slab", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}
.tooltip.clicked {
  width: 265px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tooltip.clicked .close-btn { /* this is for things like the close button on the regulation history box */
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
}
.tooltip.clicked .close-btn path {
  stroke: #07648D;
  fill: #07648D;
}
.tooltip.clicked .close-btn:hover path {
  stroke: #534891;
  fill: #534891;
}
.tooltip.clicked .tooltip-title {
  font-family: "Lora", Georgia, serif;
  font-size: var(--font-size-md);
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 18px 0 !important;
}

.default-tooltip-caret::after, .tooltip-caret-top-left::after, .tooltip-caret-top::after, .tooltip-caret-left::after, .tooltip-caret::after {
  border-right: solid 5px transparent;
  border-left: solid 5px transparent;
  border-top: solid 5px #DCDCDC;
  transform: translateX(-50%);
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 50%;
  height: 0;
  width: 0;
}

.tooltip-caret-left::after {
  left: 20%;
}

.tooltip-caret-top::after {
  top: unset;
  bottom: 100%;
  border-top: unset;
  border-bottom: solid 5px #DCDCDC;
}

.tooltip-caret-top-left::after {
  top: unset;
  bottom: 100%;
  left: 20%;
  border-top: unset;
  border-bottom: solid 5px #DCDCDC;
}

.reg-text .trigger-btn-container.copy-btn-container {
  height: 1.2em;
  margin-left: -1.5em;
  position: absolute;
}
.reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked {
  width: calc(80% - var(--spacer-1) - var(--spacer-1) - 32px - 40px);
}
@media (min-width: 544px) {
  .reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked {
    width: calc(100% - var(--spacer-1) - var(--spacer-1));
    max-width: 435px;
  }
}
.reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked .gov-info-links .no-results {
  font-size: 14px;
  padding-bottom: 20px;
}
.reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked .gov-info-links .loading-spinner {
  padding-bottom: 20px;
}
.reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked .gov-info-links .links-container {
  height: 280px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 10px 10px 0;
  box-sizing: content-box;
}
@media (min-width: 544px) {
  .reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked .gov-info-links .links-container {
    height: 180px;
  }
}
.reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked .gov-info-links .links-container a {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 20px;
  width: 50px;
}
@media (min-width: 420px) {
  .reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked .gov-info-links .links-container a {
    width: 60px;
  }
}
.reg-text .trigger-btn-container.reg-history-link-container .tooltip.clicked .gov-info-source {
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 20px;
  color: #5B616B;
}
.reg-text .trigger-btn-container .trigger-btn {
  display: flex;
  align-items: end;
}
.reg-text .trigger-btn-container .trigger-btn.trigger-btn-link {
  display: inline-block;
  text-decoration: underline;
}
.reg-text .trigger-btn-container .trigger-btn.reg-history-link {
  font-size: var(--font-size-sm);
  font-weight: 600;
}
.reg-text .trigger-btn-container .trigger-btn.copy-btn {
  opacity: 0;
}
.reg-text .trigger-btn-container .trigger-btn.copy-btn:focus {
  opacity: 1;
}
.reg-text h1 > .trigger-btn-container.copy-btn-container,
.reg-text h2 > .trigger-btn-container.copy-btn-container {
  margin-left: -1.2em;
}
@media (min-width: 1440px) {
  .reg-text h1 > .trigger-btn-container.copy-btn-container,
  .reg-text h2 > .trigger-btn-container.copy-btn-container {
    margin-left: -1.4em;
  }
}
.reg-text :hover > .trigger-btn-container.copy-btn-container .trigger-btn {
  opacity: 1;
}

aside.right-sidebar .trigger-btn-container {
  position: relative;
}
aside.right-sidebar .trigger-btn-container .trigger-btn-labeled {
  display: flex;
  align-items: center;
  height: 30px;
}
aside.right-sidebar .trigger-btn-container .trigger-btn-labeled i {
  min-width: 16px;
}
aside.right-sidebar .trigger-btn-container .trigger-btn-labeled span {
  padding: 0 10px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
}
aside.right-sidebar hr,
aside.right-sidebar .authed__container + hr {
  height: 1px;
  background: #F3F3F3;
  border: none;
  margin: 15px 0;
}

.action-btns {
  display: flex;
  margin-bottom: 8px;
}
.action-btns .action-btn:first-child {
  margin-right: 15px;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

form .jump-to-input {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
form .jump-to-input .section-symbol {
  margin-right: 4px;
  font-size: 15px;
  font-weight: 600;
}
form .jump-to-input .dot {
  font-size: var(--font-size-2xl);
  line-height: 1;
  padding: 0 4px;
}
form .jump-to-input select {
  background-image: url("../images/arrow-both.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 8px);
  background-position-y: 50%;
}
form .jump-to-input select:disabled {
  background-position-x: calc(100% - 7px);
}
form .jump-to-input input,
form .jump-to-input select {
  background-color: #fff;
  height: 2rem;
}
form .jump-to-input input.submit {
  display: inline-block;
  line-height: 1;
  padding: var(--spacer-half) var(--spacer-1);
  border-radius: var(--radius-default);
  cursor: not-allowed;
}
form .jump-to-input input.submit:hover, form .jump-to-input input.submit:focus {
  transition: all 0.1s ease-in;
}
form .jump-to-input input.submit.active {
  cursor: pointer;
  background-color: #F2E4D4;
}
form .jump-to-input input.submit.active:hover, form .jump-to-input input.submit.active:focus {
  background-color: #D5BB9D;
  border: 1px solid #D5BB9D;
}
form .jump-to-input input.submit.active:disabled {
  background-color: #FFEAEA;
}
form .jump-to-input label {
  font-weight: 600;
  font-size: var(--font-size-lg);
}
form .jump-to-input select#jumpToTitle,
form .jump-to-input select#jumpToPart,
form .jump-to-input select#jumpToSection,
form .jump-to-input input#jumpToSection,
form .jump-to-input input#jumpBtn {
  color: #1B1B1B;
  font-size: var(--font-size-md);
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 5px 8px;
}
form .jump-to-input select#jumpToTitle:disabled,
form .jump-to-input select#jumpToPart:disabled,
form .jump-to-input select#jumpToSection:disabled,
form .jump-to-input input#jumpToSection:disabled,
form .jump-to-input input#jumpBtn:disabled {
  background-color: #FFEAEA;
}
form .jump-to-input select#jumpToTitle {
  width: 85px;
  margin-right: 4px;
}
form .jump-to-input select#jumpToPart {
  width: 80px;
}
@media (max-width: 1023px) {
  form .jump-to-input select#jumpToPart {
    width: 70px;
  }
}
@media (max-width: 779px) {
  form .jump-to-input select#jumpToPart {
    width: 65px;
  }
}
form .jump-to-input input#jumpToSection {
  margin-right: 4px;
  width: 65px;
}
@media (max-width: 779px) {
  form .jump-to-input input#jumpToSection {
    width: 60px;
  }
}
@media (max-width: 779px) {
  form .jump-to-input input#jumpToSection {
    width: 45px;
  }
}
form .jump-to-input input#jumpBtn {
  color: #1B1B1B;
  background-color: #F2E4D4;
  width: 40px;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.related-rule.ungrouped {
  padding-top: 26px;
}
.related-rule.grouped {
  display: block;
  position: relative;
  margin-top: -4px;
  padding-left: 24px;
}
.related-rule.grouped::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 20px;
  border: solid #DCDCDC;
  border-width: 0 0 1px 1px;
}

.related-rule-type {
  border-radius: 3px;
}

.related-rule-header {
  margin-bottom: var(--spacer-1);
  font-size: var(--font-size-sm);
}
@media (min-width: 1440px) {
  .related-rule-header {
    font-size: var(--font-size-md);
  }
}

.related-rule-date {
  color: #07648D;
  font-weight: bold;
  padding-right: var(--spacer-1);
  margin-right: var(--spacer-1);
  border-right: 1px solid #1B1B1B;
}

.related-rule-citation {
  color: #07648D;
  font-weight: bold;
}

.related-rule-title {
  text-decoration: none;
  font-size: var(--font-size-sm);
}
.related-rule-title:link .link-heading::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
.related-rule-title:hover .link-heading::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}

.related-rule-list div:first-of-type {
  padding: 0;
}

.rules-with-preamble {
  max-height: 1000em;
}
.rules-with-preamble .related-rule-list .related-rule {
  margin-bottom: var(--spacer-3);
}

.recent-change {
  padding: var(--spacer-2) 0 0;
  font-size: var(--font-size-sm);
}
.recent-change a {
  text-decoration: none;
}
.recent-change .recent-date {
  font-weight: bold;
}
.recent-change .recent-fr-citation {
  font-weight: bold;
}
.recent-change .recent-fr-citation.grouped {
  font-weight: normal;
}
.recent-change .recent-title {
  margin-top: 0.2em;
}

.supplemental-content {
  margin-bottom: 1em;
}
.supplemental-content .supplemental-content-link {
  text-decoration: none;
}
.supplemental-content .supplemental-content-date {
  color: #07648D;
  font-weight: bold;
  padding-right: var(--spacer-1);
  margin-right: var(--spacer-1);
  font-size: var(--font-size-sm);
}
.supplemental-content .result__context--division {
  text-transform: none;
  color: #07648D;
  font-size: var(--font-size-sm);
  font-weight: bold;
}
.supplemental-content .result__context--division--bar {
  padding-left: 0;
  border-left: none;
}
.supplemental-content .supplemental-content-mid-bar {
  border-right: 1px solid #5B616B;
}
.supplemental-content .supplemental-content-title {
  color: #07648D;
  font-weight: bold;
  font-size: var(--font-size-sm);
}
.supplemental-content .supplemental-content-description {
  color: #07648D;
  text-decoration: none;
  font-size: var(--font-size-sm);
}
.supplemental-content .supplemental-content-external-link:after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}

.internal-docs__container .supplemental-content-description > span:has(.result__link--file-type) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.supplemental-content-container .supplemental-content-category .collapse-content:not(.show-more-content),
.internal-docs__container .supplemental-content-category .collapse-content:not(.show-more-content) {
  margin-left: 10px;
  margin-right: 20px;
}

.supplemental-content-container .supplemental-content-category .collapse-content.additional-rules {
  margin: inherit;
}

.supplemental-content-category {
  display: table;
  width: 100%;
  color: #1B1B1B;
}
.supplemental-content-category .category {
  display: table-cell;
}
.supplemental-content-category .category-description {
  font-size: var(--font-size-sm);
  font-weight: normal;
  padding-right: var(--spacer-4);
}
.supplemental-content-category .category-toggle-container {
  display: table-cell;
}
.supplemental-content-category .collapse-content {
  margin-top: 1em;
}

.collapse-content.additional-rules .related-rule:first-child {
  padding: 0;
}
.collapse-content .supplemental-content-category:not(:last-child) {
  margin-bottom: 1em;
  border-bottom: 1px solid #DCDCDC;
}

/* LLM code */
.go-back-button {
  display: none;
}
@media (max-width: 767px) {
  .go-back-button {
    display: block;
  }
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.doc-type__toggle fieldset {
  margin-top: 0;
}
.doc-type__toggle fieldset.ds-c-fieldset {
  display: flex;
  gap: 8px;
}
.doc-type__toggle fieldset .ds-c-choice-wrapper {
  padding: 8px;
  margin-top: 0;
  border: 1px solid #5B616B;
  border-radius: 4px;
}
.doc-type__toggle fieldset .ds-c-choice-wrapper .ds-c-choice--small + label::before {
  top: 1px;
}
.doc-type__toggle fieldset .ds-c-choice-wrapper .ds-c-choice--small + label::after {
  top: 7px;
}
.doc-type__toggle fieldset .ds-c-choice-wrapper .ds-c-choice:checked + label::before {
  background-color: #534891;
  border-color: #534891;
}
.doc-type__toggle fieldset .ds-c-choice-wrapper input {
  margin-top: 1px;
}
.doc-type__toggle fieldset .ds-c-choice-wrapper .ds-c-label {
  font-family: "Roboto Slab", Helvetica, sans-serif;
}
.doc-type__toggle fieldset .ds-c-choice-wrapper label {
  display: flex;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}
.doc-type__toggle fieldset .ds-c-choice-wrapper label .count__span {
  min-width: var(--spacer-2);
  padding-left: var(--spacer-1);
  display: flex;
  justify-content: end;
}
@media (max-width: 780px) {
  .doc-type__toggle fieldset .ds-c-choice-wrapper label .count__span {
    min-width: var(--spacer-4);
  }
}

.filter__select--category, .filter__select--subjects {
  width: 214px;
}
.filter__select--category.v-input, .filter__select--subjects.v-input {
  flex: unset;
}
.filter__select--subjects {
  height: 30px !important;
  padding: 0 0 0 var(--spacer-half);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  border: 1px solid #DCDCDC;
}
.filter__select--subjects:focus-visible {
  outline: none;
}
.filter__select--subjects .v-btn__content {
  justify-content: start;
  letter-spacing: 0;
  text-transform: none;
}
.filter__select--subjects .v-btn__content .subjects-select__label--selected {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filter__select--subjects .v-btn__content .subjects-select__clear {
  opacity: 0.6;
  position: absolute;
  right: 30px;
}
.filter__select--subjects .v-btn__append {
  margin: 0 -2px 0 0;
}
.filter__select--subjects .v-btn__append > .v-icon.subjects-select__append-icon {
  min-width: 18px;
  font-size: 30px;
  opacity: 1;
  transition: none;
}
.filter__select--subjects .v-btn__overlay {
  opacity: 0 !important;
}
.filter__select--subjects::after {
  box-sizing: border-box;
  border: 2px solid #5B616B !important;
}
.filter__select--subjects[aria-expanded=true]::after, .filter__select--subjects:focus-visible::after {
  opacity: 1;
}
.filter__select .v-input__control .v-field--appended {
  padding-inline-end: var(--spacer-half);
}
.filter__select .v-input__control .v-field.v-field--variant-outlined.v-field--focused:not(.v-field--dirty) .v-label.v-field-label {
  visibility: visible;
}
.filter__select .v-input__control .v-field.v-field--variant-outlined.v-field--focused .v-field__outline > * {
  border-color: #5B616B;
}
.filter__select .v-input__control .v-field .v-field--focused .v-field__outline > * {
  border-color: #5B616B;
}
.filter__select .v-input__control .v-field .v-field__outline > * {
  border-color: #DCDCDC;
  opacity: 1;
}
.filter__select .v-input__control .v-field .v-field__outline > .v-field__outline__start {
  border-right: none;
}
.filter__select .v-input__control .v-field .v-field__outline > .v-field__outline__end {
  border-left: none;
}
.filter__select .v-input__control .v-field .v-field__field label {
  color: #1B1B1B;
  opacity: 1;
}
.filter__select .v-input__control .v-field .v-field__field .v-field__input {
  padding-inline: 4px;
  min-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.filter__select .v-input__control .v-field .v-field__field .v-select__selection-text,
.filter__select .v-input__control .v-field .v-field__field .v-field-label {
  font-size: 14px;
  line-height: 22px;
  margin-left: 4px;
}
.filter__select .v-input__control .v-field .v-field__field .v-field--variant-outlined.v-field--focused .v-field__outline,
.filter__select .v-input__control .v-field .v-field__field .v-field-outline {
  --v-field-border-width: 1px;
  color: #DCDCDC;
  --v-field-border-opacity: 1;
}
.filter__select .v-input__control .v-field__clearable,
.filter__select .v-input__control .v-field__append-inner {
  height: 30px;
}
.filter__select .v-input__control .v-field__append-inner {
  width: 24px;
}
.filter__select .v-input__control .v-field__append-inner > .v-icon.v-select__menu-icon {
  min-width: 18px;
  font-size: 30px;
  opacity: 1;
  transition: none;
}

.v-overlay-container .v-menu > .v-overlay__content {
  margin-top: 8px;
  box-shadow: unset;
  max-width: 300px !important;
}
.v-overlay-container .v-menu > .v-overlay__content > .v-list {
  margin-top: 8px;
  border: 1px solid #DCDCDC;
  box-shadow: unset;
  overflow-x: hidden;
}
.v-overlay-container .v-list-item {
  min-height: unset;
  padding: 0;
}
.v-overlay-container .v-list-item::after {
  opacity: 0;
}
.v-overlay-container .v-list-item:focus-visible {
  outline: 1px solid var(--color-focus-dark);
}
.v-overlay-container .v-list-item:hover > .v-list-item__overlay, .v-overlay-container .v-list-item:focus-visible > .v-list-item__overlay, .v-overlay-container .v-list-item.v-list-item--active > .v-list-item__overlay {
  opacity: 0;
}
.v-overlay-container .v-list-item:hover .v-list-item-title, .v-overlay-container .v-list-item:focus-visible .v-list-item-title, .v-overlay-container .v-list-item.v-list-item--active .v-list-item-title {
  font-weight: 700;
}
.v-overlay-container .v-list-item__content:has(.doc-type__label) {
  display: flex;
  flex-direction: column-reverse;
}
.v-overlay-container .v-list-item-title {
  font-size: 14px;
  line-height: 22px;
  padding: 4px 0;
  white-space: normal;
}
.v-overlay-container .doc-type__label {
  cursor: default;
  margin-top: 4px;
  margin-bottom: 4px;
}
.v-overlay-container .doc-type__label--internal {
  margin-top: 12px;
}

#subjectsApp.repository-view {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
#subjectsApp.repository-view.ds-l-container {
  padding-top: 1.5rem;
  margin: 0;
  max-width: 100%;
}
#subjectsApp.repository-view h3 {
  margin: 0;
  line-height: 24px;
}
#subjectsApp.repository-view .sidebar__container {
  position: relative;
  display: flex;
  border-right: 2px solid #DCDCDC;
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 767px) {
  #subjectsApp.repository-view .sidebar__container {
    border-right: none;
    border-bottom: 2px solid #DCDCDC;
    padding-bottom: var(--spacer-2);
    padding-right: 0px;
  }
}
@media (max-width: 543px) {
  #subjectsApp.repository-view .sidebar__container {
    padding-left: var(--spacer-2);
    padding-right: var(--spacer-2);
  }
}
#subjectsApp.repository-view .sidebar__container h2 {
  margin: 0 0 1rem !important;
  font-family: "Roboto Slab", Helvetica, sans-serif;
}
#subjectsApp.repository-view .sidebar__container .sidebar-toggle__button {
  position: absolute;
  top: 0;
  right: 16px;
  display: none;
}
@media (min-width: 768px) {
  #subjectsApp.repository-view .sidebar__container .sidebar-toggle__button {
    display: none;
  }
}
@media (max-width: 1023px) {
  #subjectsApp.repository-view .sidebar__container .sidebar-filters__container--hidden {
    display: none;
  }
}
#subjectsApp.repository-view .sidebar__filters {
  flex: 1;
  width: 100%;
  padding-right: var(--spacer-2);
}
@media (min-width: 768px) {
  #subjectsApp.repository-view .sidebar__filters {
    position: sticky;
    top: calc(104px + var(--spacer-3));
    height: calc(100vh - 104px - var(--spacer-3));
    overflow-y: auto;
  }
}
#subjectsApp.repository-view .sidebar__filters .selections__container .selections__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 var(--spacer-1-5);
  padding-left: 0;
}
#subjectsApp.repository-view .sidebar__filters .selections__container .selections__list .selections__li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 4px;
  padding: 4px 8px;
  background: #DCDAEA;
  color: #1B1B1B;
}
#subjectsApp.repository-view .sidebar__filters .selections__container .selections__list .selections__li--label {
  display: flex;
  flex: 1;
  flex-direction: column;
}
#subjectsApp.repository-view .sidebar__filters .selections__container .selections__list .selections__li--label .count {
  /*color: $secondary_text_color;*/
  font-size: 12px;
  font-weight: 400;
}
#subjectsApp.repository-view .sidebar__filters .selections__container .selections__list .selections__li button {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #534891;
  border-radius: 4px;
}
#subjectsApp.repository-view .sidebar__filters .selections__container .selections__list .selections__li button:hover, #subjectsApp.repository-view .sidebar__filters .selections__container .selections__list .selections__li button:focus, #subjectsApp.repository-view .sidebar__filters .selections__container .selections__list .selections__li button:active {
  background-color: #534891;
  color: #fff;
}
#subjectsApp.repository-view .sidebar__filters .selections__container .selections__list .selections__li button i {
  pointer-events: none;
}
#subjectsApp.repository-view .loading__span {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  #subjectsApp.repository-view .subj-landing__container {
    padding-left: 16px;
  }
}
@media (max-width: 767px) {
  #subjectsApp.repository-view .subj-landing__container {
    padding-top: var(--spacer-2);
  }
}
#subjectsApp.repository-view .subj-landing__container > * {
  padding-bottom: var(--spacer-2);
}
#subjectsApp.repository-view .subj-landing__container h1 {
  font-size: 2.25rem;
  margin-bottom: 0px;
}
#subjectsApp.repository-view .subj-landing__container p {
  /*padding-bottom: 0px;*/
}
#subjectsApp.repository-view .subj-landing__container ul {
  list-style: none;
  padding-left: 0.3em;
  margin-left: 0.3em;
}
#subjectsApp.repository-view .subj-landing__container ul a {
  text-decoration: none;
}
#subjectsApp.repository-view .subj-landing__container ul li {
  font-weight: 500;
  list-style-type: none;
  margin: 0 0 4px 0;
}
#subjectsApp.repository-view .subj-landing__container ul li .fa {
  margin-right: 0.4em;
  color: #767676;
}
#subjectsApp.repository-view .subject__heading {
  padding: 0 1rem 1rem;
}
#subjectsApp.repository-view .subject__heading h1 {
  display: flex;
  gap: 0.5ch;
  flex-wrap: wrap;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 400;
  padding: 0.375rem 0;
  margin: 0;
}
#subjectsApp.repository-view .subject__heading h1 .subj-heading__span--border {
  padding-right: 0.5ch;
  border-right: 2px solid #DCDCDC;
}
#subjectsApp.repository-view .subject__heading h1 .subj-heading__span--bold {
  font-weight: 700;
}
#subjectsApp.repository-view .subject__filters--row {
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
@media (max-width: 475px) {
  #subjectsApp.repository-view .subject__filters--row .doc-type__toggle fieldset {
    flex-wrap: wrap;
  }
}
@media (max-width: 475px) {
  #subjectsApp.repository-view .subject__filters--row .ds-c-choice-wrapper label {
    display: flex;
    justify-content: space-between;
  }
}
#subjectsApp.repository-view .subject__search--row {
  padding: 0 var(--spacer-2);
  margin-bottom: var(--spacer-2);
}
#subjectsApp.repository-view .subject__search--row .search-field {
  width: 320px;
}
#subjectsApp.repository-view .doc__list h2 {
  padding: 0 1rem;
  margin: 0 0 0.75rem !important;
}
#subjectsApp.repository-view .doc__list .search-results-count {
  padding: 0 1rem;
  margin-bottom: 2rem;
}
#subjectsApp.repository-view .doc__list .search-results-count .search-query__span {
  font-weight: 700;
}
#subjectsApp.repository-view .doc__list .doc-list__document {
  padding: 0 1rem;
  position: relative;
}
#subjectsApp.repository-view .doc__list .doc-list__document a.edit-button {
  position: absolute;
  top: 0;
  right: 16px;
  text-decoration: none;
}
#subjectsApp.repository-view .doc__list .doc-list__document .document__info-block {
  margin-bottom: 0.75rem;
}
#subjectsApp.repository-view .doc__list .doc-list__document .document__link {
  text-decoration: none;
}
#subjectsApp.repository-view .doc__list .doc-list__document .document__link.external {
  display: block;
}
#subjectsApp.repository-view .doc__list .doc-list__document .document__link--search {
  font-weight: 400;
}
#subjectsApp.repository-view .doc__list .doc-list__document .document__link--view {
  font-size: var(--font-size-sm);
}

.doc__list .error-msg__container {
  padding: 0 1rem;
}

.document__subjects {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.document__subjects .subject__chip {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 16px;
  height: 32px;
  padding: 0 12px;
  background: #DCDAEA;
  color: #1B1B1B;
  text-decoration: none;
  font-size: 11px;
  line-height: 18px;
  height: unset;
  padding: 2px 8px;
}
.document__subjects .subject__chip:hover, .document__subjects .subject__chip:focus { /* active state for subject chips */
  color: #fff;
  background-color: #534891;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.nav-container {
  overflow: auto;
  background: #fff;
  padding: 0 var(--spacer-5);
}
@media (min-width: 1280px) {
  .nav-container {
    padding: 0 var(--spacer-4);
  }
}
.nav-container .content {
  margin: 0 auto;
  max-width: var(--text-max-width);
}
.nav-container .content h1 {
  margin-top: 45px;
  margin-bottom: 15px;
}
.nav-container .content p:last-of-type {
  margin-bottom: 30px !important;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

.sidebar-filters__container .sidebar__li,
.sidebar-filters__container .selections__li {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: var(--spacer-1);
  margin-bottom: 0;
}
.sidebar-filters__container .sidebar__li .subtitle,
.sidebar-filters__container .selections__li .subtitle {
  display: block;
}
.sidebar-filters__container .selections__li .subjects-li__button-text--sidebar {
  color: #1B1B1B;
}
.sidebar-filters__container .sidebar__li {
  border-bottom: 1px solid #DCDCDC;
}

.subjects__select-container {
  margin-top: var(--spacer-2);
}
.subjects__select-container .subjects__list-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .subjects__select-container .subjects__list-container {
    min-height: 500px;
  }
}
.subjects__select-container .subjects__list-container .subjects__input--sidebar {
  background-color: #fff;
  position: sticky;
  top: 0px;
}
.subjects__select-container .subjects__list-container .subjects__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.subjects__select-container .subjects__list-container form {
  display: flex;
  flex-direction: column;
  position: relative;
}
.subjects__select-container .subjects__list-container form input#subjectReduce {
  border: 2px solid #DCDCDC;
  border-radius: 4px;
  flex: 1;
  height: 1.5rem;
  margin: 0 0 12px 0;
  padding: 4px 24px 4px 4px;
  line-height: 1.2;
  box-sizing: content-box !important;
}
.subjects__select-container .subjects__list-container form input#subjectReduce:focus, .subjects__select-container .subjects__list-container form input#subjectReduce:focus-visible, .subjects__select-container .subjects__list-container form input#subjectReduce:focus-within, .subjects__select-container .subjects__list-container form input#subjectReduce:active {
  outline: none !important;
  border: 2px solid #782312 !important;
}
.subjects__select-container .subjects__list-container form .subjects__filter-reset {
  top: calc(50% - 1rem);
  right: -3px;
  transform: translate(-50%);
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #534891;
  border-radius: 4px;
}
.subjects__select-container .subjects__list-container form .subjects__filter-reset:hover, .subjects__select-container .subjects__list-container form .subjects__filter-reset:focus, .subjects__select-container .subjects__list-container form .subjects__filter-reset:active {
  background-color: #534891;
  color: #fff;
}
.subjects__select-container .subjects__list-container form .subjects__filter-reset i {
  pointer-events: none;
}
.subjects__select-container .subjects__list-container form .subjects__filter-reset--hidden {
  display: none;
}
.subjects__select-container .subjects-li__button-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.subjects__select-container .subjects-li__button-text--sidebar {
  font-weight: 700;
  color: #07648D;
}
.subjects__select-container ul.subjects__list {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .subjects__select-container ul.subjects__list {
    max-height: 180px;
    overflow-y: auto;
  }
}
.subjects__select-container ul.subjects__list .subjects__li:last-child {
  margin-bottom: 0;
}
.subjects__select-container ul.subjects__list .subjects__li .subjects-li__button {
  text-align: left;
  color: #1B1B1B;
  width: 100%;
}
.subjects__select-container ul.subjects__list .subjects__li .subjects-li__button--selected {
  pointer-events: none;
  font-weight: 700;
  color: #fff;
}
.subjects__select-container ul.subjects__list .subjects__li .subjects-li__button .subjects-li__button-subtitle {
  color: #07648D;
}
.subjects__select-container ul.subjects__list .subjects__li .subjects-li__button .match__container {
  font-weight: 700;
}
.subjects__select-container ul.subjects__list .subjects__li .subjects-li__button .match__container .match {
  font-weight: 400;
}
.subjects__select-container ul.subjects__list .subjects__li .subjects-li__button .count {
  font-size: 12px;
  color: #5B616B;
  margin-left: var(--spacer-half);
  font-weight: 400;
}

.subjects__select-container {
  margin-top: var(--spacer-2);
}
.subjects__select-container--menu {
  border: 2px solid #DCDCDC;
  border-radius: 4px;
  border-width: 1px;
  margin-top: var(--spacer-1);
}
.subjects__select-container--menu .subjects__list-container {
  border: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  padding: var(--spacer-1);
  min-height: unset;
  max-height: calc(300px - 2 * var(--spacer-1));
}
.subjects__select-container--menu .subjects__list-container form input#subjectReduce {
  font-size: var(--font-size-sm);
  margin: 0 0 var(--spacer-2) 0;
  padding-right: var(--spacer-1);
}
.subjects__select-container--menu .subjects__list-container form input#subjectReduce::placeholder {
  text-align: center;
}
.subjects__select-container--menu .subjects__list-container form button.subjects__filter-reset {
  top: calc(50% - 1.125rem);
}
.subjects__select-container--menu .subjects__list-container .subjects__list {
  height: 300px;
  overflow-y: auto;
}
.subjects__select-container--menu .subjects__list-container .subjects__list .subjects__li {
  font-size: var(--font-size-sm);
  line-height: 22px;
  margin-bottom: var(--spacer-1);
}
.subjects__select-container--menu .subjects__list-container .subjects__list .subjects__li .subjects-li__button {
  display: flex;
  justify-content: space-between;
  line-height: 22px;
}
.subjects__select-container--menu .subjects__list-container .subjects__list .subjects__li .subjects-li__button:hover, .subjects__select-container--menu .subjects__list-container .subjects__list .subjects__li .subjects-li__button:focus, .subjects__select-container--menu .subjects__list-container .subjects__list .subjects__li .subjects-li__button:active {
  cursor: pointer;
  font-weight: 700;
}
.subjects__select-container--menu .subjects__list-container .subjects__list .subjects__li .subjects-li__button:focus-visible {
  outline: 1px solid var(--color-focus-dark);
  outline-offset: -1px;
}
.subjects__select-container--menu .subjects__list-container .subjects__list .subjects__li .subjects-li__button .count {
  font-size: unset;
  font-weight: unset;
  color: unset;
}

:root {
  font-size: 16px;
  --eds-width-xs: 320px;
  --eds-width-sm: 780px;
  --eds-width-md: 1024px;
  --eds-width-lg: 1200px;
  --cms-ds-width-sm: 544px;
  --spacer-1-5: 0.75rem;
  --line-height-sm: 1.375rem;
  --text-max-width: 53rem;
  --text-input__border-width: 1px;
  --text-input__border-width--disabled: 1px;
  --color-focus-dark: #222660;
}

#djDebug #djShowToolBarButton {
  opacity: 1 !important;
}

input,
select {
  box-sizing: border-box !important;
}

label {
  margin-block-start: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2,
h5,
h6,
p {
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}

h2 {
  margin: 0.83em 0 0.83em 0 !important;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  margin: 1.67em 0 1.67em 0 !important;
}

ul,
ol {
  gap: 0;
}

.v-application {
  font-family: Lora, Helvetica, sans-serif;
}
.v-application .v-application__wrap {
  min-height: unset;
}
.v-application ul,
.v-application ol {
  padding-left: 24px;
}

/* ------ DELETE AFTER FINISHING WITH COLORS --------
// Base Colors 
$teal: #026666;
$teal_blue: #245c68;
$darkest_blue: #102e43;
$dark_blue: #17415f;
$mid_dark_blue: #205982;
$mid_blue: #046791;
$mid_blue_2: #254c68;
$light_blue: #a3e8ff;
$light_blue_2: #ccf2ff;
$lighter_blue: #ddf5fd;
$lightest_blue: #eefafe;
$pale_blue: #c5def0;

$dark_gray: #212121;
$mid_gray: #5b616b;
$mid_gray_2: #c4c4c4;
$mid_gray_3: #767676;
$light_gray: #d6d7d9;
$lighter_gray: #f0f0f0;
$lightest_gray: #f3f3f3;

$magenta: #862074;

$white: #fff;

$green: #2a7a3b;

$title_color: #000;
$section_highlight_color: #eefafe;
$mark_highlight: #fce5af;
------------------------------------------------*/
/*top nav; logged-in menu background. updated 3/18/25. */
/* brand, certain links */
/*doc slug background for policy repository*/
/*reg borders*/
/*reg slug background & jump button; category labels*/
/*featured background; FR labels */
/*main text link*/
/*side link and button background*/
/*$darkest_purple: #222660; button hover and policy repository slug*/
/*visited link*/
/*button hover and policy repository slug*/
/*subject background*/
/*base text*/
/*public and internal slug*/
/*disabled and placeholder*/
/*side nav top background and disabled button background*/
/*side nav main background*/
/*default background and reverse button background*/
/*$hero_link_color: $white;
$hero_link_hover: $light_red; not used */
/*TO DO: swap this value with secondary everywher*/
.indicator {
  font-weight: 600;
  background: #f6efe9;
  text-transform: uppercase;
  color: #1B1B1B;
  font-size: 11px;
  line-height: var(--font-line-height-base);
  padding: 2px 0;
  border-radius: var(--radius-default);
  margin-right: 7px !important;
  display: inline-block;
  width: 42px;
  text-align: center;
}

.secondary-indicator {
  background: #f6efe9;
  color: #1B1B1B;
}

.tertiary-indicator {
  background: #f6efe9;
  color: #767676;
  border: 1px solid #767676;
  box-sizing: border-box;
  padding: 1px 0;
}

a:link.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:hover.external::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/external-link.svg);
}
a:link.pdf {
  position: relative;
}
a:link.pdf::after {
  width: 0.8em;
  height: 0.8em;
  padding-left: 1px;
  margin-left: 0.1em;
  content: url(../images/PDF-icon.svg);
  position: absolute;
  top: 2px;
  padding-left: 3px;
}

.smooth-scroll {
  scroll-behavior: smooth !important;
}

.main-button {
  background: #534891;
  color: #fff;
  border: none;
  transition: all 0.1s ease-in;
}
.main-button:hover {
  background: #534891;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 6;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 7;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 8;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 9;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 10;
}

a,
.v-application a {
  color: #07648D;
}
a:focus, a:hover,
.v-application a:focus,
.v-application a:hover {
  color: #07648D;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
a.ds-c-skip-nav,
.v-application a.ds-c-skip-nav {
  transition: none;
}

html,
body {
  scroll-behavior: smooth !important;
}
html :focus,
body :focus {
  outline: none;
  background-color: transparent;
}
html :focus-visible,
body :focus-visible {
  outline: 3px solid var(--color-focus-dark);
  outline-offset: 0px;
}

select {
  cursor: pointer;
}
select:focus-visible {
  box-shadow: 0 0 3px #DCDCDC, 0 0 7px #DCDCDC;
}

#main-content:target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  #main-content:target {
    scroll-margin-top: 109px;
  }
}

.content :target {
  scroll-margin-top: 109px;
}
@media (min-width: 780px) {
  .content :target {
    scroll-margin-top: 109px;
  }
}

.content.go-to-version :target {
  scroll-margin-top: 195px;
}
@media (min-width: 780px) {
  .content.go-to-version :target {
    scroll-margin-top: 195px;
  }
}

.login-cta__div {
  background-color: #F3F3F3;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: var(--font-size-sm);
  padding: var(--spacer-half) var(--spacer-1);
}

nav.pagination-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav.pagination-controls a {
  text-decoration: none;
}
nav.pagination-controls .pagination-control {
  min-width: 85px;
}
nav.pagination-controls .left-control .icon {
  margin-left: 0;
}
nav.pagination-controls .right-control {
  display: flex;
  justify-content: end;
}
nav.pagination-controls .right-control .icon {
  margin-right: 0;
}
nav.pagination-controls li {
  list-style: none;
  display: inline-block;
}
nav.pagination-controls li.page-number-li {
  width: 44px;
  text-align: center;
  min-width: 44px;
}
nav.pagination-controls li.page-number-li a {
  text-decoration: none;
}
nav.pagination-controls li.page-number-li a:visited {
  color: #534891;
}
nav.pagination-controls li.page-number-li.selected {
  font-weight: bold;
}
nav.pagination-controls li.ellipses {
  width: 20px;
  text-align: center;
}
nav.pagination-controls .list-container ul.pages {
  padding-left: 0;
}
nav.pagination-controls .desktop-list {
  flex-direction: row;
  margin-block-end: var(--spacer-2);
}
@media (max-width: 779px) {
  nav.pagination-controls .desktop-list {
    display: none;
  }
}
@media (min-width: 780px) {
  nav.pagination-controls .mobile-list {
    display: none;
  }
}
nav.pagination-controls .mobile-list .mobile-page-number {
  font-weight: bold;
}
nav.pagination-controls .direction-btn {
  border: none;
  background: none;
  cursor: pointer;
  color: #534891;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  padding: 12px 0;
}
nav.pagination-controls .direction-btn .label {
  font-weight: 400;
}
nav.pagination-controls .direction-btn .icon {
  margin: 0 10px -2px;
}
nav.pagination-controls .direction-btn.disabled {
  color: #DCDCDC;
  cursor: default;
}
nav.pagination-controls .forward-btn {
  flex-direction: row;
}
nav.pagination-controls .forward-btn .icon {
  margin-right: 0px;
}
nav.pagination-controls .forward-btn .label {
  padding-left: 10px;
}
nav.pagination-controls .back-btn {
  flex-direction: row-reverse;
}
nav.pagination-controls .back-btn .icon {
  margin-left: 0px;
}
nav.pagination-controls .back-btn .label {
  padding-right: 10px;
}

/*
    Most values below were calculated by multiplying value by 0.56,
    which is the ratio of 1440px (the width of the figma comp)
    to 8.5in/816px (the width of the printed page)
*/
@media print {
  @page {
    size: letter; /* 8.5 x 11 in */
    margin: 0.6in 0;
  }
  *:focus {
    background: transparent !important;
  }
  a:link.external::after {
    display: none;
  }
  footer .site-footer,
  footer.toc-footer,
  aside.left-sidebar,
  aside.right-sidebar,
  .banner--container,
  .trigger-btn-container,
  .reg-text .section-info-row,
  .view-resources-link {
    display: none !important;
  }
  header {
    height: 56px;
    min-height: 56px;
    padding: 0 40px;
    border-top: 1px solid #F2E4D4;
    border-bottom: 1px solid #F2E4D4;
  }
  header.sticky {
    position: unset;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
  }
  header .header--sign-in {
    display: none;
  }
  header .flexbox.header-mobile {
    display: none;
  }
}
@media print and (min-width: 375px) {
  header .flexbox.header-large {
    display: flex;
  }
}
@media print {
  header .header--content-container .header--brand {
    width: 140px;
    height: 100%;
    border-right: 1px solid #DCDCDC;
    padding-left: 0px;
    font-size: var(--font-size-sm);
    line-height: 18px;
  }
  header .header--content-container .header--jump-to,
  header .header--content-container .header--links,
  header .header--content-container .header--search,
  header .header--content-container .header__row--second {
    display: none;
  }
  .content #view-and-compare {
    position: unset;
    height: unset;
    display: block;
    background: transparent;
    color: #1A4480;
    font-size: calc(var(--font-size-md) * 0.56);
    font-weight: bold;
    padding: 0 40px;
  }
  .content #view-and-compare[data-state=hide] {
    display: none;
  }
  .content #view-and-compare .view-container {
    display: none;
  }
  .content #view-and-compare .print-view-container {
    margin: 22px 0;
    display: block;
  }
  .content #view-and-compare .print-view-container svg {
    display: inline-block;
    vertical-align: middle;
    height: 22px;
    width: 18px;
    margin-top: -5px;
    padding-right: 8px;
  }
  .content #view-and-compare .print-view-container svg rect,
  .content #view-and-compare .print-view-container svg line {
    stroke: #1A4480;
  }
  .content #view-and-compare .print-view-container svg path {
    fill: #1A4480;
  }
  .content main.reg-part-homepage.match-middle .reg-part-toc .last-updated {
    font-size: 11px;
    margin-bottom: 22px;
  }
  .content main.reg-part-homepage.match-middle .reg-part-toc h2 {
    font-size: 16px;
    margin-top: 22px;
  }
  .content main.reg-part-homepage.match-middle .reg-part-toc h3 {
    font-size: 12px;
  }
  .content main.reg-part-homepage.match-middle .reg-part-toc ul.table-of-contents .menu-section {
    font-size: 12px;
  }
  .content main.reg-part-homepage.match-middle .reg-part-toc ul.table-of-contents li a.reserved-subpart {
    color: #767676;
  }
  .content main.reg-part-homepage.match-middle .reg-part-toc ul.table-of-contents li ul li {
    margin-bottom: 4px;
  }
  .content .reg-part-homepage section.part-meta,
  .content .reg-text section.part-meta {
    font-size: 9px;
  }
  .content main.reg-part-homepage.match-middle,
  .content main.reg-text.match-middle {
    margin-left: 0;
    padding: 0 40px;
  }
  .content main.reg-part-homepage.match-middle h1,
  .content main.reg-part-homepage.match-middle h2,
  .content main.reg-part-homepage.match-middle article > section:not(.appendix-section),
  .content main.reg-text.match-middle h1,
  .content main.reg-text.match-middle h2,
  .content main.reg-text.match-middle article > section:not(.appendix-section) {
    padding-left: 0px;
  }
  .content main.reg-part-homepage.match-middle h1,
  .content main.reg-text.match-middle h1 {
    font-size: 16px;
    margin-bottom: 17px;
  }
  .content main.reg-part-homepage.match-middle h2,
  .content main.reg-text.match-middle h2 {
    font-size: calc(var(--font-size-2xl) * 0.56);
  }
  .content main.reg-part-homepage.match-middle .up-to-date,
  .content main.reg-text.match-middle .up-to-date {
    padding-left: 0px;
    margin: 22px auto 20px !important;
  }
  .content main.reg-part-homepage.match-middle .up-to-date.subpart,
  .content main.reg-text.match-middle .up-to-date.subpart {
    font-size: 10px;
  }
  .content main.reg-part-homepage.match-middle article,
  .content main.reg-text.match-middle article {
    margin-top: 0px;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs,
  .content main.reg-text.match-middle article .paragraphs {
    font-size: 10.08px;
    line-height: 1.4;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p,
  .content main.reg-text.match-middle article .paragraphs p {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-1 + .depth-1,
  .content main.reg-text.match-middle article .paragraphs p.depth-1 + .depth-1 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-2 + .depth-2,
  .content main.reg-text.match-middle article .paragraphs p.depth-2 + .depth-2 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-3 + .depth-3,
  .content main.reg-text.match-middle article .paragraphs p.depth-3 + .depth-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-4 + .depth-4,
  .content main.reg-text.match-middle article .paragraphs p.depth-4 + .depth-4 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-5 + .depth-5,
  .content main.reg-text.match-middle article .paragraphs p.depth-5 + .depth-5 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-6 + .depth-6,
  .content main.reg-text.match-middle article .paragraphs p.depth-6 + .depth-6 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-7 + .depth-7,
  .content main.reg-text.match-middle article .paragraphs p.depth-7 + .depth-7 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-8 + .depth-8,
  .content main.reg-text.match-middle article .paragraphs p.depth-8 + .depth-8 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-9 + .depth-9,
  .content main.reg-text.match-middle article .paragraphs p.depth-9 + .depth-9 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .paragraphs p.depth-10 + .depth-10,
  .content main.reg-text.match-middle article .paragraphs p.depth-10 + .depth-10 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .content main.reg-part-homepage.match-middle article .effective-date-note,
  .content main.reg-text.match-middle article .effective-date-note {
    font-size: 7.28px;
    line-height: 10.08px;
  }
  .content main.reg-part-homepage.match-middle article .footnote-section,
  .content main.reg-text.match-middle article .footnote-section {
    font-size: calc(var(--font-size-sm) * 0.56);
    line-height: 1.5;
  }
  .content main.reg-part-homepage.match-middle article .reg-image,
  .content main.reg-text.match-middle article .reg-image {
    max-width: 50%;
  }
  .content main.reg-part-homepage.match-middle article .table-section .gpotbl_div table th,
  .content main.reg-part-homepage.match-middle article .table-section .gpotbl_div table td,
  .content main.reg-text.match-middle article .table-section .gpotbl_div table th,
  .content main.reg-text.match-middle article .table-section .gpotbl_div table td {
    font-size: calc(var(--font-size-sm) * 0.56);
  }
  .content main.reg-part-homepage.match-middle article .table-section .gpotbl_div table th,
  .content main.reg-text.match-middle article .table-section .gpotbl_div table th {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  footer {
    background: transparent;
    padding: 11px 0;
    margin: 0 40px;
  }
  footer .print-footer {
    display: block;
    font-size: calc(var(--font-size-md) * 0.56);
  }
}

/*# sourceMappingURL=main.css.map */
