/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
 */

.mdc-touch-target-wrapper {
  display: inline;
}

.mdc-chip-trailing-action__touch {
  position: absolute;
  top: 50%;
  right: 0;
  height: 48px;
  left: 50%;
  width: 48px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mdc-chip-trailing-action {
  border: none;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  background: none;
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__icon {
  height: 18px;
  width: 18px;
  font-size: 18px;
}

.mdc-chip-trailing-action .mdc-chip-trailing-action {
  color: #000;
  color: var(--mdc-theme-on-surface, #000);
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__touch {
  width: 26px;
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__icon {
  fill: currentColor;
  color: inherit;
}

@-webkit-keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(.4, 0, .2, 1);
            animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
  }

  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
  }
}

@keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(.4, 0, .2, 1);
            animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
  }

  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
  }
}

@-webkit-keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0;
  }

  to {
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
}

@keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0;
  }

  to {
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
}

@-webkit-keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }

  to {
    opacity: 0;
  }
}

@keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }

  to {
    opacity: 0;
  }
}

.mdc-chip-trailing-action {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: transform, opacity;
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple::before,
.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple::before {
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
  z-index: var(--mdc-ripple-z-index, 1);
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple::after {
  z-index: 0;
  z-index: var(--mdc-ripple-z-index, 0);
}

.mdc-chip-trailing-action.mdc-ripple-upgraded .mdc-chip-trailing-action__ripple::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip-trailing-action.mdc-ripple-upgraded .mdc-chip-trailing-action__ripple::after {
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
           transform-origin: center center;
}

.mdc-chip-trailing-action.mdc-ripple-upgraded--unbounded .mdc-chip-trailing-action__ripple::after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-chip-trailing-action.mdc-ripple-upgraded--foreground-activation .mdc-chip-trailing-action__ripple::after {
  -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
          animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-chip-trailing-action.mdc-ripple-upgraded--foreground-deactivation .mdc-chip-trailing-action__ripple::after {
  -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
          animation: mdc-ripple-fg-opacity-out 150ms;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple::before,
.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple::after {
  top: calc(50% - 50%);
  left: calc(50% - 50%);
  width: 100%;
  height: 100%;
}

.mdc-chip-trailing-action.mdc-ripple-upgraded .mdc-chip-trailing-action__ripple::before,
.mdc-chip-trailing-action.mdc-ripple-upgraded .mdc-chip-trailing-action__ripple::after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-chip-trailing-action.mdc-ripple-upgraded .mdc-chip-trailing-action__ripple::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple::before,
.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple::after {
  background-color: #000;
  background-color: var(--mdc-ripple-color, var(--mdc-theme-on-surface, #000));
}

.mdc-chip-trailing-action:hover .mdc-chip-trailing-action__ripple::before,
.mdc-chip-trailing-action.mdc-ripple-surface--hover .mdc-chip-trailing-action__ripple::before {
  opacity: .04;
  opacity: var(--mdc-ripple-hover-opacity, .04);
}

.mdc-chip-trailing-action.mdc-ripple-upgraded--background-focused .mdc-chip-trailing-action__ripple::before,
.mdc-chip-trailing-action:not(.mdc-ripple-upgraded):focus .mdc-chip-trailing-action__ripple::before {
  transition-duration: 75ms;
  opacity: .12;
  opacity: var(--mdc-ripple-focus-opacity, .12);
}

.mdc-chip-trailing-action:not(.mdc-ripple-upgraded) .mdc-chip-trailing-action__ripple::after {
  transition: opacity 150ms linear;
}

.mdc-chip-trailing-action:not(.mdc-ripple-upgraded):active .mdc-chip-trailing-action__ripple::after {
  transition-duration: 75ms;
  opacity: .12;
  opacity: var(--mdc-ripple-press-opacity, .12);
}

.mdc-chip-trailing-action.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, .12);
}

.mdc-chip-trailing-action .mdc-chip-trailing-action__ripple {
  position: absolute;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mdc-chip__icon--leading {
  color: rgba(0, 0, 0, .54);
}

.mdc-chip-trailing-action {
  color: #000;
}

.mdc-chip__icon--trailing {
  color: rgba(0, 0, 0, .54);
}

.mdc-chip__icon--trailing:hover {
  color: rgba(0, 0, 0, .62);
}

.mdc-chip__icon--trailing:focus {
  color: rgba(0, 0, 0, .87);
}

.mdc-chip__icon.mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden) {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.mdc-chip-trailing-action__icon {
  height: 18px;
  width: 18px;
  font-size: 18px;
}

.mdc-chip__icon.mdc-chip__icon--trailing {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.mdc-chip-trailing-action {
  margin-left: 4px;
  margin-right: -4px;
}

[dir=rtl] .mdc-chip-trailing-action,
.mdc-chip-trailing-action[dir=rtl] {
  margin-left: -4px;
  margin-right: 4px;
}

.mdc-chip__icon--trailing {
  margin-left: 4px;
  margin-right: -4px;
}

[dir=rtl] .mdc-chip__icon--trailing,
.mdc-chip__icon--trailing[dir=rtl] {
  margin-left: -4px;
  margin-right: 4px;
}

.mdc-elevation-overlay {
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  opacity: var(--mdc-elevation-overlay-opacity, 0);
  transition: opacity 280ms cubic-bezier(.4, 0, .2, 1);
  background-color: #fff;
  background-color: var(--mdc-elevation-overlay-color, #fff);
}

.mdc-chip {
  border-radius: 16px;
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, .87);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Roboto, sans-serif;
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
  font-size: .875rem;
  font-size: var(--mdc-typography-body2-font-size, .875rem);
  line-height: 1.25rem;
  line-height: var(--mdc-typography-body2-line-height, 1.25rem);
  font-weight: 400;
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: .0178571429em;
  letter-spacing: var(--mdc-typography-body2-letter-spacing, .0178571429em);
          text-decoration: inherit;
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: inherit;
  text-transform: var(--mdc-typography-body2-text-transform, inherit);
  height: 32px;
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 12px;
  border-width: 0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

.mdc-chip .mdc-chip__ripple {
  border-radius: 16px;
}

.mdc-chip:hover {
  color: rgba(0, 0, 0, .87);
}

.mdc-chip.mdc-chip--selected .mdc-chip__checkmark,
.mdc-chip .mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden) {
  margin-left: -4px;
  margin-right: 4px;
}

[dir=rtl] .mdc-chip.mdc-chip--selected .mdc-chip__checkmark,
.mdc-chip.mdc-chip--selected .mdc-chip__checkmark[dir=rtl],
[dir=rtl] .mdc-chip .mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden),
.mdc-chip .mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden)[dir=rtl] {
  margin-left: 4px;
  margin-right: -4px;
}

.mdc-chip .mdc-elevation-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mdc-chip::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mdc-chip:hover {
  color: #000;
  color: var(--mdc-theme-on-surface, #000);
}

.mdc-chip .mdc-chip__touch {
  position: absolute;
  top: 50%;
  right: 0;
  height: 48px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mdc-chip--exit {
  transition: opacity 75ms cubic-bezier(.4, 0, .2, 1), width 150ms cubic-bezier(0, 0, .2, 1), padding 100ms linear, margin 100ms linear;
  opacity: 0;
}

.mdc-chip__overflow {
  text-overflow: ellipsis;
  overflow: hidden;
}

.mdc-chip__text {
  white-space: nowrap;
}

.mdc-chip__icon {
  border-radius: 50%;
  outline: none;
  vertical-align: middle;
}

.mdc-chip__checkmark {
  height: 20px;
}

.mdc-chip__checkmark-path {
  transition: stroke-dashoffset 150ms 50ms cubic-bezier(.4, 0, .6, 1);
  stroke-width: 2px;
  stroke-dashoffset: 29.7833385;
  stroke-dasharray: 29.7833385;
}

.mdc-chip__primary-action:focus {
  outline: none;
}

.mdc-chip--selected .mdc-chip__checkmark-path {
  stroke-dashoffset: 0;
}

.mdc-chip__icon--leading,
.mdc-chip__icon--trailing {
  position: relative;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected {
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected .mdc-chip__icon--leading {
  color: rgba(98, 0, 238, .54);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:hover {
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip .mdc-chip__checkmark-path {
  stroke: #6200ee;
  stroke: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip--selected {
  background-color: #fff;
  background-color: var(--mdc-theme-surface, #fff);
}

.mdc-chip__checkmark-svg {
  width: 0;
  height: 20px;
  transition: width 150ms cubic-bezier(.4, 0, .2, 1);
}

.mdc-chip--selected .mdc-chip__checkmark-svg {
  width: 20px;
}

.mdc-chip-set--filter .mdc-chip__icon--leading {
  transition: opacity 75ms linear;
  transition-delay: -50ms;
  opacity: 1;
}

.mdc-chip-set--filter .mdc-chip__icon--leading+.mdc-chip__checkmark {
  transition: opacity 75ms linear;
  transition-delay: 80ms;
  opacity: 0;
}

.mdc-chip-set--filter .mdc-chip__icon--leading+.mdc-chip__checkmark .mdc-chip__checkmark-svg {
  transition: width 0ms;
}

.mdc-chip-set--filter .mdc-chip--selected .mdc-chip__icon--leading {
  opacity: 0;
}

.mdc-chip-set--filter .mdc-chip--selected .mdc-chip__icon--leading+.mdc-chip__checkmark {
  width: 0;
  opacity: 1;
}

.mdc-chip-set--filter .mdc-chip__icon--leading-hidden.mdc-chip__icon--leading {
  width: 0;
  opacity: 0;
}

.mdc-chip-set--filter .mdc-chip__icon--leading-hidden.mdc-chip__icon--leading+.mdc-chip__checkmark {
  width: 20px;
}

.mdc-chip {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: transform, opacity;
}

.mdc-chip .mdc-chip__ripple::before,
.mdc-chip .mdc-chip__ripple::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-chip .mdc-chip__ripple::before {
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
  z-index: var(--mdc-ripple-z-index, 1);
}

.mdc-chip .mdc-chip__ripple::after {
  z-index: 0;
  z-index: var(--mdc-ripple-z-index, 0);
}

.mdc-chip.mdc-ripple-upgraded .mdc-chip__ripple::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip.mdc-ripple-upgraded .mdc-chip__ripple::after {
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
           transform-origin: center center;
}

.mdc-chip.mdc-ripple-upgraded--unbounded .mdc-chip__ripple::after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-chip.mdc-ripple-upgraded--foreground-activation .mdc-chip__ripple::after {
  -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
          animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-chip.mdc-ripple-upgraded--foreground-deactivation .mdc-chip__ripple::after {
  -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
          animation: mdc-ripple-fg-opacity-out 150ms;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip .mdc-chip__ripple::before,
.mdc-chip .mdc-chip__ripple::after {
  top: calc(50% - 100%);
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
}

.mdc-chip.mdc-ripple-upgraded .mdc-chip__ripple::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-chip .mdc-chip__ripple::before,
.mdc-chip .mdc-chip__ripple::after {
  background-color: rgba(0, 0, 0, .87);
  background-color: var(--mdc-ripple-color, rgba(0, 0, 0, .87));
}

.mdc-chip:hover .mdc-chip__ripple::before,
.mdc-chip.mdc-ripple-surface--hover .mdc-chip__ripple::before {
  opacity: .04;
  opacity: var(--mdc-ripple-hover-opacity, .04);
}

.mdc-chip.mdc-ripple-upgraded--background-focused .mdc-chip__ripple::before,
.mdc-chip.mdc-ripple-upgraded:focus-within .mdc-chip__ripple::before,
.mdc-chip:not(.mdc-ripple-upgraded):focus .mdc-chip__ripple::before,
.mdc-chip:not(.mdc-ripple-upgraded):focus-within .mdc-chip__ripple::before {
  transition-duration: 75ms;
  opacity: .12;
  opacity: var(--mdc-ripple-focus-opacity, .12);
}

.mdc-chip:not(.mdc-ripple-upgraded) .mdc-chip__ripple::after {
  transition: opacity 150ms linear;
}

.mdc-chip:not(.mdc-ripple-upgraded):active .mdc-chip__ripple::after {
  transition-duration: 75ms;
  opacity: .12;
  opacity: var(--mdc-ripple-press-opacity, .12);
}

.mdc-chip.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, .12);
}

.mdc-chip .mdc-chip__ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected .mdc-chip__ripple::before {
  opacity: .08;
  opacity: var(--mdc-ripple-selected-opacity, .08);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected .mdc-chip__ripple::before,
.mdc-chip-set--choice .mdc-chip.mdc-chip--selected .mdc-chip__ripple::after {
  background-color: #6200ee;
  background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #6200ee));
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:hover .mdc-chip__ripple::before,
.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-surface--hover .mdc-chip__ripple::before {
  opacity: .12;
  opacity: var(--mdc-ripple-hover-opacity, .12);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded--background-focused .mdc-chip__ripple::before,
.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded:focus-within .mdc-chip__ripple::before,
.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):focus .mdc-chip__ripple::before,
.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):focus-within .mdc-chip__ripple::before {
  transition-duration: 75ms;
  opacity: .2;
  opacity: var(--mdc-ripple-focus-opacity, .2);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded) .mdc-chip__ripple::after {
  transition: opacity 150ms linear;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):active .mdc-chip__ripple::after {
  transition-duration: 75ms;
  opacity: .2;
  opacity: var(--mdc-ripple-press-opacity, .2);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, .2);
}

@-webkit-keyframes mdc-chip-entry {
  from {
    -webkit-transform: scale(.8);
            transform: scale(.8);
    opacity: .4;
  }

  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes mdc-chip-entry {
  from {
    -webkit-transform: scale(.8);
            transform: scale(.8);
    opacity: .4;
  }

  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.mdc-chip-set {
  padding: 4px;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.mdc-chip-set .mdc-chip {
  margin: 4px;
}

.mdc-chip-set .mdc-chip--touch {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mdc-chip-set--input .mdc-chip {
  -webkit-animation: mdc-chip-entry 100ms cubic-bezier(0, 0, .2, 1);
          animation: mdc-chip-entry 100ms cubic-bezier(0, 0, .2, 1);
}
@charset "UTF-8";

/**
 * This injects Tailwind's base styles, which is a combination of
 * Normalize.css and some additional base styles.
 *
 * You can see the styles here:
 * https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/preflight";
 */

/**
 * This injects any component classes registered by plugins.
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/components";
 */

.container {
  width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/**
 * Here you would add any of your custom component classes; stuff that you'd
 * want loaded *before* the utilities so that the utilities could still
 * override them.
 *
 * Example:
 *
 * .btn { ... }
 * .form-input { ... }
 *
 * Or if using a preprocessor or `postcss-import`:
 *
 * @import "components/buttons";
 * @import "components/forms";
 */

/**
 * This injects all of Tailwind's utility classes, generated based on your
 * config file.
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/utilities";
 */

.bg-transparent {
  background-color: transparent !important;
}

.bg-black {
  background-color: #22292f !important;
}

.bg-black-mdc {
  background-color: #000 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-grey-darkest {
  background-color: #414141 !important;
}

.bg-grey-darker {
  background-color: #828282 !important;
}

.bg-grey-dark {
  background-color: #c3c3c3 !important;
}

.bg-grey {
  background-color: #d9d9d9 !important;
}

.bg-grey-light {
  background-color: #e4e4e4 !important;
}

.bg-grey-lighter {
  background-color: #f1f1f1 !important;
}

.bg-grey-lightest {
  background-color: #fbfbfb !important;
}

.bg-grey-mdc {
  background-color: #edf0f5 !important;
}

.bg-grey-mdc-70 {
  background-color: #707070 !important;
}

.bg-blue-darkest {
  background-color: #0b1626 !important;
}

.bg-blue-darker {
  background-color: #152b4b !important;
}

.bg-blue-dark {
  background-color: #204171 !important;
}

.bg-blue {
  background-color: #23487d !important;
}

.bg-blue-light {
  background-color: #657fa4 !important;
}

.bg-blue-lighter {
  background-color: #a7b6cb !important;
}

.bg-blue-lightest {
  background-color: #e9edf2 !important;
}

.bg-orange-darkest {
  background-color: #4d290f !important;
}

.bg-orange-darker {
  background-color: #99521f !important;
}

.bg-orange-dark {
  background-color: #e67a2e !important;
}

.bg-orange {
  background-color: #f83 !important;
}

.bg-orange-light {
  background-color: #ffac70 !important;
}

.bg-orange-lighter {
  background-color: #ffcfad !important;
}

.bg-orange-lightest {
  background-color: #fff3eb !important;
}

.bg-gold-darkest {
  background-color: #301d18 !important;
}

.bg-gold-darker {
  background-color: #624031 !important;
}

.bg-gold-dark {
  background-color: #a77c4b !important;
}

.bg-gold {
  background-color: #b8915c !important;
}

.bg-gold-light {
  background-color: #c7aa7d !important;
}

.bg-gold-lighter {
  background-color: #dccbac !important;
}

.bg-gold-lightest {
  background-color: #ede5d4 !important;
}

.hover\:bg-transparent:hover {
  background-color: transparent !important;
}

.hover\:bg-black:hover {
  background-color: #22292f !important;
}

.hover\:bg-black-mdc:hover {
  background-color: #000 !important;
}

.hover\:bg-white:hover {
  background-color: #fff !important;
}

.hover\:bg-grey-darkest:hover {
  background-color: #414141 !important;
}

.hover\:bg-grey-darker:hover {
  background-color: #828282 !important;
}

.hover\:bg-grey-dark:hover {
  background-color: #c3c3c3 !important;
}

.hover\:bg-grey:hover {
  background-color: #d9d9d9 !important;
}

.hover\:bg-grey-light:hover {
  background-color: #e4e4e4 !important;
}

.hover\:bg-grey-lighter:hover {
  background-color: #f1f1f1 !important;
}

.hover\:bg-grey-lightest:hover {
  background-color: #fbfbfb !important;
}

.hover\:bg-grey-mdc:hover {
  background-color: #edf0f5 !important;
}

.hover\:bg-grey-mdc-70:hover {
  background-color: #707070 !important;
}

.hover\:bg-blue-darkest:hover {
  background-color: #0b1626 !important;
}

.hover\:bg-blue-darker:hover {
  background-color: #152b4b !important;
}

.hover\:bg-blue-dark:hover {
  background-color: #204171 !important;
}

.hover\:bg-blue:hover {
  background-color: #23487d !important;
}

.hover\:bg-blue-light:hover {
  background-color: #657fa4 !important;
}

.hover\:bg-blue-lighter:hover {
  background-color: #a7b6cb !important;
}

.hover\:bg-blue-lightest:hover {
  background-color: #e9edf2 !important;
}

.hover\:bg-orange-darkest:hover {
  background-color: #4d290f !important;
}

.hover\:bg-orange-darker:hover {
  background-color: #99521f !important;
}

.hover\:bg-orange-dark:hover {
  background-color: #e67a2e !important;
}

.hover\:bg-orange:hover {
  background-color: #f83 !important;
}

.hover\:bg-orange-light:hover {
  background-color: #ffac70 !important;
}

.hover\:bg-orange-lighter:hover {
  background-color: #ffcfad !important;
}

.hover\:bg-orange-lightest:hover {
  background-color: #fff3eb !important;
}

.hover\:bg-gold-darkest:hover {
  background-color: #301d18 !important;
}

.hover\:bg-gold-darker:hover {
  background-color: #624031 !important;
}

.hover\:bg-gold-dark:hover {
  background-color: #a77c4b !important;
}

.hover\:bg-gold:hover {
  background-color: #b8915c !important;
}

.hover\:bg-gold-light:hover {
  background-color: #c7aa7d !important;
}

.hover\:bg-gold-lighter:hover {
  background-color: #dccbac !important;
}

.hover\:bg-gold-lightest:hover {
  background-color: #ede5d4 !important;
}

.focus\:bg-transparent:focus {
  background-color: transparent !important;
}

.focus\:bg-black:focus {
  background-color: #22292f !important;
}

.focus\:bg-black-mdc:focus {
  background-color: #000 !important;
}

.focus\:bg-white:focus {
  background-color: #fff !important;
}

.focus\:bg-grey-darkest:focus {
  background-color: #414141 !important;
}

.focus\:bg-grey-darker:focus {
  background-color: #828282 !important;
}

.focus\:bg-grey-dark:focus {
  background-color: #c3c3c3 !important;
}

.focus\:bg-grey:focus {
  background-color: #d9d9d9 !important;
}

.focus\:bg-grey-light:focus {
  background-color: #e4e4e4 !important;
}

.focus\:bg-grey-lighter:focus {
  background-color: #f1f1f1 !important;
}

.focus\:bg-grey-lightest:focus {
  background-color: #fbfbfb !important;
}

.focus\:bg-grey-mdc:focus {
  background-color: #edf0f5 !important;
}

.focus\:bg-grey-mdc-70:focus {
  background-color: #707070 !important;
}

.focus\:bg-blue-darkest:focus {
  background-color: #0b1626 !important;
}

.focus\:bg-blue-darker:focus {
  background-color: #152b4b !important;
}

.focus\:bg-blue-dark:focus {
  background-color: #204171 !important;
}

.focus\:bg-blue:focus {
  background-color: #23487d !important;
}

.focus\:bg-blue-light:focus {
  background-color: #657fa4 !important;
}

.focus\:bg-blue-lighter:focus {
  background-color: #a7b6cb !important;
}

.focus\:bg-blue-lightest:focus {
  background-color: #e9edf2 !important;
}

.focus\:bg-orange-darkest:focus {
  background-color: #4d290f !important;
}

.focus\:bg-orange-darker:focus {
  background-color: #99521f !important;
}

.focus\:bg-orange-dark:focus {
  background-color: #e67a2e !important;
}

.focus\:bg-orange:focus {
  background-color: #f83 !important;
}

.focus\:bg-orange-light:focus {
  background-color: #ffac70 !important;
}

.focus\:bg-orange-lighter:focus {
  background-color: #ffcfad !important;
}

.focus\:bg-orange-lightest:focus {
  background-color: #fff3eb !important;
}

.focus\:bg-gold-darkest:focus {
  background-color: #301d18 !important;
}

.focus\:bg-gold-darker:focus {
  background-color: #624031 !important;
}

.focus\:bg-gold-dark:focus {
  background-color: #a77c4b !important;
}

.focus\:bg-gold:focus {
  background-color: #b8915c !important;
}

.focus\:bg-gold-light:focus {
  background-color: #c7aa7d !important;
}

.focus\:bg-gold-lighter:focus {
  background-color: #dccbac !important;
}

.focus\:bg-gold-lightest:focus {
  background-color: #ede5d4 !important;
}

.border-transparent {
  border-color: transparent !important;
}

.border-black {
  border-color: #22292f !important;
}

.border-black-mdc {
  border-color: #000 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-grey-darkest {
  border-color: #414141 !important;
}

.border-grey-darker {
  border-color: #828282 !important;
}

.border-grey-dark {
  border-color: #c3c3c3 !important;
}

.border-grey {
  border-color: #d9d9d9 !important;
}

.border-grey-light {
  border-color: #e4e4e4 !important;
}

.border-grey-lighter {
  border-color: #f1f1f1 !important;
}

.border-grey-lightest {
  border-color: #fbfbfb !important;
}

.border-grey-mdc {
  border-color: #edf0f5 !important;
}

.border-grey-mdc-70 {
  border-color: #707070 !important;
}

.border-blue-darkest {
  border-color: #0b1626 !important;
}

.border-blue-darker {
  border-color: #152b4b !important;
}

.border-blue-dark {
  border-color: #204171 !important;
}

.border-blue {
  border-color: #23487d !important;
}

.border-blue-light {
  border-color: #657fa4 !important;
}

.border-blue-lighter {
  border-color: #a7b6cb !important;
}

.border-blue-lightest {
  border-color: #e9edf2 !important;
}

.border-orange-darkest {
  border-color: #4d290f !important;
}

.border-orange-darker {
  border-color: #99521f !important;
}

.border-orange-dark {
  border-color: #e67a2e !important;
}

.border-orange {
  border-color: #f83 !important;
}

.border-orange-light {
  border-color: #ffac70 !important;
}

.border-orange-lighter {
  border-color: #ffcfad !important;
}

.border-orange-lightest {
  border-color: #fff3eb !important;
}

.border-gold-darkest {
  border-color: #301d18 !important;
}

.border-gold-darker {
  border-color: #624031 !important;
}

.border-gold-dark {
  border-color: #a77c4b !important;
}

.border-gold {
  border-color: #b8915c !important;
}

.border-gold-light {
  border-color: #c7aa7d !important;
}

.border-gold-lighter {
  border-color: #dccbac !important;
}

.border-gold-lightest {
  border-color: #ede5d4 !important;
}

.hover\:border-transparent:hover {
  border-color: transparent !important;
}

.hover\:border-black:hover {
  border-color: #22292f !important;
}

.hover\:border-black-mdc:hover {
  border-color: #000 !important;
}

.hover\:border-white:hover {
  border-color: #fff !important;
}

.hover\:border-grey-darkest:hover {
  border-color: #414141 !important;
}

.hover\:border-grey-darker:hover {
  border-color: #828282 !important;
}

.hover\:border-grey-dark:hover {
  border-color: #c3c3c3 !important;
}

.hover\:border-grey:hover {
  border-color: #d9d9d9 !important;
}

.hover\:border-grey-light:hover {
  border-color: #e4e4e4 !important;
}

.hover\:border-grey-lighter:hover {
  border-color: #f1f1f1 !important;
}

.hover\:border-grey-lightest:hover {
  border-color: #fbfbfb !important;
}

.hover\:border-grey-mdc:hover {
  border-color: #edf0f5 !important;
}

.hover\:border-grey-mdc-70:hover {
  border-color: #707070 !important;
}

.hover\:border-blue-darkest:hover {
  border-color: #0b1626 !important;
}

.hover\:border-blue-darker:hover {
  border-color: #152b4b !important;
}

.hover\:border-blue-dark:hover {
  border-color: #204171 !important;
}

.hover\:border-blue:hover {
  border-color: #23487d !important;
}

.hover\:border-blue-light:hover {
  border-color: #657fa4 !important;
}

.hover\:border-blue-lighter:hover {
  border-color: #a7b6cb !important;
}

.hover\:border-blue-lightest:hover {
  border-color: #e9edf2 !important;
}

.hover\:border-orange-darkest:hover {
  border-color: #4d290f !important;
}

.hover\:border-orange-darker:hover {
  border-color: #99521f !important;
}

.hover\:border-orange-dark:hover {
  border-color: #e67a2e !important;
}

.hover\:border-orange:hover {
  border-color: #f83 !important;
}

.hover\:border-orange-light:hover {
  border-color: #ffac70 !important;
}

.hover\:border-orange-lighter:hover {
  border-color: #ffcfad !important;
}

.hover\:border-orange-lightest:hover {
  border-color: #fff3eb !important;
}

.hover\:border-gold-darkest:hover {
  border-color: #301d18 !important;
}

.hover\:border-gold-darker:hover {
  border-color: #624031 !important;
}

.hover\:border-gold-dark:hover {
  border-color: #a77c4b !important;
}

.hover\:border-gold:hover {
  border-color: #b8915c !important;
}

.hover\:border-gold-light:hover {
  border-color: #c7aa7d !important;
}

.hover\:border-gold-lighter:hover {
  border-color: #dccbac !important;
}

.hover\:border-gold-lightest:hover {
  border-color: #ede5d4 !important;
}

.focus\:border-transparent:focus {
  border-color: transparent !important;
}

.focus\:border-black:focus {
  border-color: #22292f !important;
}

.focus\:border-black-mdc:focus {
  border-color: #000 !important;
}

.focus\:border-white:focus {
  border-color: #fff !important;
}

.focus\:border-grey-darkest:focus {
  border-color: #414141 !important;
}

.focus\:border-grey-darker:focus {
  border-color: #828282 !important;
}

.focus\:border-grey-dark:focus {
  border-color: #c3c3c3 !important;
}

.focus\:border-grey:focus {
  border-color: #d9d9d9 !important;
}

.focus\:border-grey-light:focus {
  border-color: #e4e4e4 !important;
}

.focus\:border-grey-lighter:focus {
  border-color: #f1f1f1 !important;
}

.focus\:border-grey-lightest:focus {
  border-color: #fbfbfb !important;
}

.focus\:border-grey-mdc:focus {
  border-color: #edf0f5 !important;
}

.focus\:border-grey-mdc-70:focus {
  border-color: #707070 !important;
}

.focus\:border-blue-darkest:focus {
  border-color: #0b1626 !important;
}

.focus\:border-blue-darker:focus {
  border-color: #152b4b !important;
}

.focus\:border-blue-dark:focus {
  border-color: #204171 !important;
}

.focus\:border-blue:focus {
  border-color: #23487d !important;
}

.focus\:border-blue-light:focus {
  border-color: #657fa4 !important;
}

.focus\:border-blue-lighter:focus {
  border-color: #a7b6cb !important;
}

.focus\:border-blue-lightest:focus {
  border-color: #e9edf2 !important;
}

.focus\:border-orange-darkest:focus {
  border-color: #4d290f !important;
}

.focus\:border-orange-darker:focus {
  border-color: #99521f !important;
}

.focus\:border-orange-dark:focus {
  border-color: #e67a2e !important;
}

.focus\:border-orange:focus {
  border-color: #f83 !important;
}

.focus\:border-orange-light:focus {
  border-color: #ffac70 !important;
}

.focus\:border-orange-lighter:focus {
  border-color: #ffcfad !important;
}

.focus\:border-orange-lightest:focus {
  border-color: #fff3eb !important;
}

.focus\:border-gold-darkest:focus {
  border-color: #301d18 !important;
}

.focus\:border-gold-darker:focus {
  border-color: #624031 !important;
}

.focus\:border-gold-dark:focus {
  border-color: #a77c4b !important;
}

.focus\:border-gold:focus {
  border-color: #b8915c !important;
}

.focus\:border-gold-light:focus {
  border-color: #c7aa7d !important;
}

.focus\:border-gold-lighter:focus {
  border-color: #dccbac !important;
}

.focus\:border-gold-lightest:focus {
  border-color: #ede5d4 !important;
}

.rounded-none {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: .125rem !important;
}

.rounded {
  border-radius: .25rem !important;
}

.rounded-lg {
  border-radius: .5rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.rounded-t-none {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-r-none {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-b-none {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-l-none {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-t-sm {
  border-top-left-radius: .125rem !important;
  border-top-right-radius: .125rem !important;
}

.rounded-r-sm {
  border-top-right-radius: .125rem !important;
  border-bottom-right-radius: .125rem !important;
}

.rounded-b-sm {
  border-bottom-right-radius: .125rem !important;
  border-bottom-left-radius: .125rem !important;
}

.rounded-l-sm {
  border-top-left-radius: .125rem !important;
  border-bottom-left-radius: .125rem !important;
}

.rounded-t {
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
}

.rounded-r {
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: .25rem !important;
}

.rounded-b {
  border-bottom-right-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.rounded-l {
  border-top-left-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.rounded-t-lg {
  border-top-left-radius: .5rem !important;
  border-top-right-radius: .5rem !important;
}

.rounded-r-lg {
  border-top-right-radius: .5rem !important;
  border-bottom-right-radius: .5rem !important;
}

.rounded-b-lg {
  border-bottom-right-radius: .5rem !important;
  border-bottom-left-radius: .5rem !important;
}

.rounded-l-lg {
  border-top-left-radius: .5rem !important;
  border-bottom-left-radius: .5rem !important;
}

.rounded-t-full {
  border-top-left-radius: 9999px !important;
  border-top-right-radius: 9999px !important;
}

.rounded-r-full {
  border-top-right-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}

.rounded-b-full {
  border-bottom-right-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}

.rounded-l-full {
  border-top-left-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}

.rounded-tl-none {
  border-top-left-radius: 0 !important;
}

.rounded-tr-none {
  border-top-right-radius: 0 !important;
}

.rounded-br-none {
  border-bottom-right-radius: 0 !important;
}

.rounded-bl-none {
  border-bottom-left-radius: 0 !important;
}

.rounded-tl-sm {
  border-top-left-radius: .125rem !important;
}

.rounded-tr-sm {
  border-top-right-radius: .125rem !important;
}

.rounded-br-sm {
  border-bottom-right-radius: .125rem !important;
}

.rounded-bl-sm {
  border-bottom-left-radius: .125rem !important;
}

.rounded-tl {
  border-top-left-radius: .25rem !important;
}

.rounded-tr {
  border-top-right-radius: .25rem !important;
}

.rounded-br {
  border-bottom-right-radius: .25rem !important;
}

.rounded-bl {
  border-bottom-left-radius: .25rem !important;
}

.rounded-tl-lg {
  border-top-left-radius: .5rem !important;
}

.rounded-tr-lg {
  border-top-right-radius: .5rem !important;
}

.rounded-br-lg {
  border-bottom-right-radius: .5rem !important;
}

.rounded-bl-lg {
  border-bottom-left-radius: .5rem !important;
}

.rounded-tl-full {
  border-top-left-radius: 9999px !important;
}

.rounded-tr-full {
  border-top-right-radius: 9999px !important;
}

.rounded-br-full {
  border-bottom-right-radius: 9999px !important;
}

.rounded-bl-full {
  border-bottom-left-radius: 9999px !important;
}

.border-solid {
  border-style: solid !important;
}

.border-dashed {
  border-style: dashed !important;
}

.border-dotted {
  border-style: dotted !important;
}

.border-none {
  border-style: none !important;
}

.border-0 {
  border-width: 0 !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-8 {
  border-width: 8px !important;
}

.border {
  border-width: 1px !important;
}

.border-t-0 {
  border-top-width: 0 !important;
}

.border-r-0 {
  border-right-width: 0 !important;
}

.border-b-0 {
  border-bottom-width: 0 !important;
}

.border-l-0 {
  border-left-width: 0 !important;
}

.border-t-2 {
  border-top-width: 2px !important;
}

.border-r-2 {
  border-right-width: 2px !important;
}

.border-b-2 {
  border-bottom-width: 2px !important;
}

.border-l-2 {
  border-left-width: 2px !important;
}

.border-t-4 {
  border-top-width: 4px !important;
}

.border-r-4 {
  border-right-width: 4px !important;
}

.border-b-4 {
  border-bottom-width: 4px !important;
}

.border-l-4 {
  border-left-width: 4px !important;
}

.border-t-8 {
  border-top-width: 8px !important;
}

.border-r-8 {
  border-right-width: 8px !important;
}

.border-b-8 {
  border-bottom-width: 8px !important;
}

.border-l-8 {
  border-left-width: 8px !important;
}

.border-t {
  border-top-width: 1px !important;
}

.border-r {
  border-right-width: 1px !important;
}

.border-b {
  border-bottom-width: 1px !important;
}

.border-l {
  border-left-width: 1px !important;
}

.block {
  display: block !important;
}

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

.inline {
  display: inline !important;
}

.table {
  display: table !important;
}

.table-row {
  display: table-row !important;
}

.table-cell {
  display: table-cell !important;
}

.hidden {
  display: none !important;
}

.flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

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

.flex-col {
  flex-direction: column !important;
}

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

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

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

.flex-no-wrap {
  flex-wrap: nowrap !important;
}

.items-start {
  align-items: flex-start !important;
}

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

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

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

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

.self-auto {
  align-self: auto !important;
}

.self-start {
  align-self: flex-start !important;
}

.self-end {
  align-self: flex-end !important;
}

.self-center {
  align-self: center !important;
}

.self-stretch {
  align-self: stretch !important;
}

.justify-start {
  justify-content: flex-start !important;
}

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

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

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

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

.content-center {
  align-content: center !important;
}

.content-start {
  align-content: flex-start !important;
}

.content-end {
  align-content: flex-end !important;
}

.content-between {
  align-content: space-between !important;
}

.content-around {
  align-content: space-around !important;
}

.flex-1 {
  flex: 1 1 0% !important;
}

.flex-auto {
  flex: 1 1 auto !important;
}

.flex-initial {
  flex: 0 1 auto !important;
}

.flex-none {
  flex: none !important;
}

.flex-grow {
  flex-grow: 1 !important;
}

.flex-shrink {
  flex-shrink: 1 !important;
}

.flex-no-grow {
  flex-grow: 0 !important;
}

.flex-no-shrink {
  flex-shrink: 0 !important;
}

.font-hairline {
  font-weight: 100 !important;
}

.font-thin {
  font-weight: 200 !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

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

.font-bold {
  font-weight: 700 !important;
}

.font-extrabold {
  font-weight: 800 !important;
}

.font-black {
  font-weight: 900 !important;
}

.hover\:font-hairline:hover {
  font-weight: 100 !important;
}

.hover\:font-thin:hover {
  font-weight: 200 !important;
}

.hover\:font-light:hover {
  font-weight: 300 !important;
}

.hover\:font-normal:hover {
  font-weight: 400 !important;
}

.hover\:font-medium:hover {
  font-weight: 500 !important;
}

.hover\:font-semibold:hover {
  font-weight: 600 !important;
}

.hover\:font-bold:hover {
  font-weight: 700 !important;
}

.hover\:font-extrabold:hover {
  font-weight: 800 !important;
}

.hover\:font-black:hover {
  font-weight: 900 !important;
}

.focus\:font-hairline:focus {
  font-weight: 100 !important;
}

.focus\:font-thin:focus {
  font-weight: 200 !important;
}

.focus\:font-light:focus {
  font-weight: 300 !important;
}

.focus\:font-normal:focus {
  font-weight: 400 !important;
}

.focus\:font-medium:focus {
  font-weight: 500 !important;
}

.focus\:font-semibold:focus {
  font-weight: 600 !important;
}

.focus\:font-bold:focus {
  font-weight: 700 !important;
}

.focus\:font-extrabold:focus {
  font-weight: 800 !important;
}

.focus\:font-black:focus {
  font-weight: 900 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: .25rem !important;
}

.m-2 {
  margin: .5rem !important;
}

.m-3 {
  margin: .75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.m-20 {
  margin: 5rem !important;
}

.m-24 {
  margin: 6rem !important;
}

.m-32 {
  margin: 8rem !important;
}

.m-auto {
  margin: auto !important;
}

.m-px {
  margin: 1px !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-1 {
  margin-top: .25rem !important;
  margin-bottom: .25rem !important;
}

.mx-1 {
  margin-left: .25rem !important;
  margin-right: .25rem !important;
}

.my-2 {
  margin-top: .5rem !important;
  margin-bottom: .5rem !important;
}

.mx-2 {
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}

.my-3 {
  margin-top: .75rem !important;
  margin-bottom: .75rem !important;
}

.mx-3 {
  margin-left: .75rem !important;
  margin-right: .75rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.mx-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-32 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.mx-32 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-px {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.mx-px {
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mt-1 {
  margin-top: .25rem !important;
}

.mr-1 {
  margin-right: .25rem !important;
}

.mb-1 {
  margin-bottom: .25rem !important;
}

.ml-1 {
  margin-left: .25rem !important;
}

.mt-2 {
  margin-top: .5rem !important;
}

.mr-2 {
  margin-right: .5rem !important;
}

.mb-2 {
  margin-bottom: .5rem !important;
}

.ml-2 {
  margin-left: .5rem !important;
}

.mt-3 {
  margin-top: .75rem !important;
}

.mr-3 {
  margin-right: .75rem !important;
}

.mb-3 {
  margin-bottom: .75rem !important;
}

.ml-3 {
  margin-left: .75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.mt-32 {
  margin-top: 8rem !important;
}

.mr-32 {
  margin-right: 8rem !important;
}

.mb-32 {
  margin-bottom: 8rem !important;
}

.ml-32 {
  margin-left: 8rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mt-px {
  margin-top: 1px !important;
}

.mr-px {
  margin-right: 1px !important;
}

.mb-px {
  margin-bottom: 1px !important;
}

.ml-px {
  margin-left: 1px !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: .25rem !important;
}

.p-2 {
  padding: .5rem !important;
}

.p-3 {
  padding: .75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.p-20 {
  padding: 5rem !important;
}

.p-24 {
  padding: 6rem !important;
}

.p-32 {
  padding: 8rem !important;
}

.p-px {
  padding: 1px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-1 {
  padding-top: .25rem !important;
  padding-bottom: .25rem !important;
}

.px-1 {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}

.py-2 {
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}

.px-2 {
  padding-left: .5rem !important;
  padding-right: .5rem !important;
}

.py-3 {
  padding-top: .75rem !important;
  padding-bottom: .75rem !important;
}

.px-3 {
  padding-left: .75rem !important;
  padding-right: .75rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.px-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-32 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.px-32 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-px {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

.px-px {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pt-1 {
  padding-top: .25rem !important;
}

.pr-1 {
  padding-right: .25rem !important;
}

.pb-1 {
  padding-bottom: .25rem !important;
}

.pl-1 {
  padding-left: .25rem !important;
}

.pt-2 {
  padding-top: .5rem !important;
}

.pr-2 {
  padding-right: .5rem !important;
}

.pb-2 {
  padding-bottom: .5rem !important;
}

.pl-2 {
  padding-left: .5rem !important;
}

.pt-3 {
  padding-top: .75rem !important;
}

.pr-3 {
  padding-right: .75rem !important;
}

.pb-3 {
  padding-bottom: .75rem !important;
}

.pl-3 {
  padding-left: .75rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.pt-24 {
  padding-top: 6rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.pt-32 {
  padding-top: 8rem !important;
}

.pr-32 {
  padding-right: 8rem !important;
}

.pb-32 {
  padding-bottom: 8rem !important;
}

.pl-32 {
  padding-left: 8rem !important;
}

.pt-px {
  padding-top: 1px !important;
}

.pr-px {
  padding-right: 1px !important;
}

.pb-px {
  padding-bottom: 1px !important;
}

.pl-px {
  padding-left: 1px !important;
}

.static {
  position: static !important;
}

.fixed {
  position: fixed !important;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative !important;
}

.sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.pin-none {
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}

.pin {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}

.pin-y {
  top: 0 !important;
  bottom: 0 !important;
}

.pin-x {
  right: 0 !important;
  left: 0 !important;
}

.pin-t {
  top: 0 !important;
}

.pin-r {
  right: 0 !important;
}

.pin-b {
  bottom: 0 !important;
}

.pin-l {
  left: 0 !important;
}

.fill-current {
  fill: currentColor !important;
}

.stroke-current {
  stroke: currentColor !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-transparent {
  color: transparent !important;
}

.text-black {
  color: #22292f !important;
}

.text-black-mdc {
  color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.text-grey-darkest {
  color: #414141 !important;
}

.text-grey-darker {
  color: #828282 !important;
}

.text-grey-dark {
  color: #c3c3c3 !important;
}

.text-grey {
  color: #d9d9d9 !important;
}

.text-grey-light {
  color: #e4e4e4 !important;
}

.text-grey-lighter {
  color: #f1f1f1 !important;
}

.text-grey-lightest {
  color: #fbfbfb !important;
}

.text-grey-mdc {
  color: #edf0f5 !important;
}

.text-grey-mdc-70 {
  color: #707070 !important;
}

.text-blue-darkest {
  color: #0b1626 !important;
}

.text-blue-darker {
  color: #152b4b !important;
}

.text-blue-dark {
  color: #204171 !important;
}

.text-blue {
  color: #23487d !important;
}

.text-blue-light {
  color: #657fa4 !important;
}

.text-blue-lighter {
  color: #a7b6cb !important;
}

.text-blue-lightest {
  color: #e9edf2 !important;
}

.text-orange-darkest {
  color: #4d290f !important;
}

.text-orange-darker {
  color: #99521f !important;
}

.text-orange-dark {
  color: #e67a2e !important;
}

.text-orange {
  color: #f83 !important;
}

.text-orange-light {
  color: #ffac70 !important;
}

.text-orange-lighter {
  color: #ffcfad !important;
}

.text-orange-lightest {
  color: #fff3eb !important;
}

.text-gold-darkest {
  color: #301d18 !important;
}

.text-gold-darker {
  color: #624031 !important;
}

.text-gold-dark {
  color: #a77c4b !important;
}

.text-gold {
  color: #b8915c !important;
}

.text-gold-light {
  color: #c7aa7d !important;
}

.text-gold-lighter {
  color: #dccbac !important;
}

.text-gold-lightest {
  color: #ede5d4 !important;
}

.hover\:text-transparent:hover {
  color: transparent !important;
}

.hover\:text-black:hover {
  color: #22292f !important;
}

.hover\:text-black-mdc:hover {
  color: #000 !important;
}

.hover\:text-white:hover {
  color: #fff !important;
}

.hover\:text-grey-darkest:hover {
  color: #414141 !important;
}

.hover\:text-grey-darker:hover {
  color: #828282 !important;
}

.hover\:text-grey-dark:hover {
  color: #c3c3c3 !important;
}

.hover\:text-grey:hover {
  color: #d9d9d9 !important;
}

.hover\:text-grey-light:hover {
  color: #e4e4e4 !important;
}

.hover\:text-grey-lighter:hover {
  color: #f1f1f1 !important;
}

.hover\:text-grey-lightest:hover {
  color: #fbfbfb !important;
}

.hover\:text-grey-mdc:hover {
  color: #edf0f5 !important;
}

.hover\:text-grey-mdc-70:hover {
  color: #707070 !important;
}

.hover\:text-blue-darkest:hover {
  color: #0b1626 !important;
}

.hover\:text-blue-darker:hover {
  color: #152b4b !important;
}

.hover\:text-blue-dark:hover {
  color: #204171 !important;
}

.hover\:text-blue:hover {
  color: #23487d !important;
}

.hover\:text-blue-light:hover {
  color: #657fa4 !important;
}

.hover\:text-blue-lighter:hover {
  color: #a7b6cb !important;
}

.hover\:text-blue-lightest:hover {
  color: #e9edf2 !important;
}

.hover\:text-orange-darkest:hover {
  color: #4d290f !important;
}

.hover\:text-orange-darker:hover {
  color: #99521f !important;
}

.hover\:text-orange-dark:hover {
  color: #e67a2e !important;
}

.hover\:text-orange:hover {
  color: #f83 !important;
}

.hover\:text-orange-light:hover {
  color: #ffac70 !important;
}

.hover\:text-orange-lighter:hover {
  color: #ffcfad !important;
}

.hover\:text-orange-lightest:hover {
  color: #fff3eb !important;
}

.hover\:text-gold-darkest:hover {
  color: #301d18 !important;
}

.hover\:text-gold-darker:hover {
  color: #624031 !important;
}

.hover\:text-gold-dark:hover {
  color: #a77c4b !important;
}

.hover\:text-gold:hover {
  color: #b8915c !important;
}

.hover\:text-gold-light:hover {
  color: #c7aa7d !important;
}

.hover\:text-gold-lighter:hover {
  color: #dccbac !important;
}

.hover\:text-gold-lightest:hover {
  color: #ede5d4 !important;
}

.focus\:text-transparent:focus {
  color: transparent !important;
}

.focus\:text-black:focus {
  color: #22292f !important;
}

.focus\:text-black-mdc:focus {
  color: #000 !important;
}

.focus\:text-white:focus {
  color: #fff !important;
}

.focus\:text-grey-darkest:focus {
  color: #414141 !important;
}

.focus\:text-grey-darker:focus {
  color: #828282 !important;
}

.focus\:text-grey-dark:focus {
  color: #c3c3c3 !important;
}

.focus\:text-grey:focus {
  color: #d9d9d9 !important;
}

.focus\:text-grey-light:focus {
  color: #e4e4e4 !important;
}

.focus\:text-grey-lighter:focus {
  color: #f1f1f1 !important;
}

.focus\:text-grey-lightest:focus {
  color: #fbfbfb !important;
}

.focus\:text-grey-mdc:focus {
  color: #edf0f5 !important;
}

.focus\:text-grey-mdc-70:focus {
  color: #707070 !important;
}

.focus\:text-blue-darkest:focus {
  color: #0b1626 !important;
}

.focus\:text-blue-darker:focus {
  color: #152b4b !important;
}

.focus\:text-blue-dark:focus {
  color: #204171 !important;
}

.focus\:text-blue:focus {
  color: #23487d !important;
}

.focus\:text-blue-light:focus {
  color: #657fa4 !important;
}

.focus\:text-blue-lighter:focus {
  color: #a7b6cb !important;
}

.focus\:text-blue-lightest:focus {
  color: #e9edf2 !important;
}

.focus\:text-orange-darkest:focus {
  color: #4d290f !important;
}

.focus\:text-orange-darker:focus {
  color: #99521f !important;
}

.focus\:text-orange-dark:focus {
  color: #e67a2e !important;
}

.focus\:text-orange:focus {
  color: #f83 !important;
}

.focus\:text-orange-light:focus {
  color: #ffac70 !important;
}

.focus\:text-orange-lighter:focus {
  color: #ffcfad !important;
}

.focus\:text-orange-lightest:focus {
  color: #fff3eb !important;
}

.focus\:text-gold-darkest:focus {
  color: #301d18 !important;
}

.focus\:text-gold-darker:focus {
  color: #624031 !important;
}

.focus\:text-gold-dark:focus {
  color: #a77c4b !important;
}

.focus\:text-gold:focus {
  color: #b8915c !important;
}

.focus\:text-gold-light:focus {
  color: #c7aa7d !important;
}

.focus\:text-gold-lighter:focus {
  color: #dccbac !important;
}

.focus\:text-gold-lightest:focus {
  color: #ede5d4 !important;
}

.text-xs {
  font-size: .75rem !important;
}

.text-sm {
  font-size: .875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
}

.text-5xl {
  font-size: 3rem !important;
}

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

.roman {
  font-style: normal !important;
}

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

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

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

.normal-case {
  text-transform: none !important;
}

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

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

.no-underline {
  text-decoration: none !important;
}

.antialiased {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}

.hover\:italic:hover {
  font-style: italic !important;
}

.hover\:roman:hover {
  font-style: normal !important;
}

.hover\:uppercase:hover {
  text-transform: uppercase !important;
}

.hover\:lowercase:hover {
  text-transform: lowercase !important;
}

.hover\:capitalize:hover {
  text-transform: capitalize !important;
}

.hover\:normal-case:hover {
  text-transform: none !important;
}

.hover\:underline:hover {
  text-decoration: underline !important;
}

.hover\:line-through:hover {
  text-decoration: line-through !important;
}

.hover\:no-underline:hover {
  text-decoration: none !important;
}

.hover\:antialiased:hover {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.hover\:subpixel-antialiased:hover {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}

.focus\:italic:focus {
  font-style: italic !important;
}

.focus\:roman:focus {
  font-style: normal !important;
}

.focus\:uppercase:focus {
  text-transform: uppercase !important;
}

.focus\:lowercase:focus {
  text-transform: lowercase !important;
}

.focus\:capitalize:focus {
  text-transform: capitalize !important;
}

.focus\:normal-case:focus {
  text-transform: none !important;
}

.focus\:underline:focus {
  text-decoration: underline !important;
}

.focus\:line-through:focus {
  text-decoration: line-through !important;
}

.focus\:no-underline:focus {
  text-decoration: none !important;
}

.focus\:antialiased:focus {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.focus\:subpixel-antialiased:focus {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}

.w-1 {
  width: .25rem !important;
}

.w-2 {
  width: .5rem !important;
}

.w-3 {
  width: .75rem !important;
}

.w-4 {
  width: 1rem !important;
}

.w-5 {
  width: 1.25rem !important;
}

.w-6 {
  width: 1.5rem !important;
}

.w-8 {
  width: 2rem !important;
}

.w-10 {
  width: 2.5rem !important;
}

.w-12 {
  width: 3rem !important;
}

.w-16 {
  width: 4rem !important;
}

.w-24 {
  width: 6rem !important;
}

.w-32 {
  width: 8rem !important;
}

.w-48 {
  width: 12rem !important;
}

.w-64 {
  width: 16rem !important;
}

.w-auto {
  width: auto !important;
}

.w-px {
  width: 1px !important;
}

.w-1\/2 {
  width: 50% !important;
}

.w-1\/3 {
  width: 33.33333% !important;
}

.w-2\/3 {
  width: 66.66667% !important;
}

.w-1\/4 {
  width: 25% !important;
}

.w-3\/4 {
  width: 75% !important;
}

.w-1\/5 {
  width: 20% !important;
}

.w-2\/5 {
  width: 40% !important;
}

.w-3\/5 {
  width: 60% !important;
}

.w-4\/5 {
  width: 80% !important;
}

.w-1\/6 {
  width: 16.66667% !important;
}

.w-5\/6 {
  width: 83.33333% !important;
}

.w-full {
  width: 100% !important;
}

.w-screen {
  width: 100vw !important;
}

/**
 * Here you would add any custom utilities you need that don't come out of the
 * box with Tailwind.
 *
 * Example :
 *
 * .bg-pattern-graph-paper { ... }
 * .skew-45 { ... }
 *
 * Or if using a preprocessor or `postcss-import`:
 *
 * @import "utilities/background-patterns";
 * @import "utilities/skew-transforms";
 */

@font-face {
  font-family: "Open Sans", sans-serif;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?k9oiws") format("truetype"), url("../fonts/icomoon.woff?k9oiws") format("woff"), url("../fonts/icomoon.svg?k9oiws#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-cross:before {
  content: "\EA0F";
}

.icon-checkmark:before {
  content: "\EA10";
}

.icon-arrow-right:before {
  content: "\E900";
}

.button {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  background-color: #f83;
  color: #fff;
  display: inline-block;
  min-width: 162px;
  text-decoration: none;
  border: 0;
  transition: all .3s;
}

.button:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.button--small {
  min-width: 100%;
  word-break: break-word;
}

@media only screen and (min-width: 576px) {
  .button--small {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}

.button-link {
  font-size: 14px;
  color: #333;
  text-decoration: none !important;
  position: relative;
  line-height: 20px;
  display: inline-block;
}

.button-link.block {
  display: block;
}

.button-link__text {
  padding: 0 16px;
  display: inline-block;
}

.button-link__text.no-icon {
  padding: 0;
}

.button-link__icon {
  font-size: 12px;
  position: absolute;
  top: 4px;
}

.button-link__icon--orange {
  color: #f83;
}

.button-link__icon--blue {
  color: #23487d;
}

.button--inverted {
  border: 1px solid #f83;
  background-color: transparent;
  color: #333;
}

.button--inverted:hover {
  color: #333;
}

.highlight__title.inline {
  font-size: 14px;
  display: inline;
  margin-right: 4px;
  vertical-align: top;
  line-height: 1.4;
}

.highlight__content.inline {
  display: inline;
  vertical-align: top;
  font-size: 14px;
}

.highlight {
  background: #fafafa;
  border: 0 solid #23487d;
  border-left-width: 5px;
  border-radius: 8px;
  padding: 20px;
  display: -ms-flexbox;
  display: flex;
}

.highlight__image {
  margin-right: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
}

.highlight__title {
  font-size: 15px;
  color: #23487d;
  font-weight: bold;
  margin: 0 0 4px;
}

.highlight__content {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.highlight-color-light-blue {
  border-color: #42beee;
}

.highlight-color-light-blue .highlight__title {
  color: #42beee;
}

.highlight-color-orange {
  border-color: #f83;
}

.highlight-color-orange .highlight__title {
  color: #f83;
}

.highlight-color-black {
  border-color: #444;
}

.highlight-color-black .highlight__title {
  color: #444;
}

.accordion__item {
  display: block;
  border-top: 1px solid #cfcfcf;
}

.accordion__item:last-child {
  border-bottom: 1px solid #cfcfcf;
}

.accordion__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #00204e;
  position: relative;
  cursor: pointer;
  padding: 14px 24px 14px 0;
}

.accordion__title .accordion__arrow {
  font-size: 11px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -4px;
  color: #23487d;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  transition: .2s transform ease-in-out;
}

.accordion__title.collapsed .accordion__arrow {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion__content {
  font-size: 13px;
}

.accordion__content .accordion__wrapper {
  padding-bottom: 22px;
  padding-right: 24px;
}

.hds-table {
  overflow-x: auto;
  position: relative;
  display: block;
  /*
  Show a scrollbar on mobile devices, so the user knows that scrolling is possible
   */
}

.hds-table table {
  width: 100%;
  max-width: 100%;
}

.hds-table-header {
  background-color: #23487d;
  color: white;
  font-family: "Open Sans", sans-serif;
}

.hds-table-header .hds-table__item {
  vertical-align: top;
}

.hds-table-body {
  border-top: 0;
  font-size: 14px;
}

.hds-table-body__row:nth-child(even) > td {
  background-color: #efefef !important;
}

.hds-table-body .hds-table__item {
  background-color: #fff !important;
  background-clip: padding-box;
}

.hds-table__item {
  position: relative;
  padding: 10px !important;
  border-top: none !important;
  border-left: 1px solid #efefef !important;
  border-right: 1px solid #efefef !important;
  border-bottom: 1px solid #efefef !important;
  min-width: 130px;
}

@media only screen and (max-width: 768px) {
  .hds-table::-webkit-scrollbar {
    -webkit-appearance: none;
  }

  .hds-table::-webkit-scrollbar:vertical {
    width: 5px;
  }

  .hds-table::-webkit-scrollbar:horizontal {
    height: 5px;
  }

  .hds-table::-webkit-scrollbar-thumb {
    background-color: #cfcfcf;
    border-radius: 5px;
  }
}

.hds-table .align-middle {
  vertical-align: middle !important;
}

.hds-table .align-bottom {
  vertical-align: bottom !important;
}

.hds-table--light .hds-table-header {
  font-size: 14px;
  background-color: #efefef;
  color: #00204e;
}

.hds-table--light .hds-table-body {
  font-size: 14px;
}

.hds-table--light .hds-table-body .hds-table__item {
  background-color: #fff !important;
}

[class^=icon-].bordered,
[class*=" icon-"].bordered {
  border: 2px solid;
  border-radius: 500px;
  padding: .3rem;
}

[class^=icon-].small,
[class*=" icon-"].small {
  font-size: 1rem !important;
}

.featured {
  padding: 0;
}

.featured .row {
  margin-right: -10px;
  margin-left: -10px;
}

.featured__title {
  font-size: 18px;
  color: #23487d;
  margin: 0;
  padding: 16px 0;
  line-height: 1.4;
  font-weight: normal;
}

.featured__image {
  display: block;
  max-width: 100%;
  height: auto;
  padding-bottom: 8px;
}

.featured__bottom-divider {
  margin-bottom: 16px;
  height: 0;
  border-top: 2px solid #cfcfcf;
}

.featured .button-link {
  font-size: 14px;
  line-height: 1.4;
  padding-bottom: 16px;
}

.featured .button-link:hover {
  color: #f83;
}

.featured__block-link {
  display: block;
  text-decoration: none;
  line-height: 1.4;
  height: calc(100% - 16px);
}

@media only screen and (min-width: 576px) {
  .featured {
    border-top: 0;
    border-bottom: 0;
  }

  .featured .cep-divider {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .featured__title {
    font-size: 20px;
  }
}

.featured.bordered .featured__title {
  padding: 0;
  line-height: 1.4;
  font-size: 18px;
}

@media only screen and (min-width: 768px) {
  .featured.bordered .featured__title {
    font-size: 20px;
  }
}

.featured.bordered .featured__holder {
  border: 1px solid #cfcfcf;
  padding: 8px;
  margin-top: 16px;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .featured.bordered .featured__holder {
    padding: 16px;
  }
}

.featured.bordered .featured__holder .button-link {
  margin-top: 8px;
  color: #23487d;
  display: block;
  line-height: 1.4;
  font-size: 14px;
}

.featured.bordered .featured__holder .button-link__text {
  display: block;
  word-break: break-word;
  line-height: 1.4;
  font-size: 14px;
}

.featured.bordered .featured__image {
  margin: 0;
}

.hero-image {
  position: relative;
  width: calc(100% + 30px);
  margin-left: -15px;
}

.hero-image__content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.hero-image__content h1 {
  padding-bottom: 0 !important;
}

.hero-image__c2a > .button-link {
  color: white;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, .7);
}

.hero-image__c2a > .button {
  margin-top: 8px;
}

.hero-image__title {
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, .4);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  text-decoration: none;
}

.hero-image__title:hover {
  text-decoration: none;
}

.hero-image a {
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .hero-image {
    margin: 0;
    width: 100%;
  }

  .hero-image__content {
    bottom: 4rem;
    left: 4rem;
  }

  .hero-image__title {
    font-size: 35px;
  }

  .hero-image__c2a > .button-link {
    font-size: 18px;
  }
}

.promo {
  padding: 0;
}

.promo .row {
  margin-left: -10px;
  margin-right: -10px;
}

.promo a {
  text-decoration: none;
}

.promo__title {
  font-size: 16px;
  color: #23487d;
  margin: 0;
  line-height: 1.4;
  font-weight: normal;
}

.promo__title--above {
  margin-top: 16px;
}

.promo__title--below {
  margin-top: 16px;
}

.promo__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px 0 0 0;
  min-height: 1px;
  /* IE Fix */
}

.promo [class*=col-] {
  border-bottom: 2px solid #cfcfcf;
  padding-bottom: 16px;
}

.promo [class*=col-]:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.promo__bottom-divider {
  margin: 16px 0;
  height: 0;
  border-top: 2px solid #cfcfcf;
}

.promo .button-link {
  font-size: 14px;
  line-height: 1.4;
}

.promo__text {
  display: block;
  margin: 16px 0 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.promo__c2a {
  margin: 16px 0 0 0;
}

.promo__block-link {
  display: block;
  height: 100%;
  line-height: 1.4;
}

.promo__holder {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.promo__c2a .button-link__text:hover {
  color: #f83;
}

.promo .cep-divider {
  margin-top: 16px;
}

@media only screen and (min-width: 576px) {
  .promo {
    border-top: 0;
    border-bottom: 0;
  }

  .promo [class*=col-] {
    border-bottom: none;
  }

  .promo .cep-divider {
    display: none;
  }

  .promo [class*=col-]:last-of-type {
    padding-bottom: 16px;
  }
}

@media only screen and (min-width: 768px) {
  .promo__title {
    font-size: 17px;
  }
}

.promo-full {
  padding: 16px 0;
  position: relative;
}

.promo-full__block-link {
  display: block;
  text-decoration: none;
  line-height: 1.4;
}

.promo-full__block-link:hover,
.promo-full__block-link:active,
.promo-full__block-link:focus {
  text-decoration: none;
}

.promo-full__content {
  width: 100%;
}

@media (min-width: 768px) {
  .promo-full__content {
    width: 33.33333%;
    padding-left: 4rem;
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .promo-full .right .promo-full__content {
    padding-left: 0;
    padding-right: 4rem;
  }
}

.promo-full__image {
  display: block;
  width: 100%;
}

.promo-full__title {
  margin: 16px 0;
  color: #23487d;
  font-size: 16px;
  line-height: 1.4;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .promo-full__title {
    font-size: 17px;
  }
}

.promo-full__text {
  margin-bottom: 16px;
  color: black;
  line-height: 1.4;
  font-size: 14px;
}

.promo-full .cep-divider {
  margin-top: 16px;
}

.promo-full__c2a {
  border-top: 2px solid #cfcfcf;
  padding-top: 16px;
  line-height: 1.4;
}

@media only screen and (min-width: 768px) {
  .promo-full__c2a {
    border-top: none;
  }
}

@media only screen and (min-width: 992px) {
  .promo-full__c2a {
    border-top: none;
    padding-top: 0;
  }
}

.promo-full__c2a .button-link:hover {
  color: #f83;
}

@media only screen and (min-width: 768px) {
  .promo-full {
    border-top: 0;
    border-bottom: 0;
  }

  .promo-full__title {
    margin: 0 0 16px 0;
  }

  .promo-full__row {
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-flow: row-reverse;
  }

  .promo-full__row.left {
    flex-flow: row;
  }
}

.cep-divider {
  margin-left: -16px;
  display: block;
  background-color: #cfcfcf;
  height: 4px;
  width: 100vw;
}

@media only screen and (min-width: 576px) {
  .cep-divider {
    margin-left: -30px;
  }
}

@media only screen and (min-width: 768px) {
  .cep-divider {
    display: none;
  }
}

.cta-decision {
  height: 56px;
  width: 100%;
  max-height: 56px;
  background-color: #f1f1f1;
  overflow: hidden;
  margin: 16px 0;
  display: block;
  text-decoration: none;
  color: #23487d;
}

.cta-decision__image {
  height: 74px;
  width: 74px;
  max-height: 74px;
  max-width: 74px;
  border-radius: 50%;
  background-color: white;
  display: inline-block;
  float: left;
  margin: -9px 8px 0 8px;
  background-position: center center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 280px) {
  .cta-decision__image {
    height: 40px;
    width: 40px;
    margin: 8px 8px 0 8px;
  }
}

.cta-decision__cta-left {
  line-height: 14px;
  font-size: 14px;
  vertical-align: middle;
  float: left;
  display: inline-block;
  padding: 20px 0;
}

.cta-decision__cta-left i {
  color: #f83;
  float: left;
  margin-right: 8px;
}

.cta-decision__cta-left--text {
  float: left;
  font-weight: bold;
  margin-right: 8px;
}

@media only screen and (max-width: 414px) {
  .cta-decision__cta-left--text {
    width: auto;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}

.cta-decision__cta-left--sub-text {
  display: none;
}

@media (min-width: 576px) {
  .cta-decision__cta-left--sub-text {
    display: inline;
  }
}

.cta-decision__cta-right {
  height: 100%;
  float: right;
}

.cta-decision__cta-right--button {
  display: none;
  background-color: #23487d;
  padding: 4px 8px;
  color: white;
  border-radius: 4px;
  margin: 14px;
}

@media (min-width: 768px) {
  .cta-decision__cta-right--button {
    display: inline-block;
  }
}

.index-container.scrollable {
  padding: 0px;
  margin-left: -8px;
  margin-right: -8px;
  overflow: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

.index-container.scrollable::-webkit-scrollbar {
  display: none;
}

.index-container.scrollable .mdc-chip__text {
  font-size: 14px !important;
}

.index-container.scrollable .index-list {
  background: transparent;
  white-space: nowrap;
  height: auto;
  padding: 8px;
  margin: 0;
}

.index-container.scrollable .index-list-item {
  list-style: inside none;
  display: inline-block;
}

.index-container.scrollable .index-list-item__link {
  background-color: #ebebeb;
  padding: 12px;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
          user-drag: none;
          user-select: none;
     -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
      -ms-user-select: none;
}

.index-container.scrollable .index-list-item__link:hover {
  text-decoration: none;
}

.index-container.scrollable .index-list-item:not(:first-child) {
  margin-left: 8px;
}

.index-container .mdc-chip-large {
  height: 48px;
  border-radius: 8px;
  padding-right: 1.6rem !important;
}

.index-container .mdc-chip-large .mdc-chip__checkmark {
  margin-right: 10px !important;
}

.index-container .mdc-chip-large .mdc-chip__image {
  height: 46px !important;
  width: 46px !important;
  border-radius: 7px 0 0 7px !important;
  border-right: 0;
  margin-left: -10px !important;
  margin-top: -11px;
}

.index-container .mdc-chip-large .mdc-chip__ripple {
  border-radius: 8px;
}

.index-container.static {
  width: 100%;
  position: relative;
  overflow: auto;
}

.index-container.static .mdc-chip__text {
  font-size: 14px !important;
}

.index-container.static .index-list {
  list-style: none;
  overflow: auto;
  padding: 0;
}

.index-container.static .index-list-item {
  margin-right: 16px;
  margin-top: 8px;
  float: left;
  background-color: #ebebeb;
  color: #000;
  border-radius: 20px;
}

.index-container.static .index-list-item__link {
  display: block;
  text-decoration: none;
          user-drag: none;
          user-select: none;
     -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
      -ms-user-select: none;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 0 0 1px transparent;
}

.index-filters-container.scrollable {
  padding: 8px;
  margin-left: -16px;
  margin-right: -8px;
  overflow: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

.index-filters-container.scrollable::-webkit-scrollbar {
  display: none;
}

.index-filters-container.scrollable .index-filters-list {
  white-space: nowrap;
  height: auto;
  padding: 8px;
  margin: 0;
}

.index-filters-container.scrollable .index-filters-list-item {
  list-style: inside none;
  display: inline-block;
}

.index-filters-container.scrollable .index-filters-list-item__link {
  display: inline-block;
  text-decoration: none;
          user-drag: none;
          user-select: none;
     -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
      -ms-user-select: none;
  height: 48px;
  width: 48px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  background-clip: content-box;
  padding: 2px;
  border-radius: 100%;
}

@media (hover: hover) {
  .index-filters-container.scrollable .index-filters-list-item__link:hover {
    border: 1px solid #033567;
  }
}

.index-filters-container.scrollable .index-filters-list-item:not(:first-child) {
  margin-left: 4px;
}

.index-filters-container.static {
  width: 100%;
  position: relative;
  overflow: auto;
}

.index-filters-container.static .index-filters-list {
  list-style: none;
  overflow: auto;
  padding: 0;
}

.index-filters-container.static .index-filters-list-item {
  margin-top: 8px;
  float: left;
}

.index-filters-container.static .index-filters-list-item__link {
  display: block;
  text-decoration: none;
          user-drag: none;
          user-select: none;
     -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
      -ms-user-select: none;
  height: 48px;
  width: 48px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  background-clip: content-box;
  padding: 2px;
  border-radius: 100%;
}

@media (hover: hover) {
  .index-filters-container.static .index-filters-list-item__link:hover {
    border: 1px solid #033567;
  }
}

.usps {
  padding-bottom: 8px;
  overflow: auto;
}

.usps-item {
  margin-bottom: 16px;
  overflow: auto;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .usps-item {
    width: 33%;
    text-align: center;
    float: left;
    margin-bottom: 0;
  }
}

.usps-item__image {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  display: block;
  margin: 0 auto;
}

.usps-item__image-wrapper {
  display: block;
  float: left;
}

@media (min-width: 768px) {
  .usps-item__image-wrapper {
    float: none;
    margin-bottom: 8px;
  }
}

.usps-item__content {
  margin-left: 56px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .usps-item__content {
    padding: 0 1rem;
  }
}

.usps-item__content__title {
  line-height: 18px;
}

@media (max-width: 768px) {
  .usps-item__content__title.centered {
    line-height: 40px;
    vertical-align: middle;
  }
}

.usps-item__content__text {
  line-height: 18px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .usps-item__content {
    margin-left: 0;
  }
}

ul.lists {
  margin: 0 0 0 36px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  position: relative;
}

ul.lists li {
  margin-bottom: 8px;
}

ul.lists .lists-circle-item::before {
  content: "\25CF";
  width: 14px;
  display: inline-block;
  color: #23487d;
  margin-left: -1em;
}

ul.lists .lists-square-item::before {
  content: "";
  background-color: #f83;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(7px);
  transform: translateY(7px);
  position: absolute;
  left: -16px;
}

ul.lists .lists-square-inverted-item::before {
  content: "\25A1";
  width: 14px;
  display: inline-block;
  color: #23487d;
  margin-left: -1em;
}

@media (min-width: 320px) {
  ul.lists .lists-square-inverted-item::before {
    content: "\25AA";
  }
}

ul.lists .lists-item-text {
  font-size: 14px;
  padding: 0;
}

ul.lists .grey::before {
  color: #cfcfcf;
}

ul.lists .orange::before {
  color: #f83;
}

.lists-item-title {
  font-weight: bold;
}

ol.lists {
  margin: 0 0 0 36px;
  padding: 0;
  list-style: none;
  counter-reset: li;
  font-size: 14px;
}

ol.lists .lists-item {
  counter-increment: li;
  margin-bottom: 8px;
  margin-left: 8px;
}

ol.lists .lists-item::before {
  content: "." counter(li);
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: .5em;
  text-align: right;
  direction: rtl;
}

ol.lists .bold::before {
  font-weight: 800;
}

ol.lists .grey::before {
  color: #cfcfcf;
}

ol.lists .orange::before {
  color: #f83;
}

ul.lists-icon {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

ul.lists-icon .lists-icon-item {
  min-height: 40px;
  padding-left: 56px;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: top left;
  margin-bottom: 24px;
}

ul.lists-icon .lists-item-text {
  font-size: 14px;
}

ul.lists-icon .lists-item-text--no-title {
  line-height: 40px;
}

.youtube {
  background-color: #000;
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.youtube img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
}

.youtube__play-button {
  width: 60px;
  height: 30px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  z-index: 1;
  opacity: .8;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.youtube__play-button:before {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 13px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

@media only screen and (min-width: 768px) {
  .youtube__play-button {
    width: 90px;
    height: 60px;
  }

  .youtube__play-button:before {
    border-width: 15px 0 15px 26px;
  }
}

.youtube iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.youtube__title {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  z-index: 30;
  font-size: 16px;
  text-shadow: 4px 3px 9px rgba(51, 51, 51, .5);
  width: 100%;
  line-height: 20px;
  padding: 0 16px 8px 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: normal;
  margin-top: 10px;
}

@media only screen and (min-width: 768px) {
  .youtube__title {
    margin-top: 16px;
    margin-left: 6px;
    font-size: 17px;
  }
}

.youtube__top_gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  display: block;
  z-index: 10;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, .65)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(51, 51, 51, .65) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(51, 51, 51, .65) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(51, 51, 51, .65) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a6333333", endColorstr="#00000000", GradientType=0);
  /* IE6-9  */
}

.quicksearch {
  background-color: #eee;
  font-size: 14px;
  padding: 16px;
  width: 100%;
  max-width: 502px;
}

.quicksearch__title {
  color: #23487d;
  margin-bottom: 5px;
  display: block;
}

.quicksearch__title.bold {
  font-weight: bold;
}

.quicksearch__input {
  display: block;
  width: 100%;
  overflow: auto;
}

.quicksearch__input-field {
  width: calc(100% - 40px);
  height: 41px;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  outline: none;
}

.quicksearch__input-button {
  width: 40px;
  height: 40px;
  margin: 0;
  background-color: #f83;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.quicksearch__input-button-image {
  width: 17px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Mixin to show the full content */

/* Mixin for styling the collapsable action */

.collapsable-content {
  position: relative;
  display: block;
  overflow: hidden;
}

.collapsable-content__content-container {
  height: 24px;
  max-height: 24px;
}

.collapsable-content__content-container .collapsable-content__content-box {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

@media (min-width: 1024px) {
  .collapsable-content__content-container {
    height: auto;
    max-height: 5000px;
  }

  .collapsable-content__content-container .collapsable-content__content-box {
    text-overflow: clip;
    white-space: normal;
    overflow: auto;
  }
}

.collapsable-content__content-container--open {
  height: auto;
  max-height: 5000px;
}

.collapsable-content__content-container--open .collapsable-content__content-box {
  text-overflow: clip;
  white-space: normal;
  overflow: auto;
}

.collapsable-content__content__box {
  margin: 0;
  padding: 0;
}

.collapsable-content__open-action {
  color: #23487d;
  text-decoration: underline;
  font-size: 13px;
  float: right;
}

@media (min-width: 1024px) {
  .collapsable-content__open-action {
    display: none;
  }
}

.collapsable-content__close-action {
  color: #23487d;
  text-decoration: underline;
  font-size: 13px;
  margin-top: 16px;
  display: none;
}

.cherry-products {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -10px;
}

.cherry-product__link {
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 0;
  border-bottom: 1px solid #ccc;
  flex-grow: 0;
  padding: 30px 5px 30px 5px;
}

.cherry-product__link:hover,
.cherry-product__link:active,
.cherry-product__link:focus {
  text-decoration: none;
}

.cherry-product__link--has-usps {
  width: 100%;
  flex-grow: 1;
}

.cherry-product__top-subtitle,
.cherry-product__subtitle {
  padding: 0 10px 10px;
  font-size: 13px;
  margin-bottom: 8px;
  color: #000;
}

.cherry-product__subtitle {
  display: none;
}

.cherry-product__content {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cherry-product__content--row {
  flex-direction: row;
}

.cherry-product__image-holder {
  overflow: hidden;
  padding: 0;
  margin: 0 10px 25px;
}

.cherry-product__link--has-usps .cherry-product__image-holder {
  flex: 1;
  align-self: flex-start;
  width: 100%;
  flex-basis: 58%;
  max-width: 50%;
  margin: 0 0 25px;
  padding: 0 10px;
}

.cherry-product__image {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.cherry-product__link--has-usps .cherry-product__image {
  margin: 0;
}

.cherry-product__link--has-usps .cherry-product__info {
  padding: 0;
  flex: 0;
  flex-basis: 70%;
}

.cherry-product__info {
  padding: 0 10px;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-basis: auto;
}

.cherry-product__name {
  color: #23487d;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  padding: 0 15px 0 0;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  margin: 0;
}

.cherry-product__usps {
  margin: 15px 15px 23px;
  padding: 0;
  font-size: 12px;
  list-style-type: square;
  color: #213b61;
  line-height: 20px;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-basis: auto;
  flex-grow: 0;
  overflow: visible;
}

.cherry-product__usps li {
  padding-top: 0 !important;
}

.cherry-product__price-holder {
  font-size: 12px;
  color: #213b61;
  padding: 8px 0 0;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 0;
  align-items: flex-end;
  justify-content: left;
}

.cherry-product__price {
  font-size: 15px;
  color: #f83;
  font-weight: 700;
  margin: 0 4px;
}

.cherry-product__price-presale {
  font-size: 13px;
  text-decoration: line-through;
  margin-left: 4px;
}

.cherry-product__unit-text {
  text-transform: lowercase;
  font-size: 11px;
}

@media (max-width: 321px) {
  .cherry-product__name {
    overflow: auto;
  }
}

@media (min-width: 768px) {
  .cherry-products {
    padding: 0 30px 0 0;
  }

  .cherry-product__link {
    padding: 30px 0;
  }

  .cherry-product__link .cherry-product__info {
    flex-grow: 0;
  }
}

@media (min-width: 992px) {
  .cherry-product__link--has-usps {
    width: 100%;
    flex-grow: 0;
  }

  .cherry-product__link--has-usps .cherry-product__image {
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .cherry-product__link--has-usps {
    width: 50%;
    flex-grow: 0;
  }

  .cherry-product__link {
    width: 33.333%;
    flex-grow: 0;
  }

  .cherry-product__content {
    flex-direction: column;
    display: block;
  }

  .cherry-product__link--has-usps .cherry-product__info {
    padding: 0 10px;
    flex-basis: auto;
  }

  .cherry-product__top-subtitle {
    display: none;
  }

  .cherry-product__subtitle {
    display: block;
  }

  .cherry-product__name {
    max-height: none;
  }

  .cherry-product__link--has-usps .cherry-product__image-holder {
    max-width: 100%;
  }
}

.cherry-products.columns-on-row-sm-1 .cherry-product__link {
  width: 100%;
}

.cherry-products.columns-on-row-sm-1 .cherry-product__content {
  flex-direction: column;
}

@media (min-width: 768px) {
  .cherry-products.columns-on-row-md-2 .cherry-product__link {
    width: 50%;
  }

  .cherry-products.columns-on-row-md-3 .cherry-product__link {
    width: 33.333%;
  }

  .cherry-products.columns-on-row-md-4 .cherry-product__link {
    width: 25%;
  }

  .columns-on-row-md-3 .cherry-product__content,
  .cherry-products.columns-on-row-md-4 .cherry-product__content,
  .cherry-products.columns-on-row-md-2 .cherry-product__content {
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .cherry-products.columns-on-row-xl-2 .cherry-product__link {
    width: 50%;
  }

  .cherry-products.columns-on-row-xl-4 .cherry-product__link {
    width: 25%;
  }

  .cherry-products.columns-on-row-xl-5 .cherry-product__link {
    width: 20%;
  }
}

.cherry-product__name--placeholder {
  height: 20px;
  background-color: #eee;
}

.cherry-product__price-holder--placeholder > span {
  background-color: #eee;
  height: 20px;
  width: 50px;
  margin-right: 16px;
}

.cherry-product__price-holder--placeholder > span:first-child {
  width: 80px;
}

.cherry-product__price-holder--placeholder > span:last-child {
  width: 65px;
}

.cherry-product__image--placeholder {
  margin-top: 16px;
  height: 150px;
  background-color: #eee;
}

.cherry-product__link:hover,
.cherry-product__link:active,
.cherry-product__link:focus {
  background-color: #00000008;
}

.cherry-product__content {
  position: relative;
}

.cherry-product__images {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.mini-slider {
  overflow: hidden;
}

.mini-slider__scroll-pane {
  -webkit-box-flex: 1;
  -webkit-overflow-scrolling: touch;
  display: -ms-flexbox;
  display: flex;
  flex: 1 1 0%;
  flex-flow: row nowrap;
  inset: 0;
  overflow-x: scroll;
  position: absolute;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.mini-slider__scroll-pane::-webkit-scrollbar {
  display: none;
}

.mini-slider__scroll-pane span {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.mini-slider__scroll-pane span img {
  -o-object-fit: cover;
  object-fit: cover;
}

.mini-slider .cherry-product__image {
  position: relative;
}

.cherry-product__content .mini-slider__track {
  background-color: #e1dfd8;
  bottom: 0;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  margin: 0;
}

.mini-slider__knob {
  background-color: #19110b;
  height: 100%;
  transition: -webkit-transform .3s cubic-bezier(.39, .575, .565, 1);
  transition: transform .3s cubic-bezier(.39, .575, .565, 1);
  transition: transform .3s cubic-bezier(.39, .575, .565, 1), -webkit-transform .3s cubic-bezier(.39, .575, .565, 1);
}

.cherry-product__image {
  position: relative;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.cherry-product__image.cherry-product__image-primary {
  opacity: 1;
  transition: opacity .3s cubic-bezier(.39, .575, .565, 1);
}

.cherry-product__image img {
  width: auto;
  height: auto;
}

@media (min-width: 1024px) {
  .cherry-product__image.cherry-product__image-secondary {
    position: absolute;
    z-index: -1;
    top: 0;
  }

  .cherry-product__content:has(.cherry-product__image-secondary):hover .cherry-product__image-primary {
    opacity: 0;
  }

  .mini-slider__track {
    display: none;
  }
}

@media (max-width: 1023px) {
  .cherry-products > .cherry-product__link .mini-slider__scroll-pane span {
    -webkit-animation: 1.5s ease-in-out 500ms 1 normal none running peepCard;
    animation: 1.5s ease-in-out 500ms 1 normal none running peepCard;
  }

  .cherry-products > .cherry-product__link ~ .cherry-product__link .mini-slider__scroll-pane span {
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes peepCard {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-3.5rem);
    transform: translateX(-3.5rem);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes peepCard {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-3.5rem);
    transform: translateX(-3.5rem);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Start filters */

.cherry-filters {
  display: none;
}

.cherry-filters__category fieldset {
  border-radius: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.cherry-filters__category-title-name {
  display: inline-block;
}

.cherry-filters__category-title-info {
  display: none;
  margin-left: 8px;
}

.cherry-filters__category-title-info-popover {
  border-radius: 50%;
  border: 0px;
  color: #fff;
  background: #1d487a;
  line-height: 16.25px;
  outline: none;
}

.cherry-filters__popover-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  text-transform: none;
}

.cherry-filters__popover-text {
  text-transform: none;
  font-weight: 400;
}

.cherry-filters__category-group-item-checkbox-icon {
  background-image: url("/checkbox-niet-gevinkt.png");
  background-repeat: no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background-size: cover;
  padding-top: 0px;
}

.cherry-filters__category-group-item-checkbox-label {
  display: block;
  width: 100%;
}

.cherry-filters__category-group-item-checkbox-label[data-checked=true] .cherry-filters__category-group-item-checkbox-icon {
  background-image: url("/checkbox-gevinkt.png");
}

.cherry-filters__category-group-item-title {
  display: inline-block;
  width: calc(100% - 29px);
}

.cherry-filters__category-group-item-title-results {
  color: #999;
  margin-left: 5px;
  font-weight: 400;
  font-size: 13px;
  display: inline-block;
}

/*  Mobile styling  */

.cherry-filters__mobile-header {
  height: 50px;
  background: #23487d;
  color: #fff;
  text-align: center;
  line-height: 50px;
  position: fixed;
  width: 100%;
  top: 0;
}

.cherry-filters__mobile-header-title {
  position: absolute;
  left: 49px;
  width: 165px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.cherry-filters__mobile-header-left {
  position: absolute;
  left: 0;
  padding-left: 20px;
  height: 50px;
}

.cherry-filters__mobile-header-right {
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 8px;
}

.cherry-filters__mobile-header-right-button {
  cursor: pointer;
}

.cherry-filters__mobile-header-prev {
  width: 26px;
  height: 26px;
  display: none;
  position: absolute;
  top: calc(50% - 15px);
  left: 15px;
  cursor: pointer;
}

.cherry-filters__mobile-header-prev-arrow {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-45deg) translate(0px, -4px);
  transform: rotate(-45deg) translate(0px, -4px);
  position: absolute;
  top: 50%;
  left: 50%;
}

.cherry-filters__mobile-header-close {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  position: absolute;
  left: 8px;
}

.cherry-filters__mobile-header-close-bar-1 {
  height: 2px;
  background-color: #fff;
          transform: rotate(-45deg) translate(-5px, 5px);
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
     -moz-transform: rotate(-45deg) translate(-5px, 5px);
      -ms-transform: rotate(-45deg) translate(-5px, 5px);
  width: 15px;
  margin: 5px 0;
}

.cherry-filters__mobile-header-close-bar-2 {
  height: 2px;
  background-color: #fff;
          transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
  width: 15px;
  margin: 5px 0;
}

.cherry-filters__category-title {
  position: relative;
  cursor: pointer;
  padding: 16px 50px 16px 20px;
  color: #000000bf;
  font-size: 13px;
  line-height: 20px;
  border-bottom: 1px solid #0000001a;
  margin-bottom: 0;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 9px;
  background-image: url("/pijl-icon-filter.png");
}

.cherry-filters {
  padding-top: 50px;
}

.cherry-filters__mobile-footer-button {
  background: #f83;
  display: inline-block;
  text-align: center;
  padding: 10px 0;
  width: 50%;
  border-radius: 5px;
  cursor: pointer;
}

.cherry-filters__mobile-footer {
  display: block;
  z-index: 999999;
  position: fixed;
  text-align: center;
  background: #fff;
  color: #fff;
  padding: 10px;
  font-weight: 600;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 -0.313em .625em 0 rgba(0, 0, 0, .1);
}

.cherry-filters__category-group {
  display: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 60px;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9;
}

.cherry-filters__category-group-item {
  background: transparent;
  cursor: pointer;
  padding: 16px 50px 16px 20px;
  color: #000000bf;
  border-bottom: 1px solid #0000001a;
}

.cherry-filters__category-group-item:hover .cherry-filters__category-group-item-title-name {
  text-decoration: underline;
}

.cherry-filters__category-selected-filters {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
  color: #aaa;
  text-align: right;
  max-width: 35%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cherry-filters__category-group-item-checkbox-label[data-results="0"] {
  opacity: .5;
  cursor: default;
}

.cherry-filters__show-more {
  display: none;
}

@media (max-width: 767px) {
  .cherry-filters {
    position: fixed;
    z-index: 9999999;
  }

  .cherry-filters__category-container {
    position: fixed;
    overflow-y: scroll;
    top: 50px;
    background: #fff;
    width: 100%;
    bottom: 60px;
    -webkit-overflow-scrolling: touch;
  }/* Fix for sitemanger */

  #mod_34_nav {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  .cherry-filters {
    padding-top: 0;
  }

  .cherry-filters__mobile-header {
    display: none;
  }

  .cherry-filters__category-title-info {
    display: inline-block;
  }

  .cherry-filters__category-group {
    display: block;
    overflow-y: visible;
  }

  .cherry-filters__category-title {
    font-weight: bold;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    cursor: pointer;
    line-height: 30px;
    padding: 5px 5px 5px 10px;
    text-transform: uppercase;
    font-size: 11px;
    color: #000;
    margin-bottom: 0;
  }

  .cherry-filters__category-group {
    background-color: #f9f9f9;
    padding-top: 8px;
    margin-bottom: 8px;
  }

  .cherry-filters__category-group-item {
    padding: 6px 6px 9px 7px;
    cursor: pointer;
  }

  .cherry-filters__category-group-item-title-name {
    display: inline-block;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 77%;
    height: 19px;
    font-weight: 400;
    overflow: hidden;
    font-size: 13px;
  }

  .cherry-filters__category-group-item-title-results {
    overflow: hidden;
  }

  .cherry-filters__category-group-item-checkbox-icon {
    background-image: url("/media-31923");
    background-size: initial;
    background-repeat: no-repeat;
    display: inline-block;
    width: 15px;
    height: 15px;
    overflow: hidden;
  }

  .cherry-filters__category-group-item-checkbox-label[data-checked=true] .cherry-filters__category-group-item-checkbox-icon {
    background-image: url("/media-31922");
  }

  .cherry-filters__category-group-item-title {
    display: inline-block;
    width: calc(100% - 19px);
  }

  .cherry-filters__category-selected-filters,
  .cherry-filters__mobile-footer {
    display: none;
  }

  .cherry-filters__category-group {
    position: relative;
    top: auto;
    padding-bottom: 0;
  }

  .cherry-filters__category-title {
    background-color: #f5f5f5;
    background-image: url("/media-74403");
    background-size: auto;
  }

  .cherry-filters__category--collapsed .cherry-filters__category-title {
    background-color: transparent;
    background-image: url("/media-74404");
    border-bottom: 0px;
  }

  .cherry-filters__category-group-item-checkbox-icon {
    margin-right: 0;
  }

  .cherry-filters__category-group-item {
    border-bottom: 0;
  }

  .cherry-filters__category-group-item--show-after-more {
    display: none;
  }

  .cherry-filters__category-group--show-all .cherry-filters__category-group-item--show-after-more {
    display: block;
  }

  .cherry-filters__show-more {
    margin: 10px 20px;
    background: transparent;
    border: none;
    outline: none;
    color: #213b61;
    display: inline-block;
    cursor: pointer;
  }
}

.cherry-filters__category-title--placeholder {
  background-image: none;
  height: 30px;
  border: 0;
}

.cherry-filters__category-title--placeholder * {
  display: none;
}

.cherry-filters__category-group--placeholder {
  margin-bottom: 16px;
}

.cherry-filters__category-group--placeholder .cherry-filters__category-group-item {
  background-color: transparent;
  width: 200px;
  height: 24px;
  margin-bottom: 8px;
}

.cherry-filters__category-group--placeholder .cherry-filters__category-group-item .cherry-filters__category-group-item-checkbox-icon {
  display: inline-block;
  background-color: #f9f9f9;
  background-image: none;
}

.cherry-filters__category-group--placeholder .cherry-filters__category-group-item .cherry-filters__category-group-item-title {
  background-color: #f9f9f9;
  width: 150px;
  height: 16px;
  margin-left: 8px;
}

.cherry-filters__category-group--placeholder .cherry-filters__category-group-item .cherry-filters__category-group-item-title * {
  display: none;
}

.newsletter-optin {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  padding: 2rem;
  position: relative;
}

.newsletter-optin__icon {
  flex: 1;
  position: absolute;
}

.newsletter-optin__icon img {
  max-width: -webkit-max-content !important;
  max-width: -moz-max-content !important;
  max-width: max-content !important;
}

.newsletter-optin__block {
  flex: 24;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.newsletter-optin__content {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  color: #00204e;
  margin-bottom: 1.5rem;
  padding-left: 4rem;
}

.newsletter-optin__content-title {
  font-weight: 600;
  margin-bottom: .5rem;
  padding-right: 4rem;
  font-size: 15px;
}

.newsletter-optin__content-text {
  line-height: 1.75rem;
  margin-bottom: .5rem;
  font-size: 14px;
}

.newsletter-optin__content-subtext {
  font-weight: 400;
  font-size: 10px;
  padding-top: .5rem;
  color: #23487d;
}

.newsletter-optin__form {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.newsletter-optin__form input {
  background: #fff;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding: .75rem 1.25rem;
  display: block;
  width: 100%;
  border: 0;
  font-size: 13px;
  color: #737373;
}

.newsletter-optin__form input:-webkit-autofill,
.newsletter-optin__form input:-webkit-autofill:hover,
.newsletter-optin__form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f83;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

.newsletter-optin__form-btn button {
  cursor: pointer;
  display: inline-block;
  padding: .75rem 2.25rem;
  background: #f83;
  color: #fff;
  border: 0;
  border-radius: .5rem;
  outline: none;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
}

.newsletter-optin__success {
  display: none;
  flex: 24;
  color: #00204e;
  font-weight: 600;
  padding-right: 5rem;
  padding-left: 4rem;
  font-size: 15px;
}

@media (min-width: 576px) {
  .newsletter-optin__form {
    padding-left: 4rem;
  }
}

@media (min-width: 768px) {
  .newsletter-optin {
    flex-direction: row;
    padding: 1.5rem;
  }

  .newsletter-optin__content {
    margin-bottom: 1rem;
  }

  .newsletter-optin__content-subtext {
    padding: 0;
    text-align: right;
    width: 100%;
  }

  .newsletter-optin__form {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 0;
    flex-wrap: wrap;
  }

  .newsletter-optin__form-name {
    flex-grow: 1;
  }

  .newsletter-optin__form-email {
    flex-grow: 2;
    padding: 0 1rem;
  }

  .newsletter-optin__form-btn {
    flex: 5;
  }

  .newsletter-optin__form-btn button {
    width: 100%;
    padding: 1rem 2.25rem;
  }

  .newsletter-optin__form input {
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 836px) {
  .newsletter-optin__content-subtext {
    margin-top: -1rem;
  }
}

@media (min-width: 992px) {
  .newsletter-optin__form-btn {
    flex: 1.7;
  }
}

@media (min-width: 1200px) {
  .newsletter-optin__block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .newsletter-optin__content {
    flex: 2;
    margin-bottom: 0;
    align-self: flex-start;
  }

  .newsletter-optin__content-subtext {
    margin-top: 1rem;
  }

  .newsletter-optin__form {
    flex: 3;
    padding-left: 2rem;
  }

  .newsletter-optin__form-name {
    flex: 2;
  }

  .newsletter-optin__form-email {
    flex: 3;
  }

  .newsletter-optin__form input {
    margin-bottom: 0;
  }
}

.carrousel {
  display: block;
}

.carrousel__container {
  display: block;
  background: #fff;
  border: 1px solid #cfcfcf;
  position: relative;
}

.carrousel__container:hover .carrousel__scrollbar {
  background: rgba(0, 0, 0, .15);
  transition: left .3s ease 0s, background .3s ease 0s;
}

.carrousel__viewport {
  overflow: hidden;
  white-space: nowrap;
}

.carrousel__scrollbar {
  display: block;
  position: absolute;
  width: 50%;
  height: 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, .15);
  bottom: -0.5rem;
  transition: left .3s ease 0s, background .3s ease .3s;
}

.carrousel__title {
  margin: 0;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #213b61;
  line-height: 23px;
  font-weight: 700;
  padding: 20px 15px 0;
}

.carrousel__items {
  white-space: nowrap;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  left: 0;
  margin: 10px 15px 15px;
  transition: left .3s;
  padding: 0 0 5px;
}

.carrousel__item {
  display: inline-block;
  width: 185px;
  height: auto;
  padding: 0;
  text-decoration: none;
}

.carrousel__item:first-child {
  margin-left: 0;
}

.carrousel__item__card {
  background-color: #fff;
  border-radius: 12px;
  min-height: 376px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
}

.carrousel__item__card__title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 18px 18px 12px;
}

.carrousel__item__card__content {
  padding: 0 18px;
  color: black;
  font-size: 15px;
}

.carrousel__item__url {
  padding: 0;
  width: 100%;
  min-height: 245px;
  float: left;
  position: relative;
  text-decoration: none !important;
  color: #23487d;
}

.carrousel__item__image {
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
  padding: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
  border-radius: 12px;
}

.carrousel__item__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.carrousel__item__image__container {
  height: auto;
}

.carrousel__item__title {
  width: 100%;
  margin: 19px auto 10px;
  padding: 0;
  line-height: 22px;
  font-weight: 400;
  font-size: 13px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
     -moz-line-clamp: 2;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
     -moz-box-orient: vertical;
  /* autoprefixer: on */
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 42px;
  color: #23487d;
}

.carrousel__item__price {
  font-size: 15px;
  line-height: 24px;
  color: black;
  white-space: nowrap;
  font-weight: bold;
  font-style: normal;
}

.carrousel__item__price__value {
  display: inline-block;
  margin-right: 5px;
  margin-top: 6px;
  color: #23487d;
}

.carrousel__item__price__unit {
  text-transform: lowercase;
  font-size: 13px;
  font-weight: 400;
  color: #23487d;
  display: inline-block;
  line-height: 10px;
  text-align: center;
}

.carrousel__item__price__prefix {
  display: inline-block;
  text-transform: lowercase;
  font-size: 10px;
  color: black;
  font-weight: normal;
  line-height: 10px;
  text-align: center;
  padding-right: 2px;
}

.carrousel__item__price__add_to_basket {
  background: #f83;
  color: white;
  outline: none;
  border: 0;
  font-size: 20px;
  border-radius: 5px;
  padding: 6px;
  float: right;
}

.carrousel__item__price__add_to_basket--success {
  background: transparent;
  border: 1px solid #55bf48;
  color: #55bf48;
}

.carrousel__item__price__add_to_basket > img,
.carrousel__item__price__add_to_basket > span {
  vertical-align: middle;
}

.carrousel__item__price__add_to_basket > span {
  display: inline-block;
  margin-top: -10px;
}

.carrousel__item__price__add_to_basket > img {
  margin-top: -4px;
  margin-left: 2px;
}

.carrousel__item--placeholder .carrousel__item__url {
  padding: 0 20px;
  width: 100%;
  min-height: 245px;
  float: left;
  position: relative;
  color: #fff;
  text-decoration: none;
}

.carrousel__item--placeholder .carrousel__item__image {
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
  padding: 0;
  width: 100%;
  height: 145px;
  background: rgba(0, 0, 0, .2);
  text-align: center;
  line-height: 145px;
  font-size: 34px;
}

.carrousel__item--placeholder .carrousel__item__title {
  padding: 0;
  border-top: 20px solid rgba(0, 0, 0, .2);
  width: 100%;
  display: block;
  margin: 20px auto;
}

.carrousel__item--placeholder .carrousel__item__price {
  display: block;
  text-align: left;
  position: relative;
  width: 100%;
  padding: 0;
}

.carrousel__item--placeholder .carrousel__item__price__prefix {
  display: inline-block;
  padding-right: 8px;
}

.carrousel__item--placeholder .carrousel__item__price__value {
  display: inline-block;
  background: rgba(0, 0, 0, .2);
  width: 38px;
  height: 20px;
}

.carrousel__item--placeholder .carrousel__item__price__unit {
  height: 10px;
  width: 45px;
  margin-left: 5px;
}

.carrousel__control {
  display: block;
  width: 50px;
  height: 80px;
  background: transparent;
  position: absolute;
  top: 38%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 5px;
  visibility: visible;
  transition: opacity .3s ease .3s, background .3s ease 0s, visibility .3s ease .3s;
  opacity: 1;
  cursor: pointer;
}

.carrousel__control--disabled {
  opacity: 0;
}

.carrousel__control__left {
  left: -5rem;
}

.carrousel__control__left__arrow {
  content: " ";
  display: block;
  height: 100%;
  width: 100%;
  background: url(https://www.homedesignshops.nl/bt-icon-arrow-blue.png) no-repeat center;
  background-size: 50%;
  -webkit-transform: scaleX(-1);
     transform: scaleX(-1);
      -webkit-filter: FlipH;
      filter: FlipH;
  -ms-filter: "FlipH";
}

.carrousel__control__right {
  right: -5rem;
}

.carrousel__control__right__arrow {
  content: " ";
  display: block;
  height: 100%;
  width: 100%;
  background: url(https://www.homedesignshops.nl/bt-icon-arrow-blue.png) no-repeat center;
  background-size: 50%;
}

@media (min-width: 768px) {
  .carrousel__title {
    padding: 20px 0 0 0;
  }

  .carrousel__item {
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .carrousel {
    margin-left: -10px;
    margin-right: -10px;
  }

  .carrousel__container {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    width: 100%;
  }

  .carrousel__item {
    margin: 0 10px;
  }
}

@media (max-width: 1024px) {
  .carrousel__viewport {
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .carrousel__viewport::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
    width: 0px;
    background: transparent;
  }

  .carrousel__container:hover .carrousel__scrollbar {
    transition: left 0s ease 0s, background .3s ease 0s;
  }

  .carrousel__scrollbar {
    transition: left 0s ease 0s, background 0s ease 0s;
  }

  .carrousel__item:last-of-type {
    margin-right: 10px;
  }

  .carrousel__item__title {
    margin: 14px auto 8px;
  }

  .carrousel__item--placeholder .carrousel__item__title {
    margin: 16px auto 28px;
  }

  .carrousel__item--placeholder .carrousel__item__url {
    min-height: 220px;
  }

  .carrousel__item--placeholder .carrousel__item__image {
    height: 120px;
  }
}

.content.m_product_panel_group .carrousel {
  margin: 0 38px;
}

.content.m_product_panel_group .carrousel__container {
  background: transparent;
  border: 0;
}

.content.m_product_panel_group .carrousel__item__url {
  min-height: auto;
}

.content.m_product_panel_group .carrousel__item__title {
  margin: 19px auto 10px;
}

.carrousel.carrousel-wide {
  font-family: "Open Sans", sans-serif;
}

.carrousel.carrousel-wide .carrousel__title {
  color: #000;
}

.carrousel.carrousel-wide .carrousel__item__title {
  font-size: 14px;
  line-height: 18px;
  min-height: 18px;
  color: #000;
}

.carrousel.carrousel-wide .carrousel__item__title.bold {
  font-weight: bold;
}

.carrousel.carrousel-wide .carrousel__item__description {
  font-size: 14px;
  line-height: 18px;
  color: #000;
  padding: 0;
  width: 100%;
  display: -webkit-box;
  white-space: normal;
  padding-bottom: 16px;
}

.carrousel.carrousel-wide .carrousel__item {
  width: auto;
}

.carrousel.carrousel-wide .carrousel__item__image img {
  min-width: 250px;
  min-height: 145px;
  width: auto;
  height: auto;
  max-width: 255px;
}

.carrousel.carrousel-wide .carrousel__item__player {
  position: relative;
  width: 250px;
}

.carrousel.carrousel-wide .carrousel__item__player.wide-video {
  width: 422px;
}

@media (max-width: 360px) {
  .carrousel.carrousel-wide .carrousel__item__player {
    width: 150px;
  }
}

.carrousel.carrousel-wide .carrousel__item__player--no-audio {
  display: block;
  background: rgba(0, 0, 0, .8);
  opacity: 0;
  color: white;
  margin-top: 20%;
  padding: 8px;
  font-size: 13px;
  border-radius: 8px;
  transition: all .3s;
}

.carrousel.carrousel-wide .carrousel__item__player__controls {
  width: 100%;
  display: grid;
  align-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
}

.carrousel.carrousel-wide .carrousel__item__player__controls__play-button {
  width: 60px;
  height: 30px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  z-index: 1;
  opacity: .8;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition: .3s;
}

.carrousel.carrousel-wide .carrousel__item__player__controls__play-button:before {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 13px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition: .2s all ease;
}

.carrousel.carrousel-wide .carrousel__item__player__controls__play-button.paused:before {
  content: "";
  border-style: double;
  border-width: 0px 0 0px 20px;
  border-color: transparent transparent transparent #fff;
  position: static;
}

@media only screen and (min-width: 768px) {
  .carrousel.carrousel-wide .carrousel__item__player__controls__play-button {
    width: 90px;
    height: 60px;
  }

  .carrousel.carrousel-wide .carrousel__item__player__controls__play-button:before {
    border-width: 15px 0 15px 26px;
  }

  .carrousel.carrousel-wide .carrousel__item__player__controls__play-button.paused:before {
    border-width: 0 0 0 20px;
  }
}

.carrousel.carrousel-wide .carrousel__item__player__controls button,
.carrousel.carrousel-wide .carrousel__item__player__controls input[type=submit],
.carrousel.carrousel-wide .carrousel__item__player__controls input[type=reset] {
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.carrousel.carrousel-wide .carrousel__item__player__controls .timeline {
  transition: all .3s;
  opacity: 0;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border: none;
  margin-bottom: 16px;
  margin-left: 10px;
  margin-right: 10px;
}

.carrousel.carrousel-wide .carrousel__item__player__controls .timeline .bar {
  background: #333;
  opacity: .6;
  height: 8px;
  border-radius: 10px;
  flex: 1;
}

.carrousel.carrousel-wide .carrousel__item__player__controls .timeline .bar .inner {
  background: #fff;
  width: 0%;
  height: 100%;
  border-radius: 10px;
  transition: all .5s ease;
}

.cookie-consent-switcher {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.cookie-consent-switcher__card {
  cursor: pointer;
  flex: 1;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 15px;
  margin: 8px;
}

.cookie-consent-switcher__card.active {
  border-color: #23487d;
}

.cookie-consent-switcher__card-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #23487d;
}

.cookie-consent-switcher__card-explanation {
  margin-bottom: 8px;
}

.cookie-consent-switcher__card-list {
  padding-left: 16px;
}

@media (min-width: 768px) {
  .cookie-consent-switcher {
    flex-direction: row;
  }
}

.questionnaire_filters .questionnaire_filter .mdc-chip__checkmark {
  display: none;
}

.questionnaire_filters .questionnaire_filter--active {
  box-shadow: inset 0 0 0 1px #23487d !important;
  background-color: #edf0f5 !important;
  order: -1;
}

.questionnaire_filters .questionnaire_filter--active .mdc-chip__text {
  color: #23487d !important;
}

.questionnaire_filters .questionnaire_filter--active .mdc-chip__checkmark {
  display: inline-block;
}

.questionnaire_filters .questionnaire_filter__prev {
  text-decoration: none;
  cursor: pointer;
}

.questionnaire_filters.loading {
  opacity: .35;
}

/** Return order */

.return-order {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  padding: 4rem;
  color: #00204e;
}

.return-order h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}

.return-order__information {
  width: 100%;
  text-align: left;
  padding-bottom: 3rem;
}

.return-order__information-warning {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  margin-top: 1rem;
}

.return-order__information-warning svg {
  margin-right: .8rem;
  min-width: 2rem;
  width: 2rem;
  min-height: 2rem;
  height: 2rem;
}

.return-order__actions {
  width: 100%;
  max-width: 40rem;
  margin: 0;
}

.return-order__actions-wide {
  width: 50rem;
}

.return-order__actions .error:not(textarea) {
  margin-top: -2rem;
  margin-bottom: 2rem;
}

.return-order__product,
.return-order__reason,
.return-order__shipment-option,
.return-order__reason-addition {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px #dedede;
  background-color: #fff;
  color: rgba(0, 0, 0, .87);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.return-order__product[data-disabled=true] {
  cursor: not-allowed;
  opacity: .6;
}

.return-order__product[data-selected=false][data-disabled=false]:hover,
.return-order__product[data-selected=false][data-disabled=false]:active,
.return-order__product[data-selected=false][data-disabled=false]:focus,
.return-order__reason[data-selected=false][data-disabled=false]:hover,
.return-order__reason[data-selected=false][data-disabled=false]:active,
.return-order__reason[data-selected=false][data-disabled=false]:focus,
.return-order__shipment-option[data-selected=false][data-disabled=false]:hover,
.return-order__shipment-option[data-selected=false][data-disabled=false]:active,
.return-order__shipment-option[data-selected=false][data-disabled=false]:focus {
  box-shadow: inset 0 0 0 1px #cacaca, 0 5px 5px -3px rgba(0, 0, 0, .1);
}

.return-order__product-input,
.return-order__reason-input,
.return-order__shipment-option-input {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 0 4px;
}

.return-order__product-input input,
.return-order__reason-input input,
.return-order__shipment-option-input input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
}

.return-order__product-image {
  width: 48px;
  height: 48px;
  margin: 0 8px;
}

.return-order__product-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.return-order__product-information,
.return-order__reason-information,
.return-order__shipment-option-information {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding: 0 6px;
  width: 100%;
}

.return-order__product-information .error-message,
.return-order__reason-information .error-message,
.return-order__shipment-option-information .error-message {
  margin-top: -0.4rem;
  color: darkred;
  display: none;
}

.return-order__reason-addition {
  margin-bottom: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.return-order__reason-addition span {
  display: block;
  font-weight: 600;
}

.return-order__reason-addition textarea {
  resize: none;
  width: 100%;
  height: 10rem;
  margin: 1rem 0;
  box-shadow: inset 0 0 0 1px #dedede;
  border: 0;
  border-radius: 4px;
  padding: .5rem 1rem !important;
  color: rgba(0, 0, 0, .75);
  outline: none;
}

.return-order__reason-addition .error-message {
  margin-top: -0.4rem;
  color: darkred;
  display: none;
}

.return-order__reason[data-selected=true] .return-order__reason-information textarea {
  display: block;
}

.return-order__product-price {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  opacity: .6;
}

.return-order__product-price-discount {
  text-decoration: line-through;
  color: #de0000;
  font-size: 11px;
  margin-right: 6px;
}

.return-order__product[data-selected=true],
.return-order__reason[data-selected=true],
.return-order__shipment-option[data-selected=true] {
  box-shadow: inset 0 0 0 2px #23487d;
  background-color: #edf0f5;
}

.return-order__product[data-selected=true] .return-order__product-price {
  opacity: 1;
  font-weight: 600;
}

.return-order__product-quantity {
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.return-order__product-quantity input,
.return-order__product-quantity select {
  width: 5.5rem;
  padding: .5rem 1rem !important;
  border: 0;
  box-shadow: inset 0 0 0 1px #dedede;
  outline: none;
  color: rgba(0, 0, 0, .75);
  border-radius: 4px;
}

.return-order__actions-buttons {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.return-order input[type=text],
.return-order input[type=email] {
  background: #fff;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding: .75rem 1.25rem;
  display: block;
  width: 100%;
  border: 0;
  font-size: 13px;
  color: #737373;
  line-height: 2.1rem;
}

.return-order button {
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding: .75rem 2.5rem;
  display: block;
  width: auto;
  border: 0;
  font-size: 13px;
  color: #737373;
  line-height: 2.1rem;
  margin-left: auto;
}

.return-order button.previous-step {
  margin-left: 0;
  padding-left: 0;
  background: transparent;
  color: #002052;
  text-decoration: underline;
}

.return-order__button-loading {
  display: none;
  padding: .75rem 1.25rem;
  background: #f83;
  color: #fff;
  border: 0;
  border-radius: .5rem;
  outline: none;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
  margin-bottom: 0;
  width: 100%;
  opacity: .6;
}

.return-order button {
  cursor: pointer;
  background: #f83;
  color: #fff;
  outline: none;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 0;
}

.return-order button[disabled] {
  cursor: default;
  opacity: .6;
}

.return-order__actions-wide input[type=text],
.return-order__actions-wide button,
.return-order__actions-wide .return-order__button-loading {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

#returns-step-5 .return-order__information {
  padding-bottom: 0;
}

#return-shipment-options h4 {
  margin-bottom: .8rem;
}

#return-order-reason-addition.error {
  box-shadow: inset 0 0 0 1px darkred;
}

#with-shipment-option,
#without-shipment-option {
  display: none;
}

@media (min-width: 768px) {
  .return-order input,
  return-order__button-loading {
    padding: 1rem 2.25rem;
  }
}

.navigation-container {
  -webkit-column-gap: 1rem;
  column-gap: 1rem;
  -webkit-column-count: 1;
  column-count: 1;
}

@media only screen and (min-width: 768px) {
  .navigation-container {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

.navigation-link {
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e6e6e8;
  text-decoration: none;
  color: black;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 16px;
}

.navigation-link:hover {
  border-color: #23487d;
  text-decoration: none;
}

.navigation-link__icon-holder {
  background-color: #f1f1f1;
  padding: 1.4rem;
  margin-right: 2rem;
}

.navigation-link__icon {
  width: 42px;
  height: 42px;
}

.navigation-link__text {
  flex: 1 1 auto;
}

.navigation-link__arrow {
  width: 8px;
  height: auto;
  margin-right: 16px;
}

.highlight-reset .highlight__title {
  line-height: 1.1;
}

.highlight-reset .highlight__content {
  padding-bottom: 0;
}

.highlight-reset .highlight__title.inline {
  line-height: 1.4;
}

.highlight-reset .highlight__content.inline {
  line-height: 1.5;
}

.row.row-eq-height {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.row.row-eq-height [class*=col-] {
  flex: 0 1 auto;
  flex-direction: column;
}

.go-experiment {
  display: none;
}

@media (min-width: 576px) {
  .sm\:bg-transparent {
    background-color: transparent !important;
  }

  .sm\:bg-black {
    background-color: #22292f !important;
  }

  .sm\:bg-black-mdc {
    background-color: #000 !important;
  }

  .sm\:bg-white {
    background-color: #fff !important;
  }

  .sm\:bg-grey-darkest {
    background-color: #414141 !important;
  }

  .sm\:bg-grey-darker {
    background-color: #828282 !important;
  }

  .sm\:bg-grey-dark {
    background-color: #c3c3c3 !important;
  }

  .sm\:bg-grey {
    background-color: #d9d9d9 !important;
  }

  .sm\:bg-grey-light {
    background-color: #e4e4e4 !important;
  }

  .sm\:bg-grey-lighter {
    background-color: #f1f1f1 !important;
  }

  .sm\:bg-grey-lightest {
    background-color: #fbfbfb !important;
  }

  .sm\:bg-grey-mdc {
    background-color: #edf0f5 !important;
  }

  .sm\:bg-grey-mdc-70 {
    background-color: #707070 !important;
  }

  .sm\:bg-blue-darkest {
    background-color: #0b1626 !important;
  }

  .sm\:bg-blue-darker {
    background-color: #152b4b !important;
  }

  .sm\:bg-blue-dark {
    background-color: #204171 !important;
  }

  .sm\:bg-blue {
    background-color: #23487d !important;
  }

  .sm\:bg-blue-light {
    background-color: #657fa4 !important;
  }

  .sm\:bg-blue-lighter {
    background-color: #a7b6cb !important;
  }

  .sm\:bg-blue-lightest {
    background-color: #e9edf2 !important;
  }

  .sm\:bg-orange-darkest {
    background-color: #4d290f !important;
  }

  .sm\:bg-orange-darker {
    background-color: #99521f !important;
  }

  .sm\:bg-orange-dark {
    background-color: #e67a2e !important;
  }

  .sm\:bg-orange {
    background-color: #f83 !important;
  }

  .sm\:bg-orange-light {
    background-color: #ffac70 !important;
  }

  .sm\:bg-orange-lighter {
    background-color: #ffcfad !important;
  }

  .sm\:bg-orange-lightest {
    background-color: #fff3eb !important;
  }

  .sm\:bg-gold-darkest {
    background-color: #301d18 !important;
  }

  .sm\:bg-gold-darker {
    background-color: #624031 !important;
  }

  .sm\:bg-gold-dark {
    background-color: #a77c4b !important;
  }

  .sm\:bg-gold {
    background-color: #b8915c !important;
  }

  .sm\:bg-gold-light {
    background-color: #c7aa7d !important;
  }

  .sm\:bg-gold-lighter {
    background-color: #dccbac !important;
  }

  .sm\:bg-gold-lightest {
    background-color: #ede5d4 !important;
  }

  .sm\:hover\:bg-transparent:hover {
    background-color: transparent !important;
  }

  .sm\:hover\:bg-black:hover {
    background-color: #22292f !important;
  }

  .sm\:hover\:bg-black-mdc:hover {
    background-color: #000 !important;
  }

  .sm\:hover\:bg-white:hover {
    background-color: #fff !important;
  }

  .sm\:hover\:bg-grey-darkest:hover {
    background-color: #414141 !important;
  }

  .sm\:hover\:bg-grey-darker:hover {
    background-color: #828282 !important;
  }

  .sm\:hover\:bg-grey-dark:hover {
    background-color: #c3c3c3 !important;
  }

  .sm\:hover\:bg-grey:hover {
    background-color: #d9d9d9 !important;
  }

  .sm\:hover\:bg-grey-light:hover {
    background-color: #e4e4e4 !important;
  }

  .sm\:hover\:bg-grey-lighter:hover {
    background-color: #f1f1f1 !important;
  }

  .sm\:hover\:bg-grey-lightest:hover {
    background-color: #fbfbfb !important;
  }

  .sm\:hover\:bg-grey-mdc:hover {
    background-color: #edf0f5 !important;
  }

  .sm\:hover\:bg-grey-mdc-70:hover {
    background-color: #707070 !important;
  }

  .sm\:hover\:bg-blue-darkest:hover {
    background-color: #0b1626 !important;
  }

  .sm\:hover\:bg-blue-darker:hover {
    background-color: #152b4b !important;
  }

  .sm\:hover\:bg-blue-dark:hover {
    background-color: #204171 !important;
  }

  .sm\:hover\:bg-blue:hover {
    background-color: #23487d !important;
  }

  .sm\:hover\:bg-blue-light:hover {
    background-color: #657fa4 !important;
  }

  .sm\:hover\:bg-blue-lighter:hover {
    background-color: #a7b6cb !important;
  }

  .sm\:hover\:bg-blue-lightest:hover {
    background-color: #e9edf2 !important;
  }

  .sm\:hover\:bg-orange-darkest:hover {
    background-color: #4d290f !important;
  }

  .sm\:hover\:bg-orange-darker:hover {
    background-color: #99521f !important;
  }

  .sm\:hover\:bg-orange-dark:hover {
    background-color: #e67a2e !important;
  }

  .sm\:hover\:bg-orange:hover {
    background-color: #f83 !important;
  }

  .sm\:hover\:bg-orange-light:hover {
    background-color: #ffac70 !important;
  }

  .sm\:hover\:bg-orange-lighter:hover {
    background-color: #ffcfad !important;
  }

  .sm\:hover\:bg-orange-lightest:hover {
    background-color: #fff3eb !important;
  }

  .sm\:hover\:bg-gold-darkest:hover {
    background-color: #301d18 !important;
  }

  .sm\:hover\:bg-gold-darker:hover {
    background-color: #624031 !important;
  }

  .sm\:hover\:bg-gold-dark:hover {
    background-color: #a77c4b !important;
  }

  .sm\:hover\:bg-gold:hover {
    background-color: #b8915c !important;
  }

  .sm\:hover\:bg-gold-light:hover {
    background-color: #c7aa7d !important;
  }

  .sm\:hover\:bg-gold-lighter:hover {
    background-color: #dccbac !important;
  }

  .sm\:hover\:bg-gold-lightest:hover {
    background-color: #ede5d4 !important;
  }

  .sm\:focus\:bg-transparent:focus {
    background-color: transparent !important;
  }

  .sm\:focus\:bg-black:focus {
    background-color: #22292f !important;
  }

  .sm\:focus\:bg-black-mdc:focus {
    background-color: #000 !important;
  }

  .sm\:focus\:bg-white:focus {
    background-color: #fff !important;
  }

  .sm\:focus\:bg-grey-darkest:focus {
    background-color: #414141 !important;
  }

  .sm\:focus\:bg-grey-darker:focus {
    background-color: #828282 !important;
  }

  .sm\:focus\:bg-grey-dark:focus {
    background-color: #c3c3c3 !important;
  }

  .sm\:focus\:bg-grey:focus {
    background-color: #d9d9d9 !important;
  }

  .sm\:focus\:bg-grey-light:focus {
    background-color: #e4e4e4 !important;
  }

  .sm\:focus\:bg-grey-lighter:focus {
    background-color: #f1f1f1 !important;
  }

  .sm\:focus\:bg-grey-lightest:focus {
    background-color: #fbfbfb !important;
  }

  .sm\:focus\:bg-grey-mdc:focus {
    background-color: #edf0f5 !important;
  }

  .sm\:focus\:bg-grey-mdc-70:focus {
    background-color: #707070 !important;
  }

  .sm\:focus\:bg-blue-darkest:focus {
    background-color: #0b1626 !important;
  }

  .sm\:focus\:bg-blue-darker:focus {
    background-color: #152b4b !important;
  }

  .sm\:focus\:bg-blue-dark:focus {
    background-color: #204171 !important;
  }

  .sm\:focus\:bg-blue:focus {
    background-color: #23487d !important;
  }

  .sm\:focus\:bg-blue-light:focus {
    background-color: #657fa4 !important;
  }

  .sm\:focus\:bg-blue-lighter:focus {
    background-color: #a7b6cb !important;
  }

  .sm\:focus\:bg-blue-lightest:focus {
    background-color: #e9edf2 !important;
  }

  .sm\:focus\:bg-orange-darkest:focus {
    background-color: #4d290f !important;
  }

  .sm\:focus\:bg-orange-darker:focus {
    background-color: #99521f !important;
  }

  .sm\:focus\:bg-orange-dark:focus {
    background-color: #e67a2e !important;
  }

  .sm\:focus\:bg-orange:focus {
    background-color: #f83 !important;
  }

  .sm\:focus\:bg-orange-light:focus {
    background-color: #ffac70 !important;
  }

  .sm\:focus\:bg-orange-lighter:focus {
    background-color: #ffcfad !important;
  }

  .sm\:focus\:bg-orange-lightest:focus {
    background-color: #fff3eb !important;
  }

  .sm\:focus\:bg-gold-darkest:focus {
    background-color: #301d18 !important;
  }

  .sm\:focus\:bg-gold-darker:focus {
    background-color: #624031 !important;
  }

  .sm\:focus\:bg-gold-dark:focus {
    background-color: #a77c4b !important;
  }

  .sm\:focus\:bg-gold:focus {
    background-color: #b8915c !important;
  }

  .sm\:focus\:bg-gold-light:focus {
    background-color: #c7aa7d !important;
  }

  .sm\:focus\:bg-gold-lighter:focus {
    background-color: #dccbac !important;
  }

  .sm\:focus\:bg-gold-lightest:focus {
    background-color: #ede5d4 !important;
  }

  .sm\:border-transparent {
    border-color: transparent !important;
  }

  .sm\:border-black {
    border-color: #22292f !important;
  }

  .sm\:border-black-mdc {
    border-color: #000 !important;
  }

  .sm\:border-white {
    border-color: #fff !important;
  }

  .sm\:border-grey-darkest {
    border-color: #414141 !important;
  }

  .sm\:border-grey-darker {
    border-color: #828282 !important;
  }

  .sm\:border-grey-dark {
    border-color: #c3c3c3 !important;
  }

  .sm\:border-grey {
    border-color: #d9d9d9 !important;
  }

  .sm\:border-grey-light {
    border-color: #e4e4e4 !important;
  }

  .sm\:border-grey-lighter {
    border-color: #f1f1f1 !important;
  }

  .sm\:border-grey-lightest {
    border-color: #fbfbfb !important;
  }

  .sm\:border-grey-mdc {
    border-color: #edf0f5 !important;
  }

  .sm\:border-grey-mdc-70 {
    border-color: #707070 !important;
  }

  .sm\:border-blue-darkest {
    border-color: #0b1626 !important;
  }

  .sm\:border-blue-darker {
    border-color: #152b4b !important;
  }

  .sm\:border-blue-dark {
    border-color: #204171 !important;
  }

  .sm\:border-blue {
    border-color: #23487d !important;
  }

  .sm\:border-blue-light {
    border-color: #657fa4 !important;
  }

  .sm\:border-blue-lighter {
    border-color: #a7b6cb !important;
  }

  .sm\:border-blue-lightest {
    border-color: #e9edf2 !important;
  }

  .sm\:border-orange-darkest {
    border-color: #4d290f !important;
  }

  .sm\:border-orange-darker {
    border-color: #99521f !important;
  }

  .sm\:border-orange-dark {
    border-color: #e67a2e !important;
  }

  .sm\:border-orange {
    border-color: #f83 !important;
  }

  .sm\:border-orange-light {
    border-color: #ffac70 !important;
  }

  .sm\:border-orange-lighter {
    border-color: #ffcfad !important;
  }

  .sm\:border-orange-lightest {
    border-color: #fff3eb !important;
  }

  .sm\:border-gold-darkest {
    border-color: #301d18 !important;
  }

  .sm\:border-gold-darker {
    border-color: #624031 !important;
  }

  .sm\:border-gold-dark {
    border-color: #a77c4b !important;
  }

  .sm\:border-gold {
    border-color: #b8915c !important;
  }

  .sm\:border-gold-light {
    border-color: #c7aa7d !important;
  }

  .sm\:border-gold-lighter {
    border-color: #dccbac !important;
  }

  .sm\:border-gold-lightest {
    border-color: #ede5d4 !important;
  }

  .sm\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }

  .sm\:hover\:border-black:hover {
    border-color: #22292f !important;
  }

  .sm\:hover\:border-black-mdc:hover {
    border-color: #000 !important;
  }

  .sm\:hover\:border-white:hover {
    border-color: #fff !important;
  }

  .sm\:hover\:border-grey-darkest:hover {
    border-color: #414141 !important;
  }

  .sm\:hover\:border-grey-darker:hover {
    border-color: #828282 !important;
  }

  .sm\:hover\:border-grey-dark:hover {
    border-color: #c3c3c3 !important;
  }

  .sm\:hover\:border-grey:hover {
    border-color: #d9d9d9 !important;
  }

  .sm\:hover\:border-grey-light:hover {
    border-color: #e4e4e4 !important;
  }

  .sm\:hover\:border-grey-lighter:hover {
    border-color: #f1f1f1 !important;
  }

  .sm\:hover\:border-grey-lightest:hover {
    border-color: #fbfbfb !important;
  }

  .sm\:hover\:border-grey-mdc:hover {
    border-color: #edf0f5 !important;
  }

  .sm\:hover\:border-grey-mdc-70:hover {
    border-color: #707070 !important;
  }

  .sm\:hover\:border-blue-darkest:hover {
    border-color: #0b1626 !important;
  }

  .sm\:hover\:border-blue-darker:hover {
    border-color: #152b4b !important;
  }

  .sm\:hover\:border-blue-dark:hover {
    border-color: #204171 !important;
  }

  .sm\:hover\:border-blue:hover {
    border-color: #23487d !important;
  }

  .sm\:hover\:border-blue-light:hover {
    border-color: #657fa4 !important;
  }

  .sm\:hover\:border-blue-lighter:hover {
    border-color: #a7b6cb !important;
  }

  .sm\:hover\:border-blue-lightest:hover {
    border-color: #e9edf2 !important;
  }

  .sm\:hover\:border-orange-darkest:hover {
    border-color: #4d290f !important;
  }

  .sm\:hover\:border-orange-darker:hover {
    border-color: #99521f !important;
  }

  .sm\:hover\:border-orange-dark:hover {
    border-color: #e67a2e !important;
  }

  .sm\:hover\:border-orange:hover {
    border-color: #f83 !important;
  }

  .sm\:hover\:border-orange-light:hover {
    border-color: #ffac70 !important;
  }

  .sm\:hover\:border-orange-lighter:hover {
    border-color: #ffcfad !important;
  }

  .sm\:hover\:border-orange-lightest:hover {
    border-color: #fff3eb !important;
  }

  .sm\:hover\:border-gold-darkest:hover {
    border-color: #301d18 !important;
  }

  .sm\:hover\:border-gold-darker:hover {
    border-color: #624031 !important;
  }

  .sm\:hover\:border-gold-dark:hover {
    border-color: #a77c4b !important;
  }

  .sm\:hover\:border-gold:hover {
    border-color: #b8915c !important;
  }

  .sm\:hover\:border-gold-light:hover {
    border-color: #c7aa7d !important;
  }

  .sm\:hover\:border-gold-lighter:hover {
    border-color: #dccbac !important;
  }

  .sm\:hover\:border-gold-lightest:hover {
    border-color: #ede5d4 !important;
  }

  .sm\:focus\:border-transparent:focus {
    border-color: transparent !important;
  }

  .sm\:focus\:border-black:focus {
    border-color: #22292f !important;
  }

  .sm\:focus\:border-black-mdc:focus {
    border-color: #000 !important;
  }

  .sm\:focus\:border-white:focus {
    border-color: #fff !important;
  }

  .sm\:focus\:border-grey-darkest:focus {
    border-color: #414141 !important;
  }

  .sm\:focus\:border-grey-darker:focus {
    border-color: #828282 !important;
  }

  .sm\:focus\:border-grey-dark:focus {
    border-color: #c3c3c3 !important;
  }

  .sm\:focus\:border-grey:focus {
    border-color: #d9d9d9 !important;
  }

  .sm\:focus\:border-grey-light:focus {
    border-color: #e4e4e4 !important;
  }

  .sm\:focus\:border-grey-lighter:focus {
    border-color: #f1f1f1 !important;
  }

  .sm\:focus\:border-grey-lightest:focus {
    border-color: #fbfbfb !important;
  }

  .sm\:focus\:border-grey-mdc:focus {
    border-color: #edf0f5 !important;
  }

  .sm\:focus\:border-grey-mdc-70:focus {
    border-color: #707070 !important;
  }

  .sm\:focus\:border-blue-darkest:focus {
    border-color: #0b1626 !important;
  }

  .sm\:focus\:border-blue-darker:focus {
    border-color: #152b4b !important;
  }

  .sm\:focus\:border-blue-dark:focus {
    border-color: #204171 !important;
  }

  .sm\:focus\:border-blue:focus {
    border-color: #23487d !important;
  }

  .sm\:focus\:border-blue-light:focus {
    border-color: #657fa4 !important;
  }

  .sm\:focus\:border-blue-lighter:focus {
    border-color: #a7b6cb !important;
  }

  .sm\:focus\:border-blue-lightest:focus {
    border-color: #e9edf2 !important;
  }

  .sm\:focus\:border-orange-darkest:focus {
    border-color: #4d290f !important;
  }

  .sm\:focus\:border-orange-darker:focus {
    border-color: #99521f !important;
  }

  .sm\:focus\:border-orange-dark:focus {
    border-color: #e67a2e !important;
  }

  .sm\:focus\:border-orange:focus {
    border-color: #f83 !important;
  }

  .sm\:focus\:border-orange-light:focus {
    border-color: #ffac70 !important;
  }

  .sm\:focus\:border-orange-lighter:focus {
    border-color: #ffcfad !important;
  }

  .sm\:focus\:border-orange-lightest:focus {
    border-color: #fff3eb !important;
  }

  .sm\:focus\:border-gold-darkest:focus {
    border-color: #301d18 !important;
  }

  .sm\:focus\:border-gold-darker:focus {
    border-color: #624031 !important;
  }

  .sm\:focus\:border-gold-dark:focus {
    border-color: #a77c4b !important;
  }

  .sm\:focus\:border-gold:focus {
    border-color: #b8915c !important;
  }

  .sm\:focus\:border-gold-light:focus {
    border-color: #c7aa7d !important;
  }

  .sm\:focus\:border-gold-lighter:focus {
    border-color: #dccbac !important;
  }

  .sm\:focus\:border-gold-lightest:focus {
    border-color: #ede5d4 !important;
  }

  .sm\:rounded-none {
    border-radius: 0 !important;
  }

  .sm\:rounded-sm {
    border-radius: .125rem !important;
  }

  .sm\:rounded {
    border-radius: .25rem !important;
  }

  .sm\:rounded-lg {
    border-radius: .5rem !important;
  }

  .sm\:rounded-full {
    border-radius: 9999px !important;
  }

  .sm\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .sm\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .sm\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .sm\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .sm\:rounded-t-sm {
    border-top-left-radius: .125rem !important;
    border-top-right-radius: .125rem !important;
  }

  .sm\:rounded-r-sm {
    border-top-right-radius: .125rem !important;
    border-bottom-right-radius: .125rem !important;
  }

  .sm\:rounded-b-sm {
    border-bottom-right-radius: .125rem !important;
    border-bottom-left-radius: .125rem !important;
  }

  .sm\:rounded-l-sm {
    border-top-left-radius: .125rem !important;
    border-bottom-left-radius: .125rem !important;
  }

  .sm\:rounded-t {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
  }

  .sm\:rounded-r {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
  }

  .sm\:rounded-b {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
  }

  .sm\:rounded-l {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
  }

  .sm\:rounded-t-lg {
    border-top-left-radius: .5rem !important;
    border-top-right-radius: .5rem !important;
  }

  .sm\:rounded-r-lg {
    border-top-right-radius: .5rem !important;
    border-bottom-right-radius: .5rem !important;
  }

  .sm\:rounded-b-lg {
    border-bottom-right-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
  }

  .sm\:rounded-l-lg {
    border-top-left-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
  }

  .sm\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .sm\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .sm\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .sm\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .sm\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .sm\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .sm\:rounded-tl-sm {
    border-top-left-radius: .125rem !important;
  }

  .sm\:rounded-tr-sm {
    border-top-right-radius: .125rem !important;
  }

  .sm\:rounded-br-sm {
    border-bottom-right-radius: .125rem !important;
  }

  .sm\:rounded-bl-sm {
    border-bottom-left-radius: .125rem !important;
  }

  .sm\:rounded-tl {
    border-top-left-radius: .25rem !important;
  }

  .sm\:rounded-tr {
    border-top-right-radius: .25rem !important;
  }

  .sm\:rounded-br {
    border-bottom-right-radius: .25rem !important;
  }

  .sm\:rounded-bl {
    border-bottom-left-radius: .25rem !important;
  }

  .sm\:rounded-tl-lg {
    border-top-left-radius: .5rem !important;
  }

  .sm\:rounded-tr-lg {
    border-top-right-radius: .5rem !important;
  }

  .sm\:rounded-br-lg {
    border-bottom-right-radius: .5rem !important;
  }

  .sm\:rounded-bl-lg {
    border-bottom-left-radius: .5rem !important;
  }

  .sm\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .sm\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .sm\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .sm\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:border-solid {
    border-style: solid !important;
  }

  .sm\:border-dashed {
    border-style: dashed !important;
  }

  .sm\:border-dotted {
    border-style: dotted !important;
  }

  .sm\:border-none {
    border-style: none !important;
  }

  .sm\:border-0 {
    border-width: 0 !important;
  }

  .sm\:border-2 {
    border-width: 2px !important;
  }

  .sm\:border-4 {
    border-width: 4px !important;
  }

  .sm\:border-8 {
    border-width: 8px !important;
  }

  .sm\:border {
    border-width: 1px !important;
  }

  .sm\:border-t-0 {
    border-top-width: 0 !important;
  }

  .sm\:border-r-0 {
    border-right-width: 0 !important;
  }

  .sm\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .sm\:border-l-0 {
    border-left-width: 0 !important;
  }

  .sm\:border-t-2 {
    border-top-width: 2px !important;
  }

  .sm\:border-r-2 {
    border-right-width: 2px !important;
  }

  .sm\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .sm\:border-l-2 {
    border-left-width: 2px !important;
  }

  .sm\:border-t-4 {
    border-top-width: 4px !important;
  }

  .sm\:border-r-4 {
    border-right-width: 4px !important;
  }

  .sm\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .sm\:border-l-4 {
    border-left-width: 4px !important;
  }

  .sm\:border-t-8 {
    border-top-width: 8px !important;
  }

  .sm\:border-r-8 {
    border-right-width: 8px !important;
  }

  .sm\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .sm\:border-l-8 {
    border-left-width: 8px !important;
  }

  .sm\:border-t {
    border-top-width: 1px !important;
  }

  .sm\:border-r {
    border-right-width: 1px !important;
  }

  .sm\:border-b {
    border-bottom-width: 1px !important;
  }

  .sm\:border-l {
    border-left-width: 1px !important;
  }

  .sm\:block {
    display: block !important;
  }

  .sm\:inline-block {
    display: inline-block !important;
  }

  .sm\:inline {
    display: inline !important;
  }

  .sm\:table {
    display: table !important;
  }

  .sm\:table-row {
    display: table-row !important;
  }

  .sm\:table-cell {
    display: table-cell !important;
  }

  .sm\:hidden {
    display: none !important;
  }

  .sm\:flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .sm\:inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .sm\:flex-row {
    flex-direction: row !important;
  }

  .sm\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .sm\:flex-col {
    flex-direction: column !important;
  }

  .sm\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .sm\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .sm\:items-start {
    align-items: flex-start !important;
  }

  .sm\:items-end {
    align-items: flex-end !important;
  }

  .sm\:items-center {
    align-items: center !important;
  }

  .sm\:items-baseline {
    align-items: baseline !important;
  }

  .sm\:items-stretch {
    align-items: stretch !important;
  }

  .sm\:self-auto {
    align-self: auto !important;
  }

  .sm\:self-start {
    align-self: flex-start !important;
  }

  .sm\:self-end {
    align-self: flex-end !important;
  }

  .sm\:self-center {
    align-self: center !important;
  }

  .sm\:self-stretch {
    align-self: stretch !important;
  }

  .sm\:justify-start {
    justify-content: flex-start !important;
  }

  .sm\:justify-end {
    justify-content: flex-end !important;
  }

  .sm\:justify-center {
    justify-content: center !important;
  }

  .sm\:justify-between {
    justify-content: space-between !important;
  }

  .sm\:justify-around {
    justify-content: space-around !important;
  }

  .sm\:content-center {
    align-content: center !important;
  }

  .sm\:content-start {
    align-content: flex-start !important;
  }

  .sm\:content-end {
    align-content: flex-end !important;
  }

  .sm\:content-between {
    align-content: space-between !important;
  }

  .sm\:content-around {
    align-content: space-around !important;
  }

  .sm\:flex-1 {
    flex: 1 1 0% !important;
  }

  .sm\:flex-auto {
    flex: 1 1 auto !important;
  }

  .sm\:flex-initial {
    flex: 0 1 auto !important;
  }

  .sm\:flex-none {
    flex: none !important;
  }

  .sm\:flex-grow {
    flex-grow: 1 !important;
  }

  .sm\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .sm\:flex-no-grow {
    flex-grow: 0 !important;
  }

  .sm\:flex-no-shrink {
    flex-shrink: 0 !important;
  }

  .sm\:font-hairline {
    font-weight: 100 !important;
  }

  .sm\:font-thin {
    font-weight: 200 !important;
  }

  .sm\:font-light {
    font-weight: 300 !important;
  }

  .sm\:font-normal {
    font-weight: 400 !important;
  }

  .sm\:font-medium {
    font-weight: 500 !important;
  }

  .sm\:font-semibold {
    font-weight: 600 !important;
  }

  .sm\:font-bold {
    font-weight: 700 !important;
  }

  .sm\:font-extrabold {
    font-weight: 800 !important;
  }

  .sm\:font-black {
    font-weight: 900 !important;
  }

  .sm\:hover\:font-hairline:hover {
    font-weight: 100 !important;
  }

  .sm\:hover\:font-thin:hover {
    font-weight: 200 !important;
  }

  .sm\:hover\:font-light:hover {
    font-weight: 300 !important;
  }

  .sm\:hover\:font-normal:hover {
    font-weight: 400 !important;
  }

  .sm\:hover\:font-medium:hover {
    font-weight: 500 !important;
  }

  .sm\:hover\:font-semibold:hover {
    font-weight: 600 !important;
  }

  .sm\:hover\:font-bold:hover {
    font-weight: 700 !important;
  }

  .sm\:hover\:font-extrabold:hover {
    font-weight: 800 !important;
  }

  .sm\:hover\:font-black:hover {
    font-weight: 900 !important;
  }

  .sm\:focus\:font-hairline:focus {
    font-weight: 100 !important;
  }

  .sm\:focus\:font-thin:focus {
    font-weight: 200 !important;
  }

  .sm\:focus\:font-light:focus {
    font-weight: 300 !important;
  }

  .sm\:focus\:font-normal:focus {
    font-weight: 400 !important;
  }

  .sm\:focus\:font-medium:focus {
    font-weight: 500 !important;
  }

  .sm\:focus\:font-semibold:focus {
    font-weight: 600 !important;
  }

  .sm\:focus\:font-bold:focus {
    font-weight: 700 !important;
  }

  .sm\:focus\:font-extrabold:focus {
    font-weight: 800 !important;
  }

  .sm\:focus\:font-black:focus {
    font-weight: 900 !important;
  }

  .sm\:m-0 {
    margin: 0 !important;
  }

  .sm\:m-1 {
    margin: .25rem !important;
  }

  .sm\:m-2 {
    margin: .5rem !important;
  }

  .sm\:m-3 {
    margin: .75rem !important;
  }

  .sm\:m-4 {
    margin: 1rem !important;
  }

  .sm\:m-5 {
    margin: 1.25rem !important;
  }

  .sm\:m-6 {
    margin: 1.5rem !important;
  }

  .sm\:m-8 {
    margin: 2rem !important;
  }

  .sm\:m-10 {
    margin: 2.5rem !important;
  }

  .sm\:m-12 {
    margin: 3rem !important;
  }

  .sm\:m-16 {
    margin: 4rem !important;
  }

  .sm\:m-20 {
    margin: 5rem !important;
  }

  .sm\:m-24 {
    margin: 6rem !important;
  }

  .sm\:m-32 {
    margin: 8rem !important;
  }

  .sm\:m-auto {
    margin: auto !important;
  }

  .sm\:m-px {
    margin: 1px !important;
  }

  .sm\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .sm\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .sm\:my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .sm\:mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .sm\:my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .sm\:mx-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .sm\:my-3 {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important;
  }

  .sm\:mx-3 {
    margin-left: .75rem !important;
    margin-right: .75rem !important;
  }

  .sm\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .sm\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .sm\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .sm\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .sm\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .sm\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .sm\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .sm\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .sm\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .sm\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .sm\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .sm\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .sm\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .sm\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .sm\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .sm\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .sm\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .sm\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .sm\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .sm\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .sm\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sm\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .sm\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .sm\:mt-0 {
    margin-top: 0 !important;
  }

  .sm\:mr-0 {
    margin-right: 0 !important;
  }

  .sm\:mb-0 {
    margin-bottom: 0 !important;
  }

  .sm\:ml-0 {
    margin-left: 0 !important;
  }

  .sm\:mt-1 {
    margin-top: .25rem !important;
  }

  .sm\:mr-1 {
    margin-right: .25rem !important;
  }

  .sm\:mb-1 {
    margin-bottom: .25rem !important;
  }

  .sm\:ml-1 {
    margin-left: .25rem !important;
  }

  .sm\:mt-2 {
    margin-top: .5rem !important;
  }

  .sm\:mr-2 {
    margin-right: .5rem !important;
  }

  .sm\:mb-2 {
    margin-bottom: .5rem !important;
  }

  .sm\:ml-2 {
    margin-left: .5rem !important;
  }

  .sm\:mt-3 {
    margin-top: .75rem !important;
  }

  .sm\:mr-3 {
    margin-right: .75rem !important;
  }

  .sm\:mb-3 {
    margin-bottom: .75rem !important;
  }

  .sm\:ml-3 {
    margin-left: .75rem !important;
  }

  .sm\:mt-4 {
    margin-top: 1rem !important;
  }

  .sm\:mr-4 {
    margin-right: 1rem !important;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .sm\:ml-4 {
    margin-left: 1rem !important;
  }

  .sm\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .sm\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .sm\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .sm\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .sm\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .sm\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .sm\:mt-8 {
    margin-top: 2rem !important;
  }

  .sm\:mr-8 {
    margin-right: 2rem !important;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .sm\:ml-8 {
    margin-left: 2rem !important;
  }

  .sm\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .sm\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .sm\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .sm\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .sm\:mt-12 {
    margin-top: 3rem !important;
  }

  .sm\:mr-12 {
    margin-right: 3rem !important;
  }

  .sm\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .sm\:ml-12 {
    margin-left: 3rem !important;
  }

  .sm\:mt-16 {
    margin-top: 4rem !important;
  }

  .sm\:mr-16 {
    margin-right: 4rem !important;
  }

  .sm\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .sm\:ml-16 {
    margin-left: 4rem !important;
  }

  .sm\:mt-20 {
    margin-top: 5rem !important;
  }

  .sm\:mr-20 {
    margin-right: 5rem !important;
  }

  .sm\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .sm\:ml-20 {
    margin-left: 5rem !important;
  }

  .sm\:mt-24 {
    margin-top: 6rem !important;
  }

  .sm\:mr-24 {
    margin-right: 6rem !important;
  }

  .sm\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .sm\:ml-24 {
    margin-left: 6rem !important;
  }

  .sm\:mt-32 {
    margin-top: 8rem !important;
  }

  .sm\:mr-32 {
    margin-right: 8rem !important;
  }

  .sm\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .sm\:ml-32 {
    margin-left: 8rem !important;
  }

  .sm\:mt-auto {
    margin-top: auto !important;
  }

  .sm\:mr-auto {
    margin-right: auto !important;
  }

  .sm\:mb-auto {
    margin-bottom: auto !important;
  }

  .sm\:ml-auto {
    margin-left: auto !important;
  }

  .sm\:mt-px {
    margin-top: 1px !important;
  }

  .sm\:mr-px {
    margin-right: 1px !important;
  }

  .sm\:mb-px {
    margin-bottom: 1px !important;
  }

  .sm\:ml-px {
    margin-left: 1px !important;
  }

  .sm\:p-0 {
    padding: 0 !important;
  }

  .sm\:p-1 {
    padding: .25rem !important;
  }

  .sm\:p-2 {
    padding: .5rem !important;
  }

  .sm\:p-3 {
    padding: .75rem !important;
  }

  .sm\:p-4 {
    padding: 1rem !important;
  }

  .sm\:p-5 {
    padding: 1.25rem !important;
  }

  .sm\:p-6 {
    padding: 1.5rem !important;
  }

  .sm\:p-8 {
    padding: 2rem !important;
  }

  .sm\:p-10 {
    padding: 2.5rem !important;
  }

  .sm\:p-12 {
    padding: 3rem !important;
  }

  .sm\:p-16 {
    padding: 4rem !important;
  }

  .sm\:p-20 {
    padding: 5rem !important;
  }

  .sm\:p-24 {
    padding: 6rem !important;
  }

  .sm\:p-32 {
    padding: 8rem !important;
  }

  .sm\:p-px {
    padding: 1px !important;
  }

  .sm\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .sm\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sm\:py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .sm\:px-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .sm\:py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .sm\:px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .sm\:py-3 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
  }

  .sm\:px-3 {
    padding-left: .75rem !important;
    padding-right: .75rem !important;
  }

  .sm\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .sm\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .sm\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .sm\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .sm\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .sm\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .sm\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .sm\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .sm\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .sm\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .sm\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .sm\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .sm\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .sm\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .sm\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .sm\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .sm\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .sm\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .sm\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .sm\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .sm\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .sm\:pt-0 {
    padding-top: 0 !important;
  }

  .sm\:pr-0 {
    padding-right: 0 !important;
  }

  .sm\:pb-0 {
    padding-bottom: 0 !important;
  }

  .sm\:pl-0 {
    padding-left: 0 !important;
  }

  .sm\:pt-1 {
    padding-top: .25rem !important;
  }

  .sm\:pr-1 {
    padding-right: .25rem !important;
  }

  .sm\:pb-1 {
    padding-bottom: .25rem !important;
  }

  .sm\:pl-1 {
    padding-left: .25rem !important;
  }

  .sm\:pt-2 {
    padding-top: .5rem !important;
  }

  .sm\:pr-2 {
    padding-right: .5rem !important;
  }

  .sm\:pb-2 {
    padding-bottom: .5rem !important;
  }

  .sm\:pl-2 {
    padding-left: .5rem !important;
  }

  .sm\:pt-3 {
    padding-top: .75rem !important;
  }

  .sm\:pr-3 {
    padding-right: .75rem !important;
  }

  .sm\:pb-3 {
    padding-bottom: .75rem !important;
  }

  .sm\:pl-3 {
    padding-left: .75rem !important;
  }

  .sm\:pt-4 {
    padding-top: 1rem !important;
  }

  .sm\:pr-4 {
    padding-right: 1rem !important;
  }

  .sm\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .sm\:pl-4 {
    padding-left: 1rem !important;
  }

  .sm\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .sm\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .sm\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .sm\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .sm\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .sm\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .sm\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .sm\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .sm\:pt-8 {
    padding-top: 2rem !important;
  }

  .sm\:pr-8 {
    padding-right: 2rem !important;
  }

  .sm\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .sm\:pl-8 {
    padding-left: 2rem !important;
  }

  .sm\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .sm\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .sm\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .sm\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .sm\:pt-12 {
    padding-top: 3rem !important;
  }

  .sm\:pr-12 {
    padding-right: 3rem !important;
  }

  .sm\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .sm\:pl-12 {
    padding-left: 3rem !important;
  }

  .sm\:pt-16 {
    padding-top: 4rem !important;
  }

  .sm\:pr-16 {
    padding-right: 4rem !important;
  }

  .sm\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .sm\:pl-16 {
    padding-left: 4rem !important;
  }

  .sm\:pt-20 {
    padding-top: 5rem !important;
  }

  .sm\:pr-20 {
    padding-right: 5rem !important;
  }

  .sm\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .sm\:pl-20 {
    padding-left: 5rem !important;
  }

  .sm\:pt-24 {
    padding-top: 6rem !important;
  }

  .sm\:pr-24 {
    padding-right: 6rem !important;
  }

  .sm\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .sm\:pl-24 {
    padding-left: 6rem !important;
  }

  .sm\:pt-32 {
    padding-top: 8rem !important;
  }

  .sm\:pr-32 {
    padding-right: 8rem !important;
  }

  .sm\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .sm\:pl-32 {
    padding-left: 8rem !important;
  }

  .sm\:pt-px {
    padding-top: 1px !important;
  }

  .sm\:pr-px {
    padding-right: 1px !important;
  }

  .sm\:pb-px {
    padding-bottom: 1px !important;
  }

  .sm\:pl-px {
    padding-left: 1px !important;
  }

  .sm\:text-left {
    text-align: left !important;
  }

  .sm\:text-center {
    text-align: center !important;
  }

  .sm\:text-right {
    text-align: right !important;
  }

  .sm\:text-justify {
    text-align: justify !important;
  }

  .sm\:text-transparent {
    color: transparent !important;
  }

  .sm\:text-black {
    color: #22292f !important;
  }

  .sm\:text-black-mdc {
    color: #000 !important;
  }

  .sm\:text-white {
    color: #fff !important;
  }

  .sm\:text-grey-darkest {
    color: #414141 !important;
  }

  .sm\:text-grey-darker {
    color: #828282 !important;
  }

  .sm\:text-grey-dark {
    color: #c3c3c3 !important;
  }

  .sm\:text-grey {
    color: #d9d9d9 !important;
  }

  .sm\:text-grey-light {
    color: #e4e4e4 !important;
  }

  .sm\:text-grey-lighter {
    color: #f1f1f1 !important;
  }

  .sm\:text-grey-lightest {
    color: #fbfbfb !important;
  }

  .sm\:text-grey-mdc {
    color: #edf0f5 !important;
  }

  .sm\:text-grey-mdc-70 {
    color: #707070 !important;
  }

  .sm\:text-blue-darkest {
    color: #0b1626 !important;
  }

  .sm\:text-blue-darker {
    color: #152b4b !important;
  }

  .sm\:text-blue-dark {
    color: #204171 !important;
  }

  .sm\:text-blue {
    color: #23487d !important;
  }

  .sm\:text-blue-light {
    color: #657fa4 !important;
  }

  .sm\:text-blue-lighter {
    color: #a7b6cb !important;
  }

  .sm\:text-blue-lightest {
    color: #e9edf2 !important;
  }

  .sm\:text-orange-darkest {
    color: #4d290f !important;
  }

  .sm\:text-orange-darker {
    color: #99521f !important;
  }

  .sm\:text-orange-dark {
    color: #e67a2e !important;
  }

  .sm\:text-orange {
    color: #f83 !important;
  }

  .sm\:text-orange-light {
    color: #ffac70 !important;
  }

  .sm\:text-orange-lighter {
    color: #ffcfad !important;
  }

  .sm\:text-orange-lightest {
    color: #fff3eb !important;
  }

  .sm\:text-gold-darkest {
    color: #301d18 !important;
  }

  .sm\:text-gold-darker {
    color: #624031 !important;
  }

  .sm\:text-gold-dark {
    color: #a77c4b !important;
  }

  .sm\:text-gold {
    color: #b8915c !important;
  }

  .sm\:text-gold-light {
    color: #c7aa7d !important;
  }

  .sm\:text-gold-lighter {
    color: #dccbac !important;
  }

  .sm\:text-gold-lightest {
    color: #ede5d4 !important;
  }

  .sm\:hover\:text-transparent:hover {
    color: transparent !important;
  }

  .sm\:hover\:text-black:hover {
    color: #22292f !important;
  }

  .sm\:hover\:text-black-mdc:hover {
    color: #000 !important;
  }

  .sm\:hover\:text-white:hover {
    color: #fff !important;
  }

  .sm\:hover\:text-grey-darkest:hover {
    color: #414141 !important;
  }

  .sm\:hover\:text-grey-darker:hover {
    color: #828282 !important;
  }

  .sm\:hover\:text-grey-dark:hover {
    color: #c3c3c3 !important;
  }

  .sm\:hover\:text-grey:hover {
    color: #d9d9d9 !important;
  }

  .sm\:hover\:text-grey-light:hover {
    color: #e4e4e4 !important;
  }

  .sm\:hover\:text-grey-lighter:hover {
    color: #f1f1f1 !important;
  }

  .sm\:hover\:text-grey-lightest:hover {
    color: #fbfbfb !important;
  }

  .sm\:hover\:text-grey-mdc:hover {
    color: #edf0f5 !important;
  }

  .sm\:hover\:text-grey-mdc-70:hover {
    color: #707070 !important;
  }

  .sm\:hover\:text-blue-darkest:hover {
    color: #0b1626 !important;
  }

  .sm\:hover\:text-blue-darker:hover {
    color: #152b4b !important;
  }

  .sm\:hover\:text-blue-dark:hover {
    color: #204171 !important;
  }

  .sm\:hover\:text-blue:hover {
    color: #23487d !important;
  }

  .sm\:hover\:text-blue-light:hover {
    color: #657fa4 !important;
  }

  .sm\:hover\:text-blue-lighter:hover {
    color: #a7b6cb !important;
  }

  .sm\:hover\:text-blue-lightest:hover {
    color: #e9edf2 !important;
  }

  .sm\:hover\:text-orange-darkest:hover {
    color: #4d290f !important;
  }

  .sm\:hover\:text-orange-darker:hover {
    color: #99521f !important;
  }

  .sm\:hover\:text-orange-dark:hover {
    color: #e67a2e !important;
  }

  .sm\:hover\:text-orange:hover {
    color: #f83 !important;
  }

  .sm\:hover\:text-orange-light:hover {
    color: #ffac70 !important;
  }

  .sm\:hover\:text-orange-lighter:hover {
    color: #ffcfad !important;
  }

  .sm\:hover\:text-orange-lightest:hover {
    color: #fff3eb !important;
  }

  .sm\:hover\:text-gold-darkest:hover {
    color: #301d18 !important;
  }

  .sm\:hover\:text-gold-darker:hover {
    color: #624031 !important;
  }

  .sm\:hover\:text-gold-dark:hover {
    color: #a77c4b !important;
  }

  .sm\:hover\:text-gold:hover {
    color: #b8915c !important;
  }

  .sm\:hover\:text-gold-light:hover {
    color: #c7aa7d !important;
  }

  .sm\:hover\:text-gold-lighter:hover {
    color: #dccbac !important;
  }

  .sm\:hover\:text-gold-lightest:hover {
    color: #ede5d4 !important;
  }

  .sm\:focus\:text-transparent:focus {
    color: transparent !important;
  }

  .sm\:focus\:text-black:focus {
    color: #22292f !important;
  }

  .sm\:focus\:text-black-mdc:focus {
    color: #000 !important;
  }

  .sm\:focus\:text-white:focus {
    color: #fff !important;
  }

  .sm\:focus\:text-grey-darkest:focus {
    color: #414141 !important;
  }

  .sm\:focus\:text-grey-darker:focus {
    color: #828282 !important;
  }

  .sm\:focus\:text-grey-dark:focus {
    color: #c3c3c3 !important;
  }

  .sm\:focus\:text-grey:focus {
    color: #d9d9d9 !important;
  }

  .sm\:focus\:text-grey-light:focus {
    color: #e4e4e4 !important;
  }

  .sm\:focus\:text-grey-lighter:focus {
    color: #f1f1f1 !important;
  }

  .sm\:focus\:text-grey-lightest:focus {
    color: #fbfbfb !important;
  }

  .sm\:focus\:text-grey-mdc:focus {
    color: #edf0f5 !important;
  }

  .sm\:focus\:text-grey-mdc-70:focus {
    color: #707070 !important;
  }

  .sm\:focus\:text-blue-darkest:focus {
    color: #0b1626 !important;
  }

  .sm\:focus\:text-blue-darker:focus {
    color: #152b4b !important;
  }

  .sm\:focus\:text-blue-dark:focus {
    color: #204171 !important;
  }

  .sm\:focus\:text-blue:focus {
    color: #23487d !important;
  }

  .sm\:focus\:text-blue-light:focus {
    color: #657fa4 !important;
  }

  .sm\:focus\:text-blue-lighter:focus {
    color: #a7b6cb !important;
  }

  .sm\:focus\:text-blue-lightest:focus {
    color: #e9edf2 !important;
  }

  .sm\:focus\:text-orange-darkest:focus {
    color: #4d290f !important;
  }

  .sm\:focus\:text-orange-darker:focus {
    color: #99521f !important;
  }

  .sm\:focus\:text-orange-dark:focus {
    color: #e67a2e !important;
  }

  .sm\:focus\:text-orange:focus {
    color: #f83 !important;
  }

  .sm\:focus\:text-orange-light:focus {
    color: #ffac70 !important;
  }

  .sm\:focus\:text-orange-lighter:focus {
    color: #ffcfad !important;
  }

  .sm\:focus\:text-orange-lightest:focus {
    color: #fff3eb !important;
  }

  .sm\:focus\:text-gold-darkest:focus {
    color: #301d18 !important;
  }

  .sm\:focus\:text-gold-darker:focus {
    color: #624031 !important;
  }

  .sm\:focus\:text-gold-dark:focus {
    color: #a77c4b !important;
  }

  .sm\:focus\:text-gold:focus {
    color: #b8915c !important;
  }

  .sm\:focus\:text-gold-light:focus {
    color: #c7aa7d !important;
  }

  .sm\:focus\:text-gold-lighter:focus {
    color: #dccbac !important;
  }

  .sm\:focus\:text-gold-lightest:focus {
    color: #ede5d4 !important;
  }

  .sm\:text-xs {
    font-size: .75rem !important;
  }

  .sm\:text-sm {
    font-size: .875rem !important;
  }

  .sm\:text-base {
    font-size: 1rem !important;
  }

  .sm\:text-lg {
    font-size: 1.125rem !important;
  }

  .sm\:text-xl {
    font-size: 1.25rem !important;
  }

  .sm\:text-2xl {
    font-size: 1.5rem !important;
  }

  .sm\:text-3xl {
    font-size: 1.875rem !important;
  }

  .sm\:text-4xl {
    font-size: 2.25rem !important;
  }

  .sm\:text-5xl {
    font-size: 3rem !important;
  }

  .sm\:italic {
    font-style: italic !important;
  }

  .sm\:roman {
    font-style: normal !important;
  }

  .sm\:uppercase {
    text-transform: uppercase !important;
  }

  .sm\:lowercase {
    text-transform: lowercase !important;
  }

  .sm\:capitalize {
    text-transform: capitalize !important;
  }

  .sm\:normal-case {
    text-transform: none !important;
  }

  .sm\:underline {
    text-decoration: underline !important;
  }

  .sm\:line-through {
    text-decoration: line-through !important;
  }

  .sm\:no-underline {
    text-decoration: none !important;
  }

  .sm\:antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .sm\:subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .sm\:hover\:italic:hover {
    font-style: italic !important;
  }

  .sm\:hover\:roman:hover {
    font-style: normal !important;
  }

  .sm\:hover\:uppercase:hover {
    text-transform: uppercase !important;
  }

  .sm\:hover\:lowercase:hover {
    text-transform: lowercase !important;
  }

  .sm\:hover\:capitalize:hover {
    text-transform: capitalize !important;
  }

  .sm\:hover\:normal-case:hover {
    text-transform: none !important;
  }

  .sm\:hover\:underline:hover {
    text-decoration: underline !important;
  }

  .sm\:hover\:line-through:hover {
    text-decoration: line-through !important;
  }

  .sm\:hover\:no-underline:hover {
    text-decoration: none !important;
  }

  .sm\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .sm\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .sm\:focus\:italic:focus {
    font-style: italic !important;
  }

  .sm\:focus\:roman:focus {
    font-style: normal !important;
  }

  .sm\:focus\:uppercase:focus {
    text-transform: uppercase !important;
  }

  .sm\:focus\:lowercase:focus {
    text-transform: lowercase !important;
  }

  .sm\:focus\:capitalize:focus {
    text-transform: capitalize !important;
  }

  .sm\:focus\:normal-case:focus {
    text-transform: none !important;
  }

  .sm\:focus\:underline:focus {
    text-decoration: underline !important;
  }

  .sm\:focus\:line-through:focus {
    text-decoration: line-through !important;
  }

  .sm\:focus\:no-underline:focus {
    text-decoration: none !important;
  }

  .sm\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .sm\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .sm\:w-1 {
    width: .25rem !important;
  }

  .sm\:w-2 {
    width: .5rem !important;
  }

  .sm\:w-3 {
    width: .75rem !important;
  }

  .sm\:w-4 {
    width: 1rem !important;
  }

  .sm\:w-5 {
    width: 1.25rem !important;
  }

  .sm\:w-6 {
    width: 1.5rem !important;
  }

  .sm\:w-8 {
    width: 2rem !important;
  }

  .sm\:w-10 {
    width: 2.5rem !important;
  }

  .sm\:w-12 {
    width: 3rem !important;
  }

  .sm\:w-16 {
    width: 4rem !important;
  }

  .sm\:w-24 {
    width: 6rem !important;
  }

  .sm\:w-32 {
    width: 8rem !important;
  }

  .sm\:w-48 {
    width: 12rem !important;
  }

  .sm\:w-64 {
    width: 16rem !important;
  }

  .sm\:w-auto {
    width: auto !important;
  }

  .sm\:w-px {
    width: 1px !important;
  }

  .sm\:w-1\/2 {
    width: 50% !important;
  }

  .sm\:w-1\/3 {
    width: 33.33333% !important;
  }

  .sm\:w-2\/3 {
    width: 66.66667% !important;
  }

  .sm\:w-1\/4 {
    width: 25% !important;
  }

  .sm\:w-3\/4 {
    width: 75% !important;
  }

  .sm\:w-1\/5 {
    width: 20% !important;
  }

  .sm\:w-2\/5 {
    width: 40% !important;
  }

  .sm\:w-3\/5 {
    width: 60% !important;
  }

  .sm\:w-4\/5 {
    width: 80% !important;
  }

  .sm\:w-1\/6 {
    width: 16.66667% !important;
  }

  .sm\:w-5\/6 {
    width: 83.33333% !important;
  }

  .sm\:w-full {
    width: 100% !important;
  }

  .sm\:w-screen {
    width: 100vw !important;
  }
}

@media (min-width: 768px) {
  .md\:bg-transparent {
    background-color: transparent !important;
  }

  .md\:bg-black {
    background-color: #22292f !important;
  }

  .md\:bg-black-mdc {
    background-color: #000 !important;
  }

  .md\:bg-white {
    background-color: #fff !important;
  }

  .md\:bg-grey-darkest {
    background-color: #414141 !important;
  }

  .md\:bg-grey-darker {
    background-color: #828282 !important;
  }

  .md\:bg-grey-dark {
    background-color: #c3c3c3 !important;
  }

  .md\:bg-grey {
    background-color: #d9d9d9 !important;
  }

  .md\:bg-grey-light {
    background-color: #e4e4e4 !important;
  }

  .md\:bg-grey-lighter {
    background-color: #f1f1f1 !important;
  }

  .md\:bg-grey-lightest {
    background-color: #fbfbfb !important;
  }

  .md\:bg-grey-mdc {
    background-color: #edf0f5 !important;
  }

  .md\:bg-grey-mdc-70 {
    background-color: #707070 !important;
  }

  .md\:bg-blue-darkest {
    background-color: #0b1626 !important;
  }

  .md\:bg-blue-darker {
    background-color: #152b4b !important;
  }

  .md\:bg-blue-dark {
    background-color: #204171 !important;
  }

  .md\:bg-blue {
    background-color: #23487d !important;
  }

  .md\:bg-blue-light {
    background-color: #657fa4 !important;
  }

  .md\:bg-blue-lighter {
    background-color: #a7b6cb !important;
  }

  .md\:bg-blue-lightest {
    background-color: #e9edf2 !important;
  }

  .md\:bg-orange-darkest {
    background-color: #4d290f !important;
  }

  .md\:bg-orange-darker {
    background-color: #99521f !important;
  }

  .md\:bg-orange-dark {
    background-color: #e67a2e !important;
  }

  .md\:bg-orange {
    background-color: #f83 !important;
  }

  .md\:bg-orange-light {
    background-color: #ffac70 !important;
  }

  .md\:bg-orange-lighter {
    background-color: #ffcfad !important;
  }

  .md\:bg-orange-lightest {
    background-color: #fff3eb !important;
  }

  .md\:bg-gold-darkest {
    background-color: #301d18 !important;
  }

  .md\:bg-gold-darker {
    background-color: #624031 !important;
  }

  .md\:bg-gold-dark {
    background-color: #a77c4b !important;
  }

  .md\:bg-gold {
    background-color: #b8915c !important;
  }

  .md\:bg-gold-light {
    background-color: #c7aa7d !important;
  }

  .md\:bg-gold-lighter {
    background-color: #dccbac !important;
  }

  .md\:bg-gold-lightest {
    background-color: #ede5d4 !important;
  }

  .md\:hover\:bg-transparent:hover {
    background-color: transparent !important;
  }

  .md\:hover\:bg-black:hover {
    background-color: #22292f !important;
  }

  .md\:hover\:bg-black-mdc:hover {
    background-color: #000 !important;
  }

  .md\:hover\:bg-white:hover {
    background-color: #fff !important;
  }

  .md\:hover\:bg-grey-darkest:hover {
    background-color: #414141 !important;
  }

  .md\:hover\:bg-grey-darker:hover {
    background-color: #828282 !important;
  }

  .md\:hover\:bg-grey-dark:hover {
    background-color: #c3c3c3 !important;
  }

  .md\:hover\:bg-grey:hover {
    background-color: #d9d9d9 !important;
  }

  .md\:hover\:bg-grey-light:hover {
    background-color: #e4e4e4 !important;
  }

  .md\:hover\:bg-grey-lighter:hover {
    background-color: #f1f1f1 !important;
  }

  .md\:hover\:bg-grey-lightest:hover {
    background-color: #fbfbfb !important;
  }

  .md\:hover\:bg-grey-mdc:hover {
    background-color: #edf0f5 !important;
  }

  .md\:hover\:bg-grey-mdc-70:hover {
    background-color: #707070 !important;
  }

  .md\:hover\:bg-blue-darkest:hover {
    background-color: #0b1626 !important;
  }

  .md\:hover\:bg-blue-darker:hover {
    background-color: #152b4b !important;
  }

  .md\:hover\:bg-blue-dark:hover {
    background-color: #204171 !important;
  }

  .md\:hover\:bg-blue:hover {
    background-color: #23487d !important;
  }

  .md\:hover\:bg-blue-light:hover {
    background-color: #657fa4 !important;
  }

  .md\:hover\:bg-blue-lighter:hover {
    background-color: #a7b6cb !important;
  }

  .md\:hover\:bg-blue-lightest:hover {
    background-color: #e9edf2 !important;
  }

  .md\:hover\:bg-orange-darkest:hover {
    background-color: #4d290f !important;
  }

  .md\:hover\:bg-orange-darker:hover {
    background-color: #99521f !important;
  }

  .md\:hover\:bg-orange-dark:hover {
    background-color: #e67a2e !important;
  }

  .md\:hover\:bg-orange:hover {
    background-color: #f83 !important;
  }

  .md\:hover\:bg-orange-light:hover {
    background-color: #ffac70 !important;
  }

  .md\:hover\:bg-orange-lighter:hover {
    background-color: #ffcfad !important;
  }

  .md\:hover\:bg-orange-lightest:hover {
    background-color: #fff3eb !important;
  }

  .md\:hover\:bg-gold-darkest:hover {
    background-color: #301d18 !important;
  }

  .md\:hover\:bg-gold-darker:hover {
    background-color: #624031 !important;
  }

  .md\:hover\:bg-gold-dark:hover {
    background-color: #a77c4b !important;
  }

  .md\:hover\:bg-gold:hover {
    background-color: #b8915c !important;
  }

  .md\:hover\:bg-gold-light:hover {
    background-color: #c7aa7d !important;
  }

  .md\:hover\:bg-gold-lighter:hover {
    background-color: #dccbac !important;
  }

  .md\:hover\:bg-gold-lightest:hover {
    background-color: #ede5d4 !important;
  }

  .md\:focus\:bg-transparent:focus {
    background-color: transparent !important;
  }

  .md\:focus\:bg-black:focus {
    background-color: #22292f !important;
  }

  .md\:focus\:bg-black-mdc:focus {
    background-color: #000 !important;
  }

  .md\:focus\:bg-white:focus {
    background-color: #fff !important;
  }

  .md\:focus\:bg-grey-darkest:focus {
    background-color: #414141 !important;
  }

  .md\:focus\:bg-grey-darker:focus {
    background-color: #828282 !important;
  }

  .md\:focus\:bg-grey-dark:focus {
    background-color: #c3c3c3 !important;
  }

  .md\:focus\:bg-grey:focus {
    background-color: #d9d9d9 !important;
  }

  .md\:focus\:bg-grey-light:focus {
    background-color: #e4e4e4 !important;
  }

  .md\:focus\:bg-grey-lighter:focus {
    background-color: #f1f1f1 !important;
  }

  .md\:focus\:bg-grey-lightest:focus {
    background-color: #fbfbfb !important;
  }

  .md\:focus\:bg-grey-mdc:focus {
    background-color: #edf0f5 !important;
  }

  .md\:focus\:bg-grey-mdc-70:focus {
    background-color: #707070 !important;
  }

  .md\:focus\:bg-blue-darkest:focus {
    background-color: #0b1626 !important;
  }

  .md\:focus\:bg-blue-darker:focus {
    background-color: #152b4b !important;
  }

  .md\:focus\:bg-blue-dark:focus {
    background-color: #204171 !important;
  }

  .md\:focus\:bg-blue:focus {
    background-color: #23487d !important;
  }

  .md\:focus\:bg-blue-light:focus {
    background-color: #657fa4 !important;
  }

  .md\:focus\:bg-blue-lighter:focus {
    background-color: #a7b6cb !important;
  }

  .md\:focus\:bg-blue-lightest:focus {
    background-color: #e9edf2 !important;
  }

  .md\:focus\:bg-orange-darkest:focus {
    background-color: #4d290f !important;
  }

  .md\:focus\:bg-orange-darker:focus {
    background-color: #99521f !important;
  }

  .md\:focus\:bg-orange-dark:focus {
    background-color: #e67a2e !important;
  }

  .md\:focus\:bg-orange:focus {
    background-color: #f83 !important;
  }

  .md\:focus\:bg-orange-light:focus {
    background-color: #ffac70 !important;
  }

  .md\:focus\:bg-orange-lighter:focus {
    background-color: #ffcfad !important;
  }

  .md\:focus\:bg-orange-lightest:focus {
    background-color: #fff3eb !important;
  }

  .md\:focus\:bg-gold-darkest:focus {
    background-color: #301d18 !important;
  }

  .md\:focus\:bg-gold-darker:focus {
    background-color: #624031 !important;
  }

  .md\:focus\:bg-gold-dark:focus {
    background-color: #a77c4b !important;
  }

  .md\:focus\:bg-gold:focus {
    background-color: #b8915c !important;
  }

  .md\:focus\:bg-gold-light:focus {
    background-color: #c7aa7d !important;
  }

  .md\:focus\:bg-gold-lighter:focus {
    background-color: #dccbac !important;
  }

  .md\:focus\:bg-gold-lightest:focus {
    background-color: #ede5d4 !important;
  }

  .md\:border-transparent {
    border-color: transparent !important;
  }

  .md\:border-black {
    border-color: #22292f !important;
  }

  .md\:border-black-mdc {
    border-color: #000 !important;
  }

  .md\:border-white {
    border-color: #fff !important;
  }

  .md\:border-grey-darkest {
    border-color: #414141 !important;
  }

  .md\:border-grey-darker {
    border-color: #828282 !important;
  }

  .md\:border-grey-dark {
    border-color: #c3c3c3 !important;
  }

  .md\:border-grey {
    border-color: #d9d9d9 !important;
  }

  .md\:border-grey-light {
    border-color: #e4e4e4 !important;
  }

  .md\:border-grey-lighter {
    border-color: #f1f1f1 !important;
  }

  .md\:border-grey-lightest {
    border-color: #fbfbfb !important;
  }

  .md\:border-grey-mdc {
    border-color: #edf0f5 !important;
  }

  .md\:border-grey-mdc-70 {
    border-color: #707070 !important;
  }

  .md\:border-blue-darkest {
    border-color: #0b1626 !important;
  }

  .md\:border-blue-darker {
    border-color: #152b4b !important;
  }

  .md\:border-blue-dark {
    border-color: #204171 !important;
  }

  .md\:border-blue {
    border-color: #23487d !important;
  }

  .md\:border-blue-light {
    border-color: #657fa4 !important;
  }

  .md\:border-blue-lighter {
    border-color: #a7b6cb !important;
  }

  .md\:border-blue-lightest {
    border-color: #e9edf2 !important;
  }

  .md\:border-orange-darkest {
    border-color: #4d290f !important;
  }

  .md\:border-orange-darker {
    border-color: #99521f !important;
  }

  .md\:border-orange-dark {
    border-color: #e67a2e !important;
  }

  .md\:border-orange {
    border-color: #f83 !important;
  }

  .md\:border-orange-light {
    border-color: #ffac70 !important;
  }

  .md\:border-orange-lighter {
    border-color: #ffcfad !important;
  }

  .md\:border-orange-lightest {
    border-color: #fff3eb !important;
  }

  .md\:border-gold-darkest {
    border-color: #301d18 !important;
  }

  .md\:border-gold-darker {
    border-color: #624031 !important;
  }

  .md\:border-gold-dark {
    border-color: #a77c4b !important;
  }

  .md\:border-gold {
    border-color: #b8915c !important;
  }

  .md\:border-gold-light {
    border-color: #c7aa7d !important;
  }

  .md\:border-gold-lighter {
    border-color: #dccbac !important;
  }

  .md\:border-gold-lightest {
    border-color: #ede5d4 !important;
  }

  .md\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }

  .md\:hover\:border-black:hover {
    border-color: #22292f !important;
  }

  .md\:hover\:border-black-mdc:hover {
    border-color: #000 !important;
  }

  .md\:hover\:border-white:hover {
    border-color: #fff !important;
  }

  .md\:hover\:border-grey-darkest:hover {
    border-color: #414141 !important;
  }

  .md\:hover\:border-grey-darker:hover {
    border-color: #828282 !important;
  }

  .md\:hover\:border-grey-dark:hover {
    border-color: #c3c3c3 !important;
  }

  .md\:hover\:border-grey:hover {
    border-color: #d9d9d9 !important;
  }

  .md\:hover\:border-grey-light:hover {
    border-color: #e4e4e4 !important;
  }

  .md\:hover\:border-grey-lighter:hover {
    border-color: #f1f1f1 !important;
  }

  .md\:hover\:border-grey-lightest:hover {
    border-color: #fbfbfb !important;
  }

  .md\:hover\:border-grey-mdc:hover {
    border-color: #edf0f5 !important;
  }

  .md\:hover\:border-grey-mdc-70:hover {
    border-color: #707070 !important;
  }

  .md\:hover\:border-blue-darkest:hover {
    border-color: #0b1626 !important;
  }

  .md\:hover\:border-blue-darker:hover {
    border-color: #152b4b !important;
  }

  .md\:hover\:border-blue-dark:hover {
    border-color: #204171 !important;
  }

  .md\:hover\:border-blue:hover {
    border-color: #23487d !important;
  }

  .md\:hover\:border-blue-light:hover {
    border-color: #657fa4 !important;
  }

  .md\:hover\:border-blue-lighter:hover {
    border-color: #a7b6cb !important;
  }

  .md\:hover\:border-blue-lightest:hover {
    border-color: #e9edf2 !important;
  }

  .md\:hover\:border-orange-darkest:hover {
    border-color: #4d290f !important;
  }

  .md\:hover\:border-orange-darker:hover {
    border-color: #99521f !important;
  }

  .md\:hover\:border-orange-dark:hover {
    border-color: #e67a2e !important;
  }

  .md\:hover\:border-orange:hover {
    border-color: #f83 !important;
  }

  .md\:hover\:border-orange-light:hover {
    border-color: #ffac70 !important;
  }

  .md\:hover\:border-orange-lighter:hover {
    border-color: #ffcfad !important;
  }

  .md\:hover\:border-orange-lightest:hover {
    border-color: #fff3eb !important;
  }

  .md\:hover\:border-gold-darkest:hover {
    border-color: #301d18 !important;
  }

  .md\:hover\:border-gold-darker:hover {
    border-color: #624031 !important;
  }

  .md\:hover\:border-gold-dark:hover {
    border-color: #a77c4b !important;
  }

  .md\:hover\:border-gold:hover {
    border-color: #b8915c !important;
  }

  .md\:hover\:border-gold-light:hover {
    border-color: #c7aa7d !important;
  }

  .md\:hover\:border-gold-lighter:hover {
    border-color: #dccbac !important;
  }

  .md\:hover\:border-gold-lightest:hover {
    border-color: #ede5d4 !important;
  }

  .md\:focus\:border-transparent:focus {
    border-color: transparent !important;
  }

  .md\:focus\:border-black:focus {
    border-color: #22292f !important;
  }

  .md\:focus\:border-black-mdc:focus {
    border-color: #000 !important;
  }

  .md\:focus\:border-white:focus {
    border-color: #fff !important;
  }

  .md\:focus\:border-grey-darkest:focus {
    border-color: #414141 !important;
  }

  .md\:focus\:border-grey-darker:focus {
    border-color: #828282 !important;
  }

  .md\:focus\:border-grey-dark:focus {
    border-color: #c3c3c3 !important;
  }

  .md\:focus\:border-grey:focus {
    border-color: #d9d9d9 !important;
  }

  .md\:focus\:border-grey-light:focus {
    border-color: #e4e4e4 !important;
  }

  .md\:focus\:border-grey-lighter:focus {
    border-color: #f1f1f1 !important;
  }

  .md\:focus\:border-grey-lightest:focus {
    border-color: #fbfbfb !important;
  }

  .md\:focus\:border-grey-mdc:focus {
    border-color: #edf0f5 !important;
  }

  .md\:focus\:border-grey-mdc-70:focus {
    border-color: #707070 !important;
  }

  .md\:focus\:border-blue-darkest:focus {
    border-color: #0b1626 !important;
  }

  .md\:focus\:border-blue-darker:focus {
    border-color: #152b4b !important;
  }

  .md\:focus\:border-blue-dark:focus {
    border-color: #204171 !important;
  }

  .md\:focus\:border-blue:focus {
    border-color: #23487d !important;
  }

  .md\:focus\:border-blue-light:focus {
    border-color: #657fa4 !important;
  }

  .md\:focus\:border-blue-lighter:focus {
    border-color: #a7b6cb !important;
  }

  .md\:focus\:border-blue-lightest:focus {
    border-color: #e9edf2 !important;
  }

  .md\:focus\:border-orange-darkest:focus {
    border-color: #4d290f !important;
  }

  .md\:focus\:border-orange-darker:focus {
    border-color: #99521f !important;
  }

  .md\:focus\:border-orange-dark:focus {
    border-color: #e67a2e !important;
  }

  .md\:focus\:border-orange:focus {
    border-color: #f83 !important;
  }

  .md\:focus\:border-orange-light:focus {
    border-color: #ffac70 !important;
  }

  .md\:focus\:border-orange-lighter:focus {
    border-color: #ffcfad !important;
  }

  .md\:focus\:border-orange-lightest:focus {
    border-color: #fff3eb !important;
  }

  .md\:focus\:border-gold-darkest:focus {
    border-color: #301d18 !important;
  }

  .md\:focus\:border-gold-darker:focus {
    border-color: #624031 !important;
  }

  .md\:focus\:border-gold-dark:focus {
    border-color: #a77c4b !important;
  }

  .md\:focus\:border-gold:focus {
    border-color: #b8915c !important;
  }

  .md\:focus\:border-gold-light:focus {
    border-color: #c7aa7d !important;
  }

  .md\:focus\:border-gold-lighter:focus {
    border-color: #dccbac !important;
  }

  .md\:focus\:border-gold-lightest:focus {
    border-color: #ede5d4 !important;
  }

  .md\:rounded-none {
    border-radius: 0 !important;
  }

  .md\:rounded-sm {
    border-radius: .125rem !important;
  }

  .md\:rounded {
    border-radius: .25rem !important;
  }

  .md\:rounded-lg {
    border-radius: .5rem !important;
  }

  .md\:rounded-full {
    border-radius: 9999px !important;
  }

  .md\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .md\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .md\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .md\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .md\:rounded-t-sm {
    border-top-left-radius: .125rem !important;
    border-top-right-radius: .125rem !important;
  }

  .md\:rounded-r-sm {
    border-top-right-radius: .125rem !important;
    border-bottom-right-radius: .125rem !important;
  }

  .md\:rounded-b-sm {
    border-bottom-right-radius: .125rem !important;
    border-bottom-left-radius: .125rem !important;
  }

  .md\:rounded-l-sm {
    border-top-left-radius: .125rem !important;
    border-bottom-left-radius: .125rem !important;
  }

  .md\:rounded-t {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
  }

  .md\:rounded-r {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
  }

  .md\:rounded-b {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
  }

  .md\:rounded-l {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
  }

  .md\:rounded-t-lg {
    border-top-left-radius: .5rem !important;
    border-top-right-radius: .5rem !important;
  }

  .md\:rounded-r-lg {
    border-top-right-radius: .5rem !important;
    border-bottom-right-radius: .5rem !important;
  }

  .md\:rounded-b-lg {
    border-bottom-right-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
  }

  .md\:rounded-l-lg {
    border-top-left-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
  }

  .md\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .md\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .md\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .md\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .md\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .md\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .md\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .md\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .md\:rounded-tl-sm {
    border-top-left-radius: .125rem !important;
  }

  .md\:rounded-tr-sm {
    border-top-right-radius: .125rem !important;
  }

  .md\:rounded-br-sm {
    border-bottom-right-radius: .125rem !important;
  }

  .md\:rounded-bl-sm {
    border-bottom-left-radius: .125rem !important;
  }

  .md\:rounded-tl {
    border-top-left-radius: .25rem !important;
  }

  .md\:rounded-tr {
    border-top-right-radius: .25rem !important;
  }

  .md\:rounded-br {
    border-bottom-right-radius: .25rem !important;
  }

  .md\:rounded-bl {
    border-bottom-left-radius: .25rem !important;
  }

  .md\:rounded-tl-lg {
    border-top-left-radius: .5rem !important;
  }

  .md\:rounded-tr-lg {
    border-top-right-radius: .5rem !important;
  }

  .md\:rounded-br-lg {
    border-bottom-right-radius: .5rem !important;
  }

  .md\:rounded-bl-lg {
    border-bottom-left-radius: .5rem !important;
  }

  .md\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .md\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .md\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .md\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .md\:border-solid {
    border-style: solid !important;
  }

  .md\:border-dashed {
    border-style: dashed !important;
  }

  .md\:border-dotted {
    border-style: dotted !important;
  }

  .md\:border-none {
    border-style: none !important;
  }

  .md\:border-0 {
    border-width: 0 !important;
  }

  .md\:border-2 {
    border-width: 2px !important;
  }

  .md\:border-4 {
    border-width: 4px !important;
  }

  .md\:border-8 {
    border-width: 8px !important;
  }

  .md\:border {
    border-width: 1px !important;
  }

  .md\:border-t-0 {
    border-top-width: 0 !important;
  }

  .md\:border-r-0 {
    border-right-width: 0 !important;
  }

  .md\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .md\:border-l-0 {
    border-left-width: 0 !important;
  }

  .md\:border-t-2 {
    border-top-width: 2px !important;
  }

  .md\:border-r-2 {
    border-right-width: 2px !important;
  }

  .md\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .md\:border-l-2 {
    border-left-width: 2px !important;
  }

  .md\:border-t-4 {
    border-top-width: 4px !important;
  }

  .md\:border-r-4 {
    border-right-width: 4px !important;
  }

  .md\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .md\:border-l-4 {
    border-left-width: 4px !important;
  }

  .md\:border-t-8 {
    border-top-width: 8px !important;
  }

  .md\:border-r-8 {
    border-right-width: 8px !important;
  }

  .md\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .md\:border-l-8 {
    border-left-width: 8px !important;
  }

  .md\:border-t {
    border-top-width: 1px !important;
  }

  .md\:border-r {
    border-right-width: 1px !important;
  }

  .md\:border-b {
    border-bottom-width: 1px !important;
  }

  .md\:border-l {
    border-left-width: 1px !important;
  }

  .md\:block {
    display: block !important;
  }

  .md\:inline-block {
    display: inline-block !important;
  }

  .md\:inline {
    display: inline !important;
  }

  .md\:table {
    display: table !important;
  }

  .md\:table-row {
    display: table-row !important;
  }

  .md\:table-cell {
    display: table-cell !important;
  }

  .md\:hidden {
    display: none !important;
  }

  .md\:flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .md\:inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .md\:flex-row {
    flex-direction: row !important;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .md\:flex-col {
    flex-direction: column !important;
  }

  .md\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .md\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .md\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .md\:items-start {
    align-items: flex-start !important;
  }

  .md\:items-end {
    align-items: flex-end !important;
  }

  .md\:items-center {
    align-items: center !important;
  }

  .md\:items-baseline {
    align-items: baseline !important;
  }

  .md\:items-stretch {
    align-items: stretch !important;
  }

  .md\:self-auto {
    align-self: auto !important;
  }

  .md\:self-start {
    align-self: flex-start !important;
  }

  .md\:self-end {
    align-self: flex-end !important;
  }

  .md\:self-center {
    align-self: center !important;
  }

  .md\:self-stretch {
    align-self: stretch !important;
  }

  .md\:justify-start {
    justify-content: flex-start !important;
  }

  .md\:justify-end {
    justify-content: flex-end !important;
  }

  .md\:justify-center {
    justify-content: center !important;
  }

  .md\:justify-between {
    justify-content: space-between !important;
  }

  .md\:justify-around {
    justify-content: space-around !important;
  }

  .md\:content-center {
    align-content: center !important;
  }

  .md\:content-start {
    align-content: flex-start !important;
  }

  .md\:content-end {
    align-content: flex-end !important;
  }

  .md\:content-between {
    align-content: space-between !important;
  }

  .md\:content-around {
    align-content: space-around !important;
  }

  .md\:flex-1 {
    flex: 1 1 0% !important;
  }

  .md\:flex-auto {
    flex: 1 1 auto !important;
  }

  .md\:flex-initial {
    flex: 0 1 auto !important;
  }

  .md\:flex-none {
    flex: none !important;
  }

  .md\:flex-grow {
    flex-grow: 1 !important;
  }

  .md\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .md\:flex-no-grow {
    flex-grow: 0 !important;
  }

  .md\:flex-no-shrink {
    flex-shrink: 0 !important;
  }

  .md\:font-hairline {
    font-weight: 100 !important;
  }

  .md\:font-thin {
    font-weight: 200 !important;
  }

  .md\:font-light {
    font-weight: 300 !important;
  }

  .md\:font-normal {
    font-weight: 400 !important;
  }

  .md\:font-medium {
    font-weight: 500 !important;
  }

  .md\:font-semibold {
    font-weight: 600 !important;
  }

  .md\:font-bold {
    font-weight: 700 !important;
  }

  .md\:font-extrabold {
    font-weight: 800 !important;
  }

  .md\:font-black {
    font-weight: 900 !important;
  }

  .md\:hover\:font-hairline:hover {
    font-weight: 100 !important;
  }

  .md\:hover\:font-thin:hover {
    font-weight: 200 !important;
  }

  .md\:hover\:font-light:hover {
    font-weight: 300 !important;
  }

  .md\:hover\:font-normal:hover {
    font-weight: 400 !important;
  }

  .md\:hover\:font-medium:hover {
    font-weight: 500 !important;
  }

  .md\:hover\:font-semibold:hover {
    font-weight: 600 !important;
  }

  .md\:hover\:font-bold:hover {
    font-weight: 700 !important;
  }

  .md\:hover\:font-extrabold:hover {
    font-weight: 800 !important;
  }

  .md\:hover\:font-black:hover {
    font-weight: 900 !important;
  }

  .md\:focus\:font-hairline:focus {
    font-weight: 100 !important;
  }

  .md\:focus\:font-thin:focus {
    font-weight: 200 !important;
  }

  .md\:focus\:font-light:focus {
    font-weight: 300 !important;
  }

  .md\:focus\:font-normal:focus {
    font-weight: 400 !important;
  }

  .md\:focus\:font-medium:focus {
    font-weight: 500 !important;
  }

  .md\:focus\:font-semibold:focus {
    font-weight: 600 !important;
  }

  .md\:focus\:font-bold:focus {
    font-weight: 700 !important;
  }

  .md\:focus\:font-extrabold:focus {
    font-weight: 800 !important;
  }

  .md\:focus\:font-black:focus {
    font-weight: 900 !important;
  }

  .md\:m-0 {
    margin: 0 !important;
  }

  .md\:m-1 {
    margin: .25rem !important;
  }

  .md\:m-2 {
    margin: .5rem !important;
  }

  .md\:m-3 {
    margin: .75rem !important;
  }

  .md\:m-4 {
    margin: 1rem !important;
  }

  .md\:m-5 {
    margin: 1.25rem !important;
  }

  .md\:m-6 {
    margin: 1.5rem !important;
  }

  .md\:m-8 {
    margin: 2rem !important;
  }

  .md\:m-10 {
    margin: 2.5rem !important;
  }

  .md\:m-12 {
    margin: 3rem !important;
  }

  .md\:m-16 {
    margin: 4rem !important;
  }

  .md\:m-20 {
    margin: 5rem !important;
  }

  .md\:m-24 {
    margin: 6rem !important;
  }

  .md\:m-32 {
    margin: 8rem !important;
  }

  .md\:m-auto {
    margin: auto !important;
  }

  .md\:m-px {
    margin: 1px !important;
  }

  .md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .md\:my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .md\:mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .md\:my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .md\:mx-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .md\:my-3 {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important;
  }

  .md\:mx-3 {
    margin-left: .75rem !important;
    margin-right: .75rem !important;
  }

  .md\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .md\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .md\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .md\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .md\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .md\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .md\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .md\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .md\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .md\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .md\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .md\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .md\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .md\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .md\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .md\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .md\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .md\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .md\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .md\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .md\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .md\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .md\:mt-0 {
    margin-top: 0 !important;
  }

  .md\:mr-0 {
    margin-right: 0 !important;
  }

  .md\:mb-0 {
    margin-bottom: 0 !important;
  }

  .md\:ml-0 {
    margin-left: 0 !important;
  }

  .md\:mt-1 {
    margin-top: .25rem !important;
  }

  .md\:mr-1 {
    margin-right: .25rem !important;
  }

  .md\:mb-1 {
    margin-bottom: .25rem !important;
  }

  .md\:ml-1 {
    margin-left: .25rem !important;
  }

  .md\:mt-2 {
    margin-top: .5rem !important;
  }

  .md\:mr-2 {
    margin-right: .5rem !important;
  }

  .md\:mb-2 {
    margin-bottom: .5rem !important;
  }

  .md\:ml-2 {
    margin-left: .5rem !important;
  }

  .md\:mt-3 {
    margin-top: .75rem !important;
  }

  .md\:mr-3 {
    margin-right: .75rem !important;
  }

  .md\:mb-3 {
    margin-bottom: .75rem !important;
  }

  .md\:ml-3 {
    margin-left: .75rem !important;
  }

  .md\:mt-4 {
    margin-top: 1rem !important;
  }

  .md\:mr-4 {
    margin-right: 1rem !important;
  }

  .md\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .md\:ml-4 {
    margin-left: 1rem !important;
  }

  .md\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .md\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .md\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .md\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .md\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .md\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .md\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .md\:mt-8 {
    margin-top: 2rem !important;
  }

  .md\:mr-8 {
    margin-right: 2rem !important;
  }

  .md\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .md\:ml-8 {
    margin-left: 2rem !important;
  }

  .md\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .md\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .md\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .md\:mt-12 {
    margin-top: 3rem !important;
  }

  .md\:mr-12 {
    margin-right: 3rem !important;
  }

  .md\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .md\:ml-12 {
    margin-left: 3rem !important;
  }

  .md\:mt-16 {
    margin-top: 4rem !important;
  }

  .md\:mr-16 {
    margin-right: 4rem !important;
  }

  .md\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .md\:ml-16 {
    margin-left: 4rem !important;
  }

  .md\:mt-20 {
    margin-top: 5rem !important;
  }

  .md\:mr-20 {
    margin-right: 5rem !important;
  }

  .md\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .md\:ml-20 {
    margin-left: 5rem !important;
  }

  .md\:mt-24 {
    margin-top: 6rem !important;
  }

  .md\:mr-24 {
    margin-right: 6rem !important;
  }

  .md\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .md\:ml-24 {
    margin-left: 6rem !important;
  }

  .md\:mt-32 {
    margin-top: 8rem !important;
  }

  .md\:mr-32 {
    margin-right: 8rem !important;
  }

  .md\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .md\:ml-32 {
    margin-left: 8rem !important;
  }

  .md\:mt-auto {
    margin-top: auto !important;
  }

  .md\:mr-auto {
    margin-right: auto !important;
  }

  .md\:mb-auto {
    margin-bottom: auto !important;
  }

  .md\:ml-auto {
    margin-left: auto !important;
  }

  .md\:mt-px {
    margin-top: 1px !important;
  }

  .md\:mr-px {
    margin-right: 1px !important;
  }

  .md\:mb-px {
    margin-bottom: 1px !important;
  }

  .md\:ml-px {
    margin-left: 1px !important;
  }

  .md\:p-0 {
    padding: 0 !important;
  }

  .md\:p-1 {
    padding: .25rem !important;
  }

  .md\:p-2 {
    padding: .5rem !important;
  }

  .md\:p-3 {
    padding: .75rem !important;
  }

  .md\:p-4 {
    padding: 1rem !important;
  }

  .md\:p-5 {
    padding: 1.25rem !important;
  }

  .md\:p-6 {
    padding: 1.5rem !important;
  }

  .md\:p-8 {
    padding: 2rem !important;
  }

  .md\:p-10 {
    padding: 2.5rem !important;
  }

  .md\:p-12 {
    padding: 3rem !important;
  }

  .md\:p-16 {
    padding: 4rem !important;
  }

  .md\:p-20 {
    padding: 5rem !important;
  }

  .md\:p-24 {
    padding: 6rem !important;
  }

  .md\:p-32 {
    padding: 8rem !important;
  }

  .md\:p-px {
    padding: 1px !important;
  }

  .md\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .md\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .md\:py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .md\:px-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .md\:py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .md\:px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .md\:py-3 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
  }

  .md\:px-3 {
    padding-left: .75rem !important;
    padding-right: .75rem !important;
  }

  .md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .md\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .md\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .md\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .md\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .md\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .md\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .md\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .md\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .md\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .md\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .md\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .md\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .md\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .md\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .md\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .md\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .md\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .md\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .md\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .md\:pt-0 {
    padding-top: 0 !important;
  }

  .md\:pr-0 {
    padding-right: 0 !important;
  }

  .md\:pb-0 {
    padding-bottom: 0 !important;
  }

  .md\:pl-0 {
    padding-left: 0 !important;
  }

  .md\:pt-1 {
    padding-top: .25rem !important;
  }

  .md\:pr-1 {
    padding-right: .25rem !important;
  }

  .md\:pb-1 {
    padding-bottom: .25rem !important;
  }

  .md\:pl-1 {
    padding-left: .25rem !important;
  }

  .md\:pt-2 {
    padding-top: .5rem !important;
  }

  .md\:pr-2 {
    padding-right: .5rem !important;
  }

  .md\:pb-2 {
    padding-bottom: .5rem !important;
  }

  .md\:pl-2 {
    padding-left: .5rem !important;
  }

  .md\:pt-3 {
    padding-top: .75rem !important;
  }

  .md\:pr-3 {
    padding-right: .75rem !important;
  }

  .md\:pb-3 {
    padding-bottom: .75rem !important;
  }

  .md\:pl-3 {
    padding-left: .75rem !important;
  }

  .md\:pt-4 {
    padding-top: 1rem !important;
  }

  .md\:pr-4 {
    padding-right: 1rem !important;
  }

  .md\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .md\:pl-4 {
    padding-left: 1rem !important;
  }

  .md\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .md\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .md\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .md\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .md\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .md\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .md\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .md\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .md\:pt-8 {
    padding-top: 2rem !important;
  }

  .md\:pr-8 {
    padding-right: 2rem !important;
  }

  .md\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .md\:pl-8 {
    padding-left: 2rem !important;
  }

  .md\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .md\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .md\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .md\:pt-12 {
    padding-top: 3rem !important;
  }

  .md\:pr-12 {
    padding-right: 3rem !important;
  }

  .md\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .md\:pl-12 {
    padding-left: 3rem !important;
  }

  .md\:pt-16 {
    padding-top: 4rem !important;
  }

  .md\:pr-16 {
    padding-right: 4rem !important;
  }

  .md\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .md\:pl-16 {
    padding-left: 4rem !important;
  }

  .md\:pt-20 {
    padding-top: 5rem !important;
  }

  .md\:pr-20 {
    padding-right: 5rem !important;
  }

  .md\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .md\:pl-20 {
    padding-left: 5rem !important;
  }

  .md\:pt-24 {
    padding-top: 6rem !important;
  }

  .md\:pr-24 {
    padding-right: 6rem !important;
  }

  .md\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .md\:pl-24 {
    padding-left: 6rem !important;
  }

  .md\:pt-32 {
    padding-top: 8rem !important;
  }

  .md\:pr-32 {
    padding-right: 8rem !important;
  }

  .md\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .md\:pl-32 {
    padding-left: 8rem !important;
  }

  .md\:pt-px {
    padding-top: 1px !important;
  }

  .md\:pr-px {
    padding-right: 1px !important;
  }

  .md\:pb-px {
    padding-bottom: 1px !important;
  }

  .md\:pl-px {
    padding-left: 1px !important;
  }

  .md\:text-left {
    text-align: left !important;
  }

  .md\:text-center {
    text-align: center !important;
  }

  .md\:text-right {
    text-align: right !important;
  }

  .md\:text-justify {
    text-align: justify !important;
  }

  .md\:text-transparent {
    color: transparent !important;
  }

  .md\:text-black {
    color: #22292f !important;
  }

  .md\:text-black-mdc {
    color: #000 !important;
  }

  .md\:text-white {
    color: #fff !important;
  }

  .md\:text-grey-darkest {
    color: #414141 !important;
  }

  .md\:text-grey-darker {
    color: #828282 !important;
  }

  .md\:text-grey-dark {
    color: #c3c3c3 !important;
  }

  .md\:text-grey {
    color: #d9d9d9 !important;
  }

  .md\:text-grey-light {
    color: #e4e4e4 !important;
  }

  .md\:text-grey-lighter {
    color: #f1f1f1 !important;
  }

  .md\:text-grey-lightest {
    color: #fbfbfb !important;
  }

  .md\:text-grey-mdc {
    color: #edf0f5 !important;
  }

  .md\:text-grey-mdc-70 {
    color: #707070 !important;
  }

  .md\:text-blue-darkest {
    color: #0b1626 !important;
  }

  .md\:text-blue-darker {
    color: #152b4b !important;
  }

  .md\:text-blue-dark {
    color: #204171 !important;
  }

  .md\:text-blue {
    color: #23487d !important;
  }

  .md\:text-blue-light {
    color: #657fa4 !important;
  }

  .md\:text-blue-lighter {
    color: #a7b6cb !important;
  }

  .md\:text-blue-lightest {
    color: #e9edf2 !important;
  }

  .md\:text-orange-darkest {
    color: #4d290f !important;
  }

  .md\:text-orange-darker {
    color: #99521f !important;
  }

  .md\:text-orange-dark {
    color: #e67a2e !important;
  }

  .md\:text-orange {
    color: #f83 !important;
  }

  .md\:text-orange-light {
    color: #ffac70 !important;
  }

  .md\:text-orange-lighter {
    color: #ffcfad !important;
  }

  .md\:text-orange-lightest {
    color: #fff3eb !important;
  }

  .md\:text-gold-darkest {
    color: #301d18 !important;
  }

  .md\:text-gold-darker {
    color: #624031 !important;
  }

  .md\:text-gold-dark {
    color: #a77c4b !important;
  }

  .md\:text-gold {
    color: #b8915c !important;
  }

  .md\:text-gold-light {
    color: #c7aa7d !important;
  }

  .md\:text-gold-lighter {
    color: #dccbac !important;
  }

  .md\:text-gold-lightest {
    color: #ede5d4 !important;
  }

  .md\:hover\:text-transparent:hover {
    color: transparent !important;
  }

  .md\:hover\:text-black:hover {
    color: #22292f !important;
  }

  .md\:hover\:text-black-mdc:hover {
    color: #000 !important;
  }

  .md\:hover\:text-white:hover {
    color: #fff !important;
  }

  .md\:hover\:text-grey-darkest:hover {
    color: #414141 !important;
  }

  .md\:hover\:text-grey-darker:hover {
    color: #828282 !important;
  }

  .md\:hover\:text-grey-dark:hover {
    color: #c3c3c3 !important;
  }

  .md\:hover\:text-grey:hover {
    color: #d9d9d9 !important;
  }

  .md\:hover\:text-grey-light:hover {
    color: #e4e4e4 !important;
  }

  .md\:hover\:text-grey-lighter:hover {
    color: #f1f1f1 !important;
  }

  .md\:hover\:text-grey-lightest:hover {
    color: #fbfbfb !important;
  }

  .md\:hover\:text-grey-mdc:hover {
    color: #edf0f5 !important;
  }

  .md\:hover\:text-grey-mdc-70:hover {
    color: #707070 !important;
  }

  .md\:hover\:text-blue-darkest:hover {
    color: #0b1626 !important;
  }

  .md\:hover\:text-blue-darker:hover {
    color: #152b4b !important;
  }

  .md\:hover\:text-blue-dark:hover {
    color: #204171 !important;
  }

  .md\:hover\:text-blue:hover {
    color: #23487d !important;
  }

  .md\:hover\:text-blue-light:hover {
    color: #657fa4 !important;
  }

  .md\:hover\:text-blue-lighter:hover {
    color: #a7b6cb !important;
  }

  .md\:hover\:text-blue-lightest:hover {
    color: #e9edf2 !important;
  }

  .md\:hover\:text-orange-darkest:hover {
    color: #4d290f !important;
  }

  .md\:hover\:text-orange-darker:hover {
    color: #99521f !important;
  }

  .md\:hover\:text-orange-dark:hover {
    color: #e67a2e !important;
  }

  .md\:hover\:text-orange:hover {
    color: #f83 !important;
  }

  .md\:hover\:text-orange-light:hover {
    color: #ffac70 !important;
  }

  .md\:hover\:text-orange-lighter:hover {
    color: #ffcfad !important;
  }

  .md\:hover\:text-orange-lightest:hover {
    color: #fff3eb !important;
  }

  .md\:hover\:text-gold-darkest:hover {
    color: #301d18 !important;
  }

  .md\:hover\:text-gold-darker:hover {
    color: #624031 !important;
  }

  .md\:hover\:text-gold-dark:hover {
    color: #a77c4b !important;
  }

  .md\:hover\:text-gold:hover {
    color: #b8915c !important;
  }

  .md\:hover\:text-gold-light:hover {
    color: #c7aa7d !important;
  }

  .md\:hover\:text-gold-lighter:hover {
    color: #dccbac !important;
  }

  .md\:hover\:text-gold-lightest:hover {
    color: #ede5d4 !important;
  }

  .md\:focus\:text-transparent:focus {
    color: transparent !important;
  }

  .md\:focus\:text-black:focus {
    color: #22292f !important;
  }

  .md\:focus\:text-black-mdc:focus {
    color: #000 !important;
  }

  .md\:focus\:text-white:focus {
    color: #fff !important;
  }

  .md\:focus\:text-grey-darkest:focus {
    color: #414141 !important;
  }

  .md\:focus\:text-grey-darker:focus {
    color: #828282 !important;
  }

  .md\:focus\:text-grey-dark:focus {
    color: #c3c3c3 !important;
  }

  .md\:focus\:text-grey:focus {
    color: #d9d9d9 !important;
  }

  .md\:focus\:text-grey-light:focus {
    color: #e4e4e4 !important;
  }

  .md\:focus\:text-grey-lighter:focus {
    color: #f1f1f1 !important;
  }

  .md\:focus\:text-grey-lightest:focus {
    color: #fbfbfb !important;
  }

  .md\:focus\:text-grey-mdc:focus {
    color: #edf0f5 !important;
  }

  .md\:focus\:text-grey-mdc-70:focus {
    color: #707070 !important;
  }

  .md\:focus\:text-blue-darkest:focus {
    color: #0b1626 !important;
  }

  .md\:focus\:text-blue-darker:focus {
    color: #152b4b !important;
  }

  .md\:focus\:text-blue-dark:focus {
    color: #204171 !important;
  }

  .md\:focus\:text-blue:focus {
    color: #23487d !important;
  }

  .md\:focus\:text-blue-light:focus {
    color: #657fa4 !important;
  }

  .md\:focus\:text-blue-lighter:focus {
    color: #a7b6cb !important;
  }

  .md\:focus\:text-blue-lightest:focus {
    color: #e9edf2 !important;
  }

  .md\:focus\:text-orange-darkest:focus {
    color: #4d290f !important;
  }

  .md\:focus\:text-orange-darker:focus {
    color: #99521f !important;
  }

  .md\:focus\:text-orange-dark:focus {
    color: #e67a2e !important;
  }

  .md\:focus\:text-orange:focus {
    color: #f83 !important;
  }

  .md\:focus\:text-orange-light:focus {
    color: #ffac70 !important;
  }

  .md\:focus\:text-orange-lighter:focus {
    color: #ffcfad !important;
  }

  .md\:focus\:text-orange-lightest:focus {
    color: #fff3eb !important;
  }

  .md\:focus\:text-gold-darkest:focus {
    color: #301d18 !important;
  }

  .md\:focus\:text-gold-darker:focus {
    color: #624031 !important;
  }

  .md\:focus\:text-gold-dark:focus {
    color: #a77c4b !important;
  }

  .md\:focus\:text-gold:focus {
    color: #b8915c !important;
  }

  .md\:focus\:text-gold-light:focus {
    color: #c7aa7d !important;
  }

  .md\:focus\:text-gold-lighter:focus {
    color: #dccbac !important;
  }

  .md\:focus\:text-gold-lightest:focus {
    color: #ede5d4 !important;
  }

  .md\:text-xs {
    font-size: .75rem !important;
  }

  .md\:text-sm {
    font-size: .875rem !important;
  }

  .md\:text-base {
    font-size: 1rem !important;
  }

  .md\:text-lg {
    font-size: 1.125rem !important;
  }

  .md\:text-xl {
    font-size: 1.25rem !important;
  }

  .md\:text-2xl {
    font-size: 1.5rem !important;
  }

  .md\:text-3xl {
    font-size: 1.875rem !important;
  }

  .md\:text-4xl {
    font-size: 2.25rem !important;
  }

  .md\:text-5xl {
    font-size: 3rem !important;
  }

  .md\:italic {
    font-style: italic !important;
  }

  .md\:roman {
    font-style: normal !important;
  }

  .md\:uppercase {
    text-transform: uppercase !important;
  }

  .md\:lowercase {
    text-transform: lowercase !important;
  }

  .md\:capitalize {
    text-transform: capitalize !important;
  }

  .md\:normal-case {
    text-transform: none !important;
  }

  .md\:underline {
    text-decoration: underline !important;
  }

  .md\:line-through {
    text-decoration: line-through !important;
  }

  .md\:no-underline {
    text-decoration: none !important;
  }

  .md\:antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .md\:subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .md\:hover\:italic:hover {
    font-style: italic !important;
  }

  .md\:hover\:roman:hover {
    font-style: normal !important;
  }

  .md\:hover\:uppercase:hover {
    text-transform: uppercase !important;
  }

  .md\:hover\:lowercase:hover {
    text-transform: lowercase !important;
  }

  .md\:hover\:capitalize:hover {
    text-transform: capitalize !important;
  }

  .md\:hover\:normal-case:hover {
    text-transform: none !important;
  }

  .md\:hover\:underline:hover {
    text-decoration: underline !important;
  }

  .md\:hover\:line-through:hover {
    text-decoration: line-through !important;
  }

  .md\:hover\:no-underline:hover {
    text-decoration: none !important;
  }

  .md\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .md\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .md\:focus\:italic:focus {
    font-style: italic !important;
  }

  .md\:focus\:roman:focus {
    font-style: normal !important;
  }

  .md\:focus\:uppercase:focus {
    text-transform: uppercase !important;
  }

  .md\:focus\:lowercase:focus {
    text-transform: lowercase !important;
  }

  .md\:focus\:capitalize:focus {
    text-transform: capitalize !important;
  }

  .md\:focus\:normal-case:focus {
    text-transform: none !important;
  }

  .md\:focus\:underline:focus {
    text-decoration: underline !important;
  }

  .md\:focus\:line-through:focus {
    text-decoration: line-through !important;
  }

  .md\:focus\:no-underline:focus {
    text-decoration: none !important;
  }

  .md\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .md\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .md\:w-1 {
    width: .25rem !important;
  }

  .md\:w-2 {
    width: .5rem !important;
  }

  .md\:w-3 {
    width: .75rem !important;
  }

  .md\:w-4 {
    width: 1rem !important;
  }

  .md\:w-5 {
    width: 1.25rem !important;
  }

  .md\:w-6 {
    width: 1.5rem !important;
  }

  .md\:w-8 {
    width: 2rem !important;
  }

  .md\:w-10 {
    width: 2.5rem !important;
  }

  .md\:w-12 {
    width: 3rem !important;
  }

  .md\:w-16 {
    width: 4rem !important;
  }

  .md\:w-24 {
    width: 6rem !important;
  }

  .md\:w-32 {
    width: 8rem !important;
  }

  .md\:w-48 {
    width: 12rem !important;
  }

  .md\:w-64 {
    width: 16rem !important;
  }

  .md\:w-auto {
    width: auto !important;
  }

  .md\:w-px {
    width: 1px !important;
  }

  .md\:w-1\/2 {
    width: 50% !important;
  }

  .md\:w-1\/3 {
    width: 33.33333% !important;
  }

  .md\:w-2\/3 {
    width: 66.66667% !important;
  }

  .md\:w-1\/4 {
    width: 25% !important;
  }

  .md\:w-3\/4 {
    width: 75% !important;
  }

  .md\:w-1\/5 {
    width: 20% !important;
  }

  .md\:w-2\/5 {
    width: 40% !important;
  }

  .md\:w-3\/5 {
    width: 60% !important;
  }

  .md\:w-4\/5 {
    width: 80% !important;
  }

  .md\:w-1\/6 {
    width: 16.66667% !important;
  }

  .md\:w-5\/6 {
    width: 83.33333% !important;
  }

  .md\:w-full {
    width: 100% !important;
  }

  .md\:w-screen {
    width: 100vw !important;
  }
}

@media (min-width: 992px) {
  .lg\:bg-transparent {
    background-color: transparent !important;
  }

  .lg\:bg-black {
    background-color: #22292f !important;
  }

  .lg\:bg-black-mdc {
    background-color: #000 !important;
  }

  .lg\:bg-white {
    background-color: #fff !important;
  }

  .lg\:bg-grey-darkest {
    background-color: #414141 !important;
  }

  .lg\:bg-grey-darker {
    background-color: #828282 !important;
  }

  .lg\:bg-grey-dark {
    background-color: #c3c3c3 !important;
  }

  .lg\:bg-grey {
    background-color: #d9d9d9 !important;
  }

  .lg\:bg-grey-light {
    background-color: #e4e4e4 !important;
  }

  .lg\:bg-grey-lighter {
    background-color: #f1f1f1 !important;
  }

  .lg\:bg-grey-lightest {
    background-color: #fbfbfb !important;
  }

  .lg\:bg-grey-mdc {
    background-color: #edf0f5 !important;
  }

  .lg\:bg-grey-mdc-70 {
    background-color: #707070 !important;
  }

  .lg\:bg-blue-darkest {
    background-color: #0b1626 !important;
  }

  .lg\:bg-blue-darker {
    background-color: #152b4b !important;
  }

  .lg\:bg-blue-dark {
    background-color: #204171 !important;
  }

  .lg\:bg-blue {
    background-color: #23487d !important;
  }

  .lg\:bg-blue-light {
    background-color: #657fa4 !important;
  }

  .lg\:bg-blue-lighter {
    background-color: #a7b6cb !important;
  }

  .lg\:bg-blue-lightest {
    background-color: #e9edf2 !important;
  }

  .lg\:bg-orange-darkest {
    background-color: #4d290f !important;
  }

  .lg\:bg-orange-darker {
    background-color: #99521f !important;
  }

  .lg\:bg-orange-dark {
    background-color: #e67a2e !important;
  }

  .lg\:bg-orange {
    background-color: #f83 !important;
  }

  .lg\:bg-orange-light {
    background-color: #ffac70 !important;
  }

  .lg\:bg-orange-lighter {
    background-color: #ffcfad !important;
  }

  .lg\:bg-orange-lightest {
    background-color: #fff3eb !important;
  }

  .lg\:bg-gold-darkest {
    background-color: #301d18 !important;
  }

  .lg\:bg-gold-darker {
    background-color: #624031 !important;
  }

  .lg\:bg-gold-dark {
    background-color: #a77c4b !important;
  }

  .lg\:bg-gold {
    background-color: #b8915c !important;
  }

  .lg\:bg-gold-light {
    background-color: #c7aa7d !important;
  }

  .lg\:bg-gold-lighter {
    background-color: #dccbac !important;
  }

  .lg\:bg-gold-lightest {
    background-color: #ede5d4 !important;
  }

  .lg\:hover\:bg-transparent:hover {
    background-color: transparent !important;
  }

  .lg\:hover\:bg-black:hover {
    background-color: #22292f !important;
  }

  .lg\:hover\:bg-black-mdc:hover {
    background-color: #000 !important;
  }

  .lg\:hover\:bg-white:hover {
    background-color: #fff !important;
  }

  .lg\:hover\:bg-grey-darkest:hover {
    background-color: #414141 !important;
  }

  .lg\:hover\:bg-grey-darker:hover {
    background-color: #828282 !important;
  }

  .lg\:hover\:bg-grey-dark:hover {
    background-color: #c3c3c3 !important;
  }

  .lg\:hover\:bg-grey:hover {
    background-color: #d9d9d9 !important;
  }

  .lg\:hover\:bg-grey-light:hover {
    background-color: #e4e4e4 !important;
  }

  .lg\:hover\:bg-grey-lighter:hover {
    background-color: #f1f1f1 !important;
  }

  .lg\:hover\:bg-grey-lightest:hover {
    background-color: #fbfbfb !important;
  }

  .lg\:hover\:bg-grey-mdc:hover {
    background-color: #edf0f5 !important;
  }

  .lg\:hover\:bg-grey-mdc-70:hover {
    background-color: #707070 !important;
  }

  .lg\:hover\:bg-blue-darkest:hover {
    background-color: #0b1626 !important;
  }

  .lg\:hover\:bg-blue-darker:hover {
    background-color: #152b4b !important;
  }

  .lg\:hover\:bg-blue-dark:hover {
    background-color: #204171 !important;
  }

  .lg\:hover\:bg-blue:hover {
    background-color: #23487d !important;
  }

  .lg\:hover\:bg-blue-light:hover {
    background-color: #657fa4 !important;
  }

  .lg\:hover\:bg-blue-lighter:hover {
    background-color: #a7b6cb !important;
  }

  .lg\:hover\:bg-blue-lightest:hover {
    background-color: #e9edf2 !important;
  }

  .lg\:hover\:bg-orange-darkest:hover {
    background-color: #4d290f !important;
  }

  .lg\:hover\:bg-orange-darker:hover {
    background-color: #99521f !important;
  }

  .lg\:hover\:bg-orange-dark:hover {
    background-color: #e67a2e !important;
  }

  .lg\:hover\:bg-orange:hover {
    background-color: #f83 !important;
  }

  .lg\:hover\:bg-orange-light:hover {
    background-color: #ffac70 !important;
  }

  .lg\:hover\:bg-orange-lighter:hover {
    background-color: #ffcfad !important;
  }

  .lg\:hover\:bg-orange-lightest:hover {
    background-color: #fff3eb !important;
  }

  .lg\:hover\:bg-gold-darkest:hover {
    background-color: #301d18 !important;
  }

  .lg\:hover\:bg-gold-darker:hover {
    background-color: #624031 !important;
  }

  .lg\:hover\:bg-gold-dark:hover {
    background-color: #a77c4b !important;
  }

  .lg\:hover\:bg-gold:hover {
    background-color: #b8915c !important;
  }

  .lg\:hover\:bg-gold-light:hover {
    background-color: #c7aa7d !important;
  }

  .lg\:hover\:bg-gold-lighter:hover {
    background-color: #dccbac !important;
  }

  .lg\:hover\:bg-gold-lightest:hover {
    background-color: #ede5d4 !important;
  }

  .lg\:focus\:bg-transparent:focus {
    background-color: transparent !important;
  }

  .lg\:focus\:bg-black:focus {
    background-color: #22292f !important;
  }

  .lg\:focus\:bg-black-mdc:focus {
    background-color: #000 !important;
  }

  .lg\:focus\:bg-white:focus {
    background-color: #fff !important;
  }

  .lg\:focus\:bg-grey-darkest:focus {
    background-color: #414141 !important;
  }

  .lg\:focus\:bg-grey-darker:focus {
    background-color: #828282 !important;
  }

  .lg\:focus\:bg-grey-dark:focus {
    background-color: #c3c3c3 !important;
  }

  .lg\:focus\:bg-grey:focus {
    background-color: #d9d9d9 !important;
  }

  .lg\:focus\:bg-grey-light:focus {
    background-color: #e4e4e4 !important;
  }

  .lg\:focus\:bg-grey-lighter:focus {
    background-color: #f1f1f1 !important;
  }

  .lg\:focus\:bg-grey-lightest:focus {
    background-color: #fbfbfb !important;
  }

  .lg\:focus\:bg-grey-mdc:focus {
    background-color: #edf0f5 !important;
  }

  .lg\:focus\:bg-grey-mdc-70:focus {
    background-color: #707070 !important;
  }

  .lg\:focus\:bg-blue-darkest:focus {
    background-color: #0b1626 !important;
  }

  .lg\:focus\:bg-blue-darker:focus {
    background-color: #152b4b !important;
  }

  .lg\:focus\:bg-blue-dark:focus {
    background-color: #204171 !important;
  }

  .lg\:focus\:bg-blue:focus {
    background-color: #23487d !important;
  }

  .lg\:focus\:bg-blue-light:focus {
    background-color: #657fa4 !important;
  }

  .lg\:focus\:bg-blue-lighter:focus {
    background-color: #a7b6cb !important;
  }

  .lg\:focus\:bg-blue-lightest:focus {
    background-color: #e9edf2 !important;
  }

  .lg\:focus\:bg-orange-darkest:focus {
    background-color: #4d290f !important;
  }

  .lg\:focus\:bg-orange-darker:focus {
    background-color: #99521f !important;
  }

  .lg\:focus\:bg-orange-dark:focus {
    background-color: #e67a2e !important;
  }

  .lg\:focus\:bg-orange:focus {
    background-color: #f83 !important;
  }

  .lg\:focus\:bg-orange-light:focus {
    background-color: #ffac70 !important;
  }

  .lg\:focus\:bg-orange-lighter:focus {
    background-color: #ffcfad !important;
  }

  .lg\:focus\:bg-orange-lightest:focus {
    background-color: #fff3eb !important;
  }

  .lg\:focus\:bg-gold-darkest:focus {
    background-color: #301d18 !important;
  }

  .lg\:focus\:bg-gold-darker:focus {
    background-color: #624031 !important;
  }

  .lg\:focus\:bg-gold-dark:focus {
    background-color: #a77c4b !important;
  }

  .lg\:focus\:bg-gold:focus {
    background-color: #b8915c !important;
  }

  .lg\:focus\:bg-gold-light:focus {
    background-color: #c7aa7d !important;
  }

  .lg\:focus\:bg-gold-lighter:focus {
    background-color: #dccbac !important;
  }

  .lg\:focus\:bg-gold-lightest:focus {
    background-color: #ede5d4 !important;
  }

  .lg\:border-transparent {
    border-color: transparent !important;
  }

  .lg\:border-black {
    border-color: #22292f !important;
  }

  .lg\:border-black-mdc {
    border-color: #000 !important;
  }

  .lg\:border-white {
    border-color: #fff !important;
  }

  .lg\:border-grey-darkest {
    border-color: #414141 !important;
  }

  .lg\:border-grey-darker {
    border-color: #828282 !important;
  }

  .lg\:border-grey-dark {
    border-color: #c3c3c3 !important;
  }

  .lg\:border-grey {
    border-color: #d9d9d9 !important;
  }

  .lg\:border-grey-light {
    border-color: #e4e4e4 !important;
  }

  .lg\:border-grey-lighter {
    border-color: #f1f1f1 !important;
  }

  .lg\:border-grey-lightest {
    border-color: #fbfbfb !important;
  }

  .lg\:border-grey-mdc {
    border-color: #edf0f5 !important;
  }

  .lg\:border-grey-mdc-70 {
    border-color: #707070 !important;
  }

  .lg\:border-blue-darkest {
    border-color: #0b1626 !important;
  }

  .lg\:border-blue-darker {
    border-color: #152b4b !important;
  }

  .lg\:border-blue-dark {
    border-color: #204171 !important;
  }

  .lg\:border-blue {
    border-color: #23487d !important;
  }

  .lg\:border-blue-light {
    border-color: #657fa4 !important;
  }

  .lg\:border-blue-lighter {
    border-color: #a7b6cb !important;
  }

  .lg\:border-blue-lightest {
    border-color: #e9edf2 !important;
  }

  .lg\:border-orange-darkest {
    border-color: #4d290f !important;
  }

  .lg\:border-orange-darker {
    border-color: #99521f !important;
  }

  .lg\:border-orange-dark {
    border-color: #e67a2e !important;
  }

  .lg\:border-orange {
    border-color: #f83 !important;
  }

  .lg\:border-orange-light {
    border-color: #ffac70 !important;
  }

  .lg\:border-orange-lighter {
    border-color: #ffcfad !important;
  }

  .lg\:border-orange-lightest {
    border-color: #fff3eb !important;
  }

  .lg\:border-gold-darkest {
    border-color: #301d18 !important;
  }

  .lg\:border-gold-darker {
    border-color: #624031 !important;
  }

  .lg\:border-gold-dark {
    border-color: #a77c4b !important;
  }

  .lg\:border-gold {
    border-color: #b8915c !important;
  }

  .lg\:border-gold-light {
    border-color: #c7aa7d !important;
  }

  .lg\:border-gold-lighter {
    border-color: #dccbac !important;
  }

  .lg\:border-gold-lightest {
    border-color: #ede5d4 !important;
  }

  .lg\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }

  .lg\:hover\:border-black:hover {
    border-color: #22292f !important;
  }

  .lg\:hover\:border-black-mdc:hover {
    border-color: #000 !important;
  }

  .lg\:hover\:border-white:hover {
    border-color: #fff !important;
  }

  .lg\:hover\:border-grey-darkest:hover {
    border-color: #414141 !important;
  }

  .lg\:hover\:border-grey-darker:hover {
    border-color: #828282 !important;
  }

  .lg\:hover\:border-grey-dark:hover {
    border-color: #c3c3c3 !important;
  }

  .lg\:hover\:border-grey:hover {
    border-color: #d9d9d9 !important;
  }

  .lg\:hover\:border-grey-light:hover {
    border-color: #e4e4e4 !important;
  }

  .lg\:hover\:border-grey-lighter:hover {
    border-color: #f1f1f1 !important;
  }

  .lg\:hover\:border-grey-lightest:hover {
    border-color: #fbfbfb !important;
  }

  .lg\:hover\:border-grey-mdc:hover {
    border-color: #edf0f5 !important;
  }

  .lg\:hover\:border-grey-mdc-70:hover {
    border-color: #707070 !important;
  }

  .lg\:hover\:border-blue-darkest:hover {
    border-color: #0b1626 !important;
  }

  .lg\:hover\:border-blue-darker:hover {
    border-color: #152b4b !important;
  }

  .lg\:hover\:border-blue-dark:hover {
    border-color: #204171 !important;
  }

  .lg\:hover\:border-blue:hover {
    border-color: #23487d !important;
  }

  .lg\:hover\:border-blue-light:hover {
    border-color: #657fa4 !important;
  }

  .lg\:hover\:border-blue-lighter:hover {
    border-color: #a7b6cb !important;
  }

  .lg\:hover\:border-blue-lightest:hover {
    border-color: #e9edf2 !important;
  }

  .lg\:hover\:border-orange-darkest:hover {
    border-color: #4d290f !important;
  }

  .lg\:hover\:border-orange-darker:hover {
    border-color: #99521f !important;
  }

  .lg\:hover\:border-orange-dark:hover {
    border-color: #e67a2e !important;
  }

  .lg\:hover\:border-orange:hover {
    border-color: #f83 !important;
  }

  .lg\:hover\:border-orange-light:hover {
    border-color: #ffac70 !important;
  }

  .lg\:hover\:border-orange-lighter:hover {
    border-color: #ffcfad !important;
  }

  .lg\:hover\:border-orange-lightest:hover {
    border-color: #fff3eb !important;
  }

  .lg\:hover\:border-gold-darkest:hover {
    border-color: #301d18 !important;
  }

  .lg\:hover\:border-gold-darker:hover {
    border-color: #624031 !important;
  }

  .lg\:hover\:border-gold-dark:hover {
    border-color: #a77c4b !important;
  }

  .lg\:hover\:border-gold:hover {
    border-color: #b8915c !important;
  }

  .lg\:hover\:border-gold-light:hover {
    border-color: #c7aa7d !important;
  }

  .lg\:hover\:border-gold-lighter:hover {
    border-color: #dccbac !important;
  }

  .lg\:hover\:border-gold-lightest:hover {
    border-color: #ede5d4 !important;
  }

  .lg\:focus\:border-transparent:focus {
    border-color: transparent !important;
  }

  .lg\:focus\:border-black:focus {
    border-color: #22292f !important;
  }

  .lg\:focus\:border-black-mdc:focus {
    border-color: #000 !important;
  }

  .lg\:focus\:border-white:focus {
    border-color: #fff !important;
  }

  .lg\:focus\:border-grey-darkest:focus {
    border-color: #414141 !important;
  }

  .lg\:focus\:border-grey-darker:focus {
    border-color: #828282 !important;
  }

  .lg\:focus\:border-grey-dark:focus {
    border-color: #c3c3c3 !important;
  }

  .lg\:focus\:border-grey:focus {
    border-color: #d9d9d9 !important;
  }

  .lg\:focus\:border-grey-light:focus {
    border-color: #e4e4e4 !important;
  }

  .lg\:focus\:border-grey-lighter:focus {
    border-color: #f1f1f1 !important;
  }

  .lg\:focus\:border-grey-lightest:focus {
    border-color: #fbfbfb !important;
  }

  .lg\:focus\:border-grey-mdc:focus {
    border-color: #edf0f5 !important;
  }

  .lg\:focus\:border-grey-mdc-70:focus {
    border-color: #707070 !important;
  }

  .lg\:focus\:border-blue-darkest:focus {
    border-color: #0b1626 !important;
  }

  .lg\:focus\:border-blue-darker:focus {
    border-color: #152b4b !important;
  }

  .lg\:focus\:border-blue-dark:focus {
    border-color: #204171 !important;
  }

  .lg\:focus\:border-blue:focus {
    border-color: #23487d !important;
  }

  .lg\:focus\:border-blue-light:focus {
    border-color: #657fa4 !important;
  }

  .lg\:focus\:border-blue-lighter:focus {
    border-color: #a7b6cb !important;
  }

  .lg\:focus\:border-blue-lightest:focus {
    border-color: #e9edf2 !important;
  }

  .lg\:focus\:border-orange-darkest:focus {
    border-color: #4d290f !important;
  }

  .lg\:focus\:border-orange-darker:focus {
    border-color: #99521f !important;
  }

  .lg\:focus\:border-orange-dark:focus {
    border-color: #e67a2e !important;
  }

  .lg\:focus\:border-orange:focus {
    border-color: #f83 !important;
  }

  .lg\:focus\:border-orange-light:focus {
    border-color: #ffac70 !important;
  }

  .lg\:focus\:border-orange-lighter:focus {
    border-color: #ffcfad !important;
  }

  .lg\:focus\:border-orange-lightest:focus {
    border-color: #fff3eb !important;
  }

  .lg\:focus\:border-gold-darkest:focus {
    border-color: #301d18 !important;
  }

  .lg\:focus\:border-gold-darker:focus {
    border-color: #624031 !important;
  }

  .lg\:focus\:border-gold-dark:focus {
    border-color: #a77c4b !important;
  }

  .lg\:focus\:border-gold:focus {
    border-color: #b8915c !important;
  }

  .lg\:focus\:border-gold-light:focus {
    border-color: #c7aa7d !important;
  }

  .lg\:focus\:border-gold-lighter:focus {
    border-color: #dccbac !important;
  }

  .lg\:focus\:border-gold-lightest:focus {
    border-color: #ede5d4 !important;
  }

  .lg\:rounded-none {
    border-radius: 0 !important;
  }

  .lg\:rounded-sm {
    border-radius: .125rem !important;
  }

  .lg\:rounded {
    border-radius: .25rem !important;
  }

  .lg\:rounded-lg {
    border-radius: .5rem !important;
  }

  .lg\:rounded-full {
    border-radius: 9999px !important;
  }

  .lg\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .lg\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .lg\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lg\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lg\:rounded-t-sm {
    border-top-left-radius: .125rem !important;
    border-top-right-radius: .125rem !important;
  }

  .lg\:rounded-r-sm {
    border-top-right-radius: .125rem !important;
    border-bottom-right-radius: .125rem !important;
  }

  .lg\:rounded-b-sm {
    border-bottom-right-radius: .125rem !important;
    border-bottom-left-radius: .125rem !important;
  }

  .lg\:rounded-l-sm {
    border-top-left-radius: .125rem !important;
    border-bottom-left-radius: .125rem !important;
  }

  .lg\:rounded-t {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
  }

  .lg\:rounded-r {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
  }

  .lg\:rounded-b {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
  }

  .lg\:rounded-l {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
  }

  .lg\:rounded-t-lg {
    border-top-left-radius: .5rem !important;
    border-top-right-radius: .5rem !important;
  }

  .lg\:rounded-r-lg {
    border-top-right-radius: .5rem !important;
    border-bottom-right-radius: .5rem !important;
  }

  .lg\:rounded-b-lg {
    border-bottom-right-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
  }

  .lg\:rounded-l-lg {
    border-top-left-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
  }

  .lg\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .lg\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .lg\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .lg\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .lg\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .lg\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .lg\:rounded-tl-sm {
    border-top-left-radius: .125rem !important;
  }

  .lg\:rounded-tr-sm {
    border-top-right-radius: .125rem !important;
  }

  .lg\:rounded-br-sm {
    border-bottom-right-radius: .125rem !important;
  }

  .lg\:rounded-bl-sm {
    border-bottom-left-radius: .125rem !important;
  }

  .lg\:rounded-tl {
    border-top-left-radius: .25rem !important;
  }

  .lg\:rounded-tr {
    border-top-right-radius: .25rem !important;
  }

  .lg\:rounded-br {
    border-bottom-right-radius: .25rem !important;
  }

  .lg\:rounded-bl {
    border-bottom-left-radius: .25rem !important;
  }

  .lg\:rounded-tl-lg {
    border-top-left-radius: .5rem !important;
  }

  .lg\:rounded-tr-lg {
    border-top-right-radius: .5rem !important;
  }

  .lg\:rounded-br-lg {
    border-bottom-right-radius: .5rem !important;
  }

  .lg\:rounded-bl-lg {
    border-bottom-left-radius: .5rem !important;
  }

  .lg\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .lg\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .lg\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .lg\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:border-solid {
    border-style: solid !important;
  }

  .lg\:border-dashed {
    border-style: dashed !important;
  }

  .lg\:border-dotted {
    border-style: dotted !important;
  }

  .lg\:border-none {
    border-style: none !important;
  }

  .lg\:border-0 {
    border-width: 0 !important;
  }

  .lg\:border-2 {
    border-width: 2px !important;
  }

  .lg\:border-4 {
    border-width: 4px !important;
  }

  .lg\:border-8 {
    border-width: 8px !important;
  }

  .lg\:border {
    border-width: 1px !important;
  }

  .lg\:border-t-0 {
    border-top-width: 0 !important;
  }

  .lg\:border-r-0 {
    border-right-width: 0 !important;
  }

  .lg\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .lg\:border-l-0 {
    border-left-width: 0 !important;
  }

  .lg\:border-t-2 {
    border-top-width: 2px !important;
  }

  .lg\:border-r-2 {
    border-right-width: 2px !important;
  }

  .lg\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .lg\:border-l-2 {
    border-left-width: 2px !important;
  }

  .lg\:border-t-4 {
    border-top-width: 4px !important;
  }

  .lg\:border-r-4 {
    border-right-width: 4px !important;
  }

  .lg\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .lg\:border-l-4 {
    border-left-width: 4px !important;
  }

  .lg\:border-t-8 {
    border-top-width: 8px !important;
  }

  .lg\:border-r-8 {
    border-right-width: 8px !important;
  }

  .lg\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .lg\:border-l-8 {
    border-left-width: 8px !important;
  }

  .lg\:border-t {
    border-top-width: 1px !important;
  }

  .lg\:border-r {
    border-right-width: 1px !important;
  }

  .lg\:border-b {
    border-bottom-width: 1px !important;
  }

  .lg\:border-l {
    border-left-width: 1px !important;
  }

  .lg\:block {
    display: block !important;
  }

  .lg\:inline-block {
    display: inline-block !important;
  }

  .lg\:inline {
    display: inline !important;
  }

  .lg\:table {
    display: table !important;
  }

  .lg\:table-row {
    display: table-row !important;
  }

  .lg\:table-cell {
    display: table-cell !important;
  }

  .lg\:hidden {
    display: none !important;
  }

  .lg\:flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .lg\:inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .lg\:flex-row {
    flex-direction: row !important;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .lg\:flex-col {
    flex-direction: column !important;
  }

  .lg\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .lg\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .lg\:items-start {
    align-items: flex-start !important;
  }

  .lg\:items-end {
    align-items: flex-end !important;
  }

  .lg\:items-center {
    align-items: center !important;
  }

  .lg\:items-baseline {
    align-items: baseline !important;
  }

  .lg\:items-stretch {
    align-items: stretch !important;
  }

  .lg\:self-auto {
    align-self: auto !important;
  }

  .lg\:self-start {
    align-self: flex-start !important;
  }

  .lg\:self-end {
    align-self: flex-end !important;
  }

  .lg\:self-center {
    align-self: center !important;
  }

  .lg\:self-stretch {
    align-self: stretch !important;
  }

  .lg\:justify-start {
    justify-content: flex-start !important;
  }

  .lg\:justify-end {
    justify-content: flex-end !important;
  }

  .lg\:justify-center {
    justify-content: center !important;
  }

  .lg\:justify-between {
    justify-content: space-between !important;
  }

  .lg\:justify-around {
    justify-content: space-around !important;
  }

  .lg\:content-center {
    align-content: center !important;
  }

  .lg\:content-start {
    align-content: flex-start !important;
  }

  .lg\:content-end {
    align-content: flex-end !important;
  }

  .lg\:content-between {
    align-content: space-between !important;
  }

  .lg\:content-around {
    align-content: space-around !important;
  }

  .lg\:flex-1 {
    flex: 1 1 0% !important;
  }

  .lg\:flex-auto {
    flex: 1 1 auto !important;
  }

  .lg\:flex-initial {
    flex: 0 1 auto !important;
  }

  .lg\:flex-none {
    flex: none !important;
  }

  .lg\:flex-grow {
    flex-grow: 1 !important;
  }

  .lg\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .lg\:flex-no-grow {
    flex-grow: 0 !important;
  }

  .lg\:flex-no-shrink {
    flex-shrink: 0 !important;
  }

  .lg\:font-hairline {
    font-weight: 100 !important;
  }

  .lg\:font-thin {
    font-weight: 200 !important;
  }

  .lg\:font-light {
    font-weight: 300 !important;
  }

  .lg\:font-normal {
    font-weight: 400 !important;
  }

  .lg\:font-medium {
    font-weight: 500 !important;
  }

  .lg\:font-semibold {
    font-weight: 600 !important;
  }

  .lg\:font-bold {
    font-weight: 700 !important;
  }

  .lg\:font-extrabold {
    font-weight: 800 !important;
  }

  .lg\:font-black {
    font-weight: 900 !important;
  }

  .lg\:hover\:font-hairline:hover {
    font-weight: 100 !important;
  }

  .lg\:hover\:font-thin:hover {
    font-weight: 200 !important;
  }

  .lg\:hover\:font-light:hover {
    font-weight: 300 !important;
  }

  .lg\:hover\:font-normal:hover {
    font-weight: 400 !important;
  }

  .lg\:hover\:font-medium:hover {
    font-weight: 500 !important;
  }

  .lg\:hover\:font-semibold:hover {
    font-weight: 600 !important;
  }

  .lg\:hover\:font-bold:hover {
    font-weight: 700 !important;
  }

  .lg\:hover\:font-extrabold:hover {
    font-weight: 800 !important;
  }

  .lg\:hover\:font-black:hover {
    font-weight: 900 !important;
  }

  .lg\:focus\:font-hairline:focus {
    font-weight: 100 !important;
  }

  .lg\:focus\:font-thin:focus {
    font-weight: 200 !important;
  }

  .lg\:focus\:font-light:focus {
    font-weight: 300 !important;
  }

  .lg\:focus\:font-normal:focus {
    font-weight: 400 !important;
  }

  .lg\:focus\:font-medium:focus {
    font-weight: 500 !important;
  }

  .lg\:focus\:font-semibold:focus {
    font-weight: 600 !important;
  }

  .lg\:focus\:font-bold:focus {
    font-weight: 700 !important;
  }

  .lg\:focus\:font-extrabold:focus {
    font-weight: 800 !important;
  }

  .lg\:focus\:font-black:focus {
    font-weight: 900 !important;
  }

  .lg\:m-0 {
    margin: 0 !important;
  }

  .lg\:m-1 {
    margin: .25rem !important;
  }

  .lg\:m-2 {
    margin: .5rem !important;
  }

  .lg\:m-3 {
    margin: .75rem !important;
  }

  .lg\:m-4 {
    margin: 1rem !important;
  }

  .lg\:m-5 {
    margin: 1.25rem !important;
  }

  .lg\:m-6 {
    margin: 1.5rem !important;
  }

  .lg\:m-8 {
    margin: 2rem !important;
  }

  .lg\:m-10 {
    margin: 2.5rem !important;
  }

  .lg\:m-12 {
    margin: 3rem !important;
  }

  .lg\:m-16 {
    margin: 4rem !important;
  }

  .lg\:m-20 {
    margin: 5rem !important;
  }

  .lg\:m-24 {
    margin: 6rem !important;
  }

  .lg\:m-32 {
    margin: 8rem !important;
  }

  .lg\:m-auto {
    margin: auto !important;
  }

  .lg\:m-px {
    margin: 1px !important;
  }

  .lg\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .lg\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .lg\:my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .lg\:mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .lg\:my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .lg\:mx-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .lg\:my-3 {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important;
  }

  .lg\:mx-3 {
    margin-left: .75rem !important;
    margin-right: .75rem !important;
  }

  .lg\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .lg\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .lg\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .lg\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .lg\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .lg\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .lg\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lg\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .lg\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .lg\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .lg\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .lg\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .lg\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .lg\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .lg\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .lg\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .lg\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .lg\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .lg\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .lg\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .lg\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lg\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .lg\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .lg\:mt-0 {
    margin-top: 0 !important;
  }

  .lg\:mr-0 {
    margin-right: 0 !important;
  }

  .lg\:mb-0 {
    margin-bottom: 0 !important;
  }

  .lg\:ml-0 {
    margin-left: 0 !important;
  }

  .lg\:mt-1 {
    margin-top: .25rem !important;
  }

  .lg\:mr-1 {
    margin-right: .25rem !important;
  }

  .lg\:mb-1 {
    margin-bottom: .25rem !important;
  }

  .lg\:ml-1 {
    margin-left: .25rem !important;
  }

  .lg\:mt-2 {
    margin-top: .5rem !important;
  }

  .lg\:mr-2 {
    margin-right: .5rem !important;
  }

  .lg\:mb-2 {
    margin-bottom: .5rem !important;
  }

  .lg\:ml-2 {
    margin-left: .5rem !important;
  }

  .lg\:mt-3 {
    margin-top: .75rem !important;
  }

  .lg\:mr-3 {
    margin-right: .75rem !important;
  }

  .lg\:mb-3 {
    margin-bottom: .75rem !important;
  }

  .lg\:ml-3 {
    margin-left: .75rem !important;
  }

  .lg\:mt-4 {
    margin-top: 1rem !important;
  }

  .lg\:mr-4 {
    margin-right: 1rem !important;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .lg\:ml-4 {
    margin-left: 1rem !important;
  }

  .lg\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .lg\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .lg\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .lg\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .lg\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .lg\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .lg\:mt-8 {
    margin-top: 2rem !important;
  }

  .lg\:mr-8 {
    margin-right: 2rem !important;
  }

  .lg\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .lg\:ml-8 {
    margin-left: 2rem !important;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .lg\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .lg\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .lg\:mt-12 {
    margin-top: 3rem !important;
  }

  .lg\:mr-12 {
    margin-right: 3rem !important;
  }

  .lg\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .lg\:ml-12 {
    margin-left: 3rem !important;
  }

  .lg\:mt-16 {
    margin-top: 4rem !important;
  }

  .lg\:mr-16 {
    margin-right: 4rem !important;
  }

  .lg\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .lg\:ml-16 {
    margin-left: 4rem !important;
  }

  .lg\:mt-20 {
    margin-top: 5rem !important;
  }

  .lg\:mr-20 {
    margin-right: 5rem !important;
  }

  .lg\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .lg\:ml-20 {
    margin-left: 5rem !important;
  }

  .lg\:mt-24 {
    margin-top: 6rem !important;
  }

  .lg\:mr-24 {
    margin-right: 6rem !important;
  }

  .lg\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .lg\:ml-24 {
    margin-left: 6rem !important;
  }

  .lg\:mt-32 {
    margin-top: 8rem !important;
  }

  .lg\:mr-32 {
    margin-right: 8rem !important;
  }

  .lg\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .lg\:ml-32 {
    margin-left: 8rem !important;
  }

  .lg\:mt-auto {
    margin-top: auto !important;
  }

  .lg\:mr-auto {
    margin-right: auto !important;
  }

  .lg\:mb-auto {
    margin-bottom: auto !important;
  }

  .lg\:ml-auto {
    margin-left: auto !important;
  }

  .lg\:mt-px {
    margin-top: 1px !important;
  }

  .lg\:mr-px {
    margin-right: 1px !important;
  }

  .lg\:mb-px {
    margin-bottom: 1px !important;
  }

  .lg\:ml-px {
    margin-left: 1px !important;
  }

  .lg\:p-0 {
    padding: 0 !important;
  }

  .lg\:p-1 {
    padding: .25rem !important;
  }

  .lg\:p-2 {
    padding: .5rem !important;
  }

  .lg\:p-3 {
    padding: .75rem !important;
  }

  .lg\:p-4 {
    padding: 1rem !important;
  }

  .lg\:p-5 {
    padding: 1.25rem !important;
  }

  .lg\:p-6 {
    padding: 1.5rem !important;
  }

  .lg\:p-8 {
    padding: 2rem !important;
  }

  .lg\:p-10 {
    padding: 2.5rem !important;
  }

  .lg\:p-12 {
    padding: 3rem !important;
  }

  .lg\:p-16 {
    padding: 4rem !important;
  }

  .lg\:p-20 {
    padding: 5rem !important;
  }

  .lg\:p-24 {
    padding: 6rem !important;
  }

  .lg\:p-32 {
    padding: 8rem !important;
  }

  .lg\:p-px {
    padding: 1px !important;
  }

  .lg\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .lg\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .lg\:py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .lg\:px-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .lg\:py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .lg\:px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .lg\:py-3 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
  }

  .lg\:px-3 {
    padding-left: .75rem !important;
    padding-right: .75rem !important;
  }

  .lg\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .lg\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .lg\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .lg\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .lg\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .lg\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .lg\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lg\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .lg\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lg\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .lg\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lg\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .lg\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .lg\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .lg\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .lg\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .lg\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .lg\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .lg\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .lg\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .lg\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .lg\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .lg\:pt-0 {
    padding-top: 0 !important;
  }

  .lg\:pr-0 {
    padding-right: 0 !important;
  }

  .lg\:pb-0 {
    padding-bottom: 0 !important;
  }

  .lg\:pl-0 {
    padding-left: 0 !important;
  }

  .lg\:pt-1 {
    padding-top: .25rem !important;
  }

  .lg\:pr-1 {
    padding-right: .25rem !important;
  }

  .lg\:pb-1 {
    padding-bottom: .25rem !important;
  }

  .lg\:pl-1 {
    padding-left: .25rem !important;
  }

  .lg\:pt-2 {
    padding-top: .5rem !important;
  }

  .lg\:pr-2 {
    padding-right: .5rem !important;
  }

  .lg\:pb-2 {
    padding-bottom: .5rem !important;
  }

  .lg\:pl-2 {
    padding-left: .5rem !important;
  }

  .lg\:pt-3 {
    padding-top: .75rem !important;
  }

  .lg\:pr-3 {
    padding-right: .75rem !important;
  }

  .lg\:pb-3 {
    padding-bottom: .75rem !important;
  }

  .lg\:pl-3 {
    padding-left: .75rem !important;
  }

  .lg\:pt-4 {
    padding-top: 1rem !important;
  }

  .lg\:pr-4 {
    padding-right: 1rem !important;
  }

  .lg\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .lg\:pl-4 {
    padding-left: 1rem !important;
  }

  .lg\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .lg\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .lg\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .lg\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .lg\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .lg\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .lg\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .lg\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .lg\:pt-8 {
    padding-top: 2rem !important;
  }

  .lg\:pr-8 {
    padding-right: 2rem !important;
  }

  .lg\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .lg\:pl-8 {
    padding-left: 2rem !important;
  }

  .lg\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .lg\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .lg\:pt-12 {
    padding-top: 3rem !important;
  }

  .lg\:pr-12 {
    padding-right: 3rem !important;
  }

  .lg\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .lg\:pl-12 {
    padding-left: 3rem !important;
  }

  .lg\:pt-16 {
    padding-top: 4rem !important;
  }

  .lg\:pr-16 {
    padding-right: 4rem !important;
  }

  .lg\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .lg\:pl-16 {
    padding-left: 4rem !important;
  }

  .lg\:pt-20 {
    padding-top: 5rem !important;
  }

  .lg\:pr-20 {
    padding-right: 5rem !important;
  }

  .lg\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .lg\:pl-20 {
    padding-left: 5rem !important;
  }

  .lg\:pt-24 {
    padding-top: 6rem !important;
  }

  .lg\:pr-24 {
    padding-right: 6rem !important;
  }

  .lg\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .lg\:pl-24 {
    padding-left: 6rem !important;
  }

  .lg\:pt-32 {
    padding-top: 8rem !important;
  }

  .lg\:pr-32 {
    padding-right: 8rem !important;
  }

  .lg\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .lg\:pl-32 {
    padding-left: 8rem !important;
  }

  .lg\:pt-px {
    padding-top: 1px !important;
  }

  .lg\:pr-px {
    padding-right: 1px !important;
  }

  .lg\:pb-px {
    padding-bottom: 1px !important;
  }

  .lg\:pl-px {
    padding-left: 1px !important;
  }

  .lg\:text-left {
    text-align: left !important;
  }

  .lg\:text-center {
    text-align: center !important;
  }

  .lg\:text-right {
    text-align: right !important;
  }

  .lg\:text-justify {
    text-align: justify !important;
  }

  .lg\:text-transparent {
    color: transparent !important;
  }

  .lg\:text-black {
    color: #22292f !important;
  }

  .lg\:text-black-mdc {
    color: #000 !important;
  }

  .lg\:text-white {
    color: #fff !important;
  }

  .lg\:text-grey-darkest {
    color: #414141 !important;
  }

  .lg\:text-grey-darker {
    color: #828282 !important;
  }

  .lg\:text-grey-dark {
    color: #c3c3c3 !important;
  }

  .lg\:text-grey {
    color: #d9d9d9 !important;
  }

  .lg\:text-grey-light {
    color: #e4e4e4 !important;
  }

  .lg\:text-grey-lighter {
    color: #f1f1f1 !important;
  }

  .lg\:text-grey-lightest {
    color: #fbfbfb !important;
  }

  .lg\:text-grey-mdc {
    color: #edf0f5 !important;
  }

  .lg\:text-grey-mdc-70 {
    color: #707070 !important;
  }

  .lg\:text-blue-darkest {
    color: #0b1626 !important;
  }

  .lg\:text-blue-darker {
    color: #152b4b !important;
  }

  .lg\:text-blue-dark {
    color: #204171 !important;
  }

  .lg\:text-blue {
    color: #23487d !important;
  }

  .lg\:text-blue-light {
    color: #657fa4 !important;
  }

  .lg\:text-blue-lighter {
    color: #a7b6cb !important;
  }

  .lg\:text-blue-lightest {
    color: #e9edf2 !important;
  }

  .lg\:text-orange-darkest {
    color: #4d290f !important;
  }

  .lg\:text-orange-darker {
    color: #99521f !important;
  }

  .lg\:text-orange-dark {
    color: #e67a2e !important;
  }

  .lg\:text-orange {
    color: #f83 !important;
  }

  .lg\:text-orange-light {
    color: #ffac70 !important;
  }

  .lg\:text-orange-lighter {
    color: #ffcfad !important;
  }

  .lg\:text-orange-lightest {
    color: #fff3eb !important;
  }

  .lg\:text-gold-darkest {
    color: #301d18 !important;
  }

  .lg\:text-gold-darker {
    color: #624031 !important;
  }

  .lg\:text-gold-dark {
    color: #a77c4b !important;
  }

  .lg\:text-gold {
    color: #b8915c !important;
  }

  .lg\:text-gold-light {
    color: #c7aa7d !important;
  }

  .lg\:text-gold-lighter {
    color: #dccbac !important;
  }

  .lg\:text-gold-lightest {
    color: #ede5d4 !important;
  }

  .lg\:hover\:text-transparent:hover {
    color: transparent !important;
  }

  .lg\:hover\:text-black:hover {
    color: #22292f !important;
  }

  .lg\:hover\:text-black-mdc:hover {
    color: #000 !important;
  }

  .lg\:hover\:text-white:hover {
    color: #fff !important;
  }

  .lg\:hover\:text-grey-darkest:hover {
    color: #414141 !important;
  }

  .lg\:hover\:text-grey-darker:hover {
    color: #828282 !important;
  }

  .lg\:hover\:text-grey-dark:hover {
    color: #c3c3c3 !important;
  }

  .lg\:hover\:text-grey:hover {
    color: #d9d9d9 !important;
  }

  .lg\:hover\:text-grey-light:hover {
    color: #e4e4e4 !important;
  }

  .lg\:hover\:text-grey-lighter:hover {
    color: #f1f1f1 !important;
  }

  .lg\:hover\:text-grey-lightest:hover {
    color: #fbfbfb !important;
  }

  .lg\:hover\:text-grey-mdc:hover {
    color: #edf0f5 !important;
  }

  .lg\:hover\:text-grey-mdc-70:hover {
    color: #707070 !important;
  }

  .lg\:hover\:text-blue-darkest:hover {
    color: #0b1626 !important;
  }

  .lg\:hover\:text-blue-darker:hover {
    color: #152b4b !important;
  }

  .lg\:hover\:text-blue-dark:hover {
    color: #204171 !important;
  }

  .lg\:hover\:text-blue:hover {
    color: #23487d !important;
  }

  .lg\:hover\:text-blue-light:hover {
    color: #657fa4 !important;
  }

  .lg\:hover\:text-blue-lighter:hover {
    color: #a7b6cb !important;
  }

  .lg\:hover\:text-blue-lightest:hover {
    color: #e9edf2 !important;
  }

  .lg\:hover\:text-orange-darkest:hover {
    color: #4d290f !important;
  }

  .lg\:hover\:text-orange-darker:hover {
    color: #99521f !important;
  }

  .lg\:hover\:text-orange-dark:hover {
    color: #e67a2e !important;
  }

  .lg\:hover\:text-orange:hover {
    color: #f83 !important;
  }

  .lg\:hover\:text-orange-light:hover {
    color: #ffac70 !important;
  }

  .lg\:hover\:text-orange-lighter:hover {
    color: #ffcfad !important;
  }

  .lg\:hover\:text-orange-lightest:hover {
    color: #fff3eb !important;
  }

  .lg\:hover\:text-gold-darkest:hover {
    color: #301d18 !important;
  }

  .lg\:hover\:text-gold-darker:hover {
    color: #624031 !important;
  }

  .lg\:hover\:text-gold-dark:hover {
    color: #a77c4b !important;
  }

  .lg\:hover\:text-gold:hover {
    color: #b8915c !important;
  }

  .lg\:hover\:text-gold-light:hover {
    color: #c7aa7d !important;
  }

  .lg\:hover\:text-gold-lighter:hover {
    color: #dccbac !important;
  }

  .lg\:hover\:text-gold-lightest:hover {
    color: #ede5d4 !important;
  }

  .lg\:focus\:text-transparent:focus {
    color: transparent !important;
  }

  .lg\:focus\:text-black:focus {
    color: #22292f !important;
  }

  .lg\:focus\:text-black-mdc:focus {
    color: #000 !important;
  }

  .lg\:focus\:text-white:focus {
    color: #fff !important;
  }

  .lg\:focus\:text-grey-darkest:focus {
    color: #414141 !important;
  }

  .lg\:focus\:text-grey-darker:focus {
    color: #828282 !important;
  }

  .lg\:focus\:text-grey-dark:focus {
    color: #c3c3c3 !important;
  }

  .lg\:focus\:text-grey:focus {
    color: #d9d9d9 !important;
  }

  .lg\:focus\:text-grey-light:focus {
    color: #e4e4e4 !important;
  }

  .lg\:focus\:text-grey-lighter:focus {
    color: #f1f1f1 !important;
  }

  .lg\:focus\:text-grey-lightest:focus {
    color: #fbfbfb !important;
  }

  .lg\:focus\:text-grey-mdc:focus {
    color: #edf0f5 !important;
  }

  .lg\:focus\:text-grey-mdc-70:focus {
    color: #707070 !important;
  }

  .lg\:focus\:text-blue-darkest:focus {
    color: #0b1626 !important;
  }

  .lg\:focus\:text-blue-darker:focus {
    color: #152b4b !important;
  }

  .lg\:focus\:text-blue-dark:focus {
    color: #204171 !important;
  }

  .lg\:focus\:text-blue:focus {
    color: #23487d !important;
  }

  .lg\:focus\:text-blue-light:focus {
    color: #657fa4 !important;
  }

  .lg\:focus\:text-blue-lighter:focus {
    color: #a7b6cb !important;
  }

  .lg\:focus\:text-blue-lightest:focus {
    color: #e9edf2 !important;
  }

  .lg\:focus\:text-orange-darkest:focus {
    color: #4d290f !important;
  }

  .lg\:focus\:text-orange-darker:focus {
    color: #99521f !important;
  }

  .lg\:focus\:text-orange-dark:focus {
    color: #e67a2e !important;
  }

  .lg\:focus\:text-orange:focus {
    color: #f83 !important;
  }

  .lg\:focus\:text-orange-light:focus {
    color: #ffac70 !important;
  }

  .lg\:focus\:text-orange-lighter:focus {
    color: #ffcfad !important;
  }

  .lg\:focus\:text-orange-lightest:focus {
    color: #fff3eb !important;
  }

  .lg\:focus\:text-gold-darkest:focus {
    color: #301d18 !important;
  }

  .lg\:focus\:text-gold-darker:focus {
    color: #624031 !important;
  }

  .lg\:focus\:text-gold-dark:focus {
    color: #a77c4b !important;
  }

  .lg\:focus\:text-gold:focus {
    color: #b8915c !important;
  }

  .lg\:focus\:text-gold-light:focus {
    color: #c7aa7d !important;
  }

  .lg\:focus\:text-gold-lighter:focus {
    color: #dccbac !important;
  }

  .lg\:focus\:text-gold-lightest:focus {
    color: #ede5d4 !important;
  }

  .lg\:text-xs {
    font-size: .75rem !important;
  }

  .lg\:text-sm {
    font-size: .875rem !important;
  }

  .lg\:text-base {
    font-size: 1rem !important;
  }

  .lg\:text-lg {
    font-size: 1.125rem !important;
  }

  .lg\:text-xl {
    font-size: 1.25rem !important;
  }

  .lg\:text-2xl {
    font-size: 1.5rem !important;
  }

  .lg\:text-3xl {
    font-size: 1.875rem !important;
  }

  .lg\:text-4xl {
    font-size: 2.25rem !important;
  }

  .lg\:text-5xl {
    font-size: 3rem !important;
  }

  .lg\:italic {
    font-style: italic !important;
  }

  .lg\:roman {
    font-style: normal !important;
  }

  .lg\:uppercase {
    text-transform: uppercase !important;
  }

  .lg\:lowercase {
    text-transform: lowercase !important;
  }

  .lg\:capitalize {
    text-transform: capitalize !important;
  }

  .lg\:normal-case {
    text-transform: none !important;
  }

  .lg\:underline {
    text-decoration: underline !important;
  }

  .lg\:line-through {
    text-decoration: line-through !important;
  }

  .lg\:no-underline {
    text-decoration: none !important;
  }

  .lg\:antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .lg\:subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .lg\:hover\:italic:hover {
    font-style: italic !important;
  }

  .lg\:hover\:roman:hover {
    font-style: normal !important;
  }

  .lg\:hover\:uppercase:hover {
    text-transform: uppercase !important;
  }

  .lg\:hover\:lowercase:hover {
    text-transform: lowercase !important;
  }

  .lg\:hover\:capitalize:hover {
    text-transform: capitalize !important;
  }

  .lg\:hover\:normal-case:hover {
    text-transform: none !important;
  }

  .lg\:hover\:underline:hover {
    text-decoration: underline !important;
  }

  .lg\:hover\:line-through:hover {
    text-decoration: line-through !important;
  }

  .lg\:hover\:no-underline:hover {
    text-decoration: none !important;
  }

  .lg\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .lg\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .lg\:focus\:italic:focus {
    font-style: italic !important;
  }

  .lg\:focus\:roman:focus {
    font-style: normal !important;
  }

  .lg\:focus\:uppercase:focus {
    text-transform: uppercase !important;
  }

  .lg\:focus\:lowercase:focus {
    text-transform: lowercase !important;
  }

  .lg\:focus\:capitalize:focus {
    text-transform: capitalize !important;
  }

  .lg\:focus\:normal-case:focus {
    text-transform: none !important;
  }

  .lg\:focus\:underline:focus {
    text-decoration: underline !important;
  }

  .lg\:focus\:line-through:focus {
    text-decoration: line-through !important;
  }

  .lg\:focus\:no-underline:focus {
    text-decoration: none !important;
  }

  .lg\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .lg\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .lg\:w-1 {
    width: .25rem !important;
  }

  .lg\:w-2 {
    width: .5rem !important;
  }

  .lg\:w-3 {
    width: .75rem !important;
  }

  .lg\:w-4 {
    width: 1rem !important;
  }

  .lg\:w-5 {
    width: 1.25rem !important;
  }

  .lg\:w-6 {
    width: 1.5rem !important;
  }

  .lg\:w-8 {
    width: 2rem !important;
  }

  .lg\:w-10 {
    width: 2.5rem !important;
  }

  .lg\:w-12 {
    width: 3rem !important;
  }

  .lg\:w-16 {
    width: 4rem !important;
  }

  .lg\:w-24 {
    width: 6rem !important;
  }

  .lg\:w-32 {
    width: 8rem !important;
  }

  .lg\:w-48 {
    width: 12rem !important;
  }

  .lg\:w-64 {
    width: 16rem !important;
  }

  .lg\:w-auto {
    width: auto !important;
  }

  .lg\:w-px {
    width: 1px !important;
  }

  .lg\:w-1\/2 {
    width: 50% !important;
  }

  .lg\:w-1\/3 {
    width: 33.33333% !important;
  }

  .lg\:w-2\/3 {
    width: 66.66667% !important;
  }

  .lg\:w-1\/4 {
    width: 25% !important;
  }

  .lg\:w-3\/4 {
    width: 75% !important;
  }

  .lg\:w-1\/5 {
    width: 20% !important;
  }

  .lg\:w-2\/5 {
    width: 40% !important;
  }

  .lg\:w-3\/5 {
    width: 60% !important;
  }

  .lg\:w-4\/5 {
    width: 80% !important;
  }

  .lg\:w-1\/6 {
    width: 16.66667% !important;
  }

  .lg\:w-5\/6 {
    width: 83.33333% !important;
  }

  .lg\:w-full {
    width: 100% !important;
  }

  .lg\:w-screen {
    width: 100vw !important;
  }
}

@media (min-width: 1200px) {
  .xl\:bg-transparent {
    background-color: transparent !important;
  }

  .xl\:bg-black {
    background-color: #22292f !important;
  }

  .xl\:bg-black-mdc {
    background-color: #000 !important;
  }

  .xl\:bg-white {
    background-color: #fff !important;
  }

  .xl\:bg-grey-darkest {
    background-color: #414141 !important;
  }

  .xl\:bg-grey-darker {
    background-color: #828282 !important;
  }

  .xl\:bg-grey-dark {
    background-color: #c3c3c3 !important;
  }

  .xl\:bg-grey {
    background-color: #d9d9d9 !important;
  }

  .xl\:bg-grey-light {
    background-color: #e4e4e4 !important;
  }

  .xl\:bg-grey-lighter {
    background-color: #f1f1f1 !important;
  }

  .xl\:bg-grey-lightest {
    background-color: #fbfbfb !important;
  }

  .xl\:bg-grey-mdc {
    background-color: #edf0f5 !important;
  }

  .xl\:bg-grey-mdc-70 {
    background-color: #707070 !important;
  }

  .xl\:bg-blue-darkest {
    background-color: #0b1626 !important;
  }

  .xl\:bg-blue-darker {
    background-color: #152b4b !important;
  }

  .xl\:bg-blue-dark {
    background-color: #204171 !important;
  }

  .xl\:bg-blue {
    background-color: #23487d !important;
  }

  .xl\:bg-blue-light {
    background-color: #657fa4 !important;
  }

  .xl\:bg-blue-lighter {
    background-color: #a7b6cb !important;
  }

  .xl\:bg-blue-lightest {
    background-color: #e9edf2 !important;
  }

  .xl\:bg-orange-darkest {
    background-color: #4d290f !important;
  }

  .xl\:bg-orange-darker {
    background-color: #99521f !important;
  }

  .xl\:bg-orange-dark {
    background-color: #e67a2e !important;
  }

  .xl\:bg-orange {
    background-color: #f83 !important;
  }

  .xl\:bg-orange-light {
    background-color: #ffac70 !important;
  }

  .xl\:bg-orange-lighter {
    background-color: #ffcfad !important;
  }

  .xl\:bg-orange-lightest {
    background-color: #fff3eb !important;
  }

  .xl\:bg-gold-darkest {
    background-color: #301d18 !important;
  }

  .xl\:bg-gold-darker {
    background-color: #624031 !important;
  }

  .xl\:bg-gold-dark {
    background-color: #a77c4b !important;
  }

  .xl\:bg-gold {
    background-color: #b8915c !important;
  }

  .xl\:bg-gold-light {
    background-color: #c7aa7d !important;
  }

  .xl\:bg-gold-lighter {
    background-color: #dccbac !important;
  }

  .xl\:bg-gold-lightest {
    background-color: #ede5d4 !important;
  }

  .xl\:hover\:bg-transparent:hover {
    background-color: transparent !important;
  }

  .xl\:hover\:bg-black:hover {
    background-color: #22292f !important;
  }

  .xl\:hover\:bg-black-mdc:hover {
    background-color: #000 !important;
  }

  .xl\:hover\:bg-white:hover {
    background-color: #fff !important;
  }

  .xl\:hover\:bg-grey-darkest:hover {
    background-color: #414141 !important;
  }

  .xl\:hover\:bg-grey-darker:hover {
    background-color: #828282 !important;
  }

  .xl\:hover\:bg-grey-dark:hover {
    background-color: #c3c3c3 !important;
  }

  .xl\:hover\:bg-grey:hover {
    background-color: #d9d9d9 !important;
  }

  .xl\:hover\:bg-grey-light:hover {
    background-color: #e4e4e4 !important;
  }

  .xl\:hover\:bg-grey-lighter:hover {
    background-color: #f1f1f1 !important;
  }

  .xl\:hover\:bg-grey-lightest:hover {
    background-color: #fbfbfb !important;
  }

  .xl\:hover\:bg-grey-mdc:hover {
    background-color: #edf0f5 !important;
  }

  .xl\:hover\:bg-grey-mdc-70:hover {
    background-color: #707070 !important;
  }

  .xl\:hover\:bg-blue-darkest:hover {
    background-color: #0b1626 !important;
  }

  .xl\:hover\:bg-blue-darker:hover {
    background-color: #152b4b !important;
  }

  .xl\:hover\:bg-blue-dark:hover {
    background-color: #204171 !important;
  }

  .xl\:hover\:bg-blue:hover {
    background-color: #23487d !important;
  }

  .xl\:hover\:bg-blue-light:hover {
    background-color: #657fa4 !important;
  }

  .xl\:hover\:bg-blue-lighter:hover {
    background-color: #a7b6cb !important;
  }

  .xl\:hover\:bg-blue-lightest:hover {
    background-color: #e9edf2 !important;
  }

  .xl\:hover\:bg-orange-darkest:hover {
    background-color: #4d290f !important;
  }

  .xl\:hover\:bg-orange-darker:hover {
    background-color: #99521f !important;
  }

  .xl\:hover\:bg-orange-dark:hover {
    background-color: #e67a2e !important;
  }

  .xl\:hover\:bg-orange:hover {
    background-color: #f83 !important;
  }

  .xl\:hover\:bg-orange-light:hover {
    background-color: #ffac70 !important;
  }

  .xl\:hover\:bg-orange-lighter:hover {
    background-color: #ffcfad !important;
  }

  .xl\:hover\:bg-orange-lightest:hover {
    background-color: #fff3eb !important;
  }

  .xl\:hover\:bg-gold-darkest:hover {
    background-color: #301d18 !important;
  }

  .xl\:hover\:bg-gold-darker:hover {
    background-color: #624031 !important;
  }

  .xl\:hover\:bg-gold-dark:hover {
    background-color: #a77c4b !important;
  }

  .xl\:hover\:bg-gold:hover {
    background-color: #b8915c !important;
  }

  .xl\:hover\:bg-gold-light:hover {
    background-color: #c7aa7d !important;
  }

  .xl\:hover\:bg-gold-lighter:hover {
    background-color: #dccbac !important;
  }

  .xl\:hover\:bg-gold-lightest:hover {
    background-color: #ede5d4 !important;
  }

  .xl\:focus\:bg-transparent:focus {
    background-color: transparent !important;
  }

  .xl\:focus\:bg-black:focus {
    background-color: #22292f !important;
  }

  .xl\:focus\:bg-black-mdc:focus {
    background-color: #000 !important;
  }

  .xl\:focus\:bg-white:focus {
    background-color: #fff !important;
  }

  .xl\:focus\:bg-grey-darkest:focus {
    background-color: #414141 !important;
  }

  .xl\:focus\:bg-grey-darker:focus {
    background-color: #828282 !important;
  }

  .xl\:focus\:bg-grey-dark:focus {
    background-color: #c3c3c3 !important;
  }

  .xl\:focus\:bg-grey:focus {
    background-color: #d9d9d9 !important;
  }

  .xl\:focus\:bg-grey-light:focus {
    background-color: #e4e4e4 !important;
  }

  .xl\:focus\:bg-grey-lighter:focus {
    background-color: #f1f1f1 !important;
  }

  .xl\:focus\:bg-grey-lightest:focus {
    background-color: #fbfbfb !important;
  }

  .xl\:focus\:bg-grey-mdc:focus {
    background-color: #edf0f5 !important;
  }

  .xl\:focus\:bg-grey-mdc-70:focus {
    background-color: #707070 !important;
  }

  .xl\:focus\:bg-blue-darkest:focus {
    background-color: #0b1626 !important;
  }

  .xl\:focus\:bg-blue-darker:focus {
    background-color: #152b4b !important;
  }

  .xl\:focus\:bg-blue-dark:focus {
    background-color: #204171 !important;
  }

  .xl\:focus\:bg-blue:focus {
    background-color: #23487d !important;
  }

  .xl\:focus\:bg-blue-light:focus {
    background-color: #657fa4 !important;
  }

  .xl\:focus\:bg-blue-lighter:focus {
    background-color: #a7b6cb !important;
  }

  .xl\:focus\:bg-blue-lightest:focus {
    background-color: #e9edf2 !important;
  }

  .xl\:focus\:bg-orange-darkest:focus {
    background-color: #4d290f !important;
  }

  .xl\:focus\:bg-orange-darker:focus {
    background-color: #99521f !important;
  }

  .xl\:focus\:bg-orange-dark:focus {
    background-color: #e67a2e !important;
  }

  .xl\:focus\:bg-orange:focus {
    background-color: #f83 !important;
  }

  .xl\:focus\:bg-orange-light:focus {
    background-color: #ffac70 !important;
  }

  .xl\:focus\:bg-orange-lighter:focus {
    background-color: #ffcfad !important;
  }

  .xl\:focus\:bg-orange-lightest:focus {
    background-color: #fff3eb !important;
  }

  .xl\:focus\:bg-gold-darkest:focus {
    background-color: #301d18 !important;
  }

  .xl\:focus\:bg-gold-darker:focus {
    background-color: #624031 !important;
  }

  .xl\:focus\:bg-gold-dark:focus {
    background-color: #a77c4b !important;
  }

  .xl\:focus\:bg-gold:focus {
    background-color: #b8915c !important;
  }

  .xl\:focus\:bg-gold-light:focus {
    background-color: #c7aa7d !important;
  }

  .xl\:focus\:bg-gold-lighter:focus {
    background-color: #dccbac !important;
  }

  .xl\:focus\:bg-gold-lightest:focus {
    background-color: #ede5d4 !important;
  }

  .xl\:border-transparent {
    border-color: transparent !important;
  }

  .xl\:border-black {
    border-color: #22292f !important;
  }

  .xl\:border-black-mdc {
    border-color: #000 !important;
  }

  .xl\:border-white {
    border-color: #fff !important;
  }

  .xl\:border-grey-darkest {
    border-color: #414141 !important;
  }

  .xl\:border-grey-darker {
    border-color: #828282 !important;
  }

  .xl\:border-grey-dark {
    border-color: #c3c3c3 !important;
  }

  .xl\:border-grey {
    border-color: #d9d9d9 !important;
  }

  .xl\:border-grey-light {
    border-color: #e4e4e4 !important;
  }

  .xl\:border-grey-lighter {
    border-color: #f1f1f1 !important;
  }

  .xl\:border-grey-lightest {
    border-color: #fbfbfb !important;
  }

  .xl\:border-grey-mdc {
    border-color: #edf0f5 !important;
  }

  .xl\:border-grey-mdc-70 {
    border-color: #707070 !important;
  }

  .xl\:border-blue-darkest {
    border-color: #0b1626 !important;
  }

  .xl\:border-blue-darker {
    border-color: #152b4b !important;
  }

  .xl\:border-blue-dark {
    border-color: #204171 !important;
  }

  .xl\:border-blue {
    border-color: #23487d !important;
  }

  .xl\:border-blue-light {
    border-color: #657fa4 !important;
  }

  .xl\:border-blue-lighter {
    border-color: #a7b6cb !important;
  }

  .xl\:border-blue-lightest {
    border-color: #e9edf2 !important;
  }

  .xl\:border-orange-darkest {
    border-color: #4d290f !important;
  }

  .xl\:border-orange-darker {
    border-color: #99521f !important;
  }

  .xl\:border-orange-dark {
    border-color: #e67a2e !important;
  }

  .xl\:border-orange {
    border-color: #f83 !important;
  }

  .xl\:border-orange-light {
    border-color: #ffac70 !important;
  }

  .xl\:border-orange-lighter {
    border-color: #ffcfad !important;
  }

  .xl\:border-orange-lightest {
    border-color: #fff3eb !important;
  }

  .xl\:border-gold-darkest {
    border-color: #301d18 !important;
  }

  .xl\:border-gold-darker {
    border-color: #624031 !important;
  }

  .xl\:border-gold-dark {
    border-color: #a77c4b !important;
  }

  .xl\:border-gold {
    border-color: #b8915c !important;
  }

  .xl\:border-gold-light {
    border-color: #c7aa7d !important;
  }

  .xl\:border-gold-lighter {
    border-color: #dccbac !important;
  }

  .xl\:border-gold-lightest {
    border-color: #ede5d4 !important;
  }

  .xl\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }

  .xl\:hover\:border-black:hover {
    border-color: #22292f !important;
  }

  .xl\:hover\:border-black-mdc:hover {
    border-color: #000 !important;
  }

  .xl\:hover\:border-white:hover {
    border-color: #fff !important;
  }

  .xl\:hover\:border-grey-darkest:hover {
    border-color: #414141 !important;
  }

  .xl\:hover\:border-grey-darker:hover {
    border-color: #828282 !important;
  }

  .xl\:hover\:border-grey-dark:hover {
    border-color: #c3c3c3 !important;
  }

  .xl\:hover\:border-grey:hover {
    border-color: #d9d9d9 !important;
  }

  .xl\:hover\:border-grey-light:hover {
    border-color: #e4e4e4 !important;
  }

  .xl\:hover\:border-grey-lighter:hover {
    border-color: #f1f1f1 !important;
  }

  .xl\:hover\:border-grey-lightest:hover {
    border-color: #fbfbfb !important;
  }

  .xl\:hover\:border-grey-mdc:hover {
    border-color: #edf0f5 !important;
  }

  .xl\:hover\:border-grey-mdc-70:hover {
    border-color: #707070 !important;
  }

  .xl\:hover\:border-blue-darkest:hover {
    border-color: #0b1626 !important;
  }

  .xl\:hover\:border-blue-darker:hover {
    border-color: #152b4b !important;
  }

  .xl\:hover\:border-blue-dark:hover {
    border-color: #204171 !important;
  }

  .xl\:hover\:border-blue:hover {
    border-color: #23487d !important;
  }

  .xl\:hover\:border-blue-light:hover {
    border-color: #657fa4 !important;
  }

  .xl\:hover\:border-blue-lighter:hover {
    border-color: #a7b6cb !important;
  }

  .xl\:hover\:border-blue-lightest:hover {
    border-color: #e9edf2 !important;
  }

  .xl\:hover\:border-orange-darkest:hover {
    border-color: #4d290f !important;
  }

  .xl\:hover\:border-orange-darker:hover {
    border-color: #99521f !important;
  }

  .xl\:hover\:border-orange-dark:hover {
    border-color: #e67a2e !important;
  }

  .xl\:hover\:border-orange:hover {
    border-color: #f83 !important;
  }

  .xl\:hover\:border-orange-light:hover {
    border-color: #ffac70 !important;
  }

  .xl\:hover\:border-orange-lighter:hover {
    border-color: #ffcfad !important;
  }

  .xl\:hover\:border-orange-lightest:hover {
    border-color: #fff3eb !important;
  }

  .xl\:hover\:border-gold-darkest:hover {
    border-color: #301d18 !important;
  }

  .xl\:hover\:border-gold-darker:hover {
    border-color: #624031 !important;
  }

  .xl\:hover\:border-gold-dark:hover {
    border-color: #a77c4b !important;
  }

  .xl\:hover\:border-gold:hover {
    border-color: #b8915c !important;
  }

  .xl\:hover\:border-gold-light:hover {
    border-color: #c7aa7d !important;
  }

  .xl\:hover\:border-gold-lighter:hover {
    border-color: #dccbac !important;
  }

  .xl\:hover\:border-gold-lightest:hover {
    border-color: #ede5d4 !important;
  }

  .xl\:focus\:border-transparent:focus {
    border-color: transparent !important;
  }

  .xl\:focus\:border-black:focus {
    border-color: #22292f !important;
  }

  .xl\:focus\:border-black-mdc:focus {
    border-color: #000 !important;
  }

  .xl\:focus\:border-white:focus {
    border-color: #fff !important;
  }

  .xl\:focus\:border-grey-darkest:focus {
    border-color: #414141 !important;
  }

  .xl\:focus\:border-grey-darker:focus {
    border-color: #828282 !important;
  }

  .xl\:focus\:border-grey-dark:focus {
    border-color: #c3c3c3 !important;
  }

  .xl\:focus\:border-grey:focus {
    border-color: #d9d9d9 !important;
  }

  .xl\:focus\:border-grey-light:focus {
    border-color: #e4e4e4 !important;
  }

  .xl\:focus\:border-grey-lighter:focus {
    border-color: #f1f1f1 !important;
  }

  .xl\:focus\:border-grey-lightest:focus {
    border-color: #fbfbfb !important;
  }

  .xl\:focus\:border-grey-mdc:focus {
    border-color: #edf0f5 !important;
  }

  .xl\:focus\:border-grey-mdc-70:focus {
    border-color: #707070 !important;
  }

  .xl\:focus\:border-blue-darkest:focus {
    border-color: #0b1626 !important;
  }

  .xl\:focus\:border-blue-darker:focus {
    border-color: #152b4b !important;
  }

  .xl\:focus\:border-blue-dark:focus {
    border-color: #204171 !important;
  }

  .xl\:focus\:border-blue:focus {
    border-color: #23487d !important;
  }

  .xl\:focus\:border-blue-light:focus {
    border-color: #657fa4 !important;
  }

  .xl\:focus\:border-blue-lighter:focus {
    border-color: #a7b6cb !important;
  }

  .xl\:focus\:border-blue-lightest:focus {
    border-color: #e9edf2 !important;
  }

  .xl\:focus\:border-orange-darkest:focus {
    border-color: #4d290f !important;
  }

  .xl\:focus\:border-orange-darker:focus {
    border-color: #99521f !important;
  }

  .xl\:focus\:border-orange-dark:focus {
    border-color: #e67a2e !important;
  }

  .xl\:focus\:border-orange:focus {
    border-color: #f83 !important;
  }

  .xl\:focus\:border-orange-light:focus {
    border-color: #ffac70 !important;
  }

  .xl\:focus\:border-orange-lighter:focus {
    border-color: #ffcfad !important;
  }

  .xl\:focus\:border-orange-lightest:focus {
    border-color: #fff3eb !important;
  }

  .xl\:focus\:border-gold-darkest:focus {
    border-color: #301d18 !important;
  }

  .xl\:focus\:border-gold-darker:focus {
    border-color: #624031 !important;
  }

  .xl\:focus\:border-gold-dark:focus {
    border-color: #a77c4b !important;
  }

  .xl\:focus\:border-gold:focus {
    border-color: #b8915c !important;
  }

  .xl\:focus\:border-gold-light:focus {
    border-color: #c7aa7d !important;
  }

  .xl\:focus\:border-gold-lighter:focus {
    border-color: #dccbac !important;
  }

  .xl\:focus\:border-gold-lightest:focus {
    border-color: #ede5d4 !important;
  }

  .xl\:rounded-none {
    border-radius: 0 !important;
  }

  .xl\:rounded-sm {
    border-radius: .125rem !important;
  }

  .xl\:rounded {
    border-radius: .25rem !important;
  }

  .xl\:rounded-lg {
    border-radius: .5rem !important;
  }

  .xl\:rounded-full {
    border-radius: 9999px !important;
  }

  .xl\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .xl\:rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .xl\:rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xl\:rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xl\:rounded-t-sm {
    border-top-left-radius: .125rem !important;
    border-top-right-radius: .125rem !important;
  }

  .xl\:rounded-r-sm {
    border-top-right-radius: .125rem !important;
    border-bottom-right-radius: .125rem !important;
  }

  .xl\:rounded-b-sm {
    border-bottom-right-radius: .125rem !important;
    border-bottom-left-radius: .125rem !important;
  }

  .xl\:rounded-l-sm {
    border-top-left-radius: .125rem !important;
    border-bottom-left-radius: .125rem !important;
  }

  .xl\:rounded-t {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
  }

  .xl\:rounded-r {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
  }

  .xl\:rounded-b {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
  }

  .xl\:rounded-l {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
  }

  .xl\:rounded-t-lg {
    border-top-left-radius: .5rem !important;
    border-top-right-radius: .5rem !important;
  }

  .xl\:rounded-r-lg {
    border-top-right-radius: .5rem !important;
    border-bottom-right-radius: .5rem !important;
  }

  .xl\:rounded-b-lg {
    border-bottom-right-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
  }

  .xl\:rounded-l-lg {
    border-top-left-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
  }

  .xl\:rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .xl\:rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .xl\:rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .xl\:rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .xl\:rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .xl\:rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .xl\:rounded-tl-sm {
    border-top-left-radius: .125rem !important;
  }

  .xl\:rounded-tr-sm {
    border-top-right-radius: .125rem !important;
  }

  .xl\:rounded-br-sm {
    border-bottom-right-radius: .125rem !important;
  }

  .xl\:rounded-bl-sm {
    border-bottom-left-radius: .125rem !important;
  }

  .xl\:rounded-tl {
    border-top-left-radius: .25rem !important;
  }

  .xl\:rounded-tr {
    border-top-right-radius: .25rem !important;
  }

  .xl\:rounded-br {
    border-bottom-right-radius: .25rem !important;
  }

  .xl\:rounded-bl {
    border-bottom-left-radius: .25rem !important;
  }

  .xl\:rounded-tl-lg {
    border-top-left-radius: .5rem !important;
  }

  .xl\:rounded-tr-lg {
    border-top-right-radius: .5rem !important;
  }

  .xl\:rounded-br-lg {
    border-bottom-right-radius: .5rem !important;
  }

  .xl\:rounded-bl-lg {
    border-bottom-left-radius: .5rem !important;
  }

  .xl\:rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .xl\:rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .xl\:rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .xl\:rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:border-solid {
    border-style: solid !important;
  }

  .xl\:border-dashed {
    border-style: dashed !important;
  }

  .xl\:border-dotted {
    border-style: dotted !important;
  }

  .xl\:border-none {
    border-style: none !important;
  }

  .xl\:border-0 {
    border-width: 0 !important;
  }

  .xl\:border-2 {
    border-width: 2px !important;
  }

  .xl\:border-4 {
    border-width: 4px !important;
  }

  .xl\:border-8 {
    border-width: 8px !important;
  }

  .xl\:border {
    border-width: 1px !important;
  }

  .xl\:border-t-0 {
    border-top-width: 0 !important;
  }

  .xl\:border-r-0 {
    border-right-width: 0 !important;
  }

  .xl\:border-b-0 {
    border-bottom-width: 0 !important;
  }

  .xl\:border-l-0 {
    border-left-width: 0 !important;
  }

  .xl\:border-t-2 {
    border-top-width: 2px !important;
  }

  .xl\:border-r-2 {
    border-right-width: 2px !important;
  }

  .xl\:border-b-2 {
    border-bottom-width: 2px !important;
  }

  .xl\:border-l-2 {
    border-left-width: 2px !important;
  }

  .xl\:border-t-4 {
    border-top-width: 4px !important;
  }

  .xl\:border-r-4 {
    border-right-width: 4px !important;
  }

  .xl\:border-b-4 {
    border-bottom-width: 4px !important;
  }

  .xl\:border-l-4 {
    border-left-width: 4px !important;
  }

  .xl\:border-t-8 {
    border-top-width: 8px !important;
  }

  .xl\:border-r-8 {
    border-right-width: 8px !important;
  }

  .xl\:border-b-8 {
    border-bottom-width: 8px !important;
  }

  .xl\:border-l-8 {
    border-left-width: 8px !important;
  }

  .xl\:border-t {
    border-top-width: 1px !important;
  }

  .xl\:border-r {
    border-right-width: 1px !important;
  }

  .xl\:border-b {
    border-bottom-width: 1px !important;
  }

  .xl\:border-l {
    border-left-width: 1px !important;
  }

  .xl\:block {
    display: block !important;
  }

  .xl\:inline-block {
    display: inline-block !important;
  }

  .xl\:inline {
    display: inline !important;
  }

  .xl\:table {
    display: table !important;
  }

  .xl\:table-row {
    display: table-row !important;
  }

  .xl\:table-cell {
    display: table-cell !important;
  }

  .xl\:hidden {
    display: none !important;
  }

  .xl\:flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .xl\:inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .xl\:flex-row {
    flex-direction: row !important;
  }

  .xl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .xl\:flex-col {
    flex-direction: column !important;
  }

  .xl\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .xl\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .xl\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .xl\:items-start {
    align-items: flex-start !important;
  }

  .xl\:items-end {
    align-items: flex-end !important;
  }

  .xl\:items-center {
    align-items: center !important;
  }

  .xl\:items-baseline {
    align-items: baseline !important;
  }

  .xl\:items-stretch {
    align-items: stretch !important;
  }

  .xl\:self-auto {
    align-self: auto !important;
  }

  .xl\:self-start {
    align-self: flex-start !important;
  }

  .xl\:self-end {
    align-self: flex-end !important;
  }

  .xl\:self-center {
    align-self: center !important;
  }

  .xl\:self-stretch {
    align-self: stretch !important;
  }

  .xl\:justify-start {
    justify-content: flex-start !important;
  }

  .xl\:justify-end {
    justify-content: flex-end !important;
  }

  .xl\:justify-center {
    justify-content: center !important;
  }

  .xl\:justify-between {
    justify-content: space-between !important;
  }

  .xl\:justify-around {
    justify-content: space-around !important;
  }

  .xl\:content-center {
    align-content: center !important;
  }

  .xl\:content-start {
    align-content: flex-start !important;
  }

  .xl\:content-end {
    align-content: flex-end !important;
  }

  .xl\:content-between {
    align-content: space-between !important;
  }

  .xl\:content-around {
    align-content: space-around !important;
  }

  .xl\:flex-1 {
    flex: 1 1 0% !important;
  }

  .xl\:flex-auto {
    flex: 1 1 auto !important;
  }

  .xl\:flex-initial {
    flex: 0 1 auto !important;
  }

  .xl\:flex-none {
    flex: none !important;
  }

  .xl\:flex-grow {
    flex-grow: 1 !important;
  }

  .xl\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .xl\:flex-no-grow {
    flex-grow: 0 !important;
  }

  .xl\:flex-no-shrink {
    flex-shrink: 0 !important;
  }

  .xl\:font-hairline {
    font-weight: 100 !important;
  }

  .xl\:font-thin {
    font-weight: 200 !important;
  }

  .xl\:font-light {
    font-weight: 300 !important;
  }

  .xl\:font-normal {
    font-weight: 400 !important;
  }

  .xl\:font-medium {
    font-weight: 500 !important;
  }

  .xl\:font-semibold {
    font-weight: 600 !important;
  }

  .xl\:font-bold {
    font-weight: 700 !important;
  }

  .xl\:font-extrabold {
    font-weight: 800 !important;
  }

  .xl\:font-black {
    font-weight: 900 !important;
  }

  .xl\:hover\:font-hairline:hover {
    font-weight: 100 !important;
  }

  .xl\:hover\:font-thin:hover {
    font-weight: 200 !important;
  }

  .xl\:hover\:font-light:hover {
    font-weight: 300 !important;
  }

  .xl\:hover\:font-normal:hover {
    font-weight: 400 !important;
  }

  .xl\:hover\:font-medium:hover {
    font-weight: 500 !important;
  }

  .xl\:hover\:font-semibold:hover {
    font-weight: 600 !important;
  }

  .xl\:hover\:font-bold:hover {
    font-weight: 700 !important;
  }

  .xl\:hover\:font-extrabold:hover {
    font-weight: 800 !important;
  }

  .xl\:hover\:font-black:hover {
    font-weight: 900 !important;
  }

  .xl\:focus\:font-hairline:focus {
    font-weight: 100 !important;
  }

  .xl\:focus\:font-thin:focus {
    font-weight: 200 !important;
  }

  .xl\:focus\:font-light:focus {
    font-weight: 300 !important;
  }

  .xl\:focus\:font-normal:focus {
    font-weight: 400 !important;
  }

  .xl\:focus\:font-medium:focus {
    font-weight: 500 !important;
  }

  .xl\:focus\:font-semibold:focus {
    font-weight: 600 !important;
  }

  .xl\:focus\:font-bold:focus {
    font-weight: 700 !important;
  }

  .xl\:focus\:font-extrabold:focus {
    font-weight: 800 !important;
  }

  .xl\:focus\:font-black:focus {
    font-weight: 900 !important;
  }

  .xl\:m-0 {
    margin: 0 !important;
  }

  .xl\:m-1 {
    margin: .25rem !important;
  }

  .xl\:m-2 {
    margin: .5rem !important;
  }

  .xl\:m-3 {
    margin: .75rem !important;
  }

  .xl\:m-4 {
    margin: 1rem !important;
  }

  .xl\:m-5 {
    margin: 1.25rem !important;
  }

  .xl\:m-6 {
    margin: 1.5rem !important;
  }

  .xl\:m-8 {
    margin: 2rem !important;
  }

  .xl\:m-10 {
    margin: 2.5rem !important;
  }

  .xl\:m-12 {
    margin: 3rem !important;
  }

  .xl\:m-16 {
    margin: 4rem !important;
  }

  .xl\:m-20 {
    margin: 5rem !important;
  }

  .xl\:m-24 {
    margin: 6rem !important;
  }

  .xl\:m-32 {
    margin: 8rem !important;
  }

  .xl\:m-auto {
    margin: auto !important;
  }

  .xl\:m-px {
    margin: 1px !important;
  }

  .xl\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .xl\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .xl\:my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .xl\:mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .xl\:my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .xl\:mx-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .xl\:my-3 {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important;
  }

  .xl\:mx-3 {
    margin-left: .75rem !important;
    margin-right: .75rem !important;
  }

  .xl\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .xl\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .xl\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .xl\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .xl\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .xl\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .xl\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .xl\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .xl\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .xl\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .xl\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .xl\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .xl\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .xl\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .xl\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .xl\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .xl\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .xl\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .xl\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .xl\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .xl\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .xl\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .xl\:my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .xl\:mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .xl\:mt-0 {
    margin-top: 0 !important;
  }

  .xl\:mr-0 {
    margin-right: 0 !important;
  }

  .xl\:mb-0 {
    margin-bottom: 0 !important;
  }

  .xl\:ml-0 {
    margin-left: 0 !important;
  }

  .xl\:mt-1 {
    margin-top: .25rem !important;
  }

  .xl\:mr-1 {
    margin-right: .25rem !important;
  }

  .xl\:mb-1 {
    margin-bottom: .25rem !important;
  }

  .xl\:ml-1 {
    margin-left: .25rem !important;
  }

  .xl\:mt-2 {
    margin-top: .5rem !important;
  }

  .xl\:mr-2 {
    margin-right: .5rem !important;
  }

  .xl\:mb-2 {
    margin-bottom: .5rem !important;
  }

  .xl\:ml-2 {
    margin-left: .5rem !important;
  }

  .xl\:mt-3 {
    margin-top: .75rem !important;
  }

  .xl\:mr-3 {
    margin-right: .75rem !important;
  }

  .xl\:mb-3 {
    margin-bottom: .75rem !important;
  }

  .xl\:ml-3 {
    margin-left: .75rem !important;
  }

  .xl\:mt-4 {
    margin-top: 1rem !important;
  }

  .xl\:mr-4 {
    margin-right: 1rem !important;
  }

  .xl\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .xl\:ml-4 {
    margin-left: 1rem !important;
  }

  .xl\:mt-5 {
    margin-top: 1.25rem !important;
  }

  .xl\:mr-5 {
    margin-right: 1.25rem !important;
  }

  .xl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .xl\:ml-5 {
    margin-left: 1.25rem !important;
  }

  .xl\:mt-6 {
    margin-top: 1.5rem !important;
  }

  .xl\:mr-6 {
    margin-right: 1.5rem !important;
  }

  .xl\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .xl\:ml-6 {
    margin-left: 1.5rem !important;
  }

  .xl\:mt-8 {
    margin-top: 2rem !important;
  }

  .xl\:mr-8 {
    margin-right: 2rem !important;
  }

  .xl\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .xl\:ml-8 {
    margin-left: 2rem !important;
  }

  .xl\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .xl\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .xl\:mb-10 {
    margin-bottom: 2.5rem !important;
  }

  .xl\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .xl\:mt-12 {
    margin-top: 3rem !important;
  }

  .xl\:mr-12 {
    margin-right: 3rem !important;
  }

  .xl\:mb-12 {
    margin-bottom: 3rem !important;
  }

  .xl\:ml-12 {
    margin-left: 3rem !important;
  }

  .xl\:mt-16 {
    margin-top: 4rem !important;
  }

  .xl\:mr-16 {
    margin-right: 4rem !important;
  }

  .xl\:mb-16 {
    margin-bottom: 4rem !important;
  }

  .xl\:ml-16 {
    margin-left: 4rem !important;
  }

  .xl\:mt-20 {
    margin-top: 5rem !important;
  }

  .xl\:mr-20 {
    margin-right: 5rem !important;
  }

  .xl\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .xl\:ml-20 {
    margin-left: 5rem !important;
  }

  .xl\:mt-24 {
    margin-top: 6rem !important;
  }

  .xl\:mr-24 {
    margin-right: 6rem !important;
  }

  .xl\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .xl\:ml-24 {
    margin-left: 6rem !important;
  }

  .xl\:mt-32 {
    margin-top: 8rem !important;
  }

  .xl\:mr-32 {
    margin-right: 8rem !important;
  }

  .xl\:mb-32 {
    margin-bottom: 8rem !important;
  }

  .xl\:ml-32 {
    margin-left: 8rem !important;
  }

  .xl\:mt-auto {
    margin-top: auto !important;
  }

  .xl\:mr-auto {
    margin-right: auto !important;
  }

  .xl\:mb-auto {
    margin-bottom: auto !important;
  }

  .xl\:ml-auto {
    margin-left: auto !important;
  }

  .xl\:mt-px {
    margin-top: 1px !important;
  }

  .xl\:mr-px {
    margin-right: 1px !important;
  }

  .xl\:mb-px {
    margin-bottom: 1px !important;
  }

  .xl\:ml-px {
    margin-left: 1px !important;
  }

  .xl\:p-0 {
    padding: 0 !important;
  }

  .xl\:p-1 {
    padding: .25rem !important;
  }

  .xl\:p-2 {
    padding: .5rem !important;
  }

  .xl\:p-3 {
    padding: .75rem !important;
  }

  .xl\:p-4 {
    padding: 1rem !important;
  }

  .xl\:p-5 {
    padding: 1.25rem !important;
  }

  .xl\:p-6 {
    padding: 1.5rem !important;
  }

  .xl\:p-8 {
    padding: 2rem !important;
  }

  .xl\:p-10 {
    padding: 2.5rem !important;
  }

  .xl\:p-12 {
    padding: 3rem !important;
  }

  .xl\:p-16 {
    padding: 4rem !important;
  }

  .xl\:p-20 {
    padding: 5rem !important;
  }

  .xl\:p-24 {
    padding: 6rem !important;
  }

  .xl\:p-32 {
    padding: 8rem !important;
  }

  .xl\:p-px {
    padding: 1px !important;
  }

  .xl\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .xl\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .xl\:py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .xl\:px-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .xl\:py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .xl\:px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .xl\:py-3 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
  }

  .xl\:px-3 {
    padding-left: .75rem !important;
    padding-right: .75rem !important;
  }

  .xl\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .xl\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .xl\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .xl\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .xl\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .xl\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .xl\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .xl\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .xl\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .xl\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .xl\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .xl\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .xl\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .xl\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .xl\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .xl\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .xl\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .xl\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .xl\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .xl\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .xl\:py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .xl\:px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .xl\:pt-0 {
    padding-top: 0 !important;
  }

  .xl\:pr-0 {
    padding-right: 0 !important;
  }

  .xl\:pb-0 {
    padding-bottom: 0 !important;
  }

  .xl\:pl-0 {
    padding-left: 0 !important;
  }

  .xl\:pt-1 {
    padding-top: .25rem !important;
  }

  .xl\:pr-1 {
    padding-right: .25rem !important;
  }

  .xl\:pb-1 {
    padding-bottom: .25rem !important;
  }

  .xl\:pl-1 {
    padding-left: .25rem !important;
  }

  .xl\:pt-2 {
    padding-top: .5rem !important;
  }

  .xl\:pr-2 {
    padding-right: .5rem !important;
  }

  .xl\:pb-2 {
    padding-bottom: .5rem !important;
  }

  .xl\:pl-2 {
    padding-left: .5rem !important;
  }

  .xl\:pt-3 {
    padding-top: .75rem !important;
  }

  .xl\:pr-3 {
    padding-right: .75rem !important;
  }

  .xl\:pb-3 {
    padding-bottom: .75rem !important;
  }

  .xl\:pl-3 {
    padding-left: .75rem !important;
  }

  .xl\:pt-4 {
    padding-top: 1rem !important;
  }

  .xl\:pr-4 {
    padding-right: 1rem !important;
  }

  .xl\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .xl\:pl-4 {
    padding-left: 1rem !important;
  }

  .xl\:pt-5 {
    padding-top: 1.25rem !important;
  }

  .xl\:pr-5 {
    padding-right: 1.25rem !important;
  }

  .xl\:pb-5 {
    padding-bottom: 1.25rem !important;
  }

  .xl\:pl-5 {
    padding-left: 1.25rem !important;
  }

  .xl\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .xl\:pr-6 {
    padding-right: 1.5rem !important;
  }

  .xl\:pb-6 {
    padding-bottom: 1.5rem !important;
  }

  .xl\:pl-6 {
    padding-left: 1.5rem !important;
  }

  .xl\:pt-8 {
    padding-top: 2rem !important;
  }

  .xl\:pr-8 {
    padding-right: 2rem !important;
  }

  .xl\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .xl\:pl-8 {
    padding-left: 2rem !important;
  }

  .xl\:pt-10 {
    padding-top: 2.5rem !important;
  }

  .xl\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .xl\:pb-10 {
    padding-bottom: 2.5rem !important;
  }

  .xl\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .xl\:pt-12 {
    padding-top: 3rem !important;
  }

  .xl\:pr-12 {
    padding-right: 3rem !important;
  }

  .xl\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .xl\:pl-12 {
    padding-left: 3rem !important;
  }

  .xl\:pt-16 {
    padding-top: 4rem !important;
  }

  .xl\:pr-16 {
    padding-right: 4rem !important;
  }

  .xl\:pb-16 {
    padding-bottom: 4rem !important;
  }

  .xl\:pl-16 {
    padding-left: 4rem !important;
  }

  .xl\:pt-20 {
    padding-top: 5rem !important;
  }

  .xl\:pr-20 {
    padding-right: 5rem !important;
  }

  .xl\:pb-20 {
    padding-bottom: 5rem !important;
  }

  .xl\:pl-20 {
    padding-left: 5rem !important;
  }

  .xl\:pt-24 {
    padding-top: 6rem !important;
  }

  .xl\:pr-24 {
    padding-right: 6rem !important;
  }

  .xl\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .xl\:pl-24 {
    padding-left: 6rem !important;
  }

  .xl\:pt-32 {
    padding-top: 8rem !important;
  }

  .xl\:pr-32 {
    padding-right: 8rem !important;
  }

  .xl\:pb-32 {
    padding-bottom: 8rem !important;
  }

  .xl\:pl-32 {
    padding-left: 8rem !important;
  }

  .xl\:pt-px {
    padding-top: 1px !important;
  }

  .xl\:pr-px {
    padding-right: 1px !important;
  }

  .xl\:pb-px {
    padding-bottom: 1px !important;
  }

  .xl\:pl-px {
    padding-left: 1px !important;
  }

  .xl\:text-left {
    text-align: left !important;
  }

  .xl\:text-center {
    text-align: center !important;
  }

  .xl\:text-right {
    text-align: right !important;
  }

  .xl\:text-justify {
    text-align: justify !important;
  }

  .xl\:text-transparent {
    color: transparent !important;
  }

  .xl\:text-black {
    color: #22292f !important;
  }

  .xl\:text-black-mdc {
    color: #000 !important;
  }

  .xl\:text-white {
    color: #fff !important;
  }

  .xl\:text-grey-darkest {
    color: #414141 !important;
  }

  .xl\:text-grey-darker {
    color: #828282 !important;
  }

  .xl\:text-grey-dark {
    color: #c3c3c3 !important;
  }

  .xl\:text-grey {
    color: #d9d9d9 !important;
  }

  .xl\:text-grey-light {
    color: #e4e4e4 !important;
  }

  .xl\:text-grey-lighter {
    color: #f1f1f1 !important;
  }

  .xl\:text-grey-lightest {
    color: #fbfbfb !important;
  }

  .xl\:text-grey-mdc {
    color: #edf0f5 !important;
  }

  .xl\:text-grey-mdc-70 {
    color: #707070 !important;
  }

  .xl\:text-blue-darkest {
    color: #0b1626 !important;
  }

  .xl\:text-blue-darker {
    color: #152b4b !important;
  }

  .xl\:text-blue-dark {
    color: #204171 !important;
  }

  .xl\:text-blue {
    color: #23487d !important;
  }

  .xl\:text-blue-light {
    color: #657fa4 !important;
  }

  .xl\:text-blue-lighter {
    color: #a7b6cb !important;
  }

  .xl\:text-blue-lightest {
    color: #e9edf2 !important;
  }

  .xl\:text-orange-darkest {
    color: #4d290f !important;
  }

  .xl\:text-orange-darker {
    color: #99521f !important;
  }

  .xl\:text-orange-dark {
    color: #e67a2e !important;
  }

  .xl\:text-orange {
    color: #f83 !important;
  }

  .xl\:text-orange-light {
    color: #ffac70 !important;
  }

  .xl\:text-orange-lighter {
    color: #ffcfad !important;
  }

  .xl\:text-orange-lightest {
    color: #fff3eb !important;
  }

  .xl\:text-gold-darkest {
    color: #301d18 !important;
  }

  .xl\:text-gold-darker {
    color: #624031 !important;
  }

  .xl\:text-gold-dark {
    color: #a77c4b !important;
  }

  .xl\:text-gold {
    color: #b8915c !important;
  }

  .xl\:text-gold-light {
    color: #c7aa7d !important;
  }

  .xl\:text-gold-lighter {
    color: #dccbac !important;
  }

  .xl\:text-gold-lightest {
    color: #ede5d4 !important;
  }

  .xl\:hover\:text-transparent:hover {
    color: transparent !important;
  }

  .xl\:hover\:text-black:hover {
    color: #22292f !important;
  }

  .xl\:hover\:text-black-mdc:hover {
    color: #000 !important;
  }

  .xl\:hover\:text-white:hover {
    color: #fff !important;
  }

  .xl\:hover\:text-grey-darkest:hover {
    color: #414141 !important;
  }

  .xl\:hover\:text-grey-darker:hover {
    color: #828282 !important;
  }

  .xl\:hover\:text-grey-dark:hover {
    color: #c3c3c3 !important;
  }

  .xl\:hover\:text-grey:hover {
    color: #d9d9d9 !important;
  }

  .xl\:hover\:text-grey-light:hover {
    color: #e4e4e4 !important;
  }

  .xl\:hover\:text-grey-lighter:hover {
    color: #f1f1f1 !important;
  }

  .xl\:hover\:text-grey-lightest:hover {
    color: #fbfbfb !important;
  }

  .xl\:hover\:text-grey-mdc:hover {
    color: #edf0f5 !important;
  }

  .xl\:hover\:text-grey-mdc-70:hover {
    color: #707070 !important;
  }

  .xl\:hover\:text-blue-darkest:hover {
    color: #0b1626 !important;
  }

  .xl\:hover\:text-blue-darker:hover {
    color: #152b4b !important;
  }

  .xl\:hover\:text-blue-dark:hover {
    color: #204171 !important;
  }

  .xl\:hover\:text-blue:hover {
    color: #23487d !important;
  }

  .xl\:hover\:text-blue-light:hover {
    color: #657fa4 !important;
  }

  .xl\:hover\:text-blue-lighter:hover {
    color: #a7b6cb !important;
  }

  .xl\:hover\:text-blue-lightest:hover {
    color: #e9edf2 !important;
  }

  .xl\:hover\:text-orange-darkest:hover {
    color: #4d290f !important;
  }

  .xl\:hover\:text-orange-darker:hover {
    color: #99521f !important;
  }

  .xl\:hover\:text-orange-dark:hover {
    color: #e67a2e !important;
  }

  .xl\:hover\:text-orange:hover {
    color: #f83 !important;
  }

  .xl\:hover\:text-orange-light:hover {
    color: #ffac70 !important;
  }

  .xl\:hover\:text-orange-lighter:hover {
    color: #ffcfad !important;
  }

  .xl\:hover\:text-orange-lightest:hover {
    color: #fff3eb !important;
  }

  .xl\:hover\:text-gold-darkest:hover {
    color: #301d18 !important;
  }

  .xl\:hover\:text-gold-darker:hover {
    color: #624031 !important;
  }

  .xl\:hover\:text-gold-dark:hover {
    color: #a77c4b !important;
  }

  .xl\:hover\:text-gold:hover {
    color: #b8915c !important;
  }

  .xl\:hover\:text-gold-light:hover {
    color: #c7aa7d !important;
  }

  .xl\:hover\:text-gold-lighter:hover {
    color: #dccbac !important;
  }

  .xl\:hover\:text-gold-lightest:hover {
    color: #ede5d4 !important;
  }

  .xl\:focus\:text-transparent:focus {
    color: transparent !important;
  }

  .xl\:focus\:text-black:focus {
    color: #22292f !important;
  }

  .xl\:focus\:text-black-mdc:focus {
    color: #000 !important;
  }

  .xl\:focus\:text-white:focus {
    color: #fff !important;
  }

  .xl\:focus\:text-grey-darkest:focus {
    color: #414141 !important;
  }

  .xl\:focus\:text-grey-darker:focus {
    color: #828282 !important;
  }

  .xl\:focus\:text-grey-dark:focus {
    color: #c3c3c3 !important;
  }

  .xl\:focus\:text-grey:focus {
    color: #d9d9d9 !important;
  }

  .xl\:focus\:text-grey-light:focus {
    color: #e4e4e4 !important;
  }

  .xl\:focus\:text-grey-lighter:focus {
    color: #f1f1f1 !important;
  }

  .xl\:focus\:text-grey-lightest:focus {
    color: #fbfbfb !important;
  }

  .xl\:focus\:text-grey-mdc:focus {
    color: #edf0f5 !important;
  }

  .xl\:focus\:text-grey-mdc-70:focus {
    color: #707070 !important;
  }

  .xl\:focus\:text-blue-darkest:focus {
    color: #0b1626 !important;
  }

  .xl\:focus\:text-blue-darker:focus {
    color: #152b4b !important;
  }

  .xl\:focus\:text-blue-dark:focus {
    color: #204171 !important;
  }

  .xl\:focus\:text-blue:focus {
    color: #23487d !important;
  }

  .xl\:focus\:text-blue-light:focus {
    color: #657fa4 !important;
  }

  .xl\:focus\:text-blue-lighter:focus {
    color: #a7b6cb !important;
  }

  .xl\:focus\:text-blue-lightest:focus {
    color: #e9edf2 !important;
  }

  .xl\:focus\:text-orange-darkest:focus {
    color: #4d290f !important;
  }

  .xl\:focus\:text-orange-darker:focus {
    color: #99521f !important;
  }

  .xl\:focus\:text-orange-dark:focus {
    color: #e67a2e !important;
  }

  .xl\:focus\:text-orange:focus {
    color: #f83 !important;
  }

  .xl\:focus\:text-orange-light:focus {
    color: #ffac70 !important;
  }

  .xl\:focus\:text-orange-lighter:focus {
    color: #ffcfad !important;
  }

  .xl\:focus\:text-orange-lightest:focus {
    color: #fff3eb !important;
  }

  .xl\:focus\:text-gold-darkest:focus {
    color: #301d18 !important;
  }

  .xl\:focus\:text-gold-darker:focus {
    color: #624031 !important;
  }

  .xl\:focus\:text-gold-dark:focus {
    color: #a77c4b !important;
  }

  .xl\:focus\:text-gold:focus {
    color: #b8915c !important;
  }

  .xl\:focus\:text-gold-light:focus {
    color: #c7aa7d !important;
  }

  .xl\:focus\:text-gold-lighter:focus {
    color: #dccbac !important;
  }

  .xl\:focus\:text-gold-lightest:focus {
    color: #ede5d4 !important;
  }

  .xl\:text-xs {
    font-size: .75rem !important;
  }

  .xl\:text-sm {
    font-size: .875rem !important;
  }

  .xl\:text-base {
    font-size: 1rem !important;
  }

  .xl\:text-lg {
    font-size: 1.125rem !important;
  }

  .xl\:text-xl {
    font-size: 1.25rem !important;
  }

  .xl\:text-2xl {
    font-size: 1.5rem !important;
  }

  .xl\:text-3xl {
    font-size: 1.875rem !important;
  }

  .xl\:text-4xl {
    font-size: 2.25rem !important;
  }

  .xl\:text-5xl {
    font-size: 3rem !important;
  }

  .xl\:italic {
    font-style: italic !important;
  }

  .xl\:roman {
    font-style: normal !important;
  }

  .xl\:uppercase {
    text-transform: uppercase !important;
  }

  .xl\:lowercase {
    text-transform: lowercase !important;
  }

  .xl\:capitalize {
    text-transform: capitalize !important;
  }

  .xl\:normal-case {
    text-transform: none !important;
  }

  .xl\:underline {
    text-decoration: underline !important;
  }

  .xl\:line-through {
    text-decoration: line-through !important;
  }

  .xl\:no-underline {
    text-decoration: none !important;
  }

  .xl\:antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .xl\:subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .xl\:hover\:italic:hover {
    font-style: italic !important;
  }

  .xl\:hover\:roman:hover {
    font-style: normal !important;
  }

  .xl\:hover\:uppercase:hover {
    text-transform: uppercase !important;
  }

  .xl\:hover\:lowercase:hover {
    text-transform: lowercase !important;
  }

  .xl\:hover\:capitalize:hover {
    text-transform: capitalize !important;
  }

  .xl\:hover\:normal-case:hover {
    text-transform: none !important;
  }

  .xl\:hover\:underline:hover {
    text-decoration: underline !important;
  }

  .xl\:hover\:line-through:hover {
    text-decoration: line-through !important;
  }

  .xl\:hover\:no-underline:hover {
    text-decoration: none !important;
  }

  .xl\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .xl\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .xl\:focus\:italic:focus {
    font-style: italic !important;
  }

  .xl\:focus\:roman:focus {
    font-style: normal !important;
  }

  .xl\:focus\:uppercase:focus {
    text-transform: uppercase !important;
  }

  .xl\:focus\:lowercase:focus {
    text-transform: lowercase !important;
  }

  .xl\:focus\:capitalize:focus {
    text-transform: capitalize !important;
  }

  .xl\:focus\:normal-case:focus {
    text-transform: none !important;
  }

  .xl\:focus\:underline:focus {
    text-decoration: underline !important;
  }

  .xl\:focus\:line-through:focus {
    text-decoration: line-through !important;
  }

  .xl\:focus\:no-underline:focus {
    text-decoration: none !important;
  }

  .xl\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .xl\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .xl\:w-1 {
    width: .25rem !important;
  }

  .xl\:w-2 {
    width: .5rem !important;
  }

  .xl\:w-3 {
    width: .75rem !important;
  }

  .xl\:w-4 {
    width: 1rem !important;
  }

  .xl\:w-5 {
    width: 1.25rem !important;
  }

  .xl\:w-6 {
    width: 1.5rem !important;
  }

  .xl\:w-8 {
    width: 2rem !important;
  }

  .xl\:w-10 {
    width: 2.5rem !important;
  }

  .xl\:w-12 {
    width: 3rem !important;
  }

  .xl\:w-16 {
    width: 4rem !important;
  }

  .xl\:w-24 {
    width: 6rem !important;
  }

  .xl\:w-32 {
    width: 8rem !important;
  }

  .xl\:w-48 {
    width: 12rem !important;
  }

  .xl\:w-64 {
    width: 16rem !important;
  }

  .xl\:w-auto {
    width: auto !important;
  }

  .xl\:w-px {
    width: 1px !important;
  }

  .xl\:w-1\/2 {
    width: 50% !important;
  }

  .xl\:w-1\/3 {
    width: 33.33333% !important;
  }

  .xl\:w-2\/3 {
    width: 66.66667% !important;
  }

  .xl\:w-1\/4 {
    width: 25% !important;
  }

  .xl\:w-3\/4 {
    width: 75% !important;
  }

  .xl\:w-1\/5 {
    width: 20% !important;
  }

  .xl\:w-2\/5 {
    width: 40% !important;
  }

  .xl\:w-3\/5 {
    width: 60% !important;
  }

  .xl\:w-4\/5 {
    width: 80% !important;
  }

  .xl\:w-1\/6 {
    width: 16.66667% !important;
  }

  .xl\:w-5\/6 {
    width: 83.33333% !important;
  }

  .xl\:w-full {
    width: 100% !important;
  }

  .xl\:w-screen {
    width: 100vw !important;
  }
}
