/**
 * Important: nothing in this file should output CSS; it should all be mixins,
 * functions, variables, etc
 */
/* The following mixin is useful when you want to import a SASS map as a key-value object in *.ts/x files.

  Example usage:

  // colors.scss
  $colors: (
    black: #000,
    white: #fff;
  );

  @include export-key-value($colors);

  // colors.ts
  import colors from 'colors.scss'
*/
/* The following mixin is useful when you want to import a SASS map as a key-value object in *.ts/x files.

  Example usage:

  // colors.scss
  $colors: (
    black: #000,
    white: #fff;
  );

  @include export-key-value($colors);

  // colors.ts
  import colors from 'colors.scss'
*/
:export {
  color-black: #222;
  color-white: #fff;
  color-grey: #f7f7f7;
  color-white-alpha-10: rgba(255, 255, 255, 0.1);
  color-white-alpha-40: rgba(255, 255, 255, 0.4);
  color-white-alpha-60: rgba(255, 255, 255, 0.6);
  color-white-alpha-80: rgba(255, 255, 255, 0.8);
  color-grey-alpha-10: rgba(0, 0, 0, 0.1);
  color-grey-alpha-40: rgba(0, 0, 0, 0.4);
  color-grey-alpha-60: rgba(0, 0, 0, 0.6);
  color-grey-alpha-80: rgba(0, 0, 0, 0.8);
  color-red-alert: #d70c00;
  color-red-alert-light: #fbe7e6;
  color-red-brand: #900;
  color-red-brand-light: #f5e6e6;
  color-positive-teal-dark: #0a7f7f;
  color-positive-teal-light: #e7f2f2;
  color-turquoise-light: #1cd6d9;
}

:export {
  1: 4px;
  2: 8px;
  3: 12px;
  4: 16px;
  5: 24px;
  6: 32px;
  7: 40px;
  8: 48px;
  9: 56px;
  10: 64px;
  11: 80px;
  12: 128px;
}

:export {
  heading-xl-serif: heading-xl-serif;
  heading-l-serif: heading-l-serif;
  heading-m-serif: heading-m-serif;
  heading-m-sans: heading-m-sans;
  heading-s-serif: heading-s-serif;
  heading-s-sans: heading-s-sans;
  heading-xs-serif: heading-xs-serif;
  heading-xs-sans: heading-xs-sans;
  body: body;
  body-medium: body-medium;
  body-s: body-s;
  body-s-medium: body-s-medium;
  label: label;
  label-medium: label-medium;
  label-s: label-s;
  label-s-medium: label-s-medium;
  action: action;
  action-l: action-l;
}

/* The following mixin is useful when you want to import a SASS map as a key-value object in *.ts/x files.

  Example usage:

  // colors.scss
  $colors: (
    black: #000,
    white: #fff;
  );

  @include export-key-value($colors);

  // colors.ts
  import colors from 'colors.scss'
*/
:export {
  sm: 2px;
  md: 4px;
}

/* The following mixin is useful when you want to import a SASS map as a key-value object in *.ts/x files.

  Example usage:

  // colors.scss
  $colors: (
    black: #000,
    white: #fff;
  );

  @include export-key-value($colors);

  // colors.ts
  import colors from 'colors.scss'
*/
:export {
  duration-long: 2s;
  duration-base: 1s;
  duration-short: 0.5s;
  duration-shorter: 0.3s;
  duration-shortest: 0.15s;
}

:root {
  --c-accent: 0, 0%, 100%;
  --c-dominant: 0, 0%, 13.3%;
  --c-white: 0, 0%, 100%;
  --c-grey: 0, 0%, 97%;
  --c-black: 0, 0%, 0%;
  --c-grey-alpha-10: hsla(var(--c-black), .1);
  --c-grey-alpha-40: hsla(var(--c-black), .4);
  --c-grey-alpha-60: hsla(var(--c-black), .6);
  --c-grey-alpha-80: hsla(var(--c-black), .8);
  --c-white-alpha-10: hsla(var(--c-white), .1);
  --c-white-alpha-40: hsla(var(--c-white), .4);
  --c-white-alpha-60: hsla(var(--c-white), .6);
  --c-white-alpha-80: hsla(var(--c-white), .8);
}

:root,
.chr-theme--living-color {
  --c-grey-alpha-10: hsla(var(--c-dominant), .1);
  --c-grey-alpha-40: hsla(var(--c-dominant), .4);
  --c-grey-alpha-60: hsla(var(--c-dominant), .6);
  --c-grey-alpha-80: hsla(var(--c-dominant), .8);
  --c-white-alpha-10: hsla(var(--c-accent), .1);
  --c-white-alpha-40: hsla(var(--c-accent), .4);
  --c-white-alpha-60: hsla(var(--c-accent), .6);
  --c-white-alpha-80: hsla(var(--c-accent), .8);
  --c-background: hsl(var(--c-accent));
  --c-text: hsl(var(--c-dominant));
}

.chr-theme--living-color {
  background-color: var(--c-background);
  color: var(--c-text);
}

