/**
 * Important: nothing in this file should output CSS; it should all be mixins,
 * functions, variables, etc
 */
:root {
  --c-accent: 0, 0%, 100%;
  --c-dominant: 0, 0%, 13%;
}

.chr-theme--living-color {
  --c-accent: 0, 0%, 97%;
  background-color: var(--c-background);
  color: var(--c-text);
}
.chr-theme--living-color .chr-button--xs:not(:disabled) .chr-icon .chr-icon__stroke--dark,
.chr-theme--living-color .chr-icon--dark .chr-icon__stroke--dark {
  stroke: currentColor;
}
.chr-theme--living-color .chr-button--xs:not(:disabled) .chr-icon .chr-icon__fill--dark,
.chr-theme--living-color .chr-icon--dark .chr-icon__fill--dark {
  fill: currentColor;
}

:root,
.chr-theme--living-color {
  --c-background: hsl(var(--c-accent));
  --c-text: hsl(var(--c-dominant));
  --c-button-disabled-light: hsla(var(--c-accent), .1);
  --c-button-disabled-dark: hsla(var(--c-dominant), .1);
  --c-button-text-disabled-light: hsla(var(--c-accent), .64);
  --c-button-text-disabled-dark: hsla(var(--c-dominant), .64);
  --c-button-primary-dark: hsl(var(--c-dominant));
  --c-button-primary-light: hsl(var(--c-accent));
  --c-button-text-primary-light: hsl(var(--c-dominant));
  --c-button-text-primary-dark: hsl(var(--c-accent));
  --c-button-primary-light-hover: hsla(var(--c-accent), .85);
  --c-button-primary-dark-hover: hsla(var(--c-dominant), .85);
  --c-button-primary-light-active: hsla(var(--c-accent), .9);
  --c-button-primary-dark-active: hsla(var(--c-dominant), .9);
  --c-button-text-secondary-light: hsl(var(--c-accent));
  --c-button-text-secondary-dark: hsl(var(--c-dominant));
  --c-button-secondary-light: hsla(var(--c-accent), .1);
  --c-button-secondary-dark: hsla(var(--c-dominant), .1);
  --c-button-secondary-light-hover: hsl(var(--c-accent));
  --c-button-secondary-dark-hover: hsl(var(--c-dominant));
  --c-button-secondary-light-active: hsla(var(--c-accent), .1);
  --c-button-secondary-dark-active: hsla(var(--c-dominant), .1);
  --c-button-secondary-light-focus-1: hsla(var(--c-accent), .1);
  --c-button-secondary-light-focus-2: hsl(var(--c-accent));
  --c-button-secondary-dark-focus-1: hsla(var(--c-dominant), .1);
  --c-button-secondary-dark-focus-2: hsl(var(--c-dominant));
  --c-icon-border: hsla(var(--c-dominant), .1);
  --c-icon-border-light-hover: hsl(var(--c-accent));
  --c-icon-border-dark-hover: hsl(var(--c-dominant));
  --c-ui-division: hsla(var(--c-dominant), .1);
  --c-ui-progress-remaining: hsl(var(--c-dominant));
  --c-ui-progress-gone: hsla(var(--c-dominant, .3));
  --c-tooltip: hsl(var(--c-dominant));
  --c-tooltip-text: hsl(var(--c-accent));
  --c-live-bidding-status-background: hsla(var(--c-dominant), .1);
  --c-red: #d70c00;
  --c-icon-primary: hsl(var(--c-dominant));
  --c-icon-secondary: hsl(var(--c-accent));
  --c-icon-primary-light: hsl(var(--c-accent));
  --c-icon-secondary-light: hsl(var(--c-dominant));
  --c-icon-primary-disabled: hsla(var(--c-dominant), .64);
  --c-icon-secondary-disabled: hsla(var(--c-dominant), .64);
  --c-icon-primary-disabled-light: hsla(var(--c-accent), .64);
  --c-icon-secondary-disabled-light: hsla(var(--c-accent), .64);
  --c-living-color-transparent-accent: hsla(var(--c-accent), 0);
}