.chr-header-footer {
  background-color: #fff;
  line-height: 1;
  color: #222;
}
.chr-header-footer chr-header {
  transition-duration: 1s;
  transition-property: min-height, max-height;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  display: block;
  min-height: 63px;
  max-height: 63px;
}
.chr-header-footer chr-header.is-loaded {
  min-height: 0;
  max-height: 120px;
}
@media (min-width: 768px) {
  .chr-header-footer chr-header {
    min-height: 57px;
    max-height: 57px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer chr-header {
    min-height: 109px;
    max-height: 109px;
  }
}
.chr-header-footer *,
.chr-header-footer *::before,
.chr-header-footer *::after {
  box-sizing: border-box;
}
.chr-header-footer *:focus {
  outline: 1px solid #828282;
  outline-offset: 2px;
}
.chr-header-footer div,
.chr-header-footer span,
.chr-header-footer h1,
.chr-header-footer h2,
.chr-header-footer h3,
.chr-header-footer h4,
.chr-header-footer h5,
.chr-header-footer h6,
.chr-header-footer p,
.chr-header-footer a,
.chr-header-footer img,
.chr-header-footer strong,
.chr-header-footer ol,
.chr-header-footer ul,
.chr-header-footer li,
.chr-header-footer fieldset,
.chr-header-footer form,
.chr-header-footer label,
.chr-header-footer legend,
.chr-header-footer footer,
.chr-header-footer header,
.chr-header-footer nav,
.chr-header-footer section {
  margin: 0;
  border: 0;
  padding: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}
.chr-header-footer footer,
.chr-header-footer header,
.chr-header-footer nav,
.chr-header-footer section {
  display: block;
}
.chr-header-footer a,
.chr-header-footer button,
.chr-header-footer [role=button],
.chr-header-footer input,
.chr-header-footer label {
  touch-action: manipulation;
}
.chr-header-footer img {
  max-width: 100%;
}
.chr-header-footer ol,
.chr-header-footer ul {
  list-style: none;
}
.chr-header-footer a {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: inherit;
  -webkit-text-decoration-skip: objects;
}
.chr-header-footer strong {
  font-weight: bolder;
}
.chr-header-footer button,
.chr-header-footer [type=button],
.chr-header-footer [type=submit] {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}
.chr-header-footer button::-moz-focus-inner,
.chr-header-footer [type=button]::-moz-focus-inner,
.chr-header-footer [type=reset]::-moz-focus-inner,
.chr-header-footer [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.chr-header-footer [type=search] {
  -webkit-appearance: none;
  outline-offset: -2px;
}
.chr-header-footer [type=search]::-webkit-search-cancel-button,
.chr-header-footer [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.chr-header-footer [tabindex="-1"]:focus {
  outline: none !important;
}
.chr-header-footer button:disabled,
.chr-header-footer input:disabled {
  cursor: not-allowed;
}
@media (prefers-reduced-motion: reduce) {
  .chr-header-footer *,
.chr-header-footer *::before,
.chr-header-footer *::after {
    transition-duration: 0s !important;
    background-attachment: initial !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.chr-header-footer .chr-page-nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 16px 0 0;
}
.chr-header-footer .chr-section {
  padding-top: 24px;
  padding-bottom: 24px;
}
.chr-header-footer .chr-section--top {
  padding-top: 24px;
}
.chr-header-footer .chr-section--bottom {
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .chr-header-footer .chr-section--top {
    padding-top: 24px;
  }
  .chr-header-footer .chr-section--bottom {
    padding-bottom: 24px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .chr-header-footer .chr-section--top {
    padding-top: 40px;
  }
  .chr-header-footer .chr-section--bottom {
    padding-bottom: 40px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .chr-header-footer .chr-section--top {
    padding-top: 40px;
  }
  .chr-header-footer .chr-section--bottom {
    padding-bottom: 40px;
  }
}
.chr-header-footer .chr-section--white {
  background-color: #fff;
}
.chr-header-footer .chr-section--black {
  background-color: #222;
}
.chr-header-footer .chr-section--grey {
  background-color: #f7f7f7;
}
.chr-header-footer .container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .chr-header-footer .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .container {
    padding-right: 48px;
    padding-left: 48px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .container {
    padding-right: 88px;
    padding-left: 88px;
  }
}
@media (min-width: 768px) {
  .chr-header-footer .container {
    max-width: 736px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .container {
    max-width: 1128px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .container {
    max-width: 1648px;
  }
}
.chr-header-footer .container-fluid {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .chr-header-footer .container-fluid {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .container-fluid {
    padding-right: 48px;
    padding-left: 48px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .container-fluid {
    padding-right: 88px;
    padding-left: 88px;
  }
}
.chr-header-footer .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -2px;
  margin-left: -2px;
}
@media (min-width: 768px) {
  .chr-header-footer .row {
    margin-right: -8px;
    margin-left: -8px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .row {
    margin-right: -12px;
    margin-left: -12px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .row {
    margin-right: -16px;
    margin-left: -16px;
  }
}
.chr-header-footer .row--equal-height {
  display: flex;
  flex-wrap: wrap;
}
.chr-header-footer .row--equal-height::before, .chr-header-footer .row--equal-height::after {
  content: normal;
}
.chr-header-footer .row--equal-height > [class*=col-] {
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: row;
  -ms-flex-direction: column;
  flex-wrap: wrap;
  background-clip: content-box;
}
.chr-header-footer .row--equal-height > [class*=col-] > * {
  flex-grow: 1;
  width: 100%;
}
.chr-header-footer .no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.chr-header-footer .no-gutters > .col,
.chr-header-footer .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.chr-header-footer .col-xl,
.chr-header-footer .col-xl-auto, .chr-header-footer .col-xl-12, .chr-header-footer .col-xl-11, .chr-header-footer .col-xl-10, .chr-header-footer .col-xl-9, .chr-header-footer .col-xl-8, .chr-header-footer .col-xl-7, .chr-header-footer .col-xl-6, .chr-header-footer .col-xl-5, .chr-header-footer .col-xl-4, .chr-header-footer .col-xl-3, .chr-header-footer .col-xl-2, .chr-header-footer .col-xl-1, .chr-header-footer .col-lg,
.chr-header-footer .col-lg-auto, .chr-header-footer .col-lg-12, .chr-header-footer .col-lg-11, .chr-header-footer .col-lg-10, .chr-header-footer .col-lg-9, .chr-header-footer .col-lg-8, .chr-header-footer .col-lg-7, .chr-header-footer .col-lg-6, .chr-header-footer .col-lg-5, .chr-header-footer .col-lg-4, .chr-header-footer .col-lg-3, .chr-header-footer .col-lg-2, .chr-header-footer .col-lg-1, .chr-header-footer .col-md,
.chr-header-footer .col-md-auto, .chr-header-footer .col-md-12, .chr-header-footer .col-md-11, .chr-header-footer .col-md-10, .chr-header-footer .col-md-9, .chr-header-footer .col-md-8, .chr-header-footer .col-md-7, .chr-header-footer .col-md-6, .chr-header-footer .col-md-5, .chr-header-footer .col-md-4, .chr-header-footer .col-md-3, .chr-header-footer .col-md-2, .chr-header-footer .col-md-1, .chr-header-footer .col-sm,
.chr-header-footer .col-sm-auto, .chr-header-footer .col-sm-12, .chr-header-footer .col-sm-11, .chr-header-footer .col-sm-10, .chr-header-footer .col-sm-9, .chr-header-footer .col-sm-8, .chr-header-footer .col-sm-7, .chr-header-footer .col-sm-6, .chr-header-footer .col-sm-5, .chr-header-footer .col-sm-4, .chr-header-footer .col-sm-3, .chr-header-footer .col-sm-2, .chr-header-footer .col-sm-1, .chr-header-footer .col,
.chr-header-footer .col-auto, .chr-header-footer .col-12, .chr-header-footer .col-11, .chr-header-footer .col-10, .chr-header-footer .col-9, .chr-header-footer .col-8, .chr-header-footer .col-7, .chr-header-footer .col-6, .chr-header-footer .col-5, .chr-header-footer .col-4, .chr-header-footer .col-3, .chr-header-footer .col-2, .chr-header-footer .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 2px;
  padding-left: 2px;
}
@media (min-width: 768px) {
  .chr-header-footer .col-xl,
.chr-header-footer .col-xl-auto, .chr-header-footer .col-xl-12, .chr-header-footer .col-xl-11, .chr-header-footer .col-xl-10, .chr-header-footer .col-xl-9, .chr-header-footer .col-xl-8, .chr-header-footer .col-xl-7, .chr-header-footer .col-xl-6, .chr-header-footer .col-xl-5, .chr-header-footer .col-xl-4, .chr-header-footer .col-xl-3, .chr-header-footer .col-xl-2, .chr-header-footer .col-xl-1, .chr-header-footer .col-lg,
.chr-header-footer .col-lg-auto, .chr-header-footer .col-lg-12, .chr-header-footer .col-lg-11, .chr-header-footer .col-lg-10, .chr-header-footer .col-lg-9, .chr-header-footer .col-lg-8, .chr-header-footer .col-lg-7, .chr-header-footer .col-lg-6, .chr-header-footer .col-lg-5, .chr-header-footer .col-lg-4, .chr-header-footer .col-lg-3, .chr-header-footer .col-lg-2, .chr-header-footer .col-lg-1, .chr-header-footer .col-md,
.chr-header-footer .col-md-auto, .chr-header-footer .col-md-12, .chr-header-footer .col-md-11, .chr-header-footer .col-md-10, .chr-header-footer .col-md-9, .chr-header-footer .col-md-8, .chr-header-footer .col-md-7, .chr-header-footer .col-md-6, .chr-header-footer .col-md-5, .chr-header-footer .col-md-4, .chr-header-footer .col-md-3, .chr-header-footer .col-md-2, .chr-header-footer .col-md-1, .chr-header-footer .col-sm,
.chr-header-footer .col-sm-auto, .chr-header-footer .col-sm-12, .chr-header-footer .col-sm-11, .chr-header-footer .col-sm-10, .chr-header-footer .col-sm-9, .chr-header-footer .col-sm-8, .chr-header-footer .col-sm-7, .chr-header-footer .col-sm-6, .chr-header-footer .col-sm-5, .chr-header-footer .col-sm-4, .chr-header-footer .col-sm-3, .chr-header-footer .col-sm-2, .chr-header-footer .col-sm-1, .chr-header-footer .col,
.chr-header-footer .col-auto, .chr-header-footer .col-12, .chr-header-footer .col-11, .chr-header-footer .col-10, .chr-header-footer .col-9, .chr-header-footer .col-8, .chr-header-footer .col-7, .chr-header-footer .col-6, .chr-header-footer .col-5, .chr-header-footer .col-4, .chr-header-footer .col-3, .chr-header-footer .col-2, .chr-header-footer .col-1 {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .col-xl,
.chr-header-footer .col-xl-auto, .chr-header-footer .col-xl-12, .chr-header-footer .col-xl-11, .chr-header-footer .col-xl-10, .chr-header-footer .col-xl-9, .chr-header-footer .col-xl-8, .chr-header-footer .col-xl-7, .chr-header-footer .col-xl-6, .chr-header-footer .col-xl-5, .chr-header-footer .col-xl-4, .chr-header-footer .col-xl-3, .chr-header-footer .col-xl-2, .chr-header-footer .col-xl-1, .chr-header-footer .col-lg,
.chr-header-footer .col-lg-auto, .chr-header-footer .col-lg-12, .chr-header-footer .col-lg-11, .chr-header-footer .col-lg-10, .chr-header-footer .col-lg-9, .chr-header-footer .col-lg-8, .chr-header-footer .col-lg-7, .chr-header-footer .col-lg-6, .chr-header-footer .col-lg-5, .chr-header-footer .col-lg-4, .chr-header-footer .col-lg-3, .chr-header-footer .col-lg-2, .chr-header-footer .col-lg-1, .chr-header-footer .col-md,
.chr-header-footer .col-md-auto, .chr-header-footer .col-md-12, .chr-header-footer .col-md-11, .chr-header-footer .col-md-10, .chr-header-footer .col-md-9, .chr-header-footer .col-md-8, .chr-header-footer .col-md-7, .chr-header-footer .col-md-6, .chr-header-footer .col-md-5, .chr-header-footer .col-md-4, .chr-header-footer .col-md-3, .chr-header-footer .col-md-2, .chr-header-footer .col-md-1, .chr-header-footer .col-sm,
.chr-header-footer .col-sm-auto, .chr-header-footer .col-sm-12, .chr-header-footer .col-sm-11, .chr-header-footer .col-sm-10, .chr-header-footer .col-sm-9, .chr-header-footer .col-sm-8, .chr-header-footer .col-sm-7, .chr-header-footer .col-sm-6, .chr-header-footer .col-sm-5, .chr-header-footer .col-sm-4, .chr-header-footer .col-sm-3, .chr-header-footer .col-sm-2, .chr-header-footer .col-sm-1, .chr-header-footer .col,
.chr-header-footer .col-auto, .chr-header-footer .col-12, .chr-header-footer .col-11, .chr-header-footer .col-10, .chr-header-footer .col-9, .chr-header-footer .col-8, .chr-header-footer .col-7, .chr-header-footer .col-6, .chr-header-footer .col-5, .chr-header-footer .col-4, .chr-header-footer .col-3, .chr-header-footer .col-2, .chr-header-footer .col-1 {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .col-xl,
.chr-header-footer .col-xl-auto, .chr-header-footer .col-xl-12, .chr-header-footer .col-xl-11, .chr-header-footer .col-xl-10, .chr-header-footer .col-xl-9, .chr-header-footer .col-xl-8, .chr-header-footer .col-xl-7, .chr-header-footer .col-xl-6, .chr-header-footer .col-xl-5, .chr-header-footer .col-xl-4, .chr-header-footer .col-xl-3, .chr-header-footer .col-xl-2, .chr-header-footer .col-xl-1, .chr-header-footer .col-lg,
.chr-header-footer .col-lg-auto, .chr-header-footer .col-lg-12, .chr-header-footer .col-lg-11, .chr-header-footer .col-lg-10, .chr-header-footer .col-lg-9, .chr-header-footer .col-lg-8, .chr-header-footer .col-lg-7, .chr-header-footer .col-lg-6, .chr-header-footer .col-lg-5, .chr-header-footer .col-lg-4, .chr-header-footer .col-lg-3, .chr-header-footer .col-lg-2, .chr-header-footer .col-lg-1, .chr-header-footer .col-md,
.chr-header-footer .col-md-auto, .chr-header-footer .col-md-12, .chr-header-footer .col-md-11, .chr-header-footer .col-md-10, .chr-header-footer .col-md-9, .chr-header-footer .col-md-8, .chr-header-footer .col-md-7, .chr-header-footer .col-md-6, .chr-header-footer .col-md-5, .chr-header-footer .col-md-4, .chr-header-footer .col-md-3, .chr-header-footer .col-md-2, .chr-header-footer .col-md-1, .chr-header-footer .col-sm,
.chr-header-footer .col-sm-auto, .chr-header-footer .col-sm-12, .chr-header-footer .col-sm-11, .chr-header-footer .col-sm-10, .chr-header-footer .col-sm-9, .chr-header-footer .col-sm-8, .chr-header-footer .col-sm-7, .chr-header-footer .col-sm-6, .chr-header-footer .col-sm-5, .chr-header-footer .col-sm-4, .chr-header-footer .col-sm-3, .chr-header-footer .col-sm-2, .chr-header-footer .col-sm-1, .chr-header-footer .col,
.chr-header-footer .col-auto, .chr-header-footer .col-12, .chr-header-footer .col-11, .chr-header-footer .col-10, .chr-header-footer .col-9, .chr-header-footer .col-8, .chr-header-footer .col-7, .chr-header-footer .col-6, .chr-header-footer .col-5, .chr-header-footer .col-4, .chr-header-footer .col-3, .chr-header-footer .col-2, .chr-header-footer .col-1 {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.chr-header-footer .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.chr-header-footer .col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.chr-header-footer .col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.chr-header-footer .col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.chr-header-footer .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.chr-header-footer .col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.chr-header-footer .col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.chr-header-footer .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.chr-header-footer .col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.chr-header-footer .col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.chr-header-footer .col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.chr-header-footer .col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.chr-header-footer .col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.chr-header-footer .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.chr-header-footer .offset-1 {
  margin-left: 8.3333333333%;
}
.chr-header-footer .offset-2 {
  margin-left: 16.6666666667%;
}
.chr-header-footer .offset-3 {
  margin-left: 25%;
}
.chr-header-footer .offset-4 {
  margin-left: 33.3333333333%;
}
.chr-header-footer .offset-5 {
  margin-left: 41.6666666667%;
}
.chr-header-footer .offset-6 {
  margin-left: 50%;
}
.chr-header-footer .offset-7 {
  margin-left: 58.3333333333%;
}
.chr-header-footer .offset-8 {
  margin-left: 66.6666666667%;
}
.chr-header-footer .offset-9 {
  margin-left: 75%;
}
.chr-header-footer .offset-10 {
  margin-left: 83.3333333333%;
}
.chr-header-footer .offset-11 {
  margin-left: 91.6666666667%;
}
.chr-header-footer .order-1 {
  order: 1;
}
.chr-header-footer .order-2 {
  order: 2;
}
.chr-header-footer .order-3 {
  order: 3;
}
.chr-header-footer .order-4 {
  order: 4;
}
.chr-header-footer .order-5 {
  order: 5;
}
.chr-header-footer .order-6 {
  order: 6;
}
.chr-header-footer .order-7 {
  order: 7;
}
.chr-header-footer .order-8 {
  order: 8;
}
.chr-header-footer .order-9 {
  order: 9;
}
.chr-header-footer .order-10 {
  order: 10;
}
.chr-header-footer .order-11 {
  order: 11;
}
.chr-header-footer .order-12 {
  order: 12;
}
@media (min-width: 576px) {
  .chr-header-footer .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .chr-header-footer .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .chr-header-footer .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .chr-header-footer .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .chr-header-footer .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .chr-header-footer .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .chr-header-footer .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .chr-header-footer .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .chr-header-footer .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .chr-header-footer .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .chr-header-footer .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .chr-header-footer .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .chr-header-footer .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .chr-header-footer .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .chr-header-footer .offset-sm-0 {
    margin-left: 0;
  }
  .chr-header-footer .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .chr-header-footer .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .chr-header-footer .offset-sm-3 {
    margin-left: 25%;
  }
  .chr-header-footer .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .chr-header-footer .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .chr-header-footer .offset-sm-6 {
    margin-left: 50%;
  }
  .chr-header-footer .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .chr-header-footer .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .chr-header-footer .offset-sm-9 {
    margin-left: 75%;
  }
  .chr-header-footer .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .chr-header-footer .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .chr-header-footer .order-sm-1 {
    order: 1;
  }
  .chr-header-footer .order-sm-2 {
    order: 2;
  }
  .chr-header-footer .order-sm-3 {
    order: 3;
  }
  .chr-header-footer .order-sm-4 {
    order: 4;
  }
  .chr-header-footer .order-sm-5 {
    order: 5;
  }
  .chr-header-footer .order-sm-6 {
    order: 6;
  }
  .chr-header-footer .order-sm-7 {
    order: 7;
  }
  .chr-header-footer .order-sm-8 {
    order: 8;
  }
  .chr-header-footer .order-sm-9 {
    order: 9;
  }
  .chr-header-footer .order-sm-10 {
    order: 10;
  }
  .chr-header-footer .order-sm-11 {
    order: 11;
  }
  .chr-header-footer .order-sm-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .chr-header-footer .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .chr-header-footer .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .chr-header-footer .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .chr-header-footer .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .chr-header-footer .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .chr-header-footer .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .chr-header-footer .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .chr-header-footer .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .chr-header-footer .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .chr-header-footer .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .chr-header-footer .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .chr-header-footer .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .chr-header-footer .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .chr-header-footer .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .chr-header-footer .offset-md-0 {
    margin-left: 0;
  }
  .chr-header-footer .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .chr-header-footer .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .chr-header-footer .offset-md-3 {
    margin-left: 25%;
  }
  .chr-header-footer .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .chr-header-footer .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .chr-header-footer .offset-md-6 {
    margin-left: 50%;
  }
  .chr-header-footer .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .chr-header-footer .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .chr-header-footer .offset-md-9 {
    margin-left: 75%;
  }
  .chr-header-footer .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .chr-header-footer .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .chr-header-footer .order-md-1 {
    order: 1;
  }
  .chr-header-footer .order-md-2 {
    order: 2;
  }
  .chr-header-footer .order-md-3 {
    order: 3;
  }
  .chr-header-footer .order-md-4 {
    order: 4;
  }
  .chr-header-footer .order-md-5 {
    order: 5;
  }
  .chr-header-footer .order-md-6 {
    order: 6;
  }
  .chr-header-footer .order-md-7 {
    order: 7;
  }
  .chr-header-footer .order-md-8 {
    order: 8;
  }
  .chr-header-footer .order-md-9 {
    order: 9;
  }
  .chr-header-footer .order-md-10 {
    order: 10;
  }
  .chr-header-footer .order-md-11 {
    order: 11;
  }
  .chr-header-footer .order-md-12 {
    order: 12;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .chr-header-footer .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .chr-header-footer .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .chr-header-footer .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .chr-header-footer .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .chr-header-footer .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .chr-header-footer .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .chr-header-footer .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .chr-header-footer .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .chr-header-footer .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .chr-header-footer .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .chr-header-footer .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .chr-header-footer .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .chr-header-footer .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .chr-header-footer .offset-lg-0 {
    margin-left: 0;
  }
  .chr-header-footer .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .chr-header-footer .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .chr-header-footer .offset-lg-3 {
    margin-left: 25%;
  }
  .chr-header-footer .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .chr-header-footer .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .chr-header-footer .offset-lg-6 {
    margin-left: 50%;
  }
  .chr-header-footer .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .chr-header-footer .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .chr-header-footer .offset-lg-9 {
    margin-left: 75%;
  }
  .chr-header-footer .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .chr-header-footer .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .chr-header-footer .order-lg-1 {
    order: 1;
  }
  .chr-header-footer .order-lg-2 {
    order: 2;
  }
  .chr-header-footer .order-lg-3 {
    order: 3;
  }
  .chr-header-footer .order-lg-4 {
    order: 4;
  }
  .chr-header-footer .order-lg-5 {
    order: 5;
  }
  .chr-header-footer .order-lg-6 {
    order: 6;
  }
  .chr-header-footer .order-lg-7 {
    order: 7;
  }
  .chr-header-footer .order-lg-8 {
    order: 8;
  }
  .chr-header-footer .order-lg-9 {
    order: 9;
  }
  .chr-header-footer .order-lg-10 {
    order: 10;
  }
  .chr-header-footer .order-lg-11 {
    order: 11;
  }
  .chr-header-footer .order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .chr-header-footer .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .chr-header-footer .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .chr-header-footer .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .chr-header-footer .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .chr-header-footer .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .chr-header-footer .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .chr-header-footer .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .chr-header-footer .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .chr-header-footer .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .chr-header-footer .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .chr-header-footer .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .chr-header-footer .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .chr-header-footer .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .chr-header-footer .offset-xl-0 {
    margin-left: 0;
  }
  .chr-header-footer .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .chr-header-footer .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .chr-header-footer .offset-xl-3 {
    margin-left: 25%;
  }
  .chr-header-footer .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .chr-header-footer .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .chr-header-footer .offset-xl-6 {
    margin-left: 50%;
  }
  .chr-header-footer .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .chr-header-footer .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .chr-header-footer .offset-xl-9 {
    margin-left: 75%;
  }
  .chr-header-footer .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .chr-header-footer .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .chr-header-footer .order-xl-1 {
    order: 1;
  }
  .chr-header-footer .order-xl-2 {
    order: 2;
  }
  .chr-header-footer .order-xl-3 {
    order: 3;
  }
  .chr-header-footer .order-xl-4 {
    order: 4;
  }
  .chr-header-footer .order-xl-5 {
    order: 5;
  }
  .chr-header-footer .order-xl-6 {
    order: 6;
  }
  .chr-header-footer .order-xl-7 {
    order: 7;
  }
  .chr-header-footer .order-xl-8 {
    order: 8;
  }
  .chr-header-footer .order-xl-9 {
    order: 9;
  }
  .chr-header-footer .order-xl-10 {
    order: 10;
  }
  .chr-header-footer .order-xl-11 {
    order: 11;
  }
  .chr-header-footer .order-xl-12 {
    order: 12;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .col-xl-20pct {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.chr-header-footer .chr-heading-xl-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-heading-xl-serif {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-xl-serif {
    font-size: 64px;
    line-height: 76px;
  }
}
.chr-header-footer .chr-heading-l-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-heading-l-serif {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-l-serif {
    font-size: 48px;
    line-height: 58px;
  }
}
.chr-header-footer .chr-heading-m-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-heading-m-serif {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-m-serif {
    font-size: 32px;
    line-height: 1.25;
  }
}
.chr-header-footer .chr-footer__nav-heading, .chr-header-footer .chr-section-title,
.chr-header-footer .chr-heading-m-sans {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-footer__nav-heading, .chr-header-footer .chr-section-title,
.chr-header-footer .chr-heading-m-sans {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-footer__nav-heading, .chr-header-footer .chr-section-title,
.chr-header-footer .chr-heading-m-sans {
    font-size: 28px;
    line-height: 40px;
  }
}
.chr-header-footer .chr-modal__title,
.chr-header-footer .chr-heading-s-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-modal__title,
.chr-header-footer .chr-heading-s-serif {
    font-size: 20px;
    line-height: 1.2;
  }
}
.chr-header-footer .chr-heading-s-sans {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-heading-s-sans {
    line-height: 1.5;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-s-sans {
    font-size: 18px;
    line-height: 24px;
  }
}
.chr-header-footer .chr-heading-xs-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.001em;
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-xs-serif {
    font-size: 24px;
    line-height: 28px;
  }
}
.chr-header-footer .chr-heading-xs-sans {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-xs-sans {
    font-size: 20px;
    line-height: 1.4;
  }
}
.chr-header-footer .chr-user-nav__link, .chr-header-footer .chr-user-nav__button, .chr-header-footer .chr-register-bid-modal__subheading, .chr-header-footer .chr-text-input__field,
.chr-header-footer .chr-body {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.chr-header-footer .chr-body-medium {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.chr-header-footer .chr-footer__nav-secondary-list-item__link, .chr-header-footer .chr-footer__nav-secondary-list-item__link.chr-button, .chr-header-footer .chr-register-bid-modal__content, .chr-header-footer .drawer__header-close-title,
.chr-header-footer .chr-body-s {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}
.chr-header-footer .chr-body-s-medium {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
}
.chr-header-footer .chr-register-bid-modal__info, .chr-header-footer .chr-dropdown-list__label, .chr-header-footer .chr-text-input--has-focus .chr-text-input__label, .chr-header-footer .chr-text-input--has-value .chr-text-input__label, .chr-header-footer .chr-text-input__error, .chr-header-footer .chr-text-input__help-text,
.chr-header-footer .chr-label {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}
.chr-header-footer .chr-button__badge,
.chr-header-footer .chr-label-medium {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}
.chr-header-footer .chr-footer__copyright,
.chr-header-footer .chr-label-s {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.8;
  text-transform: uppercase;
}
.chr-header-footer .chr-button--tag.chr-button--sm,
.chr-header-footer .chr-label-s-medium {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.8;
  text-transform: uppercase;
}
.chr-header-footer .chr-footer__legal, .chr-header-footer .chr-dropdown-list__item, .chr-header-footer .chr-dropdown-list__list-item.is-active .chr-dropdown-list__item, .chr-header-footer .chr-autocomplete-input__option, .chr-header-footer .chr-text-input__label, .chr-header-footer .chr-button--primary, .chr-header-footer .chr-button--secondary, .chr-header-footer .chr-button--icon, .chr-header-footer .chr-button--tag,
.chr-header-footer .chr-action {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}
body > .chr-header-footer chr-header div.chr-header__panel-content-left nav li a.chr-action {
  font-family: "ABCArizonaSans";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.chr-header-footer .chr-action-l {
    font-family: "ABCArizonaSans";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
}
.chr-header-footer .chr-link,
.chr-header-footer .chr-footer__nav-secondary-list-item__link,
.chr-header-footer .chr-footer__nav-secondary-list-item__link.chr-button,
.chr-header-footer .chr-user-nav__link,
.chr-header-footer .chr-user-nav__button {
  text-decoration: none;
}
.chr-header-footer .chr-link:hover,
.chr-header-footer .chr-footer__nav-secondary-list-item__link:hover,
.chr-header-footer .chr-user-nav__link:hover,
.chr-header-footer .chr-user-nav__button:hover {
  text-decoration: underline;
}
.chr-header-footer .chr-link--underline {
  transition-duration: 0.15s;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  text-decoration: underline;
  font-weight: 500;
}
.chr-header-footer .chr-link--underline:hover {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
}
.chr-header-footer .chr-link--underline:active {
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-link--underline.chr-link--dark:hover {
  color: rgba(255, 255, 255, 0.8);
}
.chr-header-footer .chr-link--underline.chr-link--dark:active {
  color: rgba(255, 255, 255, 0.6);
}
.chr-header-footer .chr-link--underline.chr-heading-xl-serif, .chr-header-footer .chr-link--underline.chr-heading-l-serif, .chr-header-footer .chr-link--underline.chr-heading-m-serif, .chr-header-footer .chr-link--underline.chr-heading-m-sans, .chr-header-footer .chr-link--underline.chr-heading-s-sans, .chr-header-footer .chr-link--underline.chr-heading-s-serif, .chr-header-footer .chr-link--underline.chr-heading-xs-serif, .chr-header-footer .chr-link--underline.chr-heading-xs-sans, .chr-header-footer .chr-link--underline.chr-action, .chr-header-footer .chr-link--underline.chr-action-l {
  text-decoration: none;
}
.chr-header-footer .chr-link--underline.chr-heading-xl-serif:hover, .chr-header-footer .chr-link--underline.chr-heading-l-serif:hover, .chr-header-footer .chr-link--underline.chr-heading-m-serif:hover, .chr-header-footer .chr-link--underline.chr-heading-m-sans:hover, .chr-header-footer .chr-link--underline.chr-heading-s-sans:hover, .chr-header-footer .chr-link--underline.chr-heading-s-serif:hover, .chr-header-footer .chr-link--underline.chr-heading-xs-serif:hover, .chr-header-footer .chr-link--underline.chr-heading-xs-sans:hover, .chr-header-footer .chr-link--underline.chr-action:hover, .chr-header-footer .chr-link--underline.chr-action-l:hover {
  text-decoration: underline;
}
.chr-header-footer .chr-link.chr-heading-xl-serif, .chr-header-footer .chr-link.chr-heading-l-serif, .chr-header-footer .chr-link.chr-heading-m-serif, .chr-header-footer .chr-link.chr-heading-s-serif, .chr-header-footer .chr-link.chr-heading-xs-serif,
.chr-header-footer .chr-heading-xl-serif.chr-footer__nav-secondary-list-item__link,
.chr-header-footer .chr-heading-xl-serif.chr-user-nav__link,
.chr-header-footer .chr-heading-xl-serif.chr-user-nav__button,
.chr-header-footer .chr-heading-l-serif.chr-footer__nav-secondary-list-item__link,
.chr-header-footer .chr-heading-l-serif.chr-user-nav__link,
.chr-header-footer .chr-heading-l-serif.chr-user-nav__button,
.chr-header-footer .chr-heading-m-serif.chr-footer__nav-secondary-list-item__link,
.chr-header-footer .chr-heading-m-serif.chr-user-nav__link,
.chr-header-footer .chr-heading-m-serif.chr-user-nav__button,
.chr-header-footer .chr-heading-s-serif.chr-footer__nav-secondary-list-item__link,
.chr-header-footer .chr-heading-s-serif.chr-user-nav__link,
.chr-header-footer .chr-heading-s-serif.chr-user-nav__button,
.chr-header-footer .chr-heading-xs-serif.chr-footer__nav-secondary-list-item__link,
.chr-header-footer .chr-heading-xs-serif.chr-user-nav__link,
.chr-header-footer .chr-heading-xs-serif.chr-user-nav__button,
.chr-header-footer .chr-link--underline.chr-heading-xl-serif,
.chr-header-footer .chr-link--underline.chr-heading-l-serif,
.chr-header-footer .chr-link--underline.chr-heading-m-serif,
.chr-header-footer .chr-link--underline.chr-heading-s-serif,
.chr-header-footer .chr-link--underline.chr-heading-xs-serif {
  font-weight: 600;
}
.chr-header-footer .chr-section-title {
  position: relative;
  padding-left: 12px;
}
.chr-header-footer .chr-section-title::before {
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  transform: translateY(-50%);
  background-color: #222;
  width: 3px;
  height: 1em;
  content: "";
}
.chr-header-footer .chr-section-title--white {
  color: #fff;
}
.chr-header-footer .chr-section-title--white::before {
  background-color: #fff;
}
.chr-header-footer .chr-body b,
.chr-header-footer .chr-body strong,
.chr-header-footer .chr-body-s b,
.chr-header-footer .chr-body-s strong {
  font-weight: 500;
}
.chr-header-footer .flex-row {
  flex-direction: row !important;
}
.chr-header-footer .flex-column {
  flex-direction: column !important;
}
.chr-header-footer .flex-row-reverse {
  flex-direction: row-reverse !important;
}
.chr-header-footer .flex-column-reverse {
  flex-direction: column-reverse !important;
}
.chr-header-footer .flex-wrap {
  flex-wrap: wrap !important;
}
.chr-header-footer .flex-nowrap {
  flex-wrap: nowrap !important;
}
.chr-header-footer .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.chr-header-footer .justify-content-start {
  justify-content: flex-start !important;
}
.chr-header-footer .justify-content-end {
  justify-content: flex-end !important;
}
.chr-header-footer .justify-content-center {
  justify-content: center !important;
}
.chr-header-footer .justify-content-between {
  justify-content: space-between !important;
}
.chr-header-footer .justify-content-around {
  justify-content: space-around !important;
}
.chr-header-footer .align-items-start {
  align-items: flex-start !important;
}
.chr-header-footer .align-items-end {
  align-items: flex-end !important;
}
.chr-header-footer .align-items-center {
  align-items: center !important;
}
.chr-header-footer .align-items-baseline {
  align-items: baseline !important;
}
.chr-header-footer .align-items-stretch {
  align-items: stretch !important;
}
.chr-header-footer .align-content-start {
  align-content: flex-start !important;
}
.chr-header-footer .align-content-end {
  align-content: flex-end !important;
}
.chr-header-footer .align-content-center {
  align-content: center !important;
}
.chr-header-footer .align-content-between {
  align-content: space-between !important;
}
.chr-header-footer .align-content-around {
  align-content: space-around !important;
}
.chr-header-footer .align-content-stretch {
  align-content: stretch !important;
}
.chr-header-footer .align-self-auto {
  align-self: auto !important;
}
.chr-header-footer .align-self-start {
  align-self: flex-start !important;
}
.chr-header-footer .align-self-end {
  align-self: flex-end !important;
}
.chr-header-footer .align-self-center {
  align-self: center !important;
}
.chr-header-footer .align-self-baseline {
  align-self: baseline !important;
}
.chr-header-footer .align-self-stretch {
  align-self: stretch !important;
}
.chr-header-footer .order-1 {
  order: 1 !important;
}
.chr-header-footer .order-2 {
  order: 2 !important;
}
.chr-header-footer .order-3 {
  order: 3 !important;
}
.chr-header-footer .order-4 {
  order: 4 !important;
}
.chr-header-footer .order-5 {
  order: 5 !important;
}
@media (min-width: 576px) {
  .chr-header-footer .flex-sm-row {
    flex-direction: row !important;
  }
  .chr-header-footer .flex-sm-column {
    flex-direction: column !important;
  }
  .chr-header-footer .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .chr-header-footer .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .chr-header-footer .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .chr-header-footer .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .chr-header-footer .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .chr-header-footer .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .chr-header-footer .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .chr-header-footer .justify-content-sm-center {
    justify-content: center !important;
  }
  .chr-header-footer .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .chr-header-footer .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .chr-header-footer .align-items-sm-start {
    align-items: flex-start !important;
  }
  .chr-header-footer .align-items-sm-end {
    align-items: flex-end !important;
  }
  .chr-header-footer .align-items-sm-center {
    align-items: center !important;
  }
  .chr-header-footer .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .chr-header-footer .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .chr-header-footer .align-content-sm-start {
    align-content: flex-start !important;
  }
  .chr-header-footer .align-content-sm-end {
    align-content: flex-end !important;
  }
  .chr-header-footer .align-content-sm-center {
    align-content: center !important;
  }
  .chr-header-footer .align-content-sm-between {
    align-content: space-between !important;
  }
  .chr-header-footer .align-content-sm-around {
    align-content: space-around !important;
  }
  .chr-header-footer .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .chr-header-footer .align-self-sm-auto {
    align-self: auto !important;
  }
  .chr-header-footer .align-self-sm-start {
    align-self: flex-start !important;
  }
  .chr-header-footer .align-self-sm-end {
    align-self: flex-end !important;
  }
  .chr-header-footer .align-self-sm-center {
    align-self: center !important;
  }
  .chr-header-footer .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .chr-header-footer .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .chr-header-footer .order-sm-1 {
    order: 1 !important;
  }
  .chr-header-footer .order-sm-2 {
    order: 2 !important;
  }
  .chr-header-footer .order-sm-3 {
    order: 3 !important;
  }
  .chr-header-footer .order-sm-4 {
    order: 4 !important;
  }
  .chr-header-footer .order-sm-5 {
    order: 5 !important;
  }
}
@media (min-width: 768px) {
  .chr-header-footer .flex-md-row {
    flex-direction: row !important;
  }
  .chr-header-footer .flex-md-column {
    flex-direction: column !important;
  }
  .chr-header-footer .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .chr-header-footer .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .chr-header-footer .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .chr-header-footer .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .chr-header-footer .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .chr-header-footer .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .chr-header-footer .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .chr-header-footer .justify-content-md-center {
    justify-content: center !important;
  }
  .chr-header-footer .justify-content-md-between {
    justify-content: space-between !important;
  }
  .chr-header-footer .justify-content-md-around {
    justify-content: space-around !important;
  }
  .chr-header-footer .align-items-md-start {
    align-items: flex-start !important;
  }
  .chr-header-footer .align-items-md-end {
    align-items: flex-end !important;
  }
  .chr-header-footer .align-items-md-center {
    align-items: center !important;
  }
  .chr-header-footer .align-items-md-baseline {
    align-items: baseline !important;
  }
  .chr-header-footer .align-items-md-stretch {
    align-items: stretch !important;
  }
  .chr-header-footer .align-content-md-start {
    align-content: flex-start !important;
  }
  .chr-header-footer .align-content-md-end {
    align-content: flex-end !important;
  }
  .chr-header-footer .align-content-md-center {
    align-content: center !important;
  }
  .chr-header-footer .align-content-md-between {
    align-content: space-between !important;
  }
  .chr-header-footer .align-content-md-around {
    align-content: space-around !important;
  }
  .chr-header-footer .align-content-md-stretch {
    align-content: stretch !important;
  }
  .chr-header-footer .align-self-md-auto {
    align-self: auto !important;
  }
  .chr-header-footer .align-self-md-start {
    align-self: flex-start !important;
  }
  .chr-header-footer .align-self-md-end {
    align-self: flex-end !important;
  }
  .chr-header-footer .align-self-md-center {
    align-self: center !important;
  }
  .chr-header-footer .align-self-md-baseline {
    align-self: baseline !important;
  }
  .chr-header-footer .align-self-md-stretch {
    align-self: stretch !important;
  }
  .chr-header-footer .order-md-1 {
    order: 1 !important;
  }
  .chr-header-footer .order-md-2 {
    order: 2 !important;
  }
  .chr-header-footer .order-md-3 {
    order: 3 !important;
  }
  .chr-header-footer .order-md-4 {
    order: 4 !important;
  }
  .chr-header-footer .order-md-5 {
    order: 5 !important;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .flex-lg-row {
    flex-direction: row !important;
  }
  .chr-header-footer .flex-lg-column {
    flex-direction: column !important;
  }
  .chr-header-footer .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .chr-header-footer .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .chr-header-footer .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .chr-header-footer .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .chr-header-footer .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .chr-header-footer .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .chr-header-footer .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .chr-header-footer .justify-content-lg-center {
    justify-content: center !important;
  }
  .chr-header-footer .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .chr-header-footer .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .chr-header-footer .align-items-lg-start {
    align-items: flex-start !important;
  }
  .chr-header-footer .align-items-lg-end {
    align-items: flex-end !important;
  }
  .chr-header-footer .align-items-lg-center {
    align-items: center !important;
  }
  .chr-header-footer .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .chr-header-footer .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .chr-header-footer .align-content-lg-start {
    align-content: flex-start !important;
  }
  .chr-header-footer .align-content-lg-end {
    align-content: flex-end !important;
  }
  .chr-header-footer .align-content-lg-center {
    align-content: center !important;
  }
  .chr-header-footer .align-content-lg-between {
    align-content: space-between !important;
  }
  .chr-header-footer .align-content-lg-around {
    align-content: space-around !important;
  }
  .chr-header-footer .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .chr-header-footer .align-self-lg-auto {
    align-self: auto !important;
  }
  .chr-header-footer .align-self-lg-start {
    align-self: flex-start !important;
  }
  .chr-header-footer .align-self-lg-end {
    align-self: flex-end !important;
  }
  .chr-header-footer .align-self-lg-center {
    align-self: center !important;
  }
  .chr-header-footer .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .chr-header-footer .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .chr-header-footer .order-lg-1 {
    order: 1 !important;
  }
  .chr-header-footer .order-lg-2 {
    order: 2 !important;
  }
  .chr-header-footer .order-lg-3 {
    order: 3 !important;
  }
  .chr-header-footer .order-lg-4 {
    order: 4 !important;
  }
  .chr-header-footer .order-lg-5 {
    order: 5 !important;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .flex-xl-row {
    flex-direction: row !important;
  }
  .chr-header-footer .flex-xl-column {
    flex-direction: column !important;
  }
  .chr-header-footer .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .chr-header-footer .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .chr-header-footer .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .chr-header-footer .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .chr-header-footer .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .chr-header-footer .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .chr-header-footer .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .chr-header-footer .justify-content-xl-center {
    justify-content: center !important;
  }
  .chr-header-footer .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .chr-header-footer .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .chr-header-footer .align-items-xl-start {
    align-items: flex-start !important;
  }
  .chr-header-footer .align-items-xl-end {
    align-items: flex-end !important;
  }
  .chr-header-footer .align-items-xl-center {
    align-items: center !important;
  }
  .chr-header-footer .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .chr-header-footer .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .chr-header-footer .align-content-xl-start {
    align-content: flex-start !important;
  }
  .chr-header-footer .align-content-xl-end {
    align-content: flex-end !important;
  }
  .chr-header-footer .align-content-xl-center {
    align-content: center !important;
  }
  .chr-header-footer .align-content-xl-between {
    align-content: space-between !important;
  }
  .chr-header-footer .align-content-xl-around {
    align-content: space-around !important;
  }
  .chr-header-footer .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .chr-header-footer .align-self-xl-auto {
    align-self: auto !important;
  }
  .chr-header-footer .align-self-xl-start {
    align-self: flex-start !important;
  }
  .chr-header-footer .align-self-xl-end {
    align-self: flex-end !important;
  }
  .chr-header-footer .align-self-xl-center {
    align-self: center !important;
  }
  .chr-header-footer .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .chr-header-footer .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .chr-header-footer .order-xl-1 {
    order: 1 !important;
  }
  .chr-header-footer .order-xl-2 {
    order: 2 !important;
  }
  .chr-header-footer .order-xl-3 {
    order: 3 !important;
  }
  .chr-header-footer .order-xl-4 {
    order: 4 !important;
  }
  .chr-header-footer .order-xl-5 {
    order: 5 !important;
  }
}
.chr-header-footer .rotate--90 {
  transform: rotate(90deg);
}
.chr-header-footer .rotate--180 {
  transform: rotate(180deg);
}
.chr-header-footer .rotate--270 {
  transform: rotate(270deg);
}
.chr-header-footer .m-0 {
  margin: 0 !important;
}
.chr-header-footer .mt-0,
.chr-header-footer .my-0 {
  margin-top: 0 !important;
}
.chr-header-footer .mr-0,
.chr-header-footer .mx-0 {
  margin-right: 0 !important;
}
.chr-header-footer .mb-0,
.chr-header-footer .my-0 {
  margin-bottom: 0 !important;
}
.chr-header-footer .ml-0,
.chr-header-footer .mx-0 {
  margin-left: 0 !important;
}
.chr-header-footer .p-0 {
  padding: 0 !important;
}
.chr-header-footer .pt-0,
.chr-header-footer .py-0 {
  padding-top: 0 !important;
}
.chr-header-footer .pr-0,
.chr-header-footer .px-0 {
  padding-right: 0 !important;
}
.chr-header-footer .pb-0,
.chr-header-footer .py-0 {
  padding-bottom: 0 !important;
}
.chr-header-footer .pl-0,
.chr-header-footer .px-0 {
  padding-left: 0 !important;
}
.chr-header-footer .m-1 {
  margin: 4px !important;
}
.chr-header-footer .mt-1,
.chr-header-footer .my-1 {
  margin-top: 4px !important;
}
.chr-header-footer .mr-1,
.chr-header-footer .mx-1 {
  margin-right: 4px !important;
}
.chr-header-footer .mb-1,
.chr-header-footer .my-1 {
  margin-bottom: 4px !important;
}
.chr-header-footer .ml-1,
.chr-header-footer .mx-1 {
  margin-left: 4px !important;
}
.chr-header-footer .p-1 {
  padding: 4px !important;
}
.chr-header-footer .pt-1,
.chr-header-footer .py-1 {
  padding-top: 4px !important;
}
.chr-header-footer .pr-1,
.chr-header-footer .px-1 {
  padding-right: 4px !important;
}
.chr-header-footer .pb-1,
.chr-header-footer .py-1 {
  padding-bottom: 4px !important;
}
.chr-header-footer .pl-1,
.chr-header-footer .px-1 {
  padding-left: 4px !important;
}
.chr-header-footer .m-2 {
  margin: 8px !important;
}
.chr-header-footer .mt-2,
.chr-header-footer .my-2 {
  margin-top: 8px !important;
}
.chr-header-footer .mr-2,
.chr-header-footer .mx-2 {
  margin-right: 8px !important;
}
.chr-header-footer .mb-2,
.chr-header-footer .my-2 {
  margin-bottom: 8px !important;
}
.chr-header-footer .ml-2,
.chr-header-footer .mx-2 {
  margin-left: 8px !important;
}
.chr-header-footer .p-2 {
  padding: 8px !important;
}
.chr-header-footer .pt-2,
.chr-header-footer .py-2 {
  padding-top: 8px !important;
}
.chr-header-footer .pr-2,
.chr-header-footer .px-2 {
  padding-right: 8px !important;
}
.chr-header-footer .pb-2,
.chr-header-footer .py-2 {
  padding-bottom: 8px !important;
}
.chr-header-footer .pl-2,
.chr-header-footer .px-2 {
  padding-left: 8px !important;
}
.chr-header-footer .m-3 {
  margin: 12px !important;
}
.chr-header-footer .mt-3,
.chr-header-footer .my-3 {
  margin-top: 12px !important;
}
.chr-header-footer .mr-3,
.chr-header-footer .mx-3 {
  margin-right: 12px !important;
}
.chr-header-footer .mb-3,
.chr-header-footer .my-3 {
  margin-bottom: 12px !important;
}
.chr-header-footer .ml-3,
.chr-header-footer .mx-3 {
  margin-left: 12px !important;
}
.chr-header-footer .p-3 {
  padding: 12px !important;
}
.chr-header-footer .pt-3,
.chr-header-footer .py-3 {
  padding-top: 12px !important;
}
.chr-header-footer .pr-3,
.chr-header-footer .px-3 {
  padding-right: 12px !important;
}
.chr-header-footer .pb-3,
.chr-header-footer .py-3 {
  padding-bottom: 12px !important;
}
.chr-header-footer .pl-3,
.chr-header-footer .px-3 {
  padding-left: 12px !important;
}
.chr-header-footer .m-4 {
  margin: 16px !important;
}
.chr-header-footer .mt-4,
.chr-header-footer .my-4 {
  margin-top: 16px !important;
}
.chr-header-footer .mr-4,
.chr-header-footer .mx-4 {
  margin-right: 16px !important;
}
.chr-header-footer .mb-4,
.chr-header-footer .my-4 {
  margin-bottom: 16px !important;
}
.chr-header-footer .ml-4,
.chr-header-footer .mx-4 {
  margin-left: 16px !important;
}
.chr-header-footer .p-4 {
  padding: 16px !important;
}
.chr-header-footer .pt-4,
.chr-header-footer .py-4 {
  padding-top: 16px !important;
}
.chr-header-footer .pr-4,
.chr-header-footer .px-4 {
  padding-right: 16px !important;
}
.chr-header-footer .pb-4,
.chr-header-footer .py-4 {
  padding-bottom: 16px !important;
}
.chr-header-footer .pl-4,
.chr-header-footer .px-4 {
  padding-left: 16px !important;
}
.chr-header-footer .m-5 {
  margin: 24px !important;
}
.chr-header-footer .mt-5,
.chr-header-footer .my-5 {
  margin-top: 24px !important;
}
.chr-header-footer .mr-5,
.chr-header-footer .mx-5 {
  margin-right: 24px !important;
}
.chr-header-footer .mb-5,
.chr-header-footer .my-5 {
  margin-bottom: 24px !important;
}
.chr-header-footer .ml-5,
.chr-header-footer .mx-5 {
  margin-left: 24px !important;
}
.chr-header-footer .p-5 {
  padding: 24px !important;
}
.chr-header-footer .pt-5,
.chr-header-footer .py-5 {
  padding-top: 24px !important;
}
.chr-header-footer .pr-5,
.chr-header-footer .px-5 {
  padding-right: 24px !important;
}
.chr-header-footer .pb-5,
.chr-header-footer .py-5 {
  padding-bottom: 24px !important;
}
.chr-header-footer .pl-5,
.chr-header-footer .px-5 {
  padding-left: 24px !important;
}
.chr-header-footer .m-6 {
  margin: 32px !important;
}
.chr-header-footer .mt-6,
.chr-header-footer .my-6 {
  margin-top: 32px !important;
}
.chr-header-footer .mr-6,
.chr-header-footer .mx-6 {
  margin-right: 32px !important;
}
.chr-header-footer .mb-6,
.chr-header-footer .my-6 {
  margin-bottom: 32px !important;
}
.chr-header-footer .ml-6,
.chr-header-footer .mx-6 {
  margin-left: 32px !important;
}
.chr-header-footer .p-6 {
  padding: 32px !important;
}
.chr-header-footer .pt-6,
.chr-header-footer .py-6 {
  padding-top: 32px !important;
}
.chr-header-footer .pr-6,
.chr-header-footer .px-6 {
  padding-right: 32px !important;
}
.chr-header-footer .pb-6,
.chr-header-footer .py-6 {
  padding-bottom: 32px !important;
}
.chr-header-footer .pl-6,
.chr-header-footer .px-6 {
  padding-left: 32px !important;
}
.chr-header-footer .m-7 {
  margin: 40px !important;
}
.chr-header-footer .mt-7,
.chr-header-footer .my-7 {
  margin-top: 40px !important;
}
.chr-header-footer .mr-7,
.chr-header-footer .mx-7 {
  margin-right: 40px !important;
}
.chr-header-footer .mb-7,
.chr-header-footer .my-7 {
  margin-bottom: 40px !important;
}
.chr-header-footer .ml-7,
.chr-header-footer .mx-7 {
  margin-left: 40px !important;
}
.chr-header-footer .p-7 {
  padding: 40px !important;
}
.chr-header-footer .pt-7,
.chr-header-footer .py-7 {
  padding-top: 40px !important;
}
.chr-header-footer .pr-7,
.chr-header-footer .px-7 {
  padding-right: 40px !important;
}
.chr-header-footer .pb-7,
.chr-header-footer .py-7 {
  padding-bottom: 40px !important;
}
.chr-header-footer .pl-7,
.chr-header-footer .px-7 {
  padding-left: 40px !important;
}
.chr-header-footer .m-8 {
  margin: 48px !important;
}
.chr-header-footer .mt-8,
.chr-header-footer .my-8 {
  margin-top: 48px !important;
}
.chr-header-footer .mr-8,
.chr-header-footer .mx-8 {
  margin-right: 48px !important;
}
.chr-header-footer .mb-8,
.chr-header-footer .my-8 {
  margin-bottom: 48px !important;
}
.chr-header-footer .ml-8,
.chr-header-footer .mx-8 {
  margin-left: 48px !important;
}
.chr-header-footer .p-8 {
  padding: 48px !important;
}
.chr-header-footer .pt-8,
.chr-header-footer .py-8 {
  padding-top: 48px !important;
}
.chr-header-footer .pr-8,
.chr-header-footer .px-8 {
  padding-right: 48px !important;
}
.chr-header-footer .pb-8,
.chr-header-footer .py-8 {
  padding-bottom: 48px !important;
}
.chr-header-footer .pl-8,
.chr-header-footer .px-8 {
  padding-left: 48px !important;
}
.chr-header-footer .m-9 {
  margin: 56px !important;
}
.chr-header-footer .mt-9,
.chr-header-footer .my-9 {
  margin-top: 56px !important;
}
.chr-header-footer .mr-9,
.chr-header-footer .mx-9 {
  margin-right: 56px !important;
}
.chr-header-footer .mb-9,
.chr-header-footer .my-9 {
  margin-bottom: 56px !important;
}
.chr-header-footer .ml-9,
.chr-header-footer .mx-9 {
  margin-left: 56px !important;
}
.chr-header-footer .p-9 {
  padding: 56px !important;
}
.chr-header-footer .pt-9,
.chr-header-footer .py-9 {
  padding-top: 56px !important;
}
.chr-header-footer .pr-9,
.chr-header-footer .px-9 {
  padding-right: 56px !important;
}
.chr-header-footer .pb-9,
.chr-header-footer .py-9 {
  padding-bottom: 56px !important;
}
.chr-header-footer .pl-9,
.chr-header-footer .px-9 {
  padding-left: 56px !important;
}
.chr-header-footer .m-10 {
  margin: 64px !important;
}
.chr-header-footer .mt-10,
.chr-header-footer .my-10 {
  margin-top: 64px !important;
}
.chr-header-footer .mr-10,
.chr-header-footer .mx-10 {
  margin-right: 64px !important;
}
.chr-header-footer .mb-10,
.chr-header-footer .my-10 {
  margin-bottom: 64px !important;
}
.chr-header-footer .ml-10,
.chr-header-footer .mx-10 {
  margin-left: 64px !important;
}
.chr-header-footer .p-10 {
  padding: 64px !important;
}
.chr-header-footer .pt-10,
.chr-header-footer .py-10 {
  padding-top: 64px !important;
}
.chr-header-footer .pr-10,
.chr-header-footer .px-10 {
  padding-right: 64px !important;
}
.chr-header-footer .pb-10,
.chr-header-footer .py-10 {
  padding-bottom: 64px !important;
}
.chr-header-footer .pl-10,
.chr-header-footer .px-10 {
  padding-left: 64px !important;
}
.chr-header-footer .m-11 {
  margin: 80px !important;
}
.chr-header-footer .mt-11,
.chr-header-footer .my-11 {
  margin-top: 80px !important;
}
.chr-header-footer .mr-11,
.chr-header-footer .mx-11 {
  margin-right: 80px !important;
}
.chr-header-footer .mb-11,
.chr-header-footer .my-11 {
  margin-bottom: 80px !important;
}
.chr-header-footer .ml-11,
.chr-header-footer .mx-11 {
  margin-left: 80px !important;
}
.chr-header-footer .p-11 {
  padding: 80px !important;
}
.chr-header-footer .pt-11,
.chr-header-footer .py-11 {
  padding-top: 80px !important;
}
.chr-header-footer .pr-11,
.chr-header-footer .px-11 {
  padding-right: 80px !important;
}
.chr-header-footer .pb-11,
.chr-header-footer .py-11 {
  padding-bottom: 80px !important;
}
.chr-header-footer .pl-11,
.chr-header-footer .px-11 {
  padding-left: 80px !important;
}
.chr-header-footer .m-12 {
  margin: 128px !important;
}
.chr-header-footer .mt-12,
.chr-header-footer .my-12 {
  margin-top: 128px !important;
}
.chr-header-footer .mr-12,
.chr-header-footer .mx-12 {
  margin-right: 128px !important;
}
.chr-header-footer .mb-12,
.chr-header-footer .my-12 {
  margin-bottom: 128px !important;
}
.chr-header-footer .ml-12,
.chr-header-footer .mx-12 {
  margin-left: 128px !important;
}
.chr-header-footer .p-12 {
  padding: 128px !important;
}
.chr-header-footer .pt-12,
.chr-header-footer .py-12 {
  padding-top: 128px !important;
}
.chr-header-footer .pr-12,
.chr-header-footer .px-12 {
  padding-right: 128px !important;
}
.chr-header-footer .pb-12,
.chr-header-footer .py-12 {
  padding-bottom: 128px !important;
}
.chr-header-footer .pl-12,
.chr-header-footer .px-12 {
  padding-left: 128px !important;
}
@media (min-width: 576px) {
  .chr-header-footer .m-sm-0 {
    margin: 0 !important;
  }
  .chr-header-footer .mt-sm-0,
.chr-header-footer .my-sm-0 {
    margin-top: 0 !important;
  }
  .chr-header-footer .mr-sm-0,
.chr-header-footer .mx-sm-0 {
    margin-right: 0 !important;
  }
  .chr-header-footer .mb-sm-0,
.chr-header-footer .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .chr-header-footer .ml-sm-0,
.chr-header-footer .mx-sm-0 {
    margin-left: 0 !important;
  }
  .chr-header-footer .p-sm-0 {
    padding: 0 !important;
  }
  .chr-header-footer .pt-sm-0,
.chr-header-footer .py-sm-0 {
    padding-top: 0 !important;
  }
  .chr-header-footer .pr-sm-0,
.chr-header-footer .px-sm-0 {
    padding-right: 0 !important;
  }
  .chr-header-footer .pb-sm-0,
.chr-header-footer .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .chr-header-footer .pl-sm-0,
.chr-header-footer .px-sm-0 {
    padding-left: 0 !important;
  }
  .chr-header-footer .m-sm-1 {
    margin: 4px !important;
  }
  .chr-header-footer .mt-sm-1,
.chr-header-footer .my-sm-1 {
    margin-top: 4px !important;
  }
  .chr-header-footer .mr-sm-1,
.chr-header-footer .mx-sm-1 {
    margin-right: 4px !important;
  }
  .chr-header-footer .mb-sm-1,
.chr-header-footer .my-sm-1 {
    margin-bottom: 4px !important;
  }
  .chr-header-footer .ml-sm-1,
.chr-header-footer .mx-sm-1 {
    margin-left: 4px !important;
  }
  .chr-header-footer .p-sm-1 {
    padding: 4px !important;
  }
  .chr-header-footer .pt-sm-1,
.chr-header-footer .py-sm-1 {
    padding-top: 4px !important;
  }
  .chr-header-footer .pr-sm-1,
.chr-header-footer .px-sm-1 {
    padding-right: 4px !important;
  }
  .chr-header-footer .pb-sm-1,
.chr-header-footer .py-sm-1 {
    padding-bottom: 4px !important;
  }
  .chr-header-footer .pl-sm-1,
.chr-header-footer .px-sm-1 {
    padding-left: 4px !important;
  }
  .chr-header-footer .m-sm-2 {
    margin: 8px !important;
  }
  .chr-header-footer .mt-sm-2,
.chr-header-footer .my-sm-2 {
    margin-top: 8px !important;
  }
  .chr-header-footer .mr-sm-2,
.chr-header-footer .mx-sm-2 {
    margin-right: 8px !important;
  }
  .chr-header-footer .mb-sm-2,
.chr-header-footer .my-sm-2 {
    margin-bottom: 8px !important;
  }
  .chr-header-footer .ml-sm-2,
.chr-header-footer .mx-sm-2 {
    margin-left: 8px !important;
  }
  .chr-header-footer .p-sm-2 {
    padding: 8px !important;
  }
  .chr-header-footer .pt-sm-2,
.chr-header-footer .py-sm-2 {
    padding-top: 8px !important;
  }
  .chr-header-footer .pr-sm-2,
.chr-header-footer .px-sm-2 {
    padding-right: 8px !important;
  }
  .chr-header-footer .pb-sm-2,
.chr-header-footer .py-sm-2 {
    padding-bottom: 8px !important;
  }
  .chr-header-footer .pl-sm-2,
.chr-header-footer .px-sm-2 {
    padding-left: 8px !important;
  }
  .chr-header-footer .m-sm-3 {
    margin: 12px !important;
  }
  .chr-header-footer .mt-sm-3,
.chr-header-footer .my-sm-3 {
    margin-top: 12px !important;
  }
  .chr-header-footer .mr-sm-3,
.chr-header-footer .mx-sm-3 {
    margin-right: 12px !important;
  }
  .chr-header-footer .mb-sm-3,
.chr-header-footer .my-sm-3 {
    margin-bottom: 12px !important;
  }
  .chr-header-footer .ml-sm-3,
.chr-header-footer .mx-sm-3 {
    margin-left: 12px !important;
  }
  .chr-header-footer .p-sm-3 {
    padding: 12px !important;
  }
  .chr-header-footer .pt-sm-3,
.chr-header-footer .py-sm-3 {
    padding-top: 12px !important;
  }
  .chr-header-footer .pr-sm-3,
.chr-header-footer .px-sm-3 {
    padding-right: 12px !important;
  }
  .chr-header-footer .pb-sm-3,
.chr-header-footer .py-sm-3 {
    padding-bottom: 12px !important;
  }
  .chr-header-footer .pl-sm-3,
.chr-header-footer .px-sm-3 {
    padding-left: 12px !important;
  }
  .chr-header-footer .m-sm-4 {
    margin: 16px !important;
  }
  .chr-header-footer .mt-sm-4,
.chr-header-footer .my-sm-4 {
    margin-top: 16px !important;
  }
  .chr-header-footer .mr-sm-4,
.chr-header-footer .mx-sm-4 {
    margin-right: 16px !important;
  }
  .chr-header-footer .mb-sm-4,
.chr-header-footer .my-sm-4 {
    margin-bottom: 16px !important;
  }
  .chr-header-footer .ml-sm-4,
.chr-header-footer .mx-sm-4 {
    margin-left: 16px !important;
  }
  .chr-header-footer .p-sm-4 {
    padding: 16px !important;
  }
  .chr-header-footer .pt-sm-4,
.chr-header-footer .py-sm-4 {
    padding-top: 16px !important;
  }
  .chr-header-footer .pr-sm-4,
.chr-header-footer .px-sm-4 {
    padding-right: 16px !important;
  }
  .chr-header-footer .pb-sm-4,
.chr-header-footer .py-sm-4 {
    padding-bottom: 16px !important;
  }
  .chr-header-footer .pl-sm-4,
.chr-header-footer .px-sm-4 {
    padding-left: 16px !important;
  }
  .chr-header-footer .m-sm-5 {
    margin: 24px !important;
  }
  .chr-header-footer .mt-sm-5,
.chr-header-footer .my-sm-5 {
    margin-top: 24px !important;
  }
  .chr-header-footer .mr-sm-5,
.chr-header-footer .mx-sm-5 {
    margin-right: 24px !important;
  }
  .chr-header-footer .mb-sm-5,
.chr-header-footer .my-sm-5 {
    margin-bottom: 24px !important;
  }
  .chr-header-footer .ml-sm-5,
.chr-header-footer .mx-sm-5 {
    margin-left: 24px !important;
  }
  .chr-header-footer .p-sm-5 {
    padding: 24px !important;
  }
  .chr-header-footer .pt-sm-5,
.chr-header-footer .py-sm-5 {
    padding-top: 24px !important;
  }
  .chr-header-footer .pr-sm-5,
.chr-header-footer .px-sm-5 {
    padding-right: 24px !important;
  }
  .chr-header-footer .pb-sm-5,
.chr-header-footer .py-sm-5 {
    padding-bottom: 24px !important;
  }
  .chr-header-footer .pl-sm-5,
.chr-header-footer .px-sm-5 {
    padding-left: 24px !important;
  }
  .chr-header-footer .m-sm-6 {
    margin: 32px !important;
  }
  .chr-header-footer .mt-sm-6,
.chr-header-footer .my-sm-6 {
    margin-top: 32px !important;
  }
  .chr-header-footer .mr-sm-6,
.chr-header-footer .mx-sm-6 {
    margin-right: 32px !important;
  }
  .chr-header-footer .mb-sm-6,
.chr-header-footer .my-sm-6 {
    margin-bottom: 32px !important;
  }
  .chr-header-footer .ml-sm-6,
.chr-header-footer .mx-sm-6 {
    margin-left: 32px !important;
  }
  .chr-header-footer .p-sm-6 {
    padding: 32px !important;
  }
  .chr-header-footer .pt-sm-6,
.chr-header-footer .py-sm-6 {
    padding-top: 32px !important;
  }
  .chr-header-footer .pr-sm-6,
.chr-header-footer .px-sm-6 {
    padding-right: 32px !important;
  }
  .chr-header-footer .pb-sm-6,
.chr-header-footer .py-sm-6 {
    padding-bottom: 32px !important;
  }
  .chr-header-footer .pl-sm-6,
.chr-header-footer .px-sm-6 {
    padding-left: 32px !important;
  }
  .chr-header-footer .m-sm-7 {
    margin: 40px !important;
  }
  .chr-header-footer .mt-sm-7,
.chr-header-footer .my-sm-7 {
    margin-top: 40px !important;
  }
  .chr-header-footer .mr-sm-7,
.chr-header-footer .mx-sm-7 {
    margin-right: 40px !important;
  }
  .chr-header-footer .mb-sm-7,
.chr-header-footer .my-sm-7 {
    margin-bottom: 40px !important;
  }
  .chr-header-footer .ml-sm-7,
.chr-header-footer .mx-sm-7 {
    margin-left: 40px !important;
  }
  .chr-header-footer .p-sm-7 {
    padding: 40px !important;
  }
  .chr-header-footer .pt-sm-7,
.chr-header-footer .py-sm-7 {
    padding-top: 40px !important;
  }
  .chr-header-footer .pr-sm-7,
.chr-header-footer .px-sm-7 {
    padding-right: 40px !important;
  }
  .chr-header-footer .pb-sm-7,
.chr-header-footer .py-sm-7 {
    padding-bottom: 40px !important;
  }
  .chr-header-footer .pl-sm-7,
.chr-header-footer .px-sm-7 {
    padding-left: 40px !important;
  }
  .chr-header-footer .m-sm-8 {
    margin: 48px !important;
  }
  .chr-header-footer .mt-sm-8,
.chr-header-footer .my-sm-8 {
    margin-top: 48px !important;
  }
  .chr-header-footer .mr-sm-8,
.chr-header-footer .mx-sm-8 {
    margin-right: 48px !important;
  }
  .chr-header-footer .mb-sm-8,
.chr-header-footer .my-sm-8 {
    margin-bottom: 48px !important;
  }
  .chr-header-footer .ml-sm-8,
.chr-header-footer .mx-sm-8 {
    margin-left: 48px !important;
  }
  .chr-header-footer .p-sm-8 {
    padding: 48px !important;
  }
  .chr-header-footer .pt-sm-8,
.chr-header-footer .py-sm-8 {
    padding-top: 48px !important;
  }
  .chr-header-footer .pr-sm-8,
.chr-header-footer .px-sm-8 {
    padding-right: 48px !important;
  }
  .chr-header-footer .pb-sm-8,
.chr-header-footer .py-sm-8 {
    padding-bottom: 48px !important;
  }
  .chr-header-footer .pl-sm-8,
.chr-header-footer .px-sm-8 {
    padding-left: 48px !important;
  }
  .chr-header-footer .m-sm-9 {
    margin: 56px !important;
  }
  .chr-header-footer .mt-sm-9,
.chr-header-footer .my-sm-9 {
    margin-top: 56px !important;
  }
  .chr-header-footer .mr-sm-9,
.chr-header-footer .mx-sm-9 {
    margin-right: 56px !important;
  }
  .chr-header-footer .mb-sm-9,
.chr-header-footer .my-sm-9 {
    margin-bottom: 56px !important;
  }
  .chr-header-footer .ml-sm-9,
.chr-header-footer .mx-sm-9 {
    margin-left: 56px !important;
  }
  .chr-header-footer .p-sm-9 {
    padding: 56px !important;
  }
  .chr-header-footer .pt-sm-9,
.chr-header-footer .py-sm-9 {
    padding-top: 56px !important;
  }
  .chr-header-footer .pr-sm-9,
.chr-header-footer .px-sm-9 {
    padding-right: 56px !important;
  }
  .chr-header-footer .pb-sm-9,
.chr-header-footer .py-sm-9 {
    padding-bottom: 56px !important;
  }
  .chr-header-footer .pl-sm-9,
.chr-header-footer .px-sm-9 {
    padding-left: 56px !important;
  }
  .chr-header-footer .m-sm-10 {
    margin: 64px !important;
  }
  .chr-header-footer .mt-sm-10,
.chr-header-footer .my-sm-10 {
    margin-top: 64px !important;
  }
  .chr-header-footer .mr-sm-10,
.chr-header-footer .mx-sm-10 {
    margin-right: 64px !important;
  }
  .chr-header-footer .mb-sm-10,
.chr-header-footer .my-sm-10 {
    margin-bottom: 64px !important;
  }
  .chr-header-footer .ml-sm-10,
.chr-header-footer .mx-sm-10 {
    margin-left: 64px !important;
  }
  .chr-header-footer .p-sm-10 {
    padding: 64px !important;
  }
  .chr-header-footer .pt-sm-10,
.chr-header-footer .py-sm-10 {
    padding-top: 64px !important;
  }
  .chr-header-footer .pr-sm-10,
.chr-header-footer .px-sm-10 {
    padding-right: 64px !important;
  }
  .chr-header-footer .pb-sm-10,
.chr-header-footer .py-sm-10 {
    padding-bottom: 64px !important;
  }
  .chr-header-footer .pl-sm-10,
.chr-header-footer .px-sm-10 {
    padding-left: 64px !important;
  }
  .chr-header-footer .m-sm-11 {
    margin: 80px !important;
  }
  .chr-header-footer .mt-sm-11,
.chr-header-footer .my-sm-11 {
    margin-top: 80px !important;
  }
  .chr-header-footer .mr-sm-11,
.chr-header-footer .mx-sm-11 {
    margin-right: 80px !important;
  }
  .chr-header-footer .mb-sm-11,
.chr-header-footer .my-sm-11 {
    margin-bottom: 80px !important;
  }
  .chr-header-footer .ml-sm-11,
.chr-header-footer .mx-sm-11 {
    margin-left: 80px !important;
  }
  .chr-header-footer .p-sm-11 {
    padding: 80px !important;
  }
  .chr-header-footer .pt-sm-11,
.chr-header-footer .py-sm-11 {
    padding-top: 80px !important;
  }
  .chr-header-footer .pr-sm-11,
.chr-header-footer .px-sm-11 {
    padding-right: 80px !important;
  }
  .chr-header-footer .pb-sm-11,
.chr-header-footer .py-sm-11 {
    padding-bottom: 80px !important;
  }
  .chr-header-footer .pl-sm-11,
.chr-header-footer .px-sm-11 {
    padding-left: 80px !important;
  }
  .chr-header-footer .m-sm-12 {
    margin: 128px !important;
  }
  .chr-header-footer .mt-sm-12,
.chr-header-footer .my-sm-12 {
    margin-top: 128px !important;
  }
  .chr-header-footer .mr-sm-12,
.chr-header-footer .mx-sm-12 {
    margin-right: 128px !important;
  }
  .chr-header-footer .mb-sm-12,
.chr-header-footer .my-sm-12 {
    margin-bottom: 128px !important;
  }
  .chr-header-footer .ml-sm-12,
.chr-header-footer .mx-sm-12 {
    margin-left: 128px !important;
  }
  .chr-header-footer .p-sm-12 {
    padding: 128px !important;
  }
  .chr-header-footer .pt-sm-12,
.chr-header-footer .py-sm-12 {
    padding-top: 128px !important;
  }
  .chr-header-footer .pr-sm-12,
.chr-header-footer .px-sm-12 {
    padding-right: 128px !important;
  }
  .chr-header-footer .pb-sm-12,
.chr-header-footer .py-sm-12 {
    padding-bottom: 128px !important;
  }
  .chr-header-footer .pl-sm-12,
.chr-header-footer .px-sm-12 {
    padding-left: 128px !important;
  }
}
@media (min-width: 768px) {
  .chr-header-footer .m-md-0 {
    margin: 0 !important;
  }
  .chr-header-footer .mt-md-0,
.chr-header-footer .my-md-0 {
    margin-top: 0 !important;
  }
  .chr-header-footer .mr-md-0,
.chr-header-footer .mx-md-0 {
    margin-right: 0 !important;
  }
  .chr-header-footer .mb-md-0,
.chr-header-footer .my-md-0 {
    margin-bottom: 0 !important;
  }
  .chr-header-footer .ml-md-0,
.chr-header-footer .mx-md-0 {
    margin-left: 0 !important;
  }
  .chr-header-footer .p-md-0 {
    padding: 0 !important;
  }
  .chr-header-footer .pt-md-0,
.chr-header-footer .py-md-0 {
    padding-top: 0 !important;
  }
  .chr-header-footer .pr-md-0,
.chr-header-footer .px-md-0 {
    padding-right: 0 !important;
  }
  .chr-header-footer .pb-md-0,
.chr-header-footer .py-md-0 {
    padding-bottom: 0 !important;
  }
  .chr-header-footer .pl-md-0,
.chr-header-footer .px-md-0 {
    padding-left: 0 !important;
  }
  .chr-header-footer .m-md-1 {
    margin: 4px !important;
  }
  .chr-header-footer .mt-md-1,
.chr-header-footer .my-md-1 {
    margin-top: 4px !important;
  }
  .chr-header-footer .mr-md-1,
.chr-header-footer .mx-md-1 {
    margin-right: 4px !important;
  }
  .chr-header-footer .mb-md-1,
.chr-header-footer .my-md-1 {
    margin-bottom: 4px !important;
  }
  .chr-header-footer .ml-md-1,
.chr-header-footer .mx-md-1 {
    margin-left: 4px !important;
  }
  .chr-header-footer .p-md-1 {
    padding: 4px !important;
  }
  .chr-header-footer .pt-md-1,
.chr-header-footer .py-md-1 {
    padding-top: 4px !important;
  }
  .chr-header-footer .pr-md-1,
.chr-header-footer .px-md-1 {
    padding-right: 4px !important;
  }
  .chr-header-footer .pb-md-1,
.chr-header-footer .py-md-1 {
    padding-bottom: 4px !important;
  }
  .chr-header-footer .pl-md-1,
.chr-header-footer .px-md-1 {
    padding-left: 4px !important;
  }
  .chr-header-footer .m-md-2 {
    margin: 8px !important;
  }
  .chr-header-footer .mt-md-2,
.chr-header-footer .my-md-2 {
    margin-top: 8px !important;
  }
  .chr-header-footer .mr-md-2,
.chr-header-footer .mx-md-2 {
    margin-right: 8px !important;
  }
  .chr-header-footer .mb-md-2,
.chr-header-footer .my-md-2 {
    margin-bottom: 8px !important;
  }
  .chr-header-footer .ml-md-2,
.chr-header-footer .mx-md-2 {
    margin-left: 8px !important;
  }
  .chr-header-footer .p-md-2 {
    padding: 8px !important;
  }
  .chr-header-footer .pt-md-2,
.chr-header-footer .py-md-2 {
    padding-top: 8px !important;
  }
  .chr-header-footer .pr-md-2,
.chr-header-footer .px-md-2 {
    padding-right: 8px !important;
  }
  .chr-header-footer .pb-md-2,
.chr-header-footer .py-md-2 {
    padding-bottom: 8px !important;
  }
  .chr-header-footer .pl-md-2,
.chr-header-footer .px-md-2 {
    padding-left: 8px !important;
  }
  .chr-header-footer .m-md-3 {
    margin: 12px !important;
  }
  .chr-header-footer .mt-md-3,
.chr-header-footer .my-md-3 {
    margin-top: 12px !important;
  }
  .chr-header-footer .mr-md-3,
.chr-header-footer .mx-md-3 {
    margin-right: 12px !important;
  }
  .chr-header-footer .mb-md-3,
.chr-header-footer .my-md-3 {
    margin-bottom: 12px !important;
  }
  .chr-header-footer .ml-md-3,
.chr-header-footer .mx-md-3 {
    margin-left: 12px !important;
  }
  .chr-header-footer .p-md-3 {
    padding: 12px !important;
  }
  .chr-header-footer .pt-md-3,
.chr-header-footer .py-md-3 {
    padding-top: 12px !important;
  }
  .chr-header-footer .pr-md-3,
.chr-header-footer .px-md-3 {
    padding-right: 12px !important;
  }
  .chr-header-footer .pb-md-3,
.chr-header-footer .py-md-3 {
    padding-bottom: 12px !important;
  }
  .chr-header-footer .pl-md-3,
.chr-header-footer .px-md-3 {
    padding-left: 12px !important;
  }
  .chr-header-footer .m-md-4 {
    margin: 16px !important;
  }
  .chr-header-footer .mt-md-4,
.chr-header-footer .my-md-4 {
    margin-top: 16px !important;
  }
  .chr-header-footer .mr-md-4,
.chr-header-footer .mx-md-4 {
    margin-right: 16px !important;
  }
  .chr-header-footer .mb-md-4,
.chr-header-footer .my-md-4 {
    margin-bottom: 16px !important;
  }
  .chr-header-footer .ml-md-4,
.chr-header-footer .mx-md-4 {
    margin-left: 16px !important;
  }
  .chr-header-footer .p-md-4 {
    padding: 16px !important;
  }
  .chr-header-footer .pt-md-4,
.chr-header-footer .py-md-4 {
    padding-top: 16px !important;
  }
  .chr-header-footer .pr-md-4,
.chr-header-footer .px-md-4 {
    padding-right: 16px !important;
  }
  .chr-header-footer .pb-md-4,
.chr-header-footer .py-md-4 {
    padding-bottom: 16px !important;
  }
  .chr-header-footer .pl-md-4,
.chr-header-footer .px-md-4 {
    padding-left: 16px !important;
  }
  .chr-header-footer .m-md-5 {
    margin: 24px !important;
  }
  .chr-header-footer .mt-md-5,
.chr-header-footer .my-md-5 {
    margin-top: 24px !important;
  }
  .chr-header-footer .mr-md-5,
.chr-header-footer .mx-md-5 {
    margin-right: 24px !important;
  }
  .chr-header-footer .mb-md-5,
.chr-header-footer .my-md-5 {
    margin-bottom: 24px !important;
  }
  .chr-header-footer .ml-md-5,
.chr-header-footer .mx-md-5 {
    margin-left: 24px !important;
  }
  .chr-header-footer .p-md-5 {
    padding: 24px !important;
  }
  .chr-header-footer .pt-md-5,
.chr-header-footer .py-md-5 {
    padding-top: 24px !important;
  }
  .chr-header-footer .pr-md-5,
.chr-header-footer .px-md-5 {
    padding-right: 24px !important;
  }
  .chr-header-footer .pb-md-5,
.chr-header-footer .py-md-5 {
    padding-bottom: 24px !important;
  }
  .chr-header-footer .pl-md-5,
.chr-header-footer .px-md-5 {
    padding-left: 24px !important;
  }
  .chr-header-footer .m-md-6 {
    margin: 32px !important;
  }
  .chr-header-footer .mt-md-6,
.chr-header-footer .my-md-6 {
    margin-top: 32px !important;
  }
  .chr-header-footer .mr-md-6,
.chr-header-footer .mx-md-6 {
    margin-right: 32px !important;
  }
  .chr-header-footer .mb-md-6,
.chr-header-footer .my-md-6 {
    margin-bottom: 32px !important;
  }
  .chr-header-footer .ml-md-6,
.chr-header-footer .mx-md-6 {
    margin-left: 32px !important;
  }
  .chr-header-footer .p-md-6 {
    padding: 32px !important;
  }
  .chr-header-footer .pt-md-6,
.chr-header-footer .py-md-6 {
    padding-top: 32px !important;
  }
  .chr-header-footer .pr-md-6,
.chr-header-footer .px-md-6 {
    padding-right: 32px !important;
  }
  .chr-header-footer .pb-md-6,
.chr-header-footer .py-md-6 {
    padding-bottom: 32px !important;
  }
  .chr-header-footer .pl-md-6,
.chr-header-footer .px-md-6 {
    padding-left: 32px !important;
  }
  .chr-header-footer .m-md-7 {
    margin: 40px !important;
  }
  .chr-header-footer .mt-md-7,
.chr-header-footer .my-md-7 {
    margin-top: 40px !important;
  }
  .chr-header-footer .mr-md-7,
.chr-header-footer .mx-md-7 {
    margin-right: 40px !important;
  }
  .chr-header-footer .mb-md-7,
.chr-header-footer .my-md-7 {
    margin-bottom: 40px !important;
  }
  .chr-header-footer .ml-md-7,
.chr-header-footer .mx-md-7 {
    margin-left: 40px !important;
  }
  .chr-header-footer .p-md-7 {
    padding: 40px !important;
  }
  .chr-header-footer .pt-md-7,
.chr-header-footer .py-md-7 {
    padding-top: 40px !important;
  }
  .chr-header-footer .pr-md-7,
.chr-header-footer .px-md-7 {
    padding-right: 40px !important;
  }
  .chr-header-footer .pb-md-7,
.chr-header-footer .py-md-7 {
    padding-bottom: 40px !important;
  }
  .chr-header-footer .pl-md-7,
.chr-header-footer .px-md-7 {
    padding-left: 40px !important;
  }
  .chr-header-footer .m-md-8 {
    margin: 48px !important;
  }
  .chr-header-footer .mt-md-8,
.chr-header-footer .my-md-8 {
    margin-top: 48px !important;
  }
  .chr-header-footer .mr-md-8,
.chr-header-footer .mx-md-8 {
    margin-right: 48px !important;
  }
  .chr-header-footer .mb-md-8,
.chr-header-footer .my-md-8 {
    margin-bottom: 48px !important;
  }
  .chr-header-footer .ml-md-8,
.chr-header-footer .mx-md-8 {
    margin-left: 48px !important;
  }
  .chr-header-footer .p-md-8 {
    padding: 48px !important;
  }
  .chr-header-footer .pt-md-8,
.chr-header-footer .py-md-8 {
    padding-top: 48px !important;
  }
  .chr-header-footer .pr-md-8,
.chr-header-footer .px-md-8 {
    padding-right: 48px !important;
  }
  .chr-header-footer .pb-md-8,
.chr-header-footer .py-md-8 {
    padding-bottom: 48px !important;
  }
  .chr-header-footer .pl-md-8,
.chr-header-footer .px-md-8 {
    padding-left: 48px !important;
  }
  .chr-header-footer .m-md-9 {
    margin: 56px !important;
  }
  .chr-header-footer .mt-md-9,
.chr-header-footer .my-md-9 {
    margin-top: 56px !important;
  }
  .chr-header-footer .mr-md-9,
.chr-header-footer .mx-md-9 {
    margin-right: 56px !important;
  }
  .chr-header-footer .mb-md-9,
.chr-header-footer .my-md-9 {
    margin-bottom: 56px !important;
  }
  .chr-header-footer .ml-md-9,
.chr-header-footer .mx-md-9 {
    margin-left: 56px !important;
  }
  .chr-header-footer .p-md-9 {
    padding: 56px !important;
  }
  .chr-header-footer .pt-md-9,
.chr-header-footer .py-md-9 {
    padding-top: 56px !important;
  }
  .chr-header-footer .pr-md-9,
.chr-header-footer .px-md-9 {
    padding-right: 56px !important;
  }
  .chr-header-footer .pb-md-9,
.chr-header-footer .py-md-9 {
    padding-bottom: 56px !important;
  }
  .chr-header-footer .pl-md-9,
.chr-header-footer .px-md-9 {
    padding-left: 56px !important;
  }
  .chr-header-footer .m-md-10 {
    margin: 64px !important;
  }
  .chr-header-footer .mt-md-10,
.chr-header-footer .my-md-10 {
    margin-top: 64px !important;
  }
  .chr-header-footer .mr-md-10,
.chr-header-footer .mx-md-10 {
    margin-right: 64px !important;
  }
  .chr-header-footer .mb-md-10,
.chr-header-footer .my-md-10 {
    margin-bottom: 64px !important;
  }
  .chr-header-footer .ml-md-10,
.chr-header-footer .mx-md-10 {
    margin-left: 64px !important;
  }
  .chr-header-footer .p-md-10 {
    padding: 64px !important;
  }
  .chr-header-footer .pt-md-10,
.chr-header-footer .py-md-10 {
    padding-top: 64px !important;
  }
  .chr-header-footer .pr-md-10,
.chr-header-footer .px-md-10 {
    padding-right: 64px !important;
  }
  .chr-header-footer .pb-md-10,
.chr-header-footer .py-md-10 {
    padding-bottom: 64px !important;
  }
  .chr-header-footer .pl-md-10,
.chr-header-footer .px-md-10 {
    padding-left: 64px !important;
  }
  .chr-header-footer .m-md-11 {
    margin: 80px !important;
  }
  .chr-header-footer .mt-md-11,
.chr-header-footer .my-md-11 {
    margin-top: 80px !important;
  }
  .chr-header-footer .mr-md-11,
.chr-header-footer .mx-md-11 {
    margin-right: 80px !important;
  }
  .chr-header-footer .mb-md-11,
.chr-header-footer .my-md-11 {
    margin-bottom: 80px !important;
  }
  .chr-header-footer .ml-md-11,
.chr-header-footer .mx-md-11 {
    margin-left: 80px !important;
  }
  .chr-header-footer .p-md-11 {
    padding: 80px !important;
  }
  .chr-header-footer .pt-md-11,
.chr-header-footer .py-md-11 {
    padding-top: 80px !important;
  }
  .chr-header-footer .pr-md-11,
.chr-header-footer .px-md-11 {
    padding-right: 80px !important;
  }
  .chr-header-footer .pb-md-11,
.chr-header-footer .py-md-11 {
    padding-bottom: 80px !important;
  }
  .chr-header-footer .pl-md-11,
.chr-header-footer .px-md-11 {
    padding-left: 80px !important;
  }
  .chr-header-footer .m-md-12 {
    margin: 128px !important;
  }
  .chr-header-footer .mt-md-12,
.chr-header-footer .my-md-12 {
    margin-top: 128px !important;
  }
  .chr-header-footer .mr-md-12,
.chr-header-footer .mx-md-12 {
    margin-right: 128px !important;
  }
  .chr-header-footer .mb-md-12,
.chr-header-footer .my-md-12 {
    margin-bottom: 128px !important;
  }
  .chr-header-footer .ml-md-12,
.chr-header-footer .mx-md-12 {
    margin-left: 128px !important;
  }
  .chr-header-footer .p-md-12 {
    padding: 128px !important;
  }
  .chr-header-footer .pt-md-12,
.chr-header-footer .py-md-12 {
    padding-top: 128px !important;
  }
  .chr-header-footer .pr-md-12,
.chr-header-footer .px-md-12 {
    padding-right: 128px !important;
  }
  .chr-header-footer .pb-md-12,
.chr-header-footer .py-md-12 {
    padding-bottom: 128px !important;
  }
  .chr-header-footer .pl-md-12,
.chr-header-footer .px-md-12 {
    padding-left: 128px !important;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .m-lg-0 {
    margin: 0 !important;
  }
  .chr-header-footer .mt-lg-0,
.chr-header-footer .my-lg-0 {
    margin-top: 0 !important;
  }
  .chr-header-footer .mr-lg-0,
.chr-header-footer .mx-lg-0 {
    margin-right: 0 !important;
  }
  .chr-header-footer .mb-lg-0,
.chr-header-footer .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .chr-header-footer .ml-lg-0,
.chr-header-footer .mx-lg-0 {
    margin-left: 0 !important;
  }
  .chr-header-footer .p-lg-0 {
    padding: 0 !important;
  }
  .chr-header-footer .pt-lg-0,
.chr-header-footer .py-lg-0 {
    padding-top: 0 !important;
  }
  .chr-header-footer .pr-lg-0,
.chr-header-footer .px-lg-0 {
    padding-right: 0 !important;
  }
  .chr-header-footer .pb-lg-0,
.chr-header-footer .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .chr-header-footer .pl-lg-0,
.chr-header-footer .px-lg-0 {
    padding-left: 0 !important;
  }
  .chr-header-footer .m-lg-1 {
    margin: 4px !important;
  }
  .chr-header-footer .mt-lg-1,
.chr-header-footer .my-lg-1 {
    margin-top: 4px !important;
  }
  .chr-header-footer .mr-lg-1,
.chr-header-footer .mx-lg-1 {
    margin-right: 4px !important;
  }
  .chr-header-footer .mb-lg-1,
.chr-header-footer .my-lg-1 {
    margin-bottom: 4px !important;
  }
  .chr-header-footer .ml-lg-1,
.chr-header-footer .mx-lg-1 {
    margin-left: 4px !important;
  }
  .chr-header-footer .p-lg-1 {
    padding: 4px !important;
  }
  .chr-header-footer .pt-lg-1,
.chr-header-footer .py-lg-1 {
    padding-top: 4px !important;
  }
  .chr-header-footer .pr-lg-1,
.chr-header-footer .px-lg-1 {
    padding-right: 4px !important;
  }
  .chr-header-footer .pb-lg-1,
.chr-header-footer .py-lg-1 {
    padding-bottom: 4px !important;
  }
  .chr-header-footer .pl-lg-1,
.chr-header-footer .px-lg-1 {
    padding-left: 4px !important;
  }
  .chr-header-footer .m-lg-2 {
    margin: 8px !important;
  }
  .chr-header-footer .mt-lg-2,
.chr-header-footer .my-lg-2 {
    margin-top: 8px !important;
  }
  .chr-header-footer .mr-lg-2,
.chr-header-footer .mx-lg-2 {
    margin-right: 8px !important;
  }
  .chr-header-footer .mb-lg-2,
.chr-header-footer .my-lg-2 {
    margin-bottom: 8px !important;
  }
  .chr-header-footer .ml-lg-2,
.chr-header-footer .mx-lg-2 {
    margin-left: 8px !important;
  }
  .chr-header-footer .p-lg-2 {
    padding: 8px !important;
  }
  .chr-header-footer .pt-lg-2,
.chr-header-footer .py-lg-2 {
    padding-top: 8px !important;
  }
  .chr-header-footer .pr-lg-2,
.chr-header-footer .px-lg-2 {
    padding-right: 8px !important;
  }
  .chr-header-footer .pb-lg-2,
.chr-header-footer .py-lg-2 {
    padding-bottom: 8px !important;
  }
  .chr-header-footer .pl-lg-2,
.chr-header-footer .px-lg-2 {
    padding-left: 8px !important;
  }
  .chr-header-footer .m-lg-3 {
    margin: 12px !important;
  }
  .chr-header-footer .mt-lg-3,
.chr-header-footer .my-lg-3 {
    margin-top: 12px !important;
  }
  .chr-header-footer .mr-lg-3,
.chr-header-footer .mx-lg-3 {
    margin-right: 12px !important;
  }
  .chr-header-footer .mb-lg-3,
.chr-header-footer .my-lg-3 {
    margin-bottom: 12px !important;
  }
  .chr-header-footer .ml-lg-3,
.chr-header-footer .mx-lg-3 {
    margin-left: 12px !important;
  }
  .chr-header-footer .p-lg-3 {
    padding: 12px !important;
  }
  .chr-header-footer .pt-lg-3,
.chr-header-footer .py-lg-3 {
    padding-top: 12px !important;
  }
  .chr-header-footer .pr-lg-3,
.chr-header-footer .px-lg-3 {
    padding-right: 12px !important;
  }
  .chr-header-footer .pb-lg-3,
.chr-header-footer .py-lg-3 {
    padding-bottom: 12px !important;
  }
  .chr-header-footer .pl-lg-3,
.chr-header-footer .px-lg-3 {
    padding-left: 12px !important;
  }
  .chr-header-footer .m-lg-4 {
    margin: 16px !important;
  }
  .chr-header-footer .mt-lg-4,
.chr-header-footer .my-lg-4 {
    margin-top: 16px !important;
  }
  .chr-header-footer .mr-lg-4,
.chr-header-footer .mx-lg-4 {
    margin-right: 16px !important;
  }
  .chr-header-footer .mb-lg-4,
.chr-header-footer .my-lg-4 {
    margin-bottom: 16px !important;
  }
  .chr-header-footer .ml-lg-4,
.chr-header-footer .mx-lg-4 {
    margin-left: 16px !important;
  }
  .chr-header-footer .p-lg-4 {
    padding: 16px !important;
  }
  .chr-header-footer .pt-lg-4,
.chr-header-footer .py-lg-4 {
    padding-top: 16px !important;
  }
  .chr-header-footer .pr-lg-4,
.chr-header-footer .px-lg-4 {
    padding-right: 16px !important;
  }
  .chr-header-footer .pb-lg-4,
.chr-header-footer .py-lg-4 {
    padding-bottom: 16px !important;
  }
  .chr-header-footer .pl-lg-4,
.chr-header-footer .px-lg-4 {
    padding-left: 16px !important;
  }
  .chr-header-footer .m-lg-5 {
    margin: 24px !important;
  }
  .chr-header-footer .mt-lg-5,
.chr-header-footer .my-lg-5 {
    margin-top: 24px !important;
  }
  .chr-header-footer .mr-lg-5,
.chr-header-footer .mx-lg-5 {
    margin-right: 24px !important;
  }
  .chr-header-footer .mb-lg-5,
.chr-header-footer .my-lg-5 {
    margin-bottom: 24px !important;
  }
  .chr-header-footer .ml-lg-5,
.chr-header-footer .mx-lg-5 {
    margin-left: 24px !important;
  }
  .chr-header-footer .p-lg-5 {
    padding: 24px !important;
  }
  .chr-header-footer .pt-lg-5,
.chr-header-footer .py-lg-5 {
    padding-top: 24px !important;
  }
  .chr-header-footer .pr-lg-5,
.chr-header-footer .px-lg-5 {
    padding-right: 24px !important;
  }
  .chr-header-footer .pb-lg-5,
.chr-header-footer .py-lg-5 {
    padding-bottom: 24px !important;
  }
  .chr-header-footer .pl-lg-5,
.chr-header-footer .px-lg-5 {
    padding-left: 24px !important;
  }
  .chr-header-footer .m-lg-6 {
    margin: 32px !important;
  }
  .chr-header-footer .mt-lg-6,
.chr-header-footer .my-lg-6 {
    margin-top: 32px !important;
  }
  .chr-header-footer .mr-lg-6,
.chr-header-footer .mx-lg-6 {
    margin-right: 32px !important;
  }
  .chr-header-footer .mb-lg-6,
.chr-header-footer .my-lg-6 {
    margin-bottom: 32px !important;
  }
  .chr-header-footer .ml-lg-6,
.chr-header-footer .mx-lg-6 {
    margin-left: 32px !important;
  }
  .chr-header-footer .p-lg-6 {
    padding: 32px !important;
  }
  .chr-header-footer .pt-lg-6,
.chr-header-footer .py-lg-6 {
    padding-top: 32px !important;
  }
  .chr-header-footer .pr-lg-6,
.chr-header-footer .px-lg-6 {
    padding-right: 32px !important;
  }
  .chr-header-footer .pb-lg-6,
.chr-header-footer .py-lg-6 {
    padding-bottom: 32px !important;
  }
  .chr-header-footer .pl-lg-6,
.chr-header-footer .px-lg-6 {
    padding-left: 32px !important;
  }
  .chr-header-footer .m-lg-7 {
    margin: 40px !important;
  }
  .chr-header-footer .mt-lg-7,
.chr-header-footer .my-lg-7 {
    margin-top: 40px !important;
  }
  .chr-header-footer .mr-lg-7,
.chr-header-footer .mx-lg-7 {
    margin-right: 40px !important;
  }
  .chr-header-footer .mb-lg-7,
.chr-header-footer .my-lg-7 {
    margin-bottom: 40px !important;
  }
  .chr-header-footer .ml-lg-7,
.chr-header-footer .mx-lg-7 {
    margin-left: 40px !important;
  }
  .chr-header-footer .p-lg-7 {
    padding: 40px !important;
  }
  .chr-header-footer .pt-lg-7,
.chr-header-footer .py-lg-7 {
    padding-top: 40px !important;
  }
  .chr-header-footer .pr-lg-7,
.chr-header-footer .px-lg-7 {
    padding-right: 40px !important;
  }
  .chr-header-footer .pb-lg-7,
.chr-header-footer .py-lg-7 {
    padding-bottom: 40px !important;
  }
  .chr-header-footer .pl-lg-7,
.chr-header-footer .px-lg-7 {
    padding-left: 40px !important;
  }
  .chr-header-footer .m-lg-8 {
    margin: 48px !important;
  }
  .chr-header-footer .mt-lg-8,
.chr-header-footer .my-lg-8 {
    margin-top: 48px !important;
  }
  .chr-header-footer .mr-lg-8,
.chr-header-footer .mx-lg-8 {
    margin-right: 48px !important;
  }
  .chr-header-footer .mb-lg-8,
.chr-header-footer .my-lg-8 {
    margin-bottom: 48px !important;
  }
  .chr-header-footer .ml-lg-8,
.chr-header-footer .mx-lg-8 {
    margin-left: 48px !important;
  }
  .chr-header-footer .p-lg-8 {
    padding: 48px !important;
  }
  .chr-header-footer .pt-lg-8,
.chr-header-footer .py-lg-8 {
    padding-top: 48px !important;
  }
  .chr-header-footer .pr-lg-8,
.chr-header-footer .px-lg-8 {
    padding-right: 48px !important;
  }
  .chr-header-footer .pb-lg-8,
.chr-header-footer .py-lg-8 {
    padding-bottom: 48px !important;
  }
  .chr-header-footer .pl-lg-8,
.chr-header-footer .px-lg-8 {
    padding-left: 48px !important;
  }
  .chr-header-footer .m-lg-9 {
    margin: 56px !important;
  }
  .chr-header-footer .mt-lg-9,
.chr-header-footer .my-lg-9 {
    margin-top: 56px !important;
  }
  .chr-header-footer .mr-lg-9,
.chr-header-footer .mx-lg-9 {
    margin-right: 56px !important;
  }
  .chr-header-footer .mb-lg-9,
.chr-header-footer .my-lg-9 {
    margin-bottom: 56px !important;
  }
  .chr-header-footer .ml-lg-9,
.chr-header-footer .mx-lg-9 {
    margin-left: 56px !important;
  }
  .chr-header-footer .p-lg-9 {
    padding: 56px !important;
  }
  .chr-header-footer .pt-lg-9,
.chr-header-footer .py-lg-9 {
    padding-top: 56px !important;
  }
  .chr-header-footer .pr-lg-9,
.chr-header-footer .px-lg-9 {
    padding-right: 56px !important;
  }
  .chr-header-footer .pb-lg-9,
.chr-header-footer .py-lg-9 {
    padding-bottom: 56px !important;
  }
  .chr-header-footer .pl-lg-9,
.chr-header-footer .px-lg-9 {
    padding-left: 56px !important;
  }
  .chr-header-footer .m-lg-10 {
    margin: 64px !important;
  }
  .chr-header-footer .mt-lg-10,
.chr-header-footer .my-lg-10 {
    margin-top: 64px !important;
  }
  .chr-header-footer .mr-lg-10,
.chr-header-footer .mx-lg-10 {
    margin-right: 64px !important;
  }
  .chr-header-footer .mb-lg-10,
.chr-header-footer .my-lg-10 {
    margin-bottom: 64px !important;
  }
  .chr-header-footer .ml-lg-10,
.chr-header-footer .mx-lg-10 {
    margin-left: 64px !important;
  }
  .chr-header-footer .p-lg-10 {
    padding: 64px !important;
  }
  .chr-header-footer .pt-lg-10,
.chr-header-footer .py-lg-10 {
    padding-top: 64px !important;
  }
  .chr-header-footer .pr-lg-10,
.chr-header-footer .px-lg-10 {
    padding-right: 64px !important;
  }
  .chr-header-footer .pb-lg-10,
.chr-header-footer .py-lg-10 {
    padding-bottom: 64px !important;
  }
  .chr-header-footer .pl-lg-10,
.chr-header-footer .px-lg-10 {
    padding-left: 64px !important;
  }
  .chr-header-footer .m-lg-11 {
    margin: 80px !important;
  }
  .chr-header-footer .mt-lg-11,
.chr-header-footer .my-lg-11 {
    margin-top: 80px !important;
  }
  .chr-header-footer .mr-lg-11,
.chr-header-footer .mx-lg-11 {
    margin-right: 80px !important;
  }
  .chr-header-footer .mb-lg-11,
.chr-header-footer .my-lg-11 {
    margin-bottom: 80px !important;
  }
  .chr-header-footer .ml-lg-11,
.chr-header-footer .mx-lg-11 {
    margin-left: 80px !important;
  }
  .chr-header-footer .p-lg-11 {
    padding: 80px !important;
  }
  .chr-header-footer .pt-lg-11,
.chr-header-footer .py-lg-11 {
    padding-top: 80px !important;
  }
  .chr-header-footer .pr-lg-11,
.chr-header-footer .px-lg-11 {
    padding-right: 80px !important;
  }
  .chr-header-footer .pb-lg-11,
.chr-header-footer .py-lg-11 {
    padding-bottom: 80px !important;
  }
  .chr-header-footer .pl-lg-11,
.chr-header-footer .px-lg-11 {
    padding-left: 80px !important;
  }
  .chr-header-footer .m-lg-12 {
    margin: 128px !important;
  }
  .chr-header-footer .mt-lg-12,
.chr-header-footer .my-lg-12 {
    margin-top: 128px !important;
  }
  .chr-header-footer .mr-lg-12,
.chr-header-footer .mx-lg-12 {
    margin-right: 128px !important;
  }
  .chr-header-footer .mb-lg-12,
.chr-header-footer .my-lg-12 {
    margin-bottom: 128px !important;
  }
  .chr-header-footer .ml-lg-12,
.chr-header-footer .mx-lg-12 {
    margin-left: 128px !important;
  }
  .chr-header-footer .p-lg-12 {
    padding: 128px !important;
  }
  .chr-header-footer .pt-lg-12,
.chr-header-footer .py-lg-12 {
    padding-top: 128px !important;
  }
  .chr-header-footer .pr-lg-12,
.chr-header-footer .px-lg-12 {
    padding-right: 128px !important;
  }
  .chr-header-footer .pb-lg-12,
.chr-header-footer .py-lg-12 {
    padding-bottom: 128px !important;
  }
  .chr-header-footer .pl-lg-12,
.chr-header-footer .px-lg-12 {
    padding-left: 128px !important;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .m-xl-0 {
    margin: 0 !important;
  }
  .chr-header-footer .mt-xl-0,
.chr-header-footer .my-xl-0 {
    margin-top: 0 !important;
  }
  .chr-header-footer .mr-xl-0,
.chr-header-footer .mx-xl-0 {
    margin-right: 0 !important;
  }
  .chr-header-footer .mb-xl-0,
.chr-header-footer .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .chr-header-footer .ml-xl-0,
.chr-header-footer .mx-xl-0 {
    margin-left: 0 !important;
  }
  .chr-header-footer .p-xl-0 {
    padding: 0 !important;
  }
  .chr-header-footer .pt-xl-0,
.chr-header-footer .py-xl-0 {
    padding-top: 0 !important;
  }
  .chr-header-footer .pr-xl-0,
.chr-header-footer .px-xl-0 {
    padding-right: 0 !important;
  }
  .chr-header-footer .pb-xl-0,
.chr-header-footer .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .chr-header-footer .pl-xl-0,
.chr-header-footer .px-xl-0 {
    padding-left: 0 !important;
  }
  .chr-header-footer .m-xl-1 {
    margin: 4px !important;
  }
  .chr-header-footer .mt-xl-1,
.chr-header-footer .my-xl-1 {
    margin-top: 4px !important;
  }
  .chr-header-footer .mr-xl-1,
.chr-header-footer .mx-xl-1 {
    margin-right: 4px !important;
  }
  .chr-header-footer .mb-xl-1,
.chr-header-footer .my-xl-1 {
    margin-bottom: 4px !important;
  }
  .chr-header-footer .ml-xl-1,
.chr-header-footer .mx-xl-1 {
    margin-left: 4px !important;
  }
  .chr-header-footer .p-xl-1 {
    padding: 4px !important;
  }
  .chr-header-footer .pt-xl-1,
.chr-header-footer .py-xl-1 {
    padding-top: 4px !important;
  }
  .chr-header-footer .pr-xl-1,
.chr-header-footer .px-xl-1 {
    padding-right: 4px !important;
  }
  .chr-header-footer .pb-xl-1,
.chr-header-footer .py-xl-1 {
    padding-bottom: 4px !important;
  }
  .chr-header-footer .pl-xl-1,
.chr-header-footer .px-xl-1 {
    padding-left: 4px !important;
  }
  .chr-header-footer .m-xl-2 {
    margin: 8px !important;
  }
  .chr-header-footer .mt-xl-2,
.chr-header-footer .my-xl-2 {
    margin-top: 8px !important;
  }
  .chr-header-footer .mr-xl-2,
.chr-header-footer .mx-xl-2 {
    margin-right: 8px !important;
  }
  .chr-header-footer .mb-xl-2,
.chr-header-footer .my-xl-2 {
    margin-bottom: 8px !important;
  }
  .chr-header-footer .ml-xl-2,
.chr-header-footer .mx-xl-2 {
    margin-left: 8px !important;
  }
  .chr-header-footer .p-xl-2 {
    padding: 8px !important;
  }
  .chr-header-footer .pt-xl-2,
.chr-header-footer .py-xl-2 {
    padding-top: 8px !important;
  }
  .chr-header-footer .pr-xl-2,
.chr-header-footer .px-xl-2 {
    padding-right: 8px !important;
  }
  .chr-header-footer .pb-xl-2,
.chr-header-footer .py-xl-2 {
    padding-bottom: 8px !important;
  }
  .chr-header-footer .pl-xl-2,
.chr-header-footer .px-xl-2 {
    padding-left: 8px !important;
  }
  .chr-header-footer .m-xl-3 {
    margin: 12px !important;
  }
  .chr-header-footer .mt-xl-3,
.chr-header-footer .my-xl-3 {
    margin-top: 12px !important;
  }
  .chr-header-footer .mr-xl-3,
.chr-header-footer .mx-xl-3 {
    margin-right: 12px !important;
  }
  .chr-header-footer .mb-xl-3,
.chr-header-footer .my-xl-3 {
    margin-bottom: 12px !important;
  }
  .chr-header-footer .ml-xl-3,
.chr-header-footer .mx-xl-3 {
    margin-left: 12px !important;
  }
  .chr-header-footer .p-xl-3 {
    padding: 12px !important;
  }
  .chr-header-footer .pt-xl-3,
.chr-header-footer .py-xl-3 {
    padding-top: 12px !important;
  }
  .chr-header-footer .pr-xl-3,
.chr-header-footer .px-xl-3 {
    padding-right: 12px !important;
  }
  .chr-header-footer .pb-xl-3,
.chr-header-footer .py-xl-3 {
    padding-bottom: 12px !important;
  }
  .chr-header-footer .pl-xl-3,
.chr-header-footer .px-xl-3 {
    padding-left: 12px !important;
  }
  .chr-header-footer .m-xl-4 {
    margin: 16px !important;
  }
  .chr-header-footer .mt-xl-4,
.chr-header-footer .my-xl-4 {
    margin-top: 16px !important;
  }
  .chr-header-footer .mr-xl-4,
.chr-header-footer .mx-xl-4 {
    margin-right: 16px !important;
  }
  .chr-header-footer .mb-xl-4,
.chr-header-footer .my-xl-4 {
    margin-bottom: 16px !important;
  }
  .chr-header-footer .ml-xl-4,
.chr-header-footer .mx-xl-4 {
    margin-left: 16px !important;
  }
  .chr-header-footer .p-xl-4 {
    padding: 16px !important;
  }
  .chr-header-footer .pt-xl-4,
.chr-header-footer .py-xl-4 {
    padding-top: 16px !important;
  }
  .chr-header-footer .pr-xl-4,
.chr-header-footer .px-xl-4 {
    padding-right: 16px !important;
  }
  .chr-header-footer .pb-xl-4,
.chr-header-footer .py-xl-4 {
    padding-bottom: 16px !important;
  }
  .chr-header-footer .pl-xl-4,
.chr-header-footer .px-xl-4 {
    padding-left: 16px !important;
  }
  .chr-header-footer .m-xl-5 {
    margin: 24px !important;
  }
  .chr-header-footer .mt-xl-5,
.chr-header-footer .my-xl-5 {
    margin-top: 24px !important;
  }
  .chr-header-footer .mr-xl-5,
.chr-header-footer .mx-xl-5 {
    margin-right: 24px !important;
  }
  .chr-header-footer .mb-xl-5,
.chr-header-footer .my-xl-5 {
    margin-bottom: 24px !important;
  }
  .chr-header-footer .ml-xl-5,
.chr-header-footer .mx-xl-5 {
    margin-left: 24px !important;
  }
  .chr-header-footer .p-xl-5 {
    padding: 24px !important;
  }
  .chr-header-footer .pt-xl-5,
.chr-header-footer .py-xl-5 {
    padding-top: 24px !important;
  }
  .chr-header-footer .pr-xl-5,
.chr-header-footer .px-xl-5 {
    padding-right: 24px !important;
  }
  .chr-header-footer .pb-xl-5,
.chr-header-footer .py-xl-5 {
    padding-bottom: 24px !important;
  }
  .chr-header-footer .pl-xl-5,
.chr-header-footer .px-xl-5 {
    padding-left: 24px !important;
  }
  .chr-header-footer .m-xl-6 {
    margin: 32px !important;
  }
  .chr-header-footer .mt-xl-6,
.chr-header-footer .my-xl-6 {
    margin-top: 32px !important;
  }
  .chr-header-footer .mr-xl-6,
.chr-header-footer .mx-xl-6 {
    margin-right: 32px !important;
  }
  .chr-header-footer .mb-xl-6,
.chr-header-footer .my-xl-6 {
    margin-bottom: 32px !important;
  }
  .chr-header-footer .ml-xl-6,
.chr-header-footer .mx-xl-6 {
    margin-left: 32px !important;
  }
  .chr-header-footer .p-xl-6 {
    padding: 32px !important;
  }
  .chr-header-footer .pt-xl-6,
.chr-header-footer .py-xl-6 {
    padding-top: 32px !important;
  }
  .chr-header-footer .pr-xl-6,
.chr-header-footer .px-xl-6 {
    padding-right: 32px !important;
  }
  .chr-header-footer .pb-xl-6,
.chr-header-footer .py-xl-6 {
    padding-bottom: 32px !important;
  }
  .chr-header-footer .pl-xl-6,
.chr-header-footer .px-xl-6 {
    padding-left: 32px !important;
  }
  .chr-header-footer .m-xl-7 {
    margin: 40px !important;
  }
  .chr-header-footer .mt-xl-7,
.chr-header-footer .my-xl-7 {
    margin-top: 40px !important;
  }
  .chr-header-footer .mr-xl-7,
.chr-header-footer .mx-xl-7 {
    margin-right: 40px !important;
  }
  .chr-header-footer .mb-xl-7,
.chr-header-footer .my-xl-7 {
    margin-bottom: 40px !important;
  }
  .chr-header-footer .ml-xl-7,
.chr-header-footer .mx-xl-7 {
    margin-left: 40px !important;
  }
  .chr-header-footer .p-xl-7 {
    padding: 40px !important;
  }
  .chr-header-footer .pt-xl-7,
.chr-header-footer .py-xl-7 {
    padding-top: 40px !important;
  }
  .chr-header-footer .pr-xl-7,
.chr-header-footer .px-xl-7 {
    padding-right: 40px !important;
  }
  .chr-header-footer .pb-xl-7,
.chr-header-footer .py-xl-7 {
    padding-bottom: 40px !important;
  }
  .chr-header-footer .pl-xl-7,
.chr-header-footer .px-xl-7 {
    padding-left: 40px !important;
  }
  .chr-header-footer .m-xl-8 {
    margin: 48px !important;
  }
  .chr-header-footer .mt-xl-8,
.chr-header-footer .my-xl-8 {
    margin-top: 48px !important;
  }
  .chr-header-footer .mr-xl-8,
.chr-header-footer .mx-xl-8 {
    margin-right: 48px !important;
  }
  .chr-header-footer .mb-xl-8,
.chr-header-footer .my-xl-8 {
    margin-bottom: 48px !important;
  }
  .chr-header-footer .ml-xl-8,
.chr-header-footer .mx-xl-8 {
    margin-left: 48px !important;
  }
  .chr-header-footer .p-xl-8 {
    padding: 48px !important;
  }
  .chr-header-footer .pt-xl-8,
.chr-header-footer .py-xl-8 {
    padding-top: 48px !important;
  }
  .chr-header-footer .pr-xl-8,
.chr-header-footer .px-xl-8 {
    padding-right: 48px !important;
  }
  .chr-header-footer .pb-xl-8,
.chr-header-footer .py-xl-8 {
    padding-bottom: 48px !important;
  }
  .chr-header-footer .pl-xl-8,
.chr-header-footer .px-xl-8 {
    padding-left: 48px !important;
  }
  .chr-header-footer .m-xl-9 {
    margin: 56px !important;
  }
  .chr-header-footer .mt-xl-9,
.chr-header-footer .my-xl-9 {
    margin-top: 56px !important;
  }
  .chr-header-footer .mr-xl-9,
.chr-header-footer .mx-xl-9 {
    margin-right: 56px !important;
  }
  .chr-header-footer .mb-xl-9,
.chr-header-footer .my-xl-9 {
    margin-bottom: 56px !important;
  }
  .chr-header-footer .ml-xl-9,
.chr-header-footer .mx-xl-9 {
    margin-left: 56px !important;
  }
  .chr-header-footer .p-xl-9 {
    padding: 56px !important;
  }
  .chr-header-footer .pt-xl-9,
.chr-header-footer .py-xl-9 {
    padding-top: 56px !important;
  }
  .chr-header-footer .pr-xl-9,
.chr-header-footer .px-xl-9 {
    padding-right: 56px !important;
  }
  .chr-header-footer .pb-xl-9,
.chr-header-footer .py-xl-9 {
    padding-bottom: 56px !important;
  }
  .chr-header-footer .pl-xl-9,
.chr-header-footer .px-xl-9 {
    padding-left: 56px !important;
  }
  .chr-header-footer .m-xl-10 {
    margin: 64px !important;
  }
  .chr-header-footer .mt-xl-10,
.chr-header-footer .my-xl-10 {
    margin-top: 64px !important;
  }
  .chr-header-footer .mr-xl-10,
.chr-header-footer .mx-xl-10 {
    margin-right: 64px !important;
  }
  .chr-header-footer .mb-xl-10,
.chr-header-footer .my-xl-10 {
    margin-bottom: 64px !important;
  }
  .chr-header-footer .ml-xl-10,
.chr-header-footer .mx-xl-10 {
    margin-left: 64px !important;
  }
  .chr-header-footer .p-xl-10 {
    padding: 64px !important;
  }
  .chr-header-footer .pt-xl-10,
.chr-header-footer .py-xl-10 {
    padding-top: 64px !important;
  }
  .chr-header-footer .pr-xl-10,
.chr-header-footer .px-xl-10 {
    padding-right: 64px !important;
  }
  .chr-header-footer .pb-xl-10,
.chr-header-footer .py-xl-10 {
    padding-bottom: 64px !important;
  }
  .chr-header-footer .pl-xl-10,
.chr-header-footer .px-xl-10 {
    padding-left: 64px !important;
  }
  .chr-header-footer .m-xl-11 {
    margin: 80px !important;
  }
  .chr-header-footer .mt-xl-11,
.chr-header-footer .my-xl-11 {
    margin-top: 80px !important;
  }
  .chr-header-footer .mr-xl-11,
.chr-header-footer .mx-xl-11 {
    margin-right: 80px !important;
  }
  .chr-header-footer .mb-xl-11,
.chr-header-footer .my-xl-11 {
    margin-bottom: 80px !important;
  }
  .chr-header-footer .ml-xl-11,
.chr-header-footer .mx-xl-11 {
    margin-left: 80px !important;
  }
  .chr-header-footer .p-xl-11 {
    padding: 80px !important;
  }
  .chr-header-footer .pt-xl-11,
.chr-header-footer .py-xl-11 {
    padding-top: 80px !important;
  }
  .chr-header-footer .pr-xl-11,
.chr-header-footer .px-xl-11 {
    padding-right: 80px !important;
  }
  .chr-header-footer .pb-xl-11,
.chr-header-footer .py-xl-11 {
    padding-bottom: 80px !important;
  }
  .chr-header-footer .pl-xl-11,
.chr-header-footer .px-xl-11 {
    padding-left: 80px !important;
  }
  .chr-header-footer .m-xl-12 {
    margin: 128px !important;
  }
  .chr-header-footer .mt-xl-12,
.chr-header-footer .my-xl-12 {
    margin-top: 128px !important;
  }
  .chr-header-footer .mr-xl-12,
.chr-header-footer .mx-xl-12 {
    margin-right: 128px !important;
  }
  .chr-header-footer .mb-xl-12,
.chr-header-footer .my-xl-12 {
    margin-bottom: 128px !important;
  }
  .chr-header-footer .ml-xl-12,
.chr-header-footer .mx-xl-12 {
    margin-left: 128px !important;
  }
  .chr-header-footer .p-xl-12 {
    padding: 128px !important;
  }
  .chr-header-footer .pt-xl-12,
.chr-header-footer .py-xl-12 {
    padding-top: 128px !important;
  }
  .chr-header-footer .pr-xl-12,
.chr-header-footer .px-xl-12 {
    padding-right: 128px !important;
  }
  .chr-header-footer .pb-xl-12,
.chr-header-footer .py-xl-12 {
    padding-bottom: 128px !important;
  }
  .chr-header-footer .pl-xl-12,
.chr-header-footer .px-xl-12 {
    padding-left: 128px !important;
  }
}
.chr-header-footer .m-auto {
  margin: auto !important;
}
.chr-header-footer .mt-auto,
.chr-header-footer .my-auto {
  margin-top: auto !important;
}
.chr-header-footer .mr-auto,
.chr-header-footer .mx-auto {
  margin-right: auto !important;
}
.chr-header-footer .mb-auto,
.chr-header-footer .my-auto {
  margin-bottom: auto !important;
}
.chr-header-footer .ml-auto,
.chr-header-footer .mx-auto {
  margin-left: auto !important;
}
.chr-header-footer .p-auto {
  padding: auto !important;
}
.chr-header-footer .pt-auto,
.chr-header-footer .py-auto {
  padding-top: auto !important;
}
.chr-header-footer .pr-auto,
.chr-header-footer .px-auto {
  padding-right: auto !important;
}
.chr-header-footer .pb-auto,
.chr-header-footer .py-auto {
  padding-bottom: auto !important;
}
.chr-header-footer .pl-auto,
.chr-header-footer .px-auto {
  padding-left: auto !important;
}
.chr-header-footer .visually-hidden {
  position: absolute !important;
  border: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.chr-header-footer .text-align-center {
  text-align: center !important;
}
.chr-header-footer .text-align-justify {
  text-align: justify !important;
}
.chr-header-footer .text-align-left {
  text-align: left !important;
}
.chr-header-footer .text-align-right {
  text-align: right !important;
}
.chr-header-footer .text-transform-lowercase {
  text-transform: lowercase !important;
}
.chr-header-footer .text-transform-uppercase {
  text-transform: uppercase !important;
}
.chr-header-footer .text-transform-capitalize {
  text-transform: capitalize !important;
}
.chr-header-footer .font-style-normal {
  font-style: normal !important;
}
.chr-header-footer .font-style-italic {
  font-style: italic !important;
}
.chr-header-footer .font-weight-light {
  font-weight: 300 !important;
}
.chr-header-footer .font-style-normal {
  font-weight: 400 !important;
}
.chr-header-footer .font-style-medium {
  font-weight: 500 !important;
}
.chr-header-footer .font-style-semibold {
  font-weight: 600 !important;
}
.chr-header-footer .font-style-bold {
  font-weight: 700 !important;
}
.chr-header-footer .font-variant-small-caps {
  font-variant: small-caps;
}
.chr-header-footer .font-variant-normal {
  font-variant: normal;
}
@media (min-width: 576px) {
  .chr-header-footer .text-align-sm-center {
    text-align: center !important;
  }
  .chr-header-footer .text-align-sm-justify {
    text-align: justify !important;
  }
  .chr-header-footer .text-align-sm-left {
    text-align: left !important;
  }
  .chr-header-footer .text-align-sm-right {
    text-align: right !important;
  }
  .chr-header-footer .text-transform-sm-lowercase {
    text-transform: lowercase !important;
  }
  .chr-header-footer .text-transform-sm-uppercase {
    text-transform: uppercase !important;
  }
  .chr-header-footer .text-transform-sm-capitalize {
    text-transform: capitalize !important;
  }
  .chr-header-footer .font-style-sm-normal {
    font-style: normal !important;
  }
  .chr-header-footer .font-style-sm-italic {
    font-style: italic !important;
  }
  .chr-header-footer .font-weight-sm-light {
    font-weight: 300 !important;
  }
  .chr-header-footer .font-style-sm-normal {
    font-weight: 400 !important;
  }
  .chr-header-footer .font-style-sm-medium {
    font-weight: 500 !important;
  }
  .chr-header-footer .font-style-sm-semibold {
    font-weight: 600 !important;
  }
  .chr-header-footer .font-style-sm-bold {
    font-weight: 700 !important;
  }
  .chr-header-footer .font-variant-sm-small-caps {
    font-variant: small-caps;
  }
  .chr-header-footer .font-variant-sm-normal {
    font-variant: normal;
  }
}
@media (min-width: 768px) {
  .chr-header-footer .text-align-md-center {
    text-align: center !important;
  }
  .chr-header-footer .text-align-md-justify {
    text-align: justify !important;
  }
  .chr-header-footer .text-align-md-left {
    text-align: left !important;
  }
  .chr-header-footer .text-align-md-right {
    text-align: right !important;
  }
  .chr-header-footer .text-transform-md-lowercase {
    text-transform: lowercase !important;
  }
  .chr-header-footer .text-transform-md-uppercase {
    text-transform: uppercase !important;
  }
  .chr-header-footer .text-transform-md-capitalize {
    text-transform: capitalize !important;
  }
  .chr-header-footer .font-style-md-normal {
    font-style: normal !important;
  }
  .chr-header-footer .font-style-md-italic {
    font-style: italic !important;
  }
  .chr-header-footer .font-weight-md-light {
    font-weight: 300 !important;
  }
  .chr-header-footer .font-style-md-normal {
    font-weight: 400 !important;
  }
  .chr-header-footer .font-style-md-medium {
    font-weight: 500 !important;
  }
  .chr-header-footer .font-style-md-semibold {
    font-weight: 600 !important;
  }
  .chr-header-footer .font-style-md-bold {
    font-weight: 700 !important;
  }
  .chr-header-footer .font-variant-md-small-caps {
    font-variant: small-caps;
  }
  .chr-header-footer .font-variant-md-normal {
    font-variant: normal;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .text-align-lg-center {
    text-align: center !important;
  }
  .chr-header-footer .text-align-lg-justify {
    text-align: justify !important;
  }
  .chr-header-footer .text-align-lg-left {
    text-align: left !important;
  }
  .chr-header-footer .text-align-lg-right {
    text-align: right !important;
  }
  .chr-header-footer .text-transform-lg-lowercase {
    text-transform: lowercase !important;
  }
  .chr-header-footer .text-transform-lg-uppercase {
    text-transform: uppercase !important;
  }
  .chr-header-footer .text-transform-lg-capitalize {
    text-transform: capitalize !important;
  }
  .chr-header-footer .font-style-lg-normal {
    font-style: normal !important;
  }
  .chr-header-footer .font-style-lg-italic {
    font-style: italic !important;
  }
  .chr-header-footer .font-weight-lg-light {
    font-weight: 300 !important;
  }
  .chr-header-footer .font-style-lg-normal {
    font-weight: 400 !important;
  }
  .chr-header-footer .font-style-lg-medium {
    font-weight: 500 !important;
  }
  .chr-header-footer .font-style-lg-semibold {
    font-weight: 600 !important;
  }
  .chr-header-footer .font-style-lg-bold {
    font-weight: 700 !important;
  }
  .chr-header-footer .font-variant-lg-small-caps {
    font-variant: small-caps;
  }
  .chr-header-footer .font-variant-lg-normal {
    font-variant: normal;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .text-align-xl-center {
    text-align: center !important;
  }
  .chr-header-footer .text-align-xl-justify {
    text-align: justify !important;
  }
  .chr-header-footer .text-align-xl-left {
    text-align: left !important;
  }
  .chr-header-footer .text-align-xl-right {
    text-align: right !important;
  }
  .chr-header-footer .text-transform-xl-lowercase {
    text-transform: lowercase !important;
  }
  .chr-header-footer .text-transform-xl-uppercase {
    text-transform: uppercase !important;
  }
  .chr-header-footer .text-transform-xl-capitalize {
    text-transform: capitalize !important;
  }
  .chr-header-footer .font-style-xl-normal {
    font-style: normal !important;
  }
  .chr-header-footer .font-style-xl-italic {
    font-style: italic !important;
  }
  .chr-header-footer .font-weight-xl-light {
    font-weight: 300 !important;
  }
  .chr-header-footer .font-style-xl-normal {
    font-weight: 400 !important;
  }
  .chr-header-footer .font-style-xl-medium {
    font-weight: 500 !important;
  }
  .chr-header-footer .font-style-xl-semibold {
    font-weight: 600 !important;
  }
  .chr-header-footer .font-style-xl-bold {
    font-weight: 700 !important;
  }
  .chr-header-footer .font-variant-xl-small-caps {
    font-variant: small-caps;
  }
  .chr-header-footer .font-variant-xl-normal {
    font-variant: normal;
  }
}
.chr-header-footer .d-none {
  display: none !important;
}
.chr-header-footer .d-inline {
  display: inline !important;
}
.chr-header-footer .d-inline-block {
  display: inline-block !important;
}
.chr-header-footer .d-block {
  display: block !important;
}
.chr-header-footer .d-table {
  display: table !important;
}
.chr-header-footer .d-table-row {
  display: table-row !important;
}
.chr-header-footer .d-table-cell {
  display: table-cell !important;
}
.chr-header-footer .d-flex {
  display: flex !important;
}
.chr-header-footer .d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .chr-header-footer .d-sm-none {
    display: none !important;
  }
  .chr-header-footer .d-sm-inline {
    display: inline !important;
  }
  .chr-header-footer .d-sm-inline-block {
    display: inline-block !important;
  }
  .chr-header-footer .d-sm-block {
    display: block !important;
  }
  .chr-header-footer .d-sm-table {
    display: table !important;
  }
  .chr-header-footer .d-sm-table-row {
    display: table-row !important;
  }
  .chr-header-footer .d-sm-table-cell {
    display: table-cell !important;
  }
  .chr-header-footer .d-sm-flex {
    display: flex !important;
  }
  .chr-header-footer .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .chr-header-footer .d-md-none {
    display: none !important;
  }
  .chr-header-footer .d-md-inline {
    display: inline !important;
  }
  .chr-header-footer .d-md-inline-block {
    display: inline-block !important;
  }
  .chr-header-footer .d-md-block {
    display: block !important;
  }
  .chr-header-footer .d-md-table {
    display: table !important;
  }
  .chr-header-footer .d-md-table-row {
    display: table-row !important;
  }
  .chr-header-footer .d-md-table-cell {
    display: table-cell !important;
  }
  .chr-header-footer .d-md-flex {
    display: flex !important;
  }
  .chr-header-footer .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .d-lg-none {
    display: none !important;
  }
  .chr-header-footer .d-lg-inline {
    display: inline !important;
  }
  .chr-header-footer .d-lg-inline-block {
    display: inline-block !important;
  }
  .chr-header-footer .d-lg-block {
    display: block !important;
  }
  .chr-header-footer .d-lg-table {
    display: table !important;
  }
  .chr-header-footer .d-lg-table-row {
    display: table-row !important;
  }
  .chr-header-footer .d-lg-table-cell {
    display: table-cell !important;
  }
  .chr-header-footer .d-lg-flex {
    display: flex !important;
  }
  .chr-header-footer .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .d-xl-none {
    display: none !important;
  }
  .chr-header-footer .d-xl-inline {
    display: inline !important;
  }
  .chr-header-footer .d-xl-inline-block {
    display: inline-block !important;
  }
  .chr-header-footer .d-xl-block {
    display: block !important;
  }
  .chr-header-footer .d-xl-table {
    display: table !important;
  }
  .chr-header-footer .d-xl-table-row {
    display: table-row !important;
  }
  .chr-header-footer .d-xl-table-cell {
    display: table-cell !important;
  }
  .chr-header-footer .d-xl-flex {
    display: flex !important;
  }
  .chr-header-footer .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .chr-header-footer .d-print-none {
    display: none !important;
  }
  .chr-header-footer .d-print-inline {
    display: inline !important;
  }
  .chr-header-footer .d-print-inline-block {
    display: inline-block !important;
  }
  .chr-header-footer .d-print-block {
    display: block !important;
  }
  .chr-header-footer .d-print-table {
    display: table !important;
  }
  .chr-header-footer .d-print-table-row {
    display: table-row !important;
  }
  .chr-header-footer .d-print-table-cell {
    display: table-cell !important;
  }
  .chr-header-footer .d-print-flex {
    display: flex !important;
  }
  .chr-header-footer .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.chr-header-footer .chr-color-black {
  color: #222;
}
.chr-header-footer .chr-color-white {
  color: #fff;
}
.chr-header-footer .chr-color-grey {
  color: #f7f7f7;
}
.chr-header-footer .chr-color-white-alpha-10 {
  color: rgba(255, 255, 255, 0.1);
}
.chr-header-footer .chr-color-white-alpha-40 {
  color: rgba(255, 255, 255, 0.4);
}
.chr-header-footer .chr-color-white-alpha-60 {
  color: rgba(255, 255, 255, 0.6);
}
.chr-header-footer .chr-color-white-alpha-80 {
  color: rgba(255, 255, 255, 0.8);
}
.chr-header-footer .chr-color-grey-alpha-10 {
  color: rgba(0, 0, 0, 0.1);
}
.chr-header-footer .chr-color-grey-alpha-40 {
  color: rgba(0, 0, 0, 0.4);
}
.chr-header-footer .chr-color-grey-alpha-60 {
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-color-grey-alpha-80 {
  color: rgba(0, 0, 0, 0.8);
}
.chr-header-footer .chr-color-red-alert {
  color: #d70c00;
}
.chr-header-footer .chr-color-red-alert-light {
  color: #fbe7e6;
}
.chr-header-footer .chr-color-red-brand {
  color: #900;
}
.chr-header-footer .chr-color-red-brand-light {
  color: #f5e6e6;
}
.chr-header-footer .chr-color-positive-teal-dark {
  color: #0a7f7f;
}
.chr-header-footer .chr-color-positive-teal-light {
  color: #e7f2f2;
}
.chr-header-footer .chr-color-turquoise-light {
  color: #1cd6d9;
}
.chr-header-footer chr-icon {
  display: inline-flex;
  vertical-align: middle;
}
.chr-header-footer .chr-icon {
  transition-duration: 0.15s;
  transition-property: fill, stroke;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chr-header-footer .chr-icon--selected .chr-icon__fill-area {
  fill: currentColor;
}
.chr-header-footer .chr-icon--xs svg {
  width: 16px;
  height: 16px;
}
.chr-header-footer .chr-icon--sm svg {
  width: 24px;
  height: 24px;
}
.chr-header-footer .chr-icon--lg svg {
  width: 32px;
  height: 32px;
}
.chr-header-footer .chr-icon--xl svg {
  width: 56px;
  height: 56px;
}
.chr-header-footer .chr-icon__fill--light {
  fill: transparent;
}
.chr-header-footer .chr-icon__fill--dark {
  fill: currentColor;
}
.chr-header-footer .chr-icon__stroke--light {
  stroke: transparent;
}
.chr-header-footer .chr-icon__stroke--dark {
  stroke: currentColor;
}
.chr-header-footer .chr-icon__wrapper {
  display: inline-flex;
  position: relative;
}
.high-contrast .chr-icon--selected .chr-icon__fill-area {
  fill: WindowText;
}
.high-contrast .chr-icon__fill--dark {
  fill: WindowText;
}
.high-contrast .chr-icon__stroke--dark {
  stroke: WindowText;
}

.chr-header-footer .chr-button {
  transition-duration: 0.15s;
  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  border: none;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  color: inherit;
}
.chr-header-footer .chr-button.chr-button--dark .chr-loader-next__spinner div {
  border-top-color: #fff;
  border-top-color: hsl(var(--c-accent));
}
.chr-header-footer .chr-button.chr-button--dark .chr-button__badge {
  background-color: #fff;
  background-color: hsl(var(--c-accent));
  color: #222;
  color: hsl(var(--c-dominant));
}
.chr-header-footer .chr-button:focus {
  outline: 1px solid #222;
  outline-offset: 4px;
}
.chr-header-footer .chr-button:focus.chr-button--dark {
  outline-color: #fff;
}
.chr-header-footer .chr-button--primary {
  background-color: #222;
  background-color: hsl(var(--c-dominant));
  color: #fff;
  color: hsl(var(--c-accent));
}
.chr-header-footer .chr-button--primary.chr-button--dark {
  background-color: #fff;
  background-color: hsl(var(--c-accent));
  color: #222;
  color: hsl(var(--c-dominant));
}
.chr-header-footer .chr-button--primary:hover {
  background-color: rgba(0, 0, 0, 0.8);
  background-color: var(--c-grey-alpha-80);
}
.chr-header-footer .chr-button--primary:hover.chr-button--dark {
  background-color: rgba(255, 255, 255, 0.8);
  background-color: var(--c-white-alpha-80);
}
.chr-header-footer .chr-button--primary:active {
  background-color: rgba(0, 0, 0, 0.6);
  background-color: var(--c-grey-alpha-60);
}
.chr-header-footer .chr-button--primary:active.chr-button--dark {
  background-color: rgba(255, 255, 255, 0.6);
  background-color: var(--c-white-alpha-60);
}
.chr-header-footer .chr-button--secondary, .chr-header-footer .chr-button--tag {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 1px var(--c-grey-alpha-10);
  color: #222;
  color: hsl(var(--c-dominant));
}
.chr-header-footer .chr-button--secondary.chr-button--dark, .chr-header-footer .chr-button--tag.chr-button--dark {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px var(--c-white-alpha-10);
  color: #fff;
  color: hsl(var(--c-accent));
}
.chr-header-footer .chr-button--secondary:hover, .chr-header-footer .chr-button--tag:hover {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.8);
  box-shadow: inset 0 0 0 1px var(--c-grey-alpha-80);
}
.chr-header-footer .chr-button--secondary:hover.chr-button--dark, .chr-header-footer .chr-button--tag:hover.chr-button--dark {
  box-shadow: inset 0 0 0 1px #fff;
  box-shadow: inset 0 0 0 1px hsl(var(--c-accent));
}
.chr-header-footer .chr-button--secondary:active, .chr-header-footer .chr-button--tag:active {
  background-color: #f7f7f7;
}
.chr-header-footer .chr-button--secondary:active.chr-button--dark, .chr-header-footer .chr-button--tag:active.chr-button--dark {
  background-color: rgba(255, 255, 255, 0.1);
  background-color: var(--c-white-alpha-10);
}
.chr-header-footer .chr-button--primary, .chr-header-footer .chr-button--secondary, .chr-header-footer .chr-button--tag {
  border-radius: 2px;
}
.chr-header-footer .chr-button--primary, .chr-header-footer .chr-button--secondary, .chr-header-footer .chr-button--icon, .chr-header-footer .chr-button--tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.5;
  white-space: nowrap;
}
.chr-header-footer .chr-button--primary, .chr-header-footer .chr-button--secondary {
  padding: 12px 16px;
}
.chr-header-footer .chr-button--primary.chr-button--disabled, .chr-header-footer .chr-button--primary.chr-button--disabled:hover, .chr-header-footer .chr-button--primary.chr-button--disabled:active, .chr-header-footer .chr-button--secondary.chr-button--disabled, .chr-header-footer .chr-button--secondary.chr-button--disabled:hover, .chr-header-footer .chr-button--secondary.chr-button--disabled:active {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.1);
  background-color: var(--c-grey-alpha-10);
}
.chr-header-footer .chr-button--primary.chr-button--disabled.chr-button--dark, .chr-header-footer .chr-button--primary.chr-button--disabled:hover.chr-button--dark, .chr-header-footer .chr-button--primary.chr-button--disabled:active.chr-button--dark, .chr-header-footer .chr-button--secondary.chr-button--disabled.chr-button--dark, .chr-header-footer .chr-button--secondary.chr-button--disabled:hover.chr-button--dark, .chr-header-footer .chr-button--secondary.chr-button--disabled:active.chr-button--dark {
  background-color: rgba(255, 255, 255, 0.1);
  background-color: var(--c-white-alpha-10);
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-button--primary, .chr-header-footer .chr-button--secondary {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.chr-header-footer .chr-button--link, .chr-header-footer .chr-button--link-underline {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  padding: 0;
  text-align: left;
  text-transform: none;
}
.chr-header-footer .chr-button--link:not(.chr-button--disabled):hover, .chr-header-footer .chr-button--link:not(.chr-button--disabled):focus {
  text-decoration: underline;
}
.chr-header-footer .chr-button--link-underline {
  text-decoration: underline;
}
.chr-header-footer .chr-button--link-underline:not(.chr-button--disabled):hover, .chr-header-footer .chr-button--link-underline:not(.chr-button--disabled):focus {
  text-decoration: none;
}
.chr-header-footer .chr-button--icon {
  padding: 8px;
}
.chr-header-footer .chr-button--icon:hover {
  text-decoration: underline;
  color: rgba(0, 0, 0, 0.8);
}
.chr-header-footer .chr-button--icon:hover.chr-button--dark {
  color: rgba(255, 255, 255, 0.8);
}
.chr-header-footer .chr-button--icon:active {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-button--icon:active.chr-button--dark {
  color: rgba(255, 255, 255, 0.6);
}
.chr-header-footer .chr-button--icon.chr-button--disabled {
  text-decoration: none;
}
.chr-header-footer .chr-button--icon-left .chr-button__text {
  margin-left: 8px;
}
.chr-header-footer .chr-button--icon-right .chr-button__text {
  margin-right: 8px;
}
.chr-header-footer .chr-button--icon-top {
  flex-direction: column;
}
.chr-header-footer .chr-button--icon-top .chr-button__text {
  margin-top: 8px;
}
.chr-header-footer .chr-button--icon-xs .chr-button__badge {
  bottom: -0.8rem;
  left: 0.7rem;
}
.chr-header-footer .chr-button--icon-lg .chr-button__badge {
  bottom: -0.6rem;
  left: 1.4rem;
}
.chr-header-footer .chr-button--disabled, .chr-header-footer .chr-button--disabled:hover, .chr-header-footer .chr-button--disabled:active {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.4);
  color: var(--c-grey-alpha-40);
}
.chr-header-footer .chr-button--disabled.chr-button--dark, .chr-header-footer .chr-button--disabled:hover.chr-button--dark, .chr-header-footer .chr-button--disabled:active.chr-button--dark {
  color: rgba(255, 255, 255, 0.4);
  color: var(--c-white-alpha-40);
}
.chr-header-footer .chr-button--loading {
  position: relative;
}
.chr-header-footer .chr-button--loading, .chr-header-footer .chr-button--loading:hover, .chr-header-footer .chr-button--loading:active {
  color: rgba(0, 0, 0, 0.1);
  color: var(--c-grey-alpha-10);
}
.chr-header-footer .chr-button--loading.chr-button--dark, .chr-header-footer .chr-button--loading:hover.chr-button--dark, .chr-header-footer .chr-button--loading:active.chr-button--dark {
  color: rgba(255, 255, 255, 0.1);
  color: var(--c-white-alpha-10);
}
.chr-header-footer .chr-button--full-width {
  width: 100%;
}
.chr-header-footer .chr-button__text:empty {
  display: none;
}
.chr-header-footer .chr-button__text:only-child {
  margin: 0;
}
.chr-header-footer .chr-button__badge {
  padding-right: 4px;
  padding-left: 4px;
  position: absolute;
  bottom: -0.7rem;
  left: 1rem;
  border-radius: 12px;
  background-color: #222;
  min-width: 18px;
  line-height: 1.5;
  color: #fff;
}
.chr-header-footer .chr-button .chr-loader-next__spinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.chr-header-footer .chr-button .chr-loader-next__spinner, .chr-header-footer .chr-button .chr-loader-next__spinner div {
  width: 14px;
  height: 14px;
}
.chr-header-footer .chr-button .chr-loader-next__spinner div {
  border-width: 1.5px;
  border-top-color: #222;
}
.chr-header-footer .chr-button--tag {
  padding: calc(8px - 1px) 8px;
}
.chr-header-footer .chr-button--tag:active {
  background-color: rgba(0, 0, 0, 0.1);
  background-color: var(--c-grey-alpha-10);
}
.chr-header-footer .chr-button--tag.chr-button--sm {
  padding: calc(4px - 1px) 4px;
}
.chr-header-footer .chr-button--tag.chr-button--selected {
  background-color: #222;
  background-color: hsl(var(--c-dominant));
  color: #fff;
  color: hsl(var(--c-accent));
}
.chr-header-footer .chr-button--tag.chr-button--selected.chr-button--dark {
  background-color: #fff;
  background-color: hsl(var(--c-accent));
  color: #222;
  color: hsl(var(--c-dominant));
}
.chr-header-footer .chr-button--tag.chr-button--selected.chr-button--dark:hover, .chr-header-footer .chr-button--tag.chr-button--selected.chr-button--dark:active {
  background-color: rgba(255, 255, 255, 0.8);
  background-color: var(--c-white-alpha-80);
}
.chr-header-footer .chr-button--tag.chr-button--selected:hover, .chr-header-footer .chr-button--tag.chr-button--selected:active {
  background-color: rgba(0, 0, 0, 0.8);
  background-color: var(--c-grey-alpha-80);
}
.chr-header-footer .chr-button--tag.chr-button--disabled, .chr-header-footer .chr-button--tag.chr-button--disabled:hover, .chr-header-footer .chr-button--tag.chr-button--disabled:active {
  box-shadow: none !important;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.4);
  color: var(--c-grey-alpha-40);
}
.chr-header-footer .chr-button--tag.chr-button--disabled.chr-button--dark, .chr-header-footer .chr-button--tag.chr-button--disabled:hover.chr-button--dark, .chr-header-footer .chr-button--tag.chr-button--disabled:active.chr-button--dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  color: var(--c-white-alpha-40);
}
.chr-header-footer .chr-button--fake {
  cursor: initial;
}
.chr-header-footer .chr-button .chr-icon svg {
  pointer-events: none;
}
.high-contrast .chr-button {
  color: WindowText;
}
.high-contrast .chr-button--primary, .high-contrast .chr-button--secondary {
  border: 1px solid currentColor;
}

.chr-header-footer .chr-text-input {
  display: block;
}
.chr-header-footer .chr-text-input input::-ms-reveal, .chr-header-footer .chr-text-input input::-ms-clear {
  display: none;
}
.chr-header-footer .chr-text-input__field {
  transition-duration: 0.15s;
  transition-property: border;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  appearance: none;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  padding: 20px 0 16px;
  width: 100%;
  color: #222;
}
.chr-header-footer .chr-text-input__field:focus {
  outline: none;
}
.chr-header-footer .chr-text-input__field:not(:disabled):hover {
  border-bottom-color: #a2a2a2;
}
.chr-header-footer .chr-text-input__field--has-icon {
  padding-right: calc(16px + 16px);
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .chr-header-footer .chr-text-input__field {
    font-size: 16px;
  }
}
.chr-header-footer .chr-text-input__wrapper {
  position: relative;
}
.chr-header-footer .chr-text-input__wrapper::after {
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  z-index: 1;
  background-color: #222;
  width: 100%;
  height: 1px;
  content: "";
  pointer-events: none;
}
.chr-header-footer .chr-text-input__label {
  transition-duration: 0.15s;
  transition-property: font-size, line-height, color, transform;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 17px);
  cursor: text;
}
.chr-header-footer .chr-text-input__help-text, .chr-header-footer .chr-text-input__error {
  margin-top: 12px;
}
.chr-header-footer .chr-text-input__help-text {
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-text-input__error {
  display: flex;
  align-items: center;
  color: #d70c00;
}
.chr-header-footer .chr-text-input__password-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.chr-header-footer .chr-text-input__password-btn .chr-button {
  border: 0;
}
.chr-header-footer .chr-text-input--disabled .chr-text-input__label,
.chr-header-footer .chr-text-input--disabled .chr-text-input__field {
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-text-input--has-focus .chr-text-input__label, .chr-header-footer .chr-text-input--has-value .chr-text-input__label {
  transform: translate(0, 0);
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-text-input--has-focus:not(.chr-text-input--error) .chr-text-input__wrapper::after {
  transform: scale(1);
}
.chr-header-footer .chr-text-input--error .chr-text-input__label {
  color: #d70c00;
}
.chr-header-footer .chr-text-input--error .chr-text-input__field, .chr-header-footer .chr-text-input--error .chr-text-input__field:hover {
  border-bottom-color: #d70c00;
}
.chr-header-footer .chr-autocomplete-input {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
}
.chr-header-footer .chr-autocomplete-input button {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-autocomplete-input button {
    width: 40px;
  }
}
.chr-header-footer .chr-autocomplete-input input,
.chr-header-footer .chr-autocomplete-input textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 48px 0 16px;
  width: 100%;
  min-width: 264px;
  height: 48px;
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-autocomplete-input input::placeholder,
.chr-header-footer .chr-autocomplete-input textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.chr-header-footer .chr-autocomplete-input input:focus,
.chr-header-footer .chr-autocomplete-input textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .chr-header-footer .chr-autocomplete-input input,
.chr-header-footer .chr-autocomplete-input textarea {
    padding-right: 40px;
    height: 40px;
  }
}
.chr-header-footer .chr-autocomplete-input--large input,
.chr-header-footer .chr-autocomplete-input--large textarea {
  border: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  padding-right: 48px;
  padding-bottom: 16px;
  padding-left: 0;
  width: 100%;
  height: auto;
  color: #222;
}
.chr-header-footer .chr-autocomplete-input--large input:focus,
.chr-header-footer .chr-autocomplete-input--large textarea:focus {
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  box-shadow: none;
}
.chr-header-footer .chr-autocomplete-input--large textarea {
  display: block;
  overflow: hidden;
  resize: none;
}
.chr-header-footer .chr-autocomplete-input--large .chr-autocomplete-input__option {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.chr-header-footer .chr-autocomplete-input--large .chr-autocomplete-input__option-icon {
  display: flex;
  flex-shrink: 0;
  margin-right: 16px;
  width: 40px;
  height: 40px;
}
.chr-header-footer .chr-autocomplete-input--large .chr-button {
  height: auto;
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-autocomplete-input--large .chr-button {
    top: 20px;
  }
}
.chr-header-footer .chr-autocomplete-input--large button {
  top: 4px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-autocomplete-input--large button {
    top: 12px;
  }
}
.chr-header-footer .chr-autocomplete-input__wrapper {
  position: relative;
  width: 100%;
}
.chr-header-footer .chr-autocomplete-input__autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1050;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 100%;
  overflow: hidden;
  color: #222;
}
.chr-header-footer .chr-autocomplete-input__option {
  display: block;
  position: relative;
  border: transparent;
  cursor: pointer;
  padding: 8px 16px;
}
.chr-header-footer .chr-autocomplete-input__option::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
}
.chr-header-footer .chr-autocomplete-input--hidden {
  display: none;
}
.chr-header-footer .chr-autocomplete-input--focused {
  background-color: rgba(0, 0, 0, 0.1);
}
.chr-header-footer .chr-autocomplete-input__icon {
  width: 100%;
}
.chr-header-footer .chr-autocomplete-input__icon .chr-icon {
  border-color: transparent;
  width: 100%;
  height: 40px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-autocomplete-input__icon .chr-icon {
    height: 34px;
  }
}
.chr-header-footer .chr-autocomplete-input mark {
  background-color: transparent;
  color: #222 !important;
  font-weight: 700;
}
@media (-ms-high-contrast: none) {
  .chr-header-footer .chr-autocomplete-input--large .chr-button {
    width: 80px;
  }
}
.high-contrast .chr-autocomplete-input mark {
  background-color: #fff !important;
}

.chr-header-footer .chr-accordion-item {
  transition-duration: 0.3s;
  transition-property: border-color;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.chr-header-footer .chr-accordion-item--expanding, .chr-header-footer .chr-accordion-item--expanded {
  border-color: #222;
}
.chr-header-footer .chr-accordion-item__header {
  transition-duration: 0.3s;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  cursor: pointer;
  padding: 12px 0;
  width: 100%;
}
.chr-header-footer .chr-accordion-item__header:focus {
  outline-width: 1px;
  outline-color: #222;
}
.chr-header-footer .chr-accordion-item__header:not(.chr-accordion-item__header--disabled):hover {
  text-decoration: underline;
  color: rgba(0, 0, 0, 0.8);
}
.chr-header-footer .chr-accordion-item__header:not(.chr-accordion-item__header--disabled):active {
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-accordion-item__header--disabled {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.4);
}
.chr-header-footer .chr-accordion-item__header .chr-icon {
  transition-duration: 0.3s;
  transition-property: color, background-color, border-color, transform;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
}
.chr-header-footer .chr-accordion-item__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chr-header-footer .chr-accordion-item__container {
  transition-duration: 0.3s;
  transition-property: height;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  display: block;
  width: 100%;
}
.chr-header-footer .chr-accordion-item__container--collapsed {
  display: none;
}
.chr-header-footer .chr-accordion-item__container--collapsing, .chr-header-footer .chr-accordion-item__container--expanding {
  overflow: hidden;
}
.chr-header-footer .chr-accordion-item__container--expanding {
  height: 0;
}
.chr-header-footer .chr-accordion-item__container > *:first-child {
  padding-top: 12px;
}
.chr-header-footer .chr-accordion-item__container > *:last-child {
  padding-bottom: 16px;
}
.chr-header-footer .chr-accordion {
  position: relative;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-accordion {
    z-index: 800;
  }
}
.chr-header-footer .drawer {
  display: block;
  position: relative;
  visibility: hidden;
}
.chr-header-footer .drawer::after {
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 9002;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  max-height: 100%;
  content: "";
  pointer-events: none;
}
.chr-header-footer .drawer--open, .chr-header-footer .drawer--closing {
  visibility: visible;
}
.chr-header-footer .drawer--open::after {
  opacity: 1;
  pointer-events: auto;
}
.chr-header-footer .drawer__container {
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  transform: translateX(-100%);
  z-index: 9003;
  background: #fff;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.drawer--open .chr-header-footer .drawer__container {
  transform: translateX(0);
}
.chr-header-footer .drawer__body > * {
  overflow: hidden;
}
.chr-header-footer .drawer__footer {
  padding: 12px 0;
}
.chr-header-footer .drawer__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  padding-bottom: 12px;
}
.chr-header-footer .drawer__header-close {
  display: flex;
  align-items: center;
}
.chr-header-footer .drawer__header-close-title {
  margin-right: 12px;
}
.chr-header-footer .drawer__footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.chr-header-footer .chr-dropdown-list {
  position: relative;
}
.chr-header-footer .chr-dropdown-list.is-open .chr-dropdown-list__list {
  visibility: visible;
}
.chr-header-footer .chr-dropdown-list.is-open .chr-dropdown-list__button {
  border-bottom-color: #222;
}
.chr-header-footer .chr-dropdown-list__label {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-dropdown-list__list {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  z-index: 1;
  box-shadow: 0 12px 15px -6px rgba(34, 34, 34, 0.11);
  background: #fff;
  width: 100%;
}
.chr-header-footer .chr-dropdown-list__list-item {
  display: flex;
  position: relative;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #f7f7f7;
}
.chr-header-footer .chr-dropdown-list__list-item::before {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #222;
  width: 3px;
  height: 18px;
  content: "";
}
.chr-header-footer .chr-dropdown-list__list-item:not(.is-disabled):hover::before {
  display: block;
}
.chr-header-footer .chr-dropdown-list__list-item.is-active::before {
  display: block;
}
.chr-header-footer .chr-dropdown-list__list-item.is-active .chr-dropdown-list__item {
  cursor: default;
}
.chr-header-footer .chr-dropdown-list__list-item.is-disabled {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer .chr-dropdown-list__button {
  justify-content: space-between;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 0 0 12px;
  text-transform: none;
}
.chr-header-footer .chr-dropdown-list__button:hover {
  border-bottom-color: #222;
  text-decoration: none;
}
.chr-header-footer .chr-dropdown-list__item {
  display: block;
  border: none;
  background-color: #fff;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
}
.chr-header-footer .chr-modal-open {
  overflow-y: hidden;
}
.chr-header-footer .chr-modal {
  transition-duration: 0s;
  transition-property: top;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  position: fixed;
  top: -100vh;
  left: 0;
  transition-delay: 0.5s;
  z-index: 1030;
  width: 100vw;
  height: 100%;
  pointer-events: none;
}
.chr-header-footer .chr-modal--open {
  top: 0;
  transition-delay: 0s;
  pointer-events: all;
}
.chr-header-footer .chr-modal--open .chr-modal__mask {
  opacity: 1;
}
.chr-header-footer .chr-modal--open .chr-modal__content {
  transform: scale(1);
  opacity: 1;
}
.chr-header-footer .chr-modal--overflow .chr-modal__content {
  overflow-y: auto;
}
.chr-header-footer .chr-modal--overflow .chr-modal__inner {
  max-height: inherit;
  overflow-x: inherit;
  overflow-y: inherit;
}
.chr-header-footer .chr-modal__mask {
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
}
.chr-header-footer .chr-modal__content {
  transition-duration: 0.3s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  transform: scale(0.7);
  opacity: 0;
  height: 100%;
}
.chr-header-footer .chr-modal__content:not(.chr-modal__content--full) {
  pointer-events: none;
}
.chr-modal--overflow .chr-header-footer .chr-modal__content {
  pointer-events: auto;
}
.chr-header-footer .chr-modal__content--full {
  background: #fff;
  height: 100%;
}
.chr-header-footer .chr-modal__row {
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: -webkit-fill-available;
  pointer-events: none;
}
@media (min-width: 576px) {
  .chr-header-footer .chr-modal__row {
    min-height: auto;
  }
}
.chr-header-footer .chr-modal__outer {
  pointer-events: none;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-modal__outer {
    flex-basis: 485px;
    max-width: 485px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-modal__outer {
    flex-basis: 552px;
    max-width: 552px;
  }
}
.chr-header-footer .chr-modal__inner {
  position: relative;
  border-radius: 4px;
  background-color: #fff;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
}
.chr-header-footer .chr-modal__body {
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 24px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-modal__body {
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 576px) {
  .chr-header-footer .chr-modal__body--narrow {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media (min-width: 768px) {
  .chr-header-footer .chr-modal__body--narrow {
    padding-right: 64px;
    padding-left: 64px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-modal__body--narrow {
    padding-right: 100px;
    padding-left: 100px;
  }
}
.chr-header-footer .chr-modal__body--no-horizontal-pad {
  padding-right: 0;
  padding-left: 0;
}
.chr-header-footer .chr-modal__header {
  display: flex;
  justify-content: flex-end;
  padding: 16px 16px 12px;
  pointer-events: auto;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-modal__header {
    padding: 24px 32px 12px;
  }
}
.chr-header-footer .chr-modal__title {
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 576px) {
  .chr-header-footer .chr-modal {
    height: 100vh;
  }
}
.chr-header-footer .chr-register-bid-modal__subheading {
  margin-bottom: 24px;
  text-align: center;
}
.chr-header-footer .chr-register-bid-modal__content {
  margin-bottom: 16px;
}
.chr-header-footer .chr-register-bid-modal__info {
  margin-bottom: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
.chr-header-footer chr-modal-provider,
.chr-header-footer chr-inline-modal-provider {
  display: none;
}
.chr-header-footer chr-modal-provider.hydrated,
.chr-header-footer chr-inline-modal-provider.hydrated {
  display: block;
}
.chr-header-footer chr-header {
  transition-duration: 1s;
  transition-property: min-height, max-height;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  display: block;
  min-height: 63px;
  max-height: 63px;
}
.chr-header-footer chr-header.is-loaded {
  min-height: 0;
  max-height: 120px;
}
@media (min-width: 768px) {
  .chr-header-footer chr-header {
    min-height: 57px;
    max-height: 57px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer chr-header {
    min-height: 109px;
    max-height: 109px;
  }
}
.chr-header-footer .chr-header {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.chr-header-footer .chr-header__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.chr-header-footer .chr-header__panel--top {
  background-color: #f7f7f7;
  padding-top: 4px;
  padding-bottom: 4px;
  height: 40px;
}
.chr-header-footer .chr-header__panel--top .chr-header__panel-content {
  justify-content: flex-end;
}
.chr-header-footer .chr-header__panel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chr-header-footer .chr-header__panel-content-left {
  display: flex;
}

.chr-header-footer .chr-header__panel-content-right {
    width: 100%;
    max-width: 456px
}

.chr-header-footer .chr-header__link-site {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin-right: 8px;
}
.chr-header-footer .chr-header__link-site--zh {
  width: 230px;
}
.chr-header-footer .chr-header__link-site span {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
}
.chr-header-footer .chr-header__link-site span svg {
  width: 100%;
  height: 24px;
}

@media (min-width: 768px) {
  .chr-header-footer .chr-header__link-site {
    margin-right: 48px;
  }
}
.chr-header-footer .chr-header__user-zone {
  display: flex;
  align-items: stretch;
}
.chr-header-footer .chr-header__user-zone > :not(:first-child) {
  margin-left: 12px;
  padding-left: 12px;
}
.chr-header-footer .chr-header__user-zone > :not(:first-child)::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.1);
  width: 1px;
  height: 24px;
  content: "";
}
.chr-header-footer .chr-header__user-zone-item {
  display: flex;
  position: relative;
  align-items: center;
}
.chr-header-footer .chr-header__user-zone-item > :not(:first-child) {
  margin-left: 4px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-header__user-zone-item > :not(:first-child) {
    margin-left: 16px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-header__user-zone-item > :not(:first-child) {
    margin-left: 4px;
  }
}
.chr-header-footer .chr-header__user-zone-item > chr-button {
  position: relative;
}
.chr-header-footer .chr-header__user-zone-item .chr-button--selected::after {
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-bottom: 4px solid #222;
  width: 100%;
  content: "";
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-header__user-zone-item svg {
    width: 16px;
    height: 16px;
  }
}
.chr-header-footer .chr-header__drawer {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 1040;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 15px -6px rgba(34, 34, 34, 0.11);
  background: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-header .search-input {
    width: 355px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-header .search-input {
    width: 265px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-main-nav__list {
    display: flex;
  }
}
.chr-header-footer .chr-main-nav__list-item {
  position: relative;
  margin-right: -12px;
  margin-left: -12px;
  padding-right: 12px;
  padding-left: 12px;
}
.chr-header-footer .chr-main-nav__list-item.is-active {
  background-color: #222;
  color: #fff;
}
.chr-header-footer .chr-main-nav__list-item.is-active .chr-main-nav__link {
  border-bottom: 0;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-main-nav__list-item.is-active {
    background-color: inherit;
    color: inherit;
  }
}
@media (min-width: 768px) {
  .chr-header-footer .chr-main-nav__list-item {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-main-nav__list-item {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .chr-header-footer .chr-main-nav__list-item::after {
    display: none;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-bottom: 4px solid #222;
    width: 100%;
    height: 8px;
    content: "";
  }
  .chr-header-footer .chr-main-nav__list-item:not(:first-child) {
    margin-left: 32px;
  }
  .chr-header-footer .chr-main-nav__list-item.is-active::after, .chr-header-footer .chr-main-nav__list-item:hover::after {
    display: block;
  }
}
.chr-header-footer .chr-main-nav__link {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
  padding-bottom: 16px;
  color: inherit;
}
.chr-header-footer .chr-main-nav__link:hover {
  border-bottom-color: #222;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-main-nav__link {
    border-bottom: none;
  }
}
.chr-header-footer .chr-user-nav__link, .chr-header-footer .chr-user-nav__button {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
}
.chr-header-footer .chr-user-nav__button {
  border: none;
  text-align: left;
}
.chr-header-footer :host {
  display: block;
}
.chr-header-footer .chr-footer {
  position: relative;
  background-color: #f7f7f7;
  padding: 32px 0;
}
.chr-header-footer .chr-footer__nav {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px 0 24px;
}
.chr-header-footer .chr-footer__nav-list-item {
  padding: 12px 0;
}
.chr-header-footer .chr-footer__nav-heading {
  margin-bottom: 12px;
}
.chr-header-footer .chr-footer__nav-secondary {
  margin-top: 24px;
}
.chr-header-footer .chr-footer__nav-secondary-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.chr-header-footer .chr-footer__nav-secondary-list:last-child {
  margin-top: 12px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-footer__nav-secondary-list:last-child {
    margin-top: 4px;
  }
}
.chr-header-footer .chr-footer__nav-secondary-list-item {
  padding: 8px 12px;
  text-align: center;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-footer__nav-secondary-list-item {
    padding: 8px;
  }
}
.chr-header-footer .chr-footer__nav-secondary-list-item__link:focus, .chr-header-footer .chr-footer__nav-secondary-list-item__link.chr-button:focus {
  border: 0;
}
.chr-header-footer .chr-footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px;
}
.chr-header-footer .chr-footer__social-item {
  margin: 8px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-footer__social-item {
    margin: 8px 4px;
  }
}
.chr-header-footer .chr-footer__copyright {
  text-align: center;
}
.chr-header-footer .chr-footer__legal {
  margin-top: 8px;
  text-align: center;
}
.chr-header-footer #onetrust-consent-sdk {
  position: relative;
  z-index: 1029;
}

[data-whatintent=mouse] *:focus,
[data-whatintent=touch] *:focus {
  outline: none !important;
}

.chr-modal-open {
  overflow-y: hidden;
}

/*# sourceMappingURL=christies-design-system-library-header-footer.css.map */