.chr-header-footer {
  background-color: #fff;
  line-height: 1;
  color: #222;
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.chr-header-footer chr-header {
  display: block;
  transition-duration: 1s;
  transition-property: min-height, max-height;
  transition-timing-function: ease-in-out;
  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: 2px solid #808080;
  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 {
  /* stylelint-disable-next-line selector-type-no-unknown */
  /* stylelint-disable-next-line selector-type-no-unknown */
  /* stylelint-disable selector-type-no-unknown */
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.chr-header-footer .section--top {
  border-bottom: 1px solid #dfdfdf;
  background-color: #fff;
  padding: 16px 0 0;
}
.chr-header-footer .section--xs {
  padding-top: 16px;
  padding-bottom: 16px;
}
.chr-header-footer .section--sm {
  padding-top: 24px;
  padding-bottom: 24px;
}
.chr-header-footer .section--md {
  padding-top: 40px;
  padding-bottom: 40px;
}
.chr-header-footer .section--white {
  background-color: #fff;
}
.chr-header-footer .section--black {
  background-color: #222;
}
.chr-header-footer .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: 18px;
    padding-left: 18px;
  }
}
@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: 732px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .container {
    max-width: 1028px;
  }
}
@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: 18px;
    padding-left: 18px;
  }
}
@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;
  }
}
.chr-header-footer .chr-heading-xl-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.001em;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-heading-xl-serif {
    font-size: 42px;
    line-height: 1.12;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-heading-xl-serif {
    font-size: 50px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-xl-serif {
    font-size: 64px;
  }
}
.chr-header-footer .chr-hp-heading-xl-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.001em;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-hp-heading-xl-serif {
    font-size: 48px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-hp-heading-xl-serif {
    font-size: 64px;
  }
}
.chr-header-footer .chr-heading-l-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.1px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-heading-l-serif {
    font-size: 38px;
    line-height: 1.16;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-l-serif {
    font-size: 44px;
  }
}
.chr-header-footer .chr-hp-heading-l-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.1px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-hp-heading-l-serif {
    font-size: 40px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-hp-heading-l-serif {
    font-size: 48px;
  }
}
.chr-header-footer .chr-heading-m-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.22;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-heading-m-serif {
    font-size: 28px;
    line-height: 1.16;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading-m-serif {
    font-size: 32px;
  }
}
.chr-header-footer .chr-section-title,
.chr-header-footer .chr-heading-m-sans {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-section-title,
.chr-header-footer .chr-heading-m-sans {
    font-size: 22px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-section-title,
.chr-header-footer .chr-heading-m-sans {
    font-size: 24px;
  }
}
.chr-header-footer .chr-hp-heading-m-sans {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-hp-heading-m-sans {
    font-size: 24px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-hp-heading-m-sans {
    font-size: 32px;
  }
}
.chr-header-footer .chr-register-bid-modal__heading,
.chr-header-footer .chr-heading-s-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.12;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-register-bid-modal__heading,
.chr-header-footer .chr-heading-s-serif {
    font-size: 24px;
    line-height: 1.16;
  }
}
.chr-header-footer .chr-hp-heading-s-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-hp-heading-s-serif {
    font-size: 32px;
  }
}
.chr-header-footer .chr-footer__nav-heading,
.chr-header-footer .chr-heading-s-sans {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-footer__nav-heading,
.chr-header-footer .chr-heading-s-sans {
    font-size: 18px;
  }
}
.chr-header-footer .chr-register-bid-modal__subheading,
.chr-header-footer .chr-heading-xs-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.26;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-register-bid-modal__subheading,
.chr-header-footer .chr-heading-xs-serif {
    font-size: 18px;
  }
}
.chr-header-footer .chr-hp-heading-xs-serif {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-hp-heading-xs-serif {
    font-size: 24px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-hp-heading-xs-serif {
    font-size: 28px;
  }
}
.chr-header-footer .chr-body {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.chr-header-footer .chr-body-bold {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.chr-header-footer .chr-body-link {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: underline;
}
.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: 14px;
  line-height: 1.4;
}
.chr-header-footer .chr-body-s-bold {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
.chr-header-footer .chr-body-s-link {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: underline;
}
.chr-header-footer .chr-footer__copyright, .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.3;
}
.chr-header-footer .chr-label-bold {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
}
.chr-header-footer .chr-label-link {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: underline;
}
.chr-header-footer .chr-label-caps {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
}
.chr-header-footer .chr-label-lot {
  font-family: "AtlasGrotesk";
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.chr-header-footer .chr-footer__legal,
.chr-header-footer .chr-action-s {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}
.chr-header-footer .chr-button.chr-button--s,
.chr-header-footer .chr-action-s-bold {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
}
.chr-header-footer .chr-dropdown-list__item, .chr-header-footer .search-input input, .chr-header-footer .chr-text-input__label,
.chr-header-footer .chr-action {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
.chr-header-footer .chr-dropdown-list__list-item.is-active .chr-dropdown-list__item, .chr-header-footer .chr-text-input__field, .chr-header-footer .chr-button,
.chr-header-footer .chr-action-bold {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}
.chr-header-footer .chr-action-l {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-action-l {
    font-size: 18px;
  }
}
.chr-header-footer .chr-action-l-bold {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-action-l-bold {
    font-size: 18px;
  }
}
.chr-header-footer .chr-title {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-title {
    font-size: 42px;
    line-height: 1.12;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-title {
    font-size: 50px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-title {
    font-size: 64px;
  }
}
.chr-header-footer .chr-title-fixed {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.29;
  -webkit-font-smoothing: antialiased;
}
.chr-header-footer .chr-heading {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-heading {
    font-size: 38px;
    line-height: 1.16;
    letter-spacing: -0.5px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-heading {
    font-size: 44px;
    line-height: 1.09;
    letter-spacing: -0.6px;
  }
}
.chr-header-footer .chr-subheading-primary {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.1px;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-subheading-primary {
    font-size: 26px;
    line-height: 1.23;
    letter-spacing: -0.001em;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-subheading-primary {
    font-size: 28px;
    line-height: 1.14;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-subheading-primary {
    font-size: 30px;
    line-height: 1.13;
  }
}
.chr-header-footer .chr-subheading-primary-semibold {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.3px;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-subheading-primary-semibold {
    font-size: 26px;
    line-height: 1.23;
    letter-spacing: -0.5px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-subheading-primary-semibold {
    font-size: 28px;
    line-height: 1.14;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-subheading-primary-semibold {
    font-size: 30px;
    line-height: 1.13;
  }
}
.chr-header-footer .chr-subheading-secondary {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-subheading-secondary {
    font-size: 21px;
    line-height: 1.52;
    letter-spacing: -0.001em;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-subheading-secondary {
    font-size: 22px;
    line-height: 1.45;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-subheading-secondary {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.2px;
  }
}
.chr-header-footer .chr-subheading-secondary-semibold {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.3px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-subheading-secondary-semibold {
    font-size: 21px;
    line-height: 1.52;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-subheading-secondary-semibold {
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: -0.2px;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-subheading-secondary-semibold {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.3px;
  }
}
.chr-header-footer .chr-body-sm-light {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-body-sm-light {
    font-size: 14px;
    line-height: 1.71;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-body-sm-light {
    line-height: 1.5;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-body-sm-light {
    line-height: 1.71;
  }
}
.chr-header-footer .chr-user-nav__link,
.chr-header-footer .chr-body-sm {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-user-nav__link,
.chr-header-footer .chr-body-sm {
    font-size: 14px;
    line-height: 1.71;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-user-nav__link,
.chr-header-footer .chr-body-sm {
    line-height: 1.5;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-user-nav__link,
.chr-header-footer .chr-body-sm {
    line-height: 1.71;
  }
}
.chr-header-footer .chr-body-sm-medium {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-body-sm-medium {
    font-size: 14px;
    line-height: 1.71;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-body-sm-medium {
    line-height: 1.57;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-body-sm-medium {
    line-height: 1.71;
  }
}
.chr-header-footer .chr-body-sm-primary {
  font-family: "Bembo";
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.16;
  letter-spacing: -0.2px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-body-sm-primary {
    line-height: 1.05;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-body-sm-primary {
    font-size: 18px;
    line-height: 1.11;
  }
}
.chr-header-footer .chr-body-lg-light {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-body-lg-light {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-body-lg-light {
    font-size: 19px;
    line-height: 1.37;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-body-lg-light {
    line-height: 1.47;
  }
}
.chr-header-footer .chr-body-lg {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-body-lg {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-body-lg {
    font-size: 19px;
    line-height: 1.37;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-body-lg {
    line-height: 1.47;
  }
}
.chr-header-footer .chr-body-lg-medium {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-body-lg-medium {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-body-lg-medium {
    font-size: 19px;
    line-height: 1.37;
  }
}
@media (min-width: 1824px) {
  .chr-header-footer .chr-body-lg-medium {
    line-height: 1.47;
  }
}
.chr-header-footer .chr-label-light {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.38;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-label-light {
    font-size: 12px;
    line-height: 1.42;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-label-light {
    font-size: 11px;
    line-height: 1.36;
    letter-spacing: normal;
  }
}
.chr-header-footer .chr-label-medium {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.38;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-label-medium {
    font-size: 12px;
    line-height: 1.42;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-label-medium {
    font-size: 11px;
    line-height: 1.36;
  }
}
.chr-header-footer .chr-action-sm {
  font-family: "AtlasGrotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.16;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-action-sm {
    font-size: 12px;
    line-height: 1.16;
  }
}
.chr-header-footer .link-temp {
  text-decoration: underline;
}
.chr-header-footer .link-temp:hover {
  text-decoration: none;
  color: #808080;
}
.chr-header-footer .link {
  text-decoration: underline;
}
.chr-header-footer .link:hover {
  text-decoration: none;
}
.chr-header-footer .link:active {
  text-decoration: underline dotted;
}
.chr-header-footer .link--secondary,
.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 {
  text-decoration: none;
}
.chr-header-footer .link--secondary:hover,
.chr-header-footer .chr-footer__nav-secondary-list-item__link:hover,
.chr-header-footer .chr-user-nav__link:hover {
  text-decoration: underline;
}
.chr-header-footer .chr-body-link:hover {
  text-decoration: none;
}
.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 .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: 96px !important;
}
.chr-header-footer .mt-12,
.chr-header-footer .my-12 {
  margin-top: 96px !important;
}
.chr-header-footer .mr-12,
.chr-header-footer .mx-12 {
  margin-right: 96px !important;
}
.chr-header-footer .mb-12,
.chr-header-footer .my-12 {
  margin-bottom: 96px !important;
}
.chr-header-footer .ml-12,
.chr-header-footer .mx-12 {
  margin-left: 96px !important;
}
.chr-header-footer .p-12 {
  padding: 96px !important;
}
.chr-header-footer .pt-12,
.chr-header-footer .py-12 {
  padding-top: 96px !important;
}
.chr-header-footer .pr-12,
.chr-header-footer .px-12 {
  padding-right: 96px !important;
}
.chr-header-footer .pb-12,
.chr-header-footer .py-12 {
  padding-bottom: 96px !important;
}
.chr-header-footer .pl-12,
.chr-header-footer .px-12 {
  padding-left: 96px !important;
}
.chr-header-footer .m-13 {
  margin: 112px !important;
}
.chr-header-footer .mt-13,
.chr-header-footer .my-13 {
  margin-top: 112px !important;
}
.chr-header-footer .mr-13,
.chr-header-footer .mx-13 {
  margin-right: 112px !important;
}
.chr-header-footer .mb-13,
.chr-header-footer .my-13 {
  margin-bottom: 112px !important;
}
.chr-header-footer .ml-13,
.chr-header-footer .mx-13 {
  margin-left: 112px !important;
}
.chr-header-footer .p-13 {
  padding: 112px !important;
}
.chr-header-footer .pt-13,
.chr-header-footer .py-13 {
  padding-top: 112px !important;
}
.chr-header-footer .pr-13,
.chr-header-footer .px-13 {
  padding-right: 112px !important;
}
.chr-header-footer .pb-13,
.chr-header-footer .py-13 {
  padding-bottom: 112px !important;
}
.chr-header-footer .pl-13,
.chr-header-footer .px-13 {
  padding-left: 112px !important;
}
.chr-header-footer .m-14 {
  margin: 128px !important;
}
.chr-header-footer .mt-14,
.chr-header-footer .my-14 {
  margin-top: 128px !important;
}
.chr-header-footer .mr-14,
.chr-header-footer .mx-14 {
  margin-right: 128px !important;
}
.chr-header-footer .mb-14,
.chr-header-footer .my-14 {
  margin-bottom: 128px !important;
}
.chr-header-footer .ml-14,
.chr-header-footer .mx-14 {
  margin-left: 128px !important;
}
.chr-header-footer .p-14 {
  padding: 128px !important;
}
.chr-header-footer .pt-14,
.chr-header-footer .py-14 {
  padding-top: 128px !important;
}
.chr-header-footer .pr-14,
.chr-header-footer .px-14 {
  padding-right: 128px !important;
}
.chr-header-footer .pb-14,
.chr-header-footer .py-14 {
  padding-bottom: 128px !important;
}
.chr-header-footer .pl-14,
.chr-header-footer .px-14 {
  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: 96px !important;
  }
  .chr-header-footer .mt-sm-12,
.chr-header-footer .my-sm-12 {
    margin-top: 96px !important;
  }
  .chr-header-footer .mr-sm-12,
.chr-header-footer .mx-sm-12 {
    margin-right: 96px !important;
  }
  .chr-header-footer .mb-sm-12,
.chr-header-footer .my-sm-12 {
    margin-bottom: 96px !important;
  }
  .chr-header-footer .ml-sm-12,
.chr-header-footer .mx-sm-12 {
    margin-left: 96px !important;
  }
  .chr-header-footer .p-sm-12 {
    padding: 96px !important;
  }
  .chr-header-footer .pt-sm-12,
.chr-header-footer .py-sm-12 {
    padding-top: 96px !important;
  }
  .chr-header-footer .pr-sm-12,
.chr-header-footer .px-sm-12 {
    padding-right: 96px !important;
  }
  .chr-header-footer .pb-sm-12,
.chr-header-footer .py-sm-12 {
    padding-bottom: 96px !important;
  }
  .chr-header-footer .pl-sm-12,
.chr-header-footer .px-sm-12 {
    padding-left: 96px !important;
  }
  .chr-header-footer .m-sm-13 {
    margin: 112px !important;
  }
  .chr-header-footer .mt-sm-13,
.chr-header-footer .my-sm-13 {
    margin-top: 112px !important;
  }
  .chr-header-footer .mr-sm-13,
.chr-header-footer .mx-sm-13 {
    margin-right: 112px !important;
  }
  .chr-header-footer .mb-sm-13,
.chr-header-footer .my-sm-13 {
    margin-bottom: 112px !important;
  }
  .chr-header-footer .ml-sm-13,
.chr-header-footer .mx-sm-13 {
    margin-left: 112px !important;
  }
  .chr-header-footer .p-sm-13 {
    padding: 112px !important;
  }
  .chr-header-footer .pt-sm-13,
.chr-header-footer .py-sm-13 {
    padding-top: 112px !important;
  }
  .chr-header-footer .pr-sm-13,
.chr-header-footer .px-sm-13 {
    padding-right: 112px !important;
  }
  .chr-header-footer .pb-sm-13,
.chr-header-footer .py-sm-13 {
    padding-bottom: 112px !important;
  }
  .chr-header-footer .pl-sm-13,
.chr-header-footer .px-sm-13 {
    padding-left: 112px !important;
  }
  .chr-header-footer .m-sm-14 {
    margin: 128px !important;
  }
  .chr-header-footer .mt-sm-14,
.chr-header-footer .my-sm-14 {
    margin-top: 128px !important;
  }
  .chr-header-footer .mr-sm-14,
.chr-header-footer .mx-sm-14 {
    margin-right: 128px !important;
  }
  .chr-header-footer .mb-sm-14,
.chr-header-footer .my-sm-14 {
    margin-bottom: 128px !important;
  }
  .chr-header-footer .ml-sm-14,
.chr-header-footer .mx-sm-14 {
    margin-left: 128px !important;
  }
  .chr-header-footer .p-sm-14 {
    padding: 128px !important;
  }
  .chr-header-footer .pt-sm-14,
.chr-header-footer .py-sm-14 {
    padding-top: 128px !important;
  }
  .chr-header-footer .pr-sm-14,
.chr-header-footer .px-sm-14 {
    padding-right: 128px !important;
  }
  .chr-header-footer .pb-sm-14,
.chr-header-footer .py-sm-14 {
    padding-bottom: 128px !important;
  }
  .chr-header-footer .pl-sm-14,
.chr-header-footer .px-sm-14 {
    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: 96px !important;
  }
  .chr-header-footer .mt-md-12,
.chr-header-footer .my-md-12 {
    margin-top: 96px !important;
  }
  .chr-header-footer .mr-md-12,
.chr-header-footer .mx-md-12 {
    margin-right: 96px !important;
  }
  .chr-header-footer .mb-md-12,
.chr-header-footer .my-md-12 {
    margin-bottom: 96px !important;
  }
  .chr-header-footer .ml-md-12,
.chr-header-footer .mx-md-12 {
    margin-left: 96px !important;
  }
  .chr-header-footer .p-md-12 {
    padding: 96px !important;
  }
  .chr-header-footer .pt-md-12,
.chr-header-footer .py-md-12 {
    padding-top: 96px !important;
  }
  .chr-header-footer .pr-md-12,
.chr-header-footer .px-md-12 {
    padding-right: 96px !important;
  }
  .chr-header-footer .pb-md-12,
.chr-header-footer .py-md-12 {
    padding-bottom: 96px !important;
  }
  .chr-header-footer .pl-md-12,
.chr-header-footer .px-md-12 {
    padding-left: 96px !important;
  }
  .chr-header-footer .m-md-13 {
    margin: 112px !important;
  }
  .chr-header-footer .mt-md-13,
.chr-header-footer .my-md-13 {
    margin-top: 112px !important;
  }
  .chr-header-footer .mr-md-13,
.chr-header-footer .mx-md-13 {
    margin-right: 112px !important;
  }
  .chr-header-footer .mb-md-13,
.chr-header-footer .my-md-13 {
    margin-bottom: 112px !important;
  }
  .chr-header-footer .ml-md-13,
.chr-header-footer .mx-md-13 {
    margin-left: 112px !important;
  }
  .chr-header-footer .p-md-13 {
    padding: 112px !important;
  }
  .chr-header-footer .pt-md-13,
.chr-header-footer .py-md-13 {
    padding-top: 112px !important;
  }
  .chr-header-footer .pr-md-13,
.chr-header-footer .px-md-13 {
    padding-right: 112px !important;
  }
  .chr-header-footer .pb-md-13,
.chr-header-footer .py-md-13 {
    padding-bottom: 112px !important;
  }
  .chr-header-footer .pl-md-13,
.chr-header-footer .px-md-13 {
    padding-left: 112px !important;
  }
  .chr-header-footer .m-md-14 {
    margin: 128px !important;
  }
  .chr-header-footer .mt-md-14,
.chr-header-footer .my-md-14 {
    margin-top: 128px !important;
  }
  .chr-header-footer .mr-md-14,
.chr-header-footer .mx-md-14 {
    margin-right: 128px !important;
  }
  .chr-header-footer .mb-md-14,
.chr-header-footer .my-md-14 {
    margin-bottom: 128px !important;
  }
  .chr-header-footer .ml-md-14,
.chr-header-footer .mx-md-14 {
    margin-left: 128px !important;
  }
  .chr-header-footer .p-md-14 {
    padding: 128px !important;
  }
  .chr-header-footer .pt-md-14,
.chr-header-footer .py-md-14 {
    padding-top: 128px !important;
  }
  .chr-header-footer .pr-md-14,
.chr-header-footer .px-md-14 {
    padding-right: 128px !important;
  }
  .chr-header-footer .pb-md-14,
.chr-header-footer .py-md-14 {
    padding-bottom: 128px !important;
  }
  .chr-header-footer .pl-md-14,
.chr-header-footer .px-md-14 {
    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: 96px !important;
  }
  .chr-header-footer .mt-lg-12,
.chr-header-footer .my-lg-12 {
    margin-top: 96px !important;
  }
  .chr-header-footer .mr-lg-12,
.chr-header-footer .mx-lg-12 {
    margin-right: 96px !important;
  }
  .chr-header-footer .mb-lg-12,
.chr-header-footer .my-lg-12 {
    margin-bottom: 96px !important;
  }
  .chr-header-footer .ml-lg-12,
.chr-header-footer .mx-lg-12 {
    margin-left: 96px !important;
  }
  .chr-header-footer .p-lg-12 {
    padding: 96px !important;
  }
  .chr-header-footer .pt-lg-12,
.chr-header-footer .py-lg-12 {
    padding-top: 96px !important;
  }
  .chr-header-footer .pr-lg-12,
.chr-header-footer .px-lg-12 {
    padding-right: 96px !important;
  }
  .chr-header-footer .pb-lg-12,
.chr-header-footer .py-lg-12 {
    padding-bottom: 96px !important;
  }
  .chr-header-footer .pl-lg-12,
.chr-header-footer .px-lg-12 {
    padding-left: 96px !important;
  }
  .chr-header-footer .m-lg-13 {
    margin: 112px !important;
  }
  .chr-header-footer .mt-lg-13,
.chr-header-footer .my-lg-13 {
    margin-top: 112px !important;
  }
  .chr-header-footer .mr-lg-13,
.chr-header-footer .mx-lg-13 {
    margin-right: 112px !important;
  }
  .chr-header-footer .mb-lg-13,
.chr-header-footer .my-lg-13 {
    margin-bottom: 112px !important;
  }
  .chr-header-footer .ml-lg-13,
.chr-header-footer .mx-lg-13 {
    margin-left: 112px !important;
  }
  .chr-header-footer .p-lg-13 {
    padding: 112px !important;
  }
  .chr-header-footer .pt-lg-13,
.chr-header-footer .py-lg-13 {
    padding-top: 112px !important;
  }
  .chr-header-footer .pr-lg-13,
.chr-header-footer .px-lg-13 {
    padding-right: 112px !important;
  }
  .chr-header-footer .pb-lg-13,
.chr-header-footer .py-lg-13 {
    padding-bottom: 112px !important;
  }
  .chr-header-footer .pl-lg-13,
.chr-header-footer .px-lg-13 {
    padding-left: 112px !important;
  }
  .chr-header-footer .m-lg-14 {
    margin: 128px !important;
  }
  .chr-header-footer .mt-lg-14,
.chr-header-footer .my-lg-14 {
    margin-top: 128px !important;
  }
  .chr-header-footer .mr-lg-14,
.chr-header-footer .mx-lg-14 {
    margin-right: 128px !important;
  }
  .chr-header-footer .mb-lg-14,
.chr-header-footer .my-lg-14 {
    margin-bottom: 128px !important;
  }
  .chr-header-footer .ml-lg-14,
.chr-header-footer .mx-lg-14 {
    margin-left: 128px !important;
  }
  .chr-header-footer .p-lg-14 {
    padding: 128px !important;
  }
  .chr-header-footer .pt-lg-14,
.chr-header-footer .py-lg-14 {
    padding-top: 128px !important;
  }
  .chr-header-footer .pr-lg-14,
.chr-header-footer .px-lg-14 {
    padding-right: 128px !important;
  }
  .chr-header-footer .pb-lg-14,
.chr-header-footer .py-lg-14 {
    padding-bottom: 128px !important;
  }
  .chr-header-footer .pl-lg-14,
.chr-header-footer .px-lg-14 {
    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: 96px !important;
  }
  .chr-header-footer .mt-xl-12,
.chr-header-footer .my-xl-12 {
    margin-top: 96px !important;
  }
  .chr-header-footer .mr-xl-12,
.chr-header-footer .mx-xl-12 {
    margin-right: 96px !important;
  }
  .chr-header-footer .mb-xl-12,
.chr-header-footer .my-xl-12 {
    margin-bottom: 96px !important;
  }
  .chr-header-footer .ml-xl-12,
.chr-header-footer .mx-xl-12 {
    margin-left: 96px !important;
  }
  .chr-header-footer .p-xl-12 {
    padding: 96px !important;
  }
  .chr-header-footer .pt-xl-12,
.chr-header-footer .py-xl-12 {
    padding-top: 96px !important;
  }
  .chr-header-footer .pr-xl-12,
.chr-header-footer .px-xl-12 {
    padding-right: 96px !important;
  }
  .chr-header-footer .pb-xl-12,
.chr-header-footer .py-xl-12 {
    padding-bottom: 96px !important;
  }
  .chr-header-footer .pl-xl-12,
.chr-header-footer .px-xl-12 {
    padding-left: 96px !important;
  }
  .chr-header-footer .m-xl-13 {
    margin: 112px !important;
  }
  .chr-header-footer .mt-xl-13,
.chr-header-footer .my-xl-13 {
    margin-top: 112px !important;
  }
  .chr-header-footer .mr-xl-13,
.chr-header-footer .mx-xl-13 {
    margin-right: 112px !important;
  }
  .chr-header-footer .mb-xl-13,
.chr-header-footer .my-xl-13 {
    margin-bottom: 112px !important;
  }
  .chr-header-footer .ml-xl-13,
.chr-header-footer .mx-xl-13 {
    margin-left: 112px !important;
  }
  .chr-header-footer .p-xl-13 {
    padding: 112px !important;
  }
  .chr-header-footer .pt-xl-13,
.chr-header-footer .py-xl-13 {
    padding-top: 112px !important;
  }
  .chr-header-footer .pr-xl-13,
.chr-header-footer .px-xl-13 {
    padding-right: 112px !important;
  }
  .chr-header-footer .pb-xl-13,
.chr-header-footer .py-xl-13 {
    padding-bottom: 112px !important;
  }
  .chr-header-footer .pl-xl-13,
.chr-header-footer .px-xl-13 {
    padding-left: 112px !important;
  }
  .chr-header-footer .m-xl-14 {
    margin: 128px !important;
  }
  .chr-header-footer .mt-xl-14,
.chr-header-footer .my-xl-14 {
    margin-top: 128px !important;
  }
  .chr-header-footer .mr-xl-14,
.chr-header-footer .mx-xl-14 {
    margin-right: 128px !important;
  }
  .chr-header-footer .mb-xl-14,
.chr-header-footer .my-xl-14 {
    margin-bottom: 128px !important;
  }
  .chr-header-footer .ml-xl-14,
.chr-header-footer .mx-xl-14 {
    margin-left: 128px !important;
  }
  .chr-header-footer .p-xl-14 {
    padding: 128px !important;
  }
  .chr-header-footer .pt-xl-14,
.chr-header-footer .py-xl-14 {
    padding-top: 128px !important;
  }
  .chr-header-footer .pr-xl-14,
.chr-header-footer .px-xl-14 {
    padding-right: 128px !important;
  }
  .chr-header-footer .pb-xl-14,
.chr-header-footer .py-xl-14 {
    padding-bottom: 128px !important;
  }
  .chr-header-footer .pl-xl-14,
.chr-header-footer .px-xl-14 {
    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 chr-icon {
  display: inline-flex;
  vertical-align: middle;
}
.chr-header-footer .chr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.15s;
  transition-property: color, background-color, border-color;
  transition-timing-function: ease-out;
}
.chr-header-footer .chr-icon [class^=chr-icon__stroke],
.chr-header-footer .chr-icon [class^=chr-icon__fill] {
  transition-duration: 0.15s;
  transition-property: fill, stroke;
  transition-timing-function: ease-out;
}
.chr-header-footer .chr-icon path {
  stroke-width: 1px;
}
.chr-header-footer .chr-icon--light .chr-icon__fill--light {
  fill: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--light .chr-icon__fill--light {
    fill: var(--c-icon-secondary-light);
  }
}
.chr-header-footer .chr-icon--light .chr-icon__fill--dark {
  fill: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--light .chr-icon__fill--dark {
    fill: var(--c-icon-primary-light);
  }
}
.chr-header-footer .chr-icon--light .chr-icon__stroke--light {
  stroke: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--light .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary-light);
  }
}
.chr-header-footer .chr-icon--light .chr-icon__stroke--dark {
  stroke: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--light .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary-light);
  }
}
.chr-header-footer .chr-icon--dark .chr-icon__fill--light {
  fill: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--dark .chr-icon__fill--light {
    fill: var(--c-icon-secondary);
  }
}
.chr-header-footer .chr-icon--dark .chr-icon__fill--dark {
  fill: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--dark .chr-icon__fill--dark {
    fill: var(--c-icon-primary);
  }
}
.chr-header-footer .chr-icon--dark .chr-icon__stroke--light {
  stroke: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--dark .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary);
  }
}
.chr-header-footer .chr-icon--dark .chr-icon__stroke--dark {
  stroke: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--dark .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary);
  }
}
.chr-header-footer .chr-icon--red .chr-icon__fill--light {
  fill: #d70c00;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--red .chr-icon__fill--light {
    fill: var(--c-red);
  }
}
.chr-header-footer .chr-icon--red .chr-icon__fill--dark {
  fill: #d70c00;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--red .chr-icon__fill--dark {
    fill: var(--c-red);
  }
}
.chr-header-footer .chr-icon--red .chr-icon__stroke--light {
  stroke: #d70c00;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--red .chr-icon__stroke--light {
    stroke: var(--c-red);
  }
}
.chr-header-footer .chr-icon--red .chr-icon__stroke--dark {
  stroke: #d70c00;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-icon--red .chr-icon__stroke--dark {
    stroke: var(--c-red);
  }
}
.chr-header-footer .chr-icon--circle, .chr-header-footer .chr-button--icon-circle .chr-icon, .chr-header-footer .chr-icon--square, .chr-header-footer .chr-button--icon-square .chr-icon {
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-color: var(--c-icon-border);
}
.chr-header-footer .chr-icon--circle.chr-icon--red, .chr-header-footer .chr-button--icon-circle .chr-icon--red.chr-icon, .chr-header-footer .chr-icon--square.chr-icon--red, .chr-header-footer .chr-button--icon-square .chr-icon--red.chr-icon {
  border-color: rgba(215, 12, 0, 0.1);
}
.chr-header-footer .chr-icon--circle, .chr-header-footer .chr-button--icon-circle .chr-icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.chr-text-input__error .chr-header-footer .chr-icon--circle, .chr-text-input__error .chr-header-footer .chr-button--icon-circle .chr-icon, .chr-text-input__password-btn .chr-header-footer .chr-icon--circle, .chr-text-input__password-btn .chr-header-footer .chr-button--icon-circle .chr-icon, .chr-scroll-top-button .chr-header-footer .chr-icon--circle, .chr-scroll-top-button .chr-header-footer .chr-button--icon-circle .chr-icon, .chr-item-pagination .chr-header-footer .chr-icon--circle, .chr-item-pagination .chr-header-footer .chr-button--icon-circle .chr-icon, .chr-breadcrumb__list .chr-header-footer .chr-icon--circle, .chr-breadcrumb__list .chr-header-footer .chr-button--icon-circle .chr-icon {
  width: 24px;
  height: 24px;
}

.chr-header-footer .chr-icon--square, .chr-header-footer .chr-button--icon-square .chr-icon {
  border-radius: 2px;
  width: 32px;
  height: 46px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-icon--square, .chr-header-footer .chr-button--icon-square .chr-icon {
    width: 32px;
    height: 38px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-icon--square, .chr-header-footer .chr-button--icon-square .chr-icon {
    width: 32px;
    height: 34px;
  }
}
.chr-header-footer .chr-icon--xs, .chr-header-footer .chr-button--xs .chr-icon {
  width: 24px;
  height: 24px;
}
.chr-header-footer .chr-icon--l {
  width: 32px;
  height: 32px;
}
.chr-header-footer .chr-icon svg {
  width: 24px;
  height: 24px;
}
.chr-button--secondary .chr-header-footer .chr-icon svg, .chr-event-tile__icon .chr-header-footer .chr-icon svg, .chr-promo-tile__icon .chr-header-footer .chr-icon svg, .chr-text-input__error .chr-header-footer .chr-icon svg, .chr-text-input__password-btn .chr-header-footer .chr-icon svg, .chr-scroll-top-button .chr-header-footer .chr-icon svg, .chr-item-pagination .chr-header-footer .chr-icon svg, .chr-breadcrumb__list .chr-header-footer .chr-icon svg, .chr-tooltip .chr-header-footer .chr-icon svg {
  width: 16px;
  height: 16px;
}

.chr-icon--l svg {
  width: 100%;
  height: 100%;
}

.chr-header-footer .chr-button:disabled .chr-icon {
  border-color: rgba(255, 255, 255, 0);
  color: rgba(0, 0, 0, 0.64);
}
.chr-header-footer .chr-button:disabled .chr-icon .chr-icon__fill--light {
  fill: rgba(0, 0, 0, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button:disabled .chr-icon .chr-icon__fill--light {
    fill: var(--c-icon-secondary-disabled);
  }
}
.chr-header-footer .chr-button:disabled .chr-icon .chr-icon__fill--dark {
  fill: rgba(0, 0, 0, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button:disabled .chr-icon .chr-icon__fill--dark {
    fill: var(--c-icon-primary-disabled);
  }
}
.chr-header-footer .chr-button:disabled .chr-icon .chr-icon__stroke--light {
  stroke: rgba(0, 0, 0, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button:disabled .chr-icon .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary-disabled);
  }
}
.chr-header-footer .chr-button:disabled .chr-icon .chr-icon__stroke--dark {
  stroke: rgba(0, 0, 0, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button:disabled .chr-icon .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary-disabled);
  }
}
.chr-header-footer .chr-button:disabled.chr-button--light:not(.chr-button--secondary) .chr-icon {
  background-color: rgba(255, 255, 255, 0.1);
}
.chr-header-footer .chr-button:disabled.chr-button--light .chr-icon {
  color: #f7f7f7;
}
.chr-header-footer .chr-button:disabled.chr-button--light .chr-icon .chr-icon__fill--light {
  fill: rgba(255, 255, 255, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button:disabled.chr-button--light .chr-icon .chr-icon__fill--light {
    fill: var(--c-icon-secondary-disabled-light);
  }
}
.chr-header-footer .chr-button:disabled.chr-button--light .chr-icon .chr-icon__fill--dark {
  fill: rgba(255, 255, 255, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button:disabled.chr-button--light .chr-icon .chr-icon__fill--dark {
    fill: var(--c-icon-primary-disabled-light);
  }
}
.chr-header-footer .chr-button:disabled.chr-button--light .chr-icon .chr-icon__stroke--light {
  stroke: rgba(255, 255, 255, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button:disabled.chr-button--light .chr-icon .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary-disabled-light);
  }
}
.chr-header-footer .chr-button:disabled.chr-button--light .chr-icon .chr-icon__stroke--dark {
  stroke: rgba(255, 255, 255, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button:disabled.chr-button--light .chr-icon .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary-disabled-light);
  }
}
.chr-header-footer .chr-button.chr-button--light .chr-icon .chr-icon__fill--light {
  fill: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button.chr-button--light .chr-icon .chr-icon__fill--light {
    fill: var(--c-icon-secondary-light);
  }
}
.chr-header-footer .chr-button.chr-button--light .chr-icon .chr-icon__fill--dark {
  fill: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button.chr-button--light .chr-icon .chr-icon__fill--dark {
    fill: var(--c-icon-primary-light);
  }
}
.chr-header-footer .chr-button.chr-button--light .chr-icon .chr-icon__stroke--light {
  stroke: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button.chr-button--light .chr-icon .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary-light);
  }
}
.chr-header-footer .chr-button.chr-button--light .chr-icon .chr-icon__stroke--dark {
  stroke: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button.chr-button--light .chr-icon .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary-light);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled):hover .chr-icon .chr-icon__fill--light {
  fill: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled):hover .chr-icon .chr-icon__fill--light {
    fill: var(--c-icon-secondary);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled):hover .chr-icon .chr-icon__fill--dark {
  fill: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled):hover .chr-icon .chr-icon__fill--dark {
    fill: var(--c-icon-primary);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled):hover .chr-icon .chr-icon__stroke--light {
  stroke: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled):hover .chr-icon .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled):hover .chr-icon .chr-icon__stroke--dark {
  stroke: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled):hover .chr-icon .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled):hover.chr-button--light .chr-icon .chr-icon__fill--light {
  fill: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled):hover.chr-button--light .chr-icon .chr-icon__fill--light {
    fill: var(--c-icon-secondary-light);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled):hover.chr-button--light .chr-icon .chr-icon__fill--dark {
  fill: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled):hover.chr-button--light .chr-icon .chr-icon__fill--dark {
    fill: var(--c-icon-primary-light);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled):hover.chr-button--light .chr-icon .chr-icon__stroke--light {
  stroke: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled):hover.chr-button--light .chr-icon .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary-light);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled):hover.chr-button--light .chr-icon .chr-icon__stroke--dark {
  stroke: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled):hover.chr-button--light .chr-icon .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary-light);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled) .chr-icon .chr-icon__fill--light {
  fill: rgba(0, 0, 0, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled) .chr-icon .chr-icon__fill--light {
    fill: var(--c-icon-secondary-disabled);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled) .chr-icon .chr-icon__fill--dark {
  fill: rgba(0, 0, 0, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled) .chr-icon .chr-icon__fill--dark {
    fill: var(--c-icon-primary-disabled);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled) .chr-icon .chr-icon__stroke--light {
  stroke: rgba(0, 0, 0, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled) .chr-icon .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary-disabled);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled) .chr-icon .chr-icon__stroke--dark {
  stroke: rgba(0, 0, 0, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled) .chr-icon .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary-disabled);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled).chr-button--light .chr-icon .chr-icon__fill--light {
  fill: rgba(255, 255, 255, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled).chr-button--light .chr-icon .chr-icon__fill--light {
    fill: var(--c-icon-secondary-disabled-light);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled).chr-button--light .chr-icon .chr-icon__fill--dark {
  fill: rgba(255, 255, 255, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled).chr-button--light .chr-icon .chr-icon__fill--dark {
    fill: var(--c-icon-primary-disabled-light);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled).chr-button--light .chr-icon .chr-icon__stroke--light {
  stroke: rgba(255, 255, 255, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled).chr-button--light .chr-icon .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary-disabled-light);
  }
}
.chr-header-footer .chr-button--xs:not(:disabled).chr-button--light .chr-icon .chr-icon__stroke--dark {
  stroke: rgba(255, 255, 255, 0.64);
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--xs:not(:disabled).chr-button--light .chr-icon .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary-disabled-light);
  }
}
.chr-header-footer .chr-button--icon-circle:not(:disabled):hover.chr-button--dark .chr-icon,
.chr-header-footer .chr-button--icon-square:not(:disabled):hover.chr-button--dark .chr-icon,
.chr-header-footer .chr-button--icon-label:not(:disabled):hover.chr-button--dark .chr-icon {
  border-color: #222;
  border-color: var(--c-icon-border-dark-hover);
}
.chr-header-footer .chr-button--icon-circle:not(:disabled):hover.chr-button--light .chr-icon,
.chr-header-footer .chr-button--icon-square:not(:disabled):hover.chr-button--light .chr-icon,
.chr-header-footer .chr-button--icon-label:not(:disabled):hover.chr-button--light .chr-icon {
  border-color: #f7f7f7;
  border-color: var(--c-icon-border-light-hover);
}
.chr-header-footer .chr-button--icon-circle:not(:disabled):active.chr-button--dark .chr-icon,
.chr-header-footer .chr-button--icon-square:not(:disabled):active.chr-button--dark .chr-icon,
.chr-header-footer .chr-button--icon-label:not(:disabled):active.chr-button--dark .chr-icon {
  background-color: rgba(0, 0, 0, 0.1);
}
.chr-header-footer .chr-button--icon-circle:not(:disabled):active.chr-button--light .chr-icon,
.chr-header-footer .chr-button--icon-square:not(:disabled):active.chr-button--light .chr-icon,
.chr-header-footer .chr-button--icon-label:not(:disabled):active.chr-button--light .chr-icon {
  background-color: rgba(255, 255, 255, 0.1);
}
.chr-header-footer .chr-button--icon-circle:not(:disabled).chr-button--light .chr-icon,
.chr-header-footer .chr-button--icon-square:not(:disabled).chr-button--light .chr-icon,
.chr-header-footer .chr-button--icon-label:not(:disabled).chr-button--light .chr-icon {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.chr-header-footer .chr-button--chip.chr-button--light .chr-icon .chr-icon__fill--light {
  fill: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--chip.chr-button--light .chr-icon .chr-icon__fill--light {
    fill: var(--c-icon-secondary);
  }
}
.chr-header-footer .chr-button--chip.chr-button--light .chr-icon .chr-icon__fill--dark {
  fill: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--chip.chr-button--light .chr-icon .chr-icon__fill--dark {
    fill: var(--c-icon-primary);
  }
}
.chr-header-footer .chr-button--chip.chr-button--light .chr-icon .chr-icon__stroke--light {
  stroke: #f7f7f7;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--chip.chr-button--light .chr-icon .chr-icon__stroke--light {
    stroke: var(--c-icon-secondary);
  }
}
.chr-header-footer .chr-button--chip.chr-button--light .chr-icon .chr-icon__stroke--dark {
  stroke: #222;
}
@supports not (-ms-high-contrast: none) {
  .chr-header-footer .chr-button--chip.chr-button--light .chr-icon .chr-icon__stroke--dark {
    stroke: var(--c-icon-primary);
  }
}
.high-contrast .chr-icon__fill--light, .high-contrast .chr-icon__fill--dark {
  fill: currentColor;
}
.high-contrast .chr-icon__stroke--light, .high-contrast .chr-icon__stroke--dark {
  stroke: currentColor;
}

@media (min-width: 1224px) {
  .chr-header-footer .chr-header__user-zone-item .chr-icon--circle, .chr-header-footer .chr-header__user-zone-item .chr-button--icon-circle .chr-icon, .chr-header-footer .chr-button--icon-circle .chr-header__user-zone-item .chr-icon {
    width: 24px;
    height: 24px;
  }
  .chr-header-footer .chr-header__user-zone-item svg {
    width: 16px;
    height: 16px;
  }
}
.chr-header-footer .chr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.15s;
  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: ease-out;
  border: 3px solid transparent;
  border-radius: 5px;
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  padding: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.chr-header-footer .chr-button:focus {
  outline: none;
}
.chr-header-footer .chr-button:disabled {
  border-color: rgba(255, 255, 255, 0) !important;
  box-shadow: none !important;
}
.chr-header-footer .chr-button:disabled.chr-button--dark {
  background-color: rgba(34, 34, 34, 0.1) !important;
  background-color: var(--c-button-disabled-dark) !important;
  color: rgba(34, 34, 34, 0.64) !important;
  color: var(--c-button-text-disabled-dark) !important;
}
.chr-header-footer .chr-button:disabled.chr-button--light {
  background-color: rgba(255, 255, 255, 0.1) !important;
  background-color: var(--c-button-disabled-light) !important;
  color: rgba(255, 255, 255, 0.64) !important;
  color: var(--c-button-text-disabled-light) !important;
}
.chr-header-footer .chr-button--icon-circle {
  border-radius: 50%;
}
.chr-header-footer .chr-button--icon-square {
  border-radius: 2px;
}
.chr-header-footer .chr-button--icon-label {
  padding-right: 2px;
}
.chr-header-footer .chr-button--icon-label:disabled.chr-button--dark {
  background-color: rgba(255, 255, 255, 0) !important;
}
.chr-header-footer .chr-button--icon-label:disabled.chr-button--light {
  background-color: rgba(255, 255, 255, 0) !important;
}
.chr-header-footer .chr-button--icon-label:not(:disabled):hover {
  text-decoration: underline;
}
.chr-header-footer .chr-button--block {
  width: 100%;
}
.chr-header-footer .chr-button--xs {
  padding: 4px;
}
.chr-header-footer .chr-button--primary, .chr-header-footer .chr-button--secondary {
  padding: 16px;
}
@media (min-width: 768px) {
  .chr-header-footer .chr-button--primary, .chr-header-footer .chr-button--secondary {
    padding: 12px 16px;
  }
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-button--primary, .chr-header-footer .chr-button--secondary {
    padding: 10px 16px;
  }
}
.chr-header-footer .chr-button.chr-button--s {
  padding: 8px 16px;
}
.chr-header-footer .chr-button--primary:hover.chr-button--dark, .chr-header-footer .chr-button--chip:hover.chr-button--dark {
  background-color: rgba(34, 34, 34, 0.85);
  background-color: var(--c-button-primary-dark-hover);
}
.chr-header-footer .chr-button--primary:hover.chr-button--light, .chr-header-footer .chr-button--chip:hover.chr-button--light {
  background-color: rgba(247, 247, 247, 0.85);
  background-color: var(--c-button-primary-light-hover);
}
.chr-header-footer .chr-button--primary:active.chr-button--dark, .chr-header-footer .chr-button--chip:active.chr-button--dark {
  background-color: rgba(34, 34, 34, 0.9);
  background-color: var(--c-button-primary-dark-active);
}
.chr-header-footer .chr-button--primary:active.chr-button--light, .chr-header-footer .chr-button--chip:active.chr-button--light {
  background-color: rgba(247, 247, 247, 0.9);
  background-color: var(--c-button-primary-light-active);
}
.chr-header-footer .chr-button--primary.chr-button--dark, .chr-header-footer .chr-button--chip.chr-button--dark {
  box-shadow: inset 0 0 0 1px #222;
  box-shadow: inset 0 0 0 1px var(--c-button-primary-dark);
  background-color: #222;
  background-color: var(--c-button-primary-dark);
  color: #f7f7f7;
  color: var(--c-button-text-primary-dark);
}
.chr-header-footer .chr-button--primary.chr-button--light, .chr-header-footer .chr-button--chip.chr-button--light {
  box-shadow: inset 0 0 0 1px #f7f7f7;
  box-shadow: inset 0 0 0 1px var(--c-button-primary-light);
  background-color: #fff;
  background-color: var(--c-button-primary-light);
  color: #222;
  color: var(--c-button-text-primary-light);
}
.chr-header-footer .chr-button--secondary > *, .chr-header-footer .chr-button--icon-label > * {
  margin-right: 4px;
  margin-left: 4px;
}
.chr-header-footer .chr-button--secondary > *:first-child, .chr-header-footer .chr-button--icon-label > *:first-child {
  margin-left: 0;
}
.chr-header-footer .chr-button--secondary > *:last-child, .chr-header-footer .chr-button--icon-label > *:last-child {
  margin-right: 0;
}
.chr-header-footer .chr-button--secondary:active:not(.chr-button--fake).chr-button--dark, .chr-header-footer .chr-button--tag:active:not(.chr-button--fake).chr-button--dark {
  background-color: rgba(34, 34, 34, 0.1);
  background-color: var(--c-button-secondary-dark-active);
}
.chr-header-footer .chr-button--secondary:active:not(.chr-button--fake).chr-button--light, .chr-header-footer .chr-button--tag:active:not(.chr-button--fake).chr-button--light {
  background-color: rgba(255, 255, 255, 0.1);
  background-color: var(--c-button-secondary-light-active);
}
.chr-header-footer .chr-button--secondary:active:not(.chr-button--fake).active, .chr-header-footer .chr-button--tag:active:not(.chr-button--fake).active {
  background-color: rgba(34, 34, 34, 0.9);
  background-color: var(--c-button-primary-dark-active);
}
.chr-header-footer .chr-button--secondary:focus.chr-button--dark, .chr-header-footer .chr-button--tag:focus.chr-button--dark {
  box-shadow: inset 0 0 0 1px rgba(34, 34, 34, 0.1), 0 0 0 1px #222;
  box-shadow: inset 0 0 0 1px var(--c-button-secondary-dark-focus-1), 0 0 0 1px var(--c-button-secondary-dark-focus-2);
}
[data-whatintent=mouse] .chr-header-footer .chr-button--secondary:focus.chr-button--dark, [data-whatintent=touch] .chr-header-footer .chr-button--secondary:focus.chr-button--dark, [data-whatintent=mouse] .chr-header-footer .chr-button--tag:focus.chr-button--dark, [data-whatintent=touch] .chr-header-footer .chr-button--tag:focus.chr-button--dark {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
}

.chr-header-footer .chr-button--secondary:focus.chr-button--light, .chr-header-footer .chr-button--tag:focus.chr-button--light {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 0 1px #f7f7f7;
  box-shadow: inset 0 0 0 1px var(--c-button-secondary-light-focus-1), 0 0 0 1px var(--c-button-secondary-light-focus-2);
}
[data-whatintent=mouse] .chr-header-footer .chr-button--secondary:focus.chr-button--light, [data-whatintent=touch] .chr-header-footer .chr-button--secondary:focus.chr-button--light, [data-whatintent=mouse] .chr-header-footer .chr-button--tag:focus.chr-button--light, [data-whatintent=touch] .chr-header-footer .chr-button--tag:focus.chr-button--light {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
}

.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(34, 34, 34, 0.1);
  box-shadow: inset 0 0 0 1px var(--c-button-secondary-dark);
}
.chr-header-footer .chr-button--secondary.chr-button--light, .chr-header-footer .chr-button--tag.chr-button--light {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px var(--c-button-secondary-light);
}
.chr-header-footer .chr-button--chip, .chr-header-footer .chr-button--tag {
  padding: 4px 8px;
}
.chr-header-footer .chr-button--secondary:hover.chr-button--dark, .chr-header-footer .chr-button--icon:hover.chr-button--dark, .chr-header-footer .chr-button--tag:not(.chr-button--fake):hover.chr-button--dark {
  box-shadow: inset 0 0 0 1px #222;
  box-shadow: inset 0 0 0 1px var(--c-button-secondary-dark-hover);
}
.chr-header-footer .chr-button--secondary:hover.chr-button--light, .chr-header-footer .chr-button--icon:hover.chr-button--light, .chr-header-footer .chr-button--tag:not(.chr-button--fake):hover.chr-button--light {
  box-shadow: inset 0 0 0 1px #f7f7f7;
  box-shadow: inset 0 0 0 1px var(--c-button-secondary-light-hover);
}
.chr-header-footer .chr-button--secondary.chr-button--dark, .chr-header-footer .chr-button--icon-label.chr-button--dark, .chr-header-footer .chr-button--tag.chr-button--dark {
  color: #222;
  color: var(--c-button-text-secondary-dark);
}
.chr-header-footer .chr-button--secondary.chr-button--light, .chr-header-footer .chr-button--icon-label.chr-button--light, .chr-header-footer .chr-button--tag.chr-button--light {
  color: #f7f7f7;
  color: var(--c-button-text-secondary-light);
}
.chr-header-footer .chr-button--primary:focus:hover.chr-button--dark, .chr-header-footer .chr-button--secondary:focus:hover.chr-button--dark, .chr-header-footer .chr-button--chip:focus:hover.chr-button--dark, .chr-header-footer .chr-button--tag:focus:hover.chr-button--dark {
  box-shadow: inset 0 0 0 1px #222, 0 0 0 1px #222;
}
[data-whatintent=mouse] .chr-header-footer .chr-button--primary:focus:hover.chr-button--dark, [data-whatintent=touch] .chr-header-footer .chr-button--primary:focus:hover.chr-button--dark, [data-whatintent=mouse] .chr-header-footer .chr-button--secondary:focus:hover.chr-button--dark, [data-whatintent=touch] .chr-header-footer .chr-button--secondary:focus:hover.chr-button--dark, [data-whatintent=mouse] .chr-header-footer .chr-button--chip:focus:hover.chr-button--dark, [data-whatintent=touch] .chr-header-footer .chr-button--chip:focus:hover.chr-button--dark, [data-whatintent=mouse] .chr-header-footer .chr-button--tag:focus:hover.chr-button--dark, [data-whatintent=touch] .chr-header-footer .chr-button--tag:focus:hover.chr-button--dark {
  box-shadow: inset 0 0 0 1px #222 !important;
}

.chr-header-footer .chr-button--primary:focus:hover.chr-button--light, .chr-header-footer .chr-button--secondary:focus:hover.chr-button--light, .chr-header-footer .chr-button--chip:focus:hover.chr-button--light, .chr-header-footer .chr-button--tag:focus:hover.chr-button--light {
  box-shadow: inset 0 0 0 1px #f7f7f7, 0 0 0 1px #fff;
}
[data-whatintent=mouse] .chr-header-footer .chr-button--primary:focus:hover.chr-button--light, [data-whatintent=touch] .chr-header-footer .chr-button--primary:focus:hover.chr-button--light, [data-whatintent=mouse] .chr-header-footer .chr-button--secondary:focus:hover.chr-button--light, [data-whatintent=touch] .chr-header-footer .chr-button--secondary:focus:hover.chr-button--light, [data-whatintent=mouse] .chr-header-footer .chr-button--chip:focus:hover.chr-button--light, [data-whatintent=touch] .chr-header-footer .chr-button--chip:focus:hover.chr-button--light, [data-whatintent=mouse] .chr-header-footer .chr-button--tag:focus:hover.chr-button--light, [data-whatintent=touch] .chr-header-footer .chr-button--tag:focus:hover.chr-button--light {
  box-shadow: inset 0 0 0 1px #f7f7f7 !important;
}

.chr-header-footer .chr-button--tag.chr-button--fake {
  cursor: initial;
}
.chr-header-footer .chr-button--tag.chr-button--fake.chr-button--dark {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.64);
}
.chr-header-footer .chr-button--tag.chr-button--fake.chr-button--light {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.64);
}
.chr-header-footer .chr-button--tag.chr-button--light {
  box-shadow: inset 0 0 0 1px #222;
  box-shadow: inset 0 0 0 1px var(--c-button-primary-dark);
  background-color: #222;
  background-color: var(--c-button-primary-dark);
  color: #f7f7f7;
  color: var(--c-button-text-primary-dark);
}
.chr-header-footer .chr-button--tag.chr-button--light:active {
  background-color: rgba(34, 34, 34, 0.9);
  background-color: var(--c-button-primary-dark-active);
}
.chr-header-footer .chr-button--primary:focus.chr-button--dark, .chr-header-footer .chr-button--primary:focus.chr-button--light.active, .chr-header-footer .chr-button--icon-circle:focus.chr-button--dark, .chr-header-footer .chr-button--icon-circle:focus.chr-button--light.active, .chr-header-footer .chr-button--icon-square:focus.chr-button--dark, .chr-header-footer .chr-button--icon-square:focus.chr-button--light.active, .chr-header-footer .chr-button--icon-label:focus.chr-button--dark, .chr-header-footer .chr-button--icon-label:focus.chr-button--light.active, .chr-header-footer .chr-button--chip:focus.chr-button--dark, .chr-header-footer .chr-button--chip:focus.chr-button--light.active {
  box-shadow: 0 0 0 1px #222;
}
.chr-header-footer .chr-button--primary:focus.chr-button--light, .chr-header-footer .chr-button--primary:focus.chr-button--dark.active, .chr-header-footer .chr-button--icon-circle:focus.chr-button--light, .chr-header-footer .chr-button--icon-circle:focus.chr-button--dark.active, .chr-header-footer .chr-button--icon-square:focus.chr-button--light, .chr-header-footer .chr-button--icon-square:focus.chr-button--dark.active, .chr-header-footer .chr-button--icon-label:focus.chr-button--light, .chr-header-footer .chr-button--icon-label:focus.chr-button--dark.active, .chr-header-footer .chr-button--chip:focus.chr-button--light, .chr-header-footer .chr-button--chip:focus.chr-button--dark.active {
  box-shadow: 0 0 0 1px #f7f7f7;
}
[data-whatintent=mouse] .chr-header-footer .chr-button--primary:focus, [data-whatintent=touch] .chr-header-footer .chr-button--primary:focus, [data-whatintent=mouse] .chr-header-footer .chr-button--icon-circle:focus, [data-whatintent=touch] .chr-header-footer .chr-button--icon-circle:focus, [data-whatintent=mouse] .chr-header-footer .chr-button--icon-square:focus, [data-whatintent=touch] .chr-header-footer .chr-button--icon-square:focus, [data-whatintent=mouse] .chr-header-footer .chr-button--icon-label:focus, [data-whatintent=touch] .chr-header-footer .chr-button--icon-label:focus, [data-whatintent=mouse] .chr-header-footer .chr-button--chip:focus, [data-whatintent=touch] .chr-header-footer .chr-button--chip:focus {
  box-shadow: none !important;
}

.chr-header-footer .chr-button--icon-circle.chr-button--light, .chr-header-footer .chr-button--icon-square.chr-button--light {
  background-color: #222;
}
.chr-header-footer .chr-button--secondary.active {
  background-color: #222;
}
.chr-header-footer .chr-button--link {
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  text-decoration: none;
}
.chr-header-footer .chr-button--link:hover, .chr-header-footer .chr-button--link:focus {
  text-decoration: underline;
}
.chr-header-footer .chr-button--link:focus {
  outline: 2px solid #808080;
  outline-offset: 2px;
}
.chr-header-footer .chr-text-input {
  display: block;
}
.chr-header-footer .chr-text-input__field {
  appearance: none;
  display: block;
  transition: border 0.15s;
  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: 40px;
}
.chr-header-footer .chr-text-input__wrapper {
  position: relative;
}
.chr-header-footer .chr-text-input__wrapper::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: transform 0.15s;
  z-index: 1;
  background-color: #222;
  width: 100%;
  height: 1px;
  content: "";
  pointer-events: none;
}
.chr-header-footer .chr-text-input__label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 17px);
  transition-duration: 0.15s;
  transition-property: font-size, line-height, color, transform;
  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.64);
}
.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.64);
}
.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.64);
}
.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 .search-input {
  display: flex;
  position: relative;
  width: 100%;
}
.chr-header-footer .search-input input {
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  padding-right: 48px;
  padding-left: 16px;
  width: 100%;
  height: 48px;
  color: rgba(0, 0, 0, 0.64);
}
.chr-header-footer .search-input input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #222;
}
@media (min-width: 768px) {
  .chr-header-footer .search-input input {
    padding-right: 40px;
    height: 40px;
  }
}
.chr-header-footer .search-input button {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
}
@media (min-width: 768px) {
  .chr-header-footer .search-input button {
    width: 40px;
  }
}
.chr-header-footer .search-input__icon {
  width: 100%;
}
.chr-header-footer .search-input__icon .chr-icon {
  border-color: transparent;
  width: 100%;
  height: 40px;
}
@media (min-width: 768px) {
  .chr-header-footer .search-input__icon .chr-icon {
    height: 34px;
  }
}
.chr-header-footer .chr-accordion-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: inherit;
}
.chr-header-footer .chr-accordion-header {
  border-bottom: 1px solid #dfdfdf;
  background-color: inherit;
  cursor: pointer;
  padding: 8px 0;
  width: 100%;
}
.chr-accordion-item:hover .chr-header-footer .chr-accordion-header {
  border-bottom-color: #222;
}
.chr-header-footer .chr-accordion-header.clicked {
  border-bottom: 1px solid #dfdfdf;
}
.chr-header-footer .chr-accordion-header .chr-label-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.chr-header-footer .chr-accordion-header .chr-accordion-icon {
  margin-right: 8px;
}
.chr-header-footer .chr-accordion-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.chr-header-footer .chr-accordion-panel chr-icon {
  padding-right: 8px;
}
.chr-header-footer .chr-accordion-item-container {
  transition-duration: 0.3s;
  transition-property: opacity, max-height, visibility;
  visibility: hidden;
  opacity: 0;
  border-bottom: 1px solid #222;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  overflow-y: hidden;
}
.chr-header-footer .chr-accordion-item-container.show {
  visibility: visible;
  opacity: 1;
  max-height: none;
}
.chr-header-footer .chr-accordion-item-container.scroll {
  overflow-y: auto;
}
.chr-header-footer .chr-accordion-item-container > *:first-child {
  padding-top: 24px;
}
@media (min-width: 576px) {
  .chr-header-footer .chr-accordion-item-container > *:first-child {
    padding-top: 16px;
  }
}
.chr-header-footer .chr-accordion {
  position: relative;
  width: 100%;
  min-width: 150px;
}
@media (min-width: 1224px) {
  .chr-header-footer .chr-accordion {
    z-index: 800;
  }
}
.chr-header-footer chr-drawer[hidden] {
  display: block;
  visibility: hidden;
}
.chr-header-footer .drawer {
  position: relative;
}
.chr-header-footer .drawer::after {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform, opacity 0.3s ease;
  opacity: 1;
  z-index: 9002;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  max-height: 100%;
  content: "";
}
.chr-header-footer .drawer.closed::after {
  transform: translateX(-100%);
  opacity: 0;
}
.chr-header-footer .drawer__container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  transition: transform 0.3s ease;
  z-index: 9003;
  background: #fff;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.closed .chr-header-footer .drawer__container {
  transform: translateX(-100%);
}
.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 #dfdfdf;
  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 #dfdfdf;
}
.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.64);
}
.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.64);
}
.chr-header-footer .chr-dropdown-list__button {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  border: none;
  border-bottom: 1px solid #dfdfdf;
  border-radius: 0;
  background: none;
  cursor: pointer;
  padding: 0 0 12px;
  width: 100%;
  text-decoration: none;
  white-space: nowrap;
}
.chr-header-footer .chr-dropdown-list__button:hover {
  border-bottom-color: #222;
}
.chr-header-footer .chr-dropdown-list__button.chr-button--icon-label:hover {
  text-decoration: none;
}
.chr-header-footer .chr-dropdown-list__button > * {
  margin-right: 0;
  margin-left: 0;
}
.chr-header-footer .chr-dropdown-list__button .chr-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.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 .modalOpen {
  overflow-y: hidden;
}
.chr-header-footer .chr-modal {
  position: fixed;
  top: -100vh;
  left: 0;
  transition: top 0s;
  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 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(34, 34, 34, 0.6);
}
.chr-header-footer .chr-modal__content {
  transform: scale(0.7);
  transition: all 0.3s;
  opacity: 0;
  height: 100%;
}
.chr-header-footer .chr-modal__content--full {
  background: #fff;
  height: 100%;
}
.chr-header-footer .chr-modal__content > .row {
  height: 100%;
  min-height: -webkit-fill-available;
}
@media (min-width: 576px) {
  .chr-header-footer .chr-modal__content > .row {
    min-height: auto;
  }
}
.chr-header-footer .chr-modal__outer {
  transition: all 0.3s;
}
.chr-header-footer .chr-modal__inner {
  position: relative;
  border-radius: 3px;
  background-color: #fff;
  padding: 64px 16px 32px;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
}
.chr-header-footer .chr-modal__inner--nopad {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 64px 0 0;
}
.chr-header-footer .chr-modal__inner--no-scroll {
  overflow-y: hidden;
}
.chr-header-footer .chr-modal__close {
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 1;
  pointer-events: auto;
}
@media (min-width: 576px) {
  .chr-header-footer .chr-modal {
    height: 100vh;
  }
}
.chr-header-footer .chr-register-bid-modal__heading {
  margin-bottom: 32px;
  text-align: center;
}
.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.64);
}
.chr-header-footer .chr-modal-provider__modal::after {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform, opacity 0.3s ease;
  opacity: 1;
  z-index: 9002;
  background-color: rgba(0, 0, 0, 0.64);
  width: 100%;
  height: 100%;
  max-height: 100%;
  content: "";
}
.chr-header-footer chr-modal-provider,
.chr-header-footer chr-inline-modal-provider {
  /* stylelint-enable selector-type-no-unknown */
  display: none;
}
.chr-header-footer chr-modal-provider.hydrated,
.chr-header-footer chr-inline-modal-provider.hydrated {
  display: block;
}
.chr-header-footer chr-header {
  display: block;
  transition-duration: 1s;
  transition-property: min-height, max-height;
  transition-timing-function: ease-in-out;
  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 #dfdfdf;
  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__link-site {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin-right: 8px;
  width: 144px;
}
.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%;
}
@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: #dfdfdf;
  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__drawer {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 1040;
  border-bottom: 1px solid #dfdfdf;
  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: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }
}
@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: 24px;
  }
  .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 #dfdfdf;
  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 {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
}
.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 #dfdfdf;
  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;
}

[data-whatintent=mouse] *:focus,
[data-whatintent=touch] *:focus {
  outline: none !important;
}

/*# sourceMappingURL=christies-design-system-library-header-footer.css.map */
