.cd-timeline__container {
  width: calc(100% - 2 * var(--component-padding));
  margin-left: auto;
  margin-right: auto;
}




/* TO-DO: This root stuff is needed for padding of the white items */
:root {
  --space-unit: 1rem;
}

:root, * {
  --space-xxxxs: calc(0.125 * var(--space-unit));
  --space-xxxs: calc(0.25 * var(--space-unit));
  --space-xxs: calc(0.375 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  --space-xxxl: calc(8.5 * var(--space-unit));
  --space-xxxxl: calc(13.75 * var(--space-unit));
  --component-padding: var(--space-md);
}

:root {
  --radius-sm: calc(var(--radius, 0.375em)/2);
  --radius-md: var(--radius, 0.375em);
  --radius-lg: calc(var(--radius, 0.375em)*2);
  --shadow-xs: 0 0.1px 0.3px rgba(0, 0, 0, 0.06),
                0 1px 2px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
                0 0.9px 1.5px rgba(0, 0, 0, 0.05),
                0 3.5px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
                0 3.1px 5.5px rgba(0, 0, 0, 0.08),
                0 14px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 1.2px 1.9px -1px rgba(0, 0, 0, 0.014),
                0 3.3px 5.3px -1px rgba(0, 0, 0, 0.038),
                0 8.5px 12.7px -1px rgba(0, 0, 0, 0.085),
                0 30px 42px -1px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 1.5px 2.1px -6px rgba(0, 0, 0, 0.012),
                0 3.6px 5.2px -6px rgba(0, 0, 0, 0.035),
                0 7.3px 10.6px -6px rgba(0, 0, 0, 0.07),
                0 16.2px 21.9px -6px rgba(0, 0, 0, 0.117),
                0 46px 60px -6px rgba(0, 0, 0, 0.2);
  --inner-glow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
  --inner-glow-top: inset 0 1px 0.5px hsla(0, 0%, 100%, 0.075);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* TO-DO: Flex is needed, I think */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

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

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

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

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

.flex-center {
  justify-content: center;
  align-items: center;
}

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

.flex-grow-0 {
  flex-grow: 0;
}

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

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-basis-0 {
  flex-basis: 0;
}

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

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

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

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

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

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

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

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

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.contents {
  display: contents;
}

.hide {
  display: none;
}


.truncate, .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-replace {
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
}

.break-word {
  overflow-wrap: break-word;
  min-width: 0;
}

.text-unit-rem, .text-unit-em, .text-unit-px {
  font-size: var(--text-unit);
}

.text-unit-rem {
  --text-unit: 1rem;
}

.text-unit-em {
  --text-unit: 1em;
}

.text-unit-px {
  --text-unit: 16px;
}

.text-xs {
  font-size: var(--text-xs, 0.6875rem);
}

.text-sm {
  font-size: var(--text-sm, 0.75rem);
}

.text-base {
  font-size: var(--text-unit, 1rem);
}

.text-md {
  font-size: var(--text-md, 1.125rem);
}

.text-lg {
  font-size: var(--text-lg, 1.375rem);
}

.text-xl {
  font-size: var(--text-xl, 1.75rem);
}

.text-xxl {
  font-size: var(--text-xxl, 2rem);
}

.text-xxxl {
  font-size: var(--text-xxxl, 2.5rem);
}

.text-xxxxl {
  font-size: var(--text-xxxxl, 3rem);
}

.text-uppercase {
  text-transform: uppercase;
}

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

.letter-spacing-xs {
  letter-spacing: -0.1em;
}

.letter-spacing-sm {
  letter-spacing: -0.05em;
}

.letter-spacing-md {
  letter-spacing: 0.05em;
}

.letter-spacing-lg {
  letter-spacing: 0.1em;
}

.letter-spacing-xl {
  letter-spacing: 0.2em;
}

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

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

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

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

.font-bold, .text-bold {
  font-weight: 700;
}

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

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

.font-italic {
  font-style: italic;
}

.font-smooth {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-primary {
  font-family: var(--font-primary);
}

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

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

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

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

.text-line-through {
  text-decoration: line-through;
}

.text-underline {
  text-decoration: underline;
}

.text-decoration-none {
  text-decoration: none;
}

.text-shadow-xs {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.text-shadow-md {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-shadow-lg {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.text-shadow-xl {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.2), 0 6px 24px rgba(0, 0, 0, 0.25);
}

.text-shadow-none {
  text-shadow: none;
}

.text-space-y-xxs {
  --text-space-y-multiplier: 0.25 !important;
}

.text-space-y-xs {
  --text-space-y-multiplier: 0.5 !important;
}

.text-space-y-sm {
  --text-space-y-multiplier: 0.75 !important;
}

.text-space-y-md {
  --text-space-y-multiplier: 1.25 !important;
}

.text-space-y-lg {
  --text-space-y-multiplier: 1.5 !important;
}

.text-space-y-xl {
  --text-space-y-multiplier: 1.75 !important;
}

.text-space-y-xxl {
  --text-space-y-multiplier: 2 !important;
}

.line-height-xs {
  --heading-line-height: 1;
  --body-line-height: 1.1;
}
.line-height-xs:not(.text-component) {
  line-height: 1.1;
}

.line-height-sm {
  --heading-line-height: 1.1;
  --body-line-height: 1.2;
}
.line-height-sm:not(.text-component) {
  line-height: 1.2;
}

.line-height-md {
  --heading-line-height: 1.15;
  --body-line-height: 1.4;
}
.line-height-md:not(.text-component) {
  line-height: 1.4;
}

.line-height-lg {
  --heading-line-height: 1.22;
  --body-line-height: 1.58;
}
.line-height-lg:not(.text-component) {
  line-height: 1.58;
}

.line-height-xl {
  --heading-line-height: 1.3;
  --body-line-height: 1.72;
}
.line-height-xl:not(.text-component) {
  line-height: 1.72;
}

.line-height-body {
  line-height: var(--body-line-height);
}

.line-height-heading {
  line-height: var(--heading-line-height);
}

.line-height-normal {
  line-height: normal !important;
}

.line-height-1 {
  line-height: 1 !important;
}

.column-count-1 {
  -moz-column-count: 1;
       column-count: 1;
}

.column-count-2 {
  -moz-column-count: 2;
       column-count: 2;
}

.column-count-3 {
  -moz-column-count: 3;
       column-count: 3;
}

.column-count-4 {
  -moz-column-count: 4;
       column-count: 4;
}

.ws-nowrap, .text-nowrap {
  white-space: nowrap;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.pointer-events-auto {
  pointer-events: auto;
}

.pointer-events-none {
  pointer-events: none;
}

.user-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.user-select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

[class^=color-], [class*=" color-"] {
  --color-o: 1;
}

.color-inherit {
  color: inherit;
}

.color-bg-darker {
  color: hsla(var(--color-bg-darker-h), var(--color-bg-darker-s), var(--color-bg-darker-l), var(--color-o, 1));
}

.color-bg-dark {
  color: hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), var(--color-o, 1));
}

.color-bg {
  color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), var(--color-o, 1));
}

.color-bg-light {
  color: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), var(--color-o, 1));
}

.color-bg-lighter {
  color: hsla(var(--color-bg-lighter-h), var(--color-bg-lighter-s), var(--color-bg-lighter-l), var(--color-o, 1));
}

.color-contrast-lower {
  color: hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), var(--color-o, 1));
}

.color-contrast-low {
  color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), var(--color-o, 1));
}

.color-contrast-medium {
  color: hsla(var(--color-contrast-medium-h), var(--color-contrast-medium-s), var(--color-contrast-medium-l), var(--color-o, 1));
}

.color-contrast-high {
  color: hsla(var(--color-contrast-high-h), var(--color-contrast-high-s), var(--color-contrast-high-l), var(--color-o, 1));
}

.color-contrast-higher {
  color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--color-o, 1));
}

.color-primary-darker {
  color: hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), var(--color-o, 1));
}

.color-primary-dark {
  color: hsla(var(--color-primary-dark-h), var(--color-primary-dark-s), var(--color-primary-dark-l), var(--color-o, 1));
}

.color-primary {
  color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), var(--color-o, 1));
}

.color-primary-light {
  color: hsla(var(--color-primary-light-h), var(--color-primary-light-s), var(--color-primary-light-l), var(--color-o, 1));
}

.color-primary-lighter {
  color: hsla(var(--color-primary-lighter-h), var(--color-primary-lighter-s), var(--color-primary-lighter-l), var(--color-o, 1));
}

.color-accent-darker {
  color: hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), var(--color-o, 1));
}

.color-accent-dark {
  color: hsla(var(--color-accent-dark-h), var(--color-accent-dark-s), var(--color-accent-dark-l), var(--color-o, 1));
}

.color-accent {
  color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), var(--color-o, 1));
}

.color-accent-light {
  color: hsla(var(--color-accent-light-h), var(--color-accent-light-s), var(--color-accent-light-l), var(--color-o, 1));
}

.color-accent-lighter {
  color: hsla(var(--color-accent-lighter-h), var(--color-accent-lighter-s), var(--color-accent-lighter-l), var(--color-o, 1));
}

.color-success-darker {
  color: hsla(var(--color-success-darker-h), var(--color-success-darker-s), var(--color-success-darker-l), var(--color-o, 1));
}

.color-success-dark {
  color: hsla(var(--color-success-dark-h), var(--color-success-dark-s), var(--color-success-dark-l), var(--color-o, 1));
}

.color-success {
  color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), var(--color-o, 1));
}

.color-success-light {
  color: hsla(var(--color-success-light-h), var(--color-success-light-s), var(--color-success-light-l), var(--color-o, 1));
}

.color-success-lighter {
  color: hsla(var(--color-success-lighter-h), var(--color-success-lighter-s), var(--color-success-lighter-l), var(--color-o, 1));
}

.color-warning-darker {
  color: hsla(var(--color-warning-darker-h), var(--color-warning-darker-s), var(--color-warning-darker-l), var(--color-o, 1));
}

.color-warning-dark {
  color: hsla(var(--color-warning-dark-h), var(--color-warning-dark-s), var(--color-warning-dark-l), var(--color-o, 1));
}

.color-warning {
  color: hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), var(--color-o, 1));
}

.color-warning-light {
  color: hsla(var(--color-warning-light-h), var(--color-warning-light-s), var(--color-warning-light-l), var(--color-o, 1));
}

.color-warning-lighter {
  color: hsla(var(--color-warning-lighter-h), var(--color-warning-lighter-s), var(--color-warning-lighter-l), var(--color-o, 1));
}

.color-error-darker {
  color: hsla(var(--color-error-darker-h), var(--color-error-darker-s), var(--color-error-darker-l), var(--color-o, 1));
}

.color-error-dark {
  color: hsla(var(--color-error-dark-h), var(--color-error-dark-s), var(--color-error-dark-l), var(--color-o, 1));
}

.color-error {
  color: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), var(--color-o, 1));
}

.color-error-light {
  color: hsla(var(--color-error-light-h), var(--color-error-light-s), var(--color-error-light-l), var(--color-o, 1));
}

.color-error-lighter {
  color: hsla(var(--color-error-lighter-h), var(--color-error-lighter-s), var(--color-error-lighter-l), var(--color-o, 1));
}

.color-white {
  color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), var(--color-o, 1));
}

.color-black {
  color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), var(--color-o, 1));
}

.color-opacity-0 {
  --color-o: 0;
}

.color-opacity-5\% {
  --color-o: 0.05;
}

.color-opacity-10\% {
  --color-o: 0.1;
}

.color-opacity-15\% {
  --color-o: 0.15;
}

.color-opacity-20\% {
  --color-o: 0.2;
}

.color-opacity-25\% {
  --color-o: 0.25;
}

.color-opacity-30\% {
  --color-o: 0.3;
}

.color-opacity-40\% {
  --color-o: 0.4;
}

.color-opacity-50\% {
  --color-o: 0.5;
}

.color-opacity-60\% {
  --color-o: 0.6;
}

.color-opacity-70\% {
  --color-o: 0.7;
}

.color-opacity-75\% {
  --color-o: 0.75;
}

.color-opacity-80\% {
  --color-o: 0.8;
}

.color-opacity-85\% {
  --color-o: 0.85;
}

.color-opacity-90\% {
  --color-o: 0.9;
}

.color-opacity-95\% {
  --color-o: 0.95;
}

[class^=color-gradient], [class*=" color-gradient"] {
  color: transparent !important;
  -webkit-background-clip: text;
          background-clip: text;
}



:root {
  --max-width-xxxxxs: 17.5rem;
  --max-width-xxxxs: 20rem;
  --max-width-xxxs: 26rem;
  --max-width-xxs: 32rem;
  --max-width-xs: 38rem;
  --max-width-sm: 48rem;
  --max-width-md: 64rem;
  --max-width-lg: 80rem;
  --max-width-xl: 90rem;
  --max-width-xxl: 100rem;
  --max-width-xxxl: 120rem;
  --max-width-xxxxl: 150rem;
}

.max-width-xxxxxs {
  max-width: var(--max-width-xxxxxs);
}

.max-width-xxxxs {
  max-width: var(--max-width-xxxxs);
}

.max-width-xxxs {
  max-width: var(--max-width-xxxs);
}

.max-width-xxs {
  max-width: var(--max-width-xxs);
}

.max-width-xs {
  max-width: var(--max-width-xs);
}

.max-width-sm {
  max-width: var(--max-width-sm);
}

.max-width-md {
  max-width: var(--max-width-md);
}

.max-width-lg {
  max-width: var(--max-width-lg);
}

.max-width-xl {
  max-width: var(--max-width-xl);
}

.max-width-xxl {
  max-width: var(--max-width-xxl);
}

.max-width-xxxl {
  max-width: var(--max-width-xxxl);
}

.max-width-xxxxl {
  max-width: var(--max-width-xxxxl);
}

.max-width-100\% {
  max-width: 100%;
}

.max-width-none {
  max-width: none;
}

[class^=max-width-adaptive], [class*=" max-width-adaptive"] {
  max-width: 32rem;
}

@media (min-width: 48rem) {
  .max-width-adaptive-sm, .max-width-adaptive-md, .max-width-adaptive-lg, .max-width-adaptive-xl, .max-width-adaptive {
    max-width: 48rem;
  }
}
@media (min-width: 64rem) {
  .max-width-adaptive-md, .max-width-adaptive-lg, .max-width-adaptive-xl, .max-width-adaptive {
    max-width: 64rem;
  }
}
@media (min-width: 80rem) {
  .max-width-adaptive-lg, .max-width-adaptive-xl, .max-width-adaptive {
    max-width: 80rem;
  }
}
@media (min-width: 90rem) {
  .max-width-adaptive-xl {
    max-width: 90rem;
  }
}
.max-height-100\% {
  max-height: 100%;
}

.max-height-100vh {
  max-height: 100vh;
}

.shadow-xs {
  box-shadow: var(--shadow-xs);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-none {
  box-shadow: none;
}

.shadow-xs.shadow-sm {
  box-shadow: var(--shadow-xs), var(--shadow-sm);
}

.shadow-sm.shadow-md {
  box-shadow: var(--shadow-sm), var(--shadow-md);
}

.shadow-md.shadow-lg {
  box-shadow: var(--shadow-md), var(--shadow-lg);
}

.shadow-lg.shadow-xl {
  box-shadow: var(--shadow-lg), var(--shadow-xl);
}

:where(.inner-glow, .inner-glow-top) {
  position: relative;
}
:where(.inner-glow, .inner-glow-top)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}

.inner-glow::after {
  box-shadow: var(--inner-glow);
}

.inner-glow-top::after {
  box-shadow: var(--inner-glow-top);
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

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

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.top-50\% {
  top: 50%;
}

.top-xxxxs {
  top: var(--space-xxxxs);
}

.top-xxxs {
  top: var(--space-xxxs);
}

.top-xxs {
  top: var(--space-xxs);
}

.top-xs {
  top: var(--space-xs);
}

.top-sm {
  top: var(--space-sm);
}

.top-md {
  top: var(--space-md);
}

.top-lg {
  top: var(--space-lg);
}

.top-xl {
  top: var(--space-xl);
}

.top-xxl {
  top: var(--space-xxl);
}

.top-xxxl {
  top: var(--space-xxxl);
}

.top-xxxxl {
  top: var(--space-xxxxl);
}

.bottom-0 {
  bottom: 0;
}

.bottom-50\% {
  bottom: 50%;
}

.bottom-xxxxs {
  bottom: var(--space-xxxxs);
}

.bottom-xxxs {
  bottom: var(--space-xxxs);
}

.bottom-xxs {
  bottom: var(--space-xxs);
}

.bottom-xs {
  bottom: var(--space-xs);
}

.bottom-sm {
  bottom: var(--space-sm);
}

.bottom-md {
  bottom: var(--space-md);
}

.bottom-lg {
  bottom: var(--space-lg);
}

.bottom-xl {
  bottom: var(--space-xl);
}

.bottom-xxl {
  bottom: var(--space-xxl);
}

.bottom-xxxl {
  bottom: var(--space-xxxl);
}

.bottom-xxxxl {
  bottom: var(--space-xxxxl);
}

.right-0 {
  right: 0;
}

.right-50\% {
  right: 50%;
}

.right-xxxxs {
  right: var(--space-xxxxs);
}

.right-xxxs {
  right: var(--space-xxxs);
}

.right-xxs {
  right: var(--space-xxs);
}

.right-xs {
  right: var(--space-xs);
}

.right-sm {
  right: var(--space-sm);
}

.right-md {
  right: var(--space-md);
}

.right-lg {
  right: var(--space-lg);
}

.right-xl {
  right: var(--space-xl);
}

.right-xxl {
  right: var(--space-xxl);
}

.right-xxxl {
  right: var(--space-xxxl);
}

.right-xxxxl {
  right: var(--space-xxxxl);
}

.left-0 {
  left: 0;
}

.left-50\% {
  left: 50%;
}

.left-xxxxs {
  left: var(--space-xxxxs);
}

.left-xxxs {
  left: var(--space-xxxs);
}

.left-xxs {
  left: var(--space-xxs);
}

.left-xs {
  left: var(--space-xs);
}

.left-sm {
  left: var(--space-sm);
}

.left-md {
  left: var(--space-md);
}

.left-lg {
  left: var(--space-lg);
}

.left-xl {
  left: var(--space-xl);
}

.left-xxl {
  left: var(--space-xxl);
}

.left-xxxl {
  left: var(--space-xxxl);
}

.left-xxxxl {
  left: var(--space-xxxxl);
}

.z-index-header {
  z-index: var(--z-index-header);
}

.z-index-popover {
  z-index: var(--z-index-popover);
}

.z-index-fixed-element {
  z-index: var(--z-index-fixed-element);
}

.z-index-overlay {
  z-index: var(--z-index-overlay);
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.momentum-scrolling {
  -webkit-overflow-scrolling: touch;
}

.overscroll-contain {
  overscroll-behavior: contain;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.scroll-padding-xxxxs {
  scroll-padding: var(--space-xxxxs);
}

.scroll-padding-xxxs {
  scroll-padding: var(--space-xxxs);
}

.scroll-padding-xxs {
  scroll-padding: var(--space-xxs);
}

.scroll-padding-xs {
  scroll-padding: var(--space-xs);
}

.scroll-padding-sm {
  scroll-padding: var(--space-sm);
}

.scroll-padding-md {
  scroll-padding: var(--space-md);
}

.scroll-padding-lg {
  scroll-padding: var(--space-lg);
}

.scroll-padding-xl {
  scroll-padding: var(--space-xl);
}

.scroll-padding-xxl {
  scroll-padding: var(--space-xxl);
}

.scroll-padding-xxxl {
  scroll-padding: var(--space-xxxl);
}

.scroll-padding-xxxxl {
  scroll-padding: var(--space-xxxxl);
}

.opacity-0 {
  opacity: 0;
}

.opacity-5\% {
  opacity: 0.05;
}

.opacity-10\% {
  opacity: 0.1;
}

.opacity-15\% {
  opacity: 0.15;
}

.opacity-20\% {
  opacity: 0.2;
}

.opacity-25\% {
  opacity: 0.25;
}

.opacity-30\% {
  opacity: 0.3;
}

.opacity-40\% {
  opacity: 0.4;
}

.opacity-50\% {
  opacity: 0.5;
}

.opacity-60\% {
  opacity: 0.6;
}

.opacity-70\% {
  opacity: 0.7;
}

.opacity-75\% {
  opacity: 0.75;
}

.opacity-80\% {
  opacity: 0.8;
}

.opacity-85\% {
  opacity: 0.85;
}

.opacity-90\% {
  opacity: 0.9;
}

.opacity-95\% {
  opacity: 0.95;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

[class^=border-], [class*=" border-"] {
  --border-o: 1;
}

.bg, [class^=bg-], [class*=" bg-"] {
  --bg-o: 1;
}

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

.bg-inherit {
  background-color: inherit;
}

.bg-darker {
  background-color: hsla(var(--color-bg-darker-h), var(--color-bg-darker-s), var(--color-bg-darker-l), var(--bg-o));
}

.bg-dark {
  background-color: hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), var(--bg-o));
}

.bg {
  background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), var(--bg-o));
}

.bg-light {
  background-color: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), var(--bg-o));
}

.bg-lighter {
  background-color: hsla(var(--color-bg-lighter-h), var(--color-bg-lighter-s), var(--color-bg-lighter-l), var(--bg-o));
}

.bg-contrast-lower {
  background-color: hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), var(--bg-o, 1));
}

.bg-contrast-low {
  background-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), var(--bg-o, 1));
}

.bg-contrast-medium {
  background-color: hsla(var(--color-contrast-medium-h), var(--color-contrast-medium-s), var(--color-contrast-medium-l), var(--bg-o, 1));
}

.bg-contrast-high {
  background-color: hsla(var(--color-contrast-high-h), var(--color-contrast-high-s), var(--color-contrast-high-l), var(--bg-o, 1));
}

.bg-contrast-higher {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--bg-o, 1));
}

.bg-primary-darker {
  background-color: hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), var(--bg-o, 1));
}

.bg-primary-dark {
  background-color: hsla(var(--color-primary-dark-h), var(--color-primary-dark-s), var(--color-primary-dark-l), var(--bg-o, 1));
}

.bg-primary {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), var(--bg-o, 1));
}

.bg-primary-light {
  background-color: hsla(var(--color-primary-light-h), var(--color-primary-light-s), var(--color-primary-light-l), var(--bg-o, 1));
}

.bg-primary-lighter {
  background-color: hsla(var(--color-primary-lighter-h), var(--color-primary-lighter-s), var(--color-primary-lighter-l), var(--bg-o, 1));
}

.bg-accent-darker {
  background-color: hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), var(--bg-o, 1));
}

.bg-accent-dark {
  background-color: hsla(var(--color-accent-dark-h), var(--color-accent-dark-s), var(--color-accent-dark-l), var(--bg-o, 1));
}

.bg-accent {
  background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), var(--bg-o, 1));
}

.bg-accent-light {
  background-color: hsla(var(--color-accent-light-h), var(--color-accent-light-s), var(--color-accent-light-l), var(--bg-o, 1));
}

.bg-accent-lighter {
  background-color: hsla(var(--color-accent-lighter-h), var(--color-accent-lighter-s), var(--color-accent-lighter-l), var(--bg-o, 1));
}

.bg-success-darker {
  background-color: hsla(var(--color-success-darker-h), var(--color-success-darker-s), var(--color-success-darker-l), var(--bg-o, 1));
}

.bg-success-dark {
  background-color: hsla(var(--color-success-dark-h), var(--color-success-dark-s), var(--color-success-dark-l), var(--bg-o, 1));
}

.bg-success {
  background-color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), var(--bg-o, 1));
}

.bg-success-light {
  background-color: hsla(var(--color-success-light-h), var(--color-success-light-s), var(--color-success-light-l), var(--bg-o, 1));
}

.bg-success-lighter {
  background-color: hsla(var(--color-success-lighter-h), var(--color-success-lighter-s), var(--color-success-lighter-l), var(--bg-o, 1));
}

.bg-warning-darker {
  background-color: hsla(var(--color-warning-darker-h), var(--color-warning-darker-s), var(--color-warning-darker-l), var(--bg-o, 1));
}

.bg-warning-dark {
  background-color: hsla(var(--color-warning-dark-h), var(--color-warning-dark-s), var(--color-warning-dark-l), var(--bg-o, 1));
}

.bg-warning {
  background-color: hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), var(--bg-o, 1));
}

.bg-warning-light {
  background-color: hsla(var(--color-warning-light-h), var(--color-warning-light-s), var(--color-warning-light-l), var(--bg-o, 1));
}

.bg-warning-lighter {
  background-color: hsla(var(--color-warning-lighter-h), var(--color-warning-lighter-s), var(--color-warning-lighter-l), var(--bg-o, 1));
}

.bg-error-darker {
  background-color: hsla(var(--color-error-darker-h), var(--color-error-darker-s), var(--color-error-darker-l), var(--bg-o, 1));
}

.bg-error-dark {
  background-color: hsla(var(--color-error-dark-h), var(--color-error-dark-s), var(--color-error-dark-l), var(--bg-o, 1));
}

.bg-error {
  background-color: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), var(--bg-o, 1));
}

.bg-error-light {
  background-color: hsla(var(--color-error-light-h), var(--color-error-light-s), var(--color-error-light-l), var(--bg-o, 1));
}

.bg-error-lighter {
  background-color: hsla(var(--color-error-lighter-h), var(--color-error-lighter-s), var(--color-error-lighter-l), var(--bg-o, 1));
}

.bg-white {
  background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), var(--bg-o, 1));
}

.bg-black {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), var(--bg-o, 1));
}

.bg-opacity-0 {
  --bg-o: 0;
}

.bg-opacity-5\% {
  --bg-o: 0.05;
}

.bg-opacity-10\% {
  --bg-o: 0.1;
}

.bg-opacity-15\% {
  --bg-o: 0.15;
}

.bg-opacity-20\% {
  --bg-o: 0.2;
}

.bg-opacity-25\% {
  --bg-o: 0.25;
}

.bg-opacity-30\% {
  --bg-o: 0.3;
}

.bg-opacity-40\% {
  --bg-o: 0.4;
}

.bg-opacity-50\% {
  --bg-o: 0.5;
}

.bg-opacity-60\% {
  --bg-o: 0.6;
}

.bg-opacity-70\% {
  --bg-o: 0.7;
}

.bg-opacity-75\% {
  --bg-o: 0.75;
}

.bg-opacity-80\% {
  --bg-o: 0.8;
}

.bg-opacity-85\% {
  --bg-o: 0.85;
}

.bg-opacity-90\% {
  --bg-o: 0.9;
}

.bg-opacity-95\% {
  --bg-o: 0.95;
}

.bg-center {
  background-position: center;
}

.bg-top {
  background-position: center top;
}

.bg-right {
  background-position: right center;
}

.bg-bottom {
  background-position: center bottom;
}

.bg-left {
  background-position: left center;
}

.bg-top-left {
  background-position: left top;
}

.bg-top-right {
  background-position: right top;
}

.bg-bottom-left {
  background-position: left bottom;
}

.bg-bottom-right {
  background-position: right bottom;
}

.bg-cover {
  background-size: cover;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.backdrop-blur-10 {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.backdrop-blur-20 {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.isolate {
  isolation: isolate;
}

.blend-multiply {
  mix-blend-mode: multiply;
}

.blend-overlay {
  mix-blend-mode: overlay;
}

.blend-difference {
  mix-blend-mode: difference;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.perspective-xs {
  perspective: 250px;
}

.perspective-sm {
  perspective: 500px;
}

.perspective-md {
  perspective: 1000px;
}

.perspective-lg {
  perspective: 1500px;
}

.perspective-xl {
  perspective: 3000px;
}

[class^=flip], [class*=" flip"],
[class^=-rotate], [class*=" -rotate"],
[class^=rotate], [class*=" rotate"],
[class^=-translate], [class*=" -translate"],
[class^=translate], [class*=" translate"],
[class^=-scale], [class*=" -scale"],
[class^=scale], [class*=" scale"],
[class^=-skew], [class*=" -skew"] [class^=skew],
[class*=" skew"] {
  --translate: 0;
  --rotate: 0;
  --skew: 0;
  --scale: 1;
  transform: translate3d(var(--translate-x, var(--translate)), var(--translate-y, var(--translate)), var(--translate-z, 0)) rotateX(var(--rotate-x, 0)) rotateY(var(--rotate-y, 0)) rotateZ(var(--rotate-z, var(--rotate))) skewX(var(--skew-x, var(--skew))) skewY(var(--skew-y, 0)) scaleX(var(--scale-x, var(--scale))) scaleY(var(--scale-y, var(--scale)));
}

.flip {
  --scale: -1;
}

.flip-x {
  --scale-x: -1;
}

.flip-y {
  --scale-y: -1;
}

.rotate-90 {
  --rotate: 90deg;
}

.rotate-180 {
  --rotate: 180deg;
}

.rotate-270 {
  --rotate: 270deg;
}

.-translate-50\% {
  --translate: -50%;
}

.-translate-x-50\% {
  --translate-x: -50%;
}

.-translate-y-50\% {
  --translate-y: -50%;
}

.translate-50\% {
  --translate: 50%;
}

.translate-x-50\% {
  --translate-x: 50%;
}

.translate-y-50\% {
  --translate-y: 50%;
}

.origin-center {
  transform-origin: center;
}

.origin-top {
  transform-origin: center top;
}

.origin-right {
  transform-origin: right center;
}

.origin-bottom {
  transform-origin: center bottom;
}

.origin-left {
  transform-origin: left center;
}

.origin-top-left {
  transform-origin: left top;
}

.origin-top-right {
  transform-origin: right top;
}

.origin-bottom-left {
  transform-origin: left bottom;
}

.origin-bottom-right {
  transform-origin: right bottom;
}

.transition {
  transition-property: var(--transition-property, all);
  transition-duration: var(--transition-duration, 0.2s);
  transition-delay: var(--transition-delay, 0s);
}

.fill-current {
  fill: currentColor;
}

.stroke-current {
  stroke: currentColor;
}

.stroke-1 {
  stroke-width: 1px;
}

.stroke-2 {
  stroke-width: 2px;
}

.stroke-3 {
  stroke-width: 3px;
}

.stroke-4 {
  stroke-width: 4px;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

@media (min-width: 32rem) {
  .flex\@xs {
    display: flex;
  }

  .inline-flex\@xs {
    display: inline-flex;
  }

  .flex-wrap\@xs {
    flex-wrap: wrap;
  }

  .flex-nowrap\@xs {
    flex-wrap: nowrap;
  }

  .flex-column\@xs {
    flex-direction: column;
  }

  .flex-column-reverse\@xs {
    flex-direction: column-reverse;
  }

  .flex-row\@xs {
    flex-direction: row;
  }

  .flex-row-reverse\@xs {
    flex-direction: row-reverse;
  }

  .flex-center\@xs {
    justify-content: center;
    align-items: center;
  }

  .flex-grow\@xs {
    flex-grow: 1;
  }

  .flex-grow-0\@xs {
    flex-grow: 0;
  }

  .flex-shrink\@xs {
    flex-shrink: 1;
  }

  .flex-shrink-0\@xs {
    flex-shrink: 0;
  }

  .flex-basis-0\@xs {
    flex-basis: 0;
  }

  .justify-start\@xs {
    justify-content: flex-start;
  }

  .justify-end\@xs {
    justify-content: flex-end;
  }

  .justify-center\@xs {
    justify-content: center;
  }

  .justify-between\@xs {
    justify-content: space-between;
  }

  .items-center\@xs {
    align-items: center;
  }

  .items-start\@xs {
    align-items: flex-start;
  }

  .items-end\@xs {
    align-items: flex-end;
  }

  .items-baseline\@xs {
    align-items: baseline;
  }

  .order-1\@xs {
    order: 1;
  }

  .order-2\@xs {
    order: 2;
  }

  .order-3\@xs {
    order: 3;
  }

  .block\@xs {
    display: block;
  }

  .inline-block\@xs {
    display: inline-block;
  }

  .inline\@xs {
    display: inline;
  }

  .contents\@xs {
    display: contents;
  }

  .hide\@xs {
    display: none !important;
  }

  .text-center\@xs {
    text-align: center;
  }

  .text-left\@xs {
    text-align: left;
  }

  .text-right\@xs {
    text-align: right;
  }

  .text-justify\@xs {
    text-align: justify;
  }

  .text-xs\@xs {
    font-size: var(--text-xs, 0.6875rem);
  }

  .text-sm\@xs {
    font-size: var(--text-sm, 0.75rem);
  }

  .text-base\@xs {
    font-size: var(--text-unit, 1rem);
  }

  .text-md\@xs {
    font-size: var(--text-md, 1.125rem);
  }

  .text-lg\@xs {
    font-size: var(--text-lg, 1.375rem);
  }

  .text-xl\@xs {
    font-size: var(--text-xl, 1.75rem);
  }

  .text-xxl\@xs {
    font-size: var(--text-xxl, 2rem);
  }

  .text-xxxl\@xs {
    font-size: var(--text-xxxl, 2.5rem);
  }

  .text-xxxxl\@xs {
    font-size: var(--text-xxxxl, 3rem);
  }

  .column-count-1\@xs {
    -moz-column-count: 1;
         column-count: 1;
  }

  .column-count-2\@xs {
    -moz-column-count: 2;
         column-count: 2;
  }

  .column-count-3\@xs {
    -moz-column-count: 3;
         column-count: 3;
  }

  .column-count-4\@xs {
    -moz-column-count: 4;
         column-count: 4;
  }

  .width-xxxxs\@xs {
    width: var(--size-xxxxs, 0.25rem);
  }

  .width-xxxs\@xs {
    width: var(--size-xxxs, 0.5rem);
  }

  .width-xxs\@xs {
    width: var(--size-xxs, 0.75rem);
  }

  .width-xs\@xs {
    width: var(--size-xs, 1rem);
  }

  .width-sm\@xs {
    width: var(--size-sm, 1.5rem);
  }

  .width-md\@xs {
    width: var(--size-md, 2rem);
  }

  .width-lg\@xs {
    width: var(--size-lg, 3rem);
  }

  .width-xl\@xs {
    width: var(--size-xl, 4rem);
  }

  .width-xxl\@xs {
    width: var(--size-xxl, 6rem);
  }

  .width-xxxl\@xs {
    width: var(--size-xxxl, 8rem);
  }

  .width-xxxxl\@xs {
    width: var(--size-xxxxl, 16rem);
  }

  .width-0\@xs {
    width: 0;
  }

  .width-10\%\@xs {
    width: 10%;
  }

  .width-20\%\@xs {
    width: 20%;
  }

  .width-25\%\@xs {
    width: 25%;
  }

  .width-30\%\@xs {
    width: 30%;
  }

  .width-33\%\@xs {
    width: 33.3333333333%;
  }

  .width-40\%\@xs {
    width: 40%;
  }

  .width-50\%\@xs {
    width: 50%;
  }

  .width-60\%\@xs {
    width: 60%;
  }

  .width-66\%\@xs {
    width: 66.6666666667%;
  }

  .width-70\%\@xs {
    width: 70%;
  }

  .width-75\%\@xs {
    width: 75%;
  }

  .width-80\%\@xs {
    width: 80%;
  }

  .width-90\%\@xs {
    width: 90%;
  }

  .width-100\%\@xs {
    width: 100%;
  }

  .width-100vw\@xs {
    width: 100vw;
  }

  .width-auto\@xs {
    width: auto;
  }

  .width-inherit\@xs {
    width: inherit;
  }

  .height-xxxxs\@xs {
    height: var(--size-xxxxs, 0.25rem);
  }

  .height-xxxs\@xs {
    height: var(--size-xxxs, 0.5rem);
  }

  .height-xxs\@xs {
    height: var(--size-xxs, 0.75rem);
  }

  .height-xs\@xs {
    height: var(--size-xs, 1rem);
  }

  .height-sm\@xs {
    height: var(--size-sm, 1.5rem);
  }

  .height-md\@xs {
    height: var(--size-md, 2rem);
  }

  .height-lg\@xs {
    height: var(--size-lg, 3rem);
  }

  .height-xl\@xs {
    height: var(--size-xl, 4rem);
  }

  .height-xxl\@xs {
    height: var(--size-xxl, 6rem);
  }

  .height-xxxl\@xs {
    height: var(--size-xxxl, 8rem);
  }

  .height-xxxxl\@xs {
    height: var(--size-xxxxl, 16rem);
  }

  .height-0\@xs {
    height: 0;
  }

  .height-10\%\@xs {
    height: 10%;
  }

  .height-20\%\@xs {
    height: 20%;
  }

  .height-25\%\@xs {
    height: 25%;
  }

  .height-30\%\@xs {
    height: 30%;
  }

  .height-33\%\@xs {
    height: 33.3333333333%;
  }

  .height-40\%\@xs {
    height: 40%;
  }

  .height-50\%\@xs {
    height: 50%;
  }

  .height-60\%\@xs {
    height: 60%;
  }

  .height-66\%\@xs {
    height: 66.6666666667%;
  }

  .height-70\%\@xs {
    height: 70%;
  }

  .height-75\%\@xs {
    height: 75%;
  }

  .height-80\%\@xs {
    height: 80%;
  }

  .height-90\%\@xs {
    height: 90%;
  }

  .height-100\%\@xs {
    height: 100%;
  }

  .height-100vh\@xs {
    height: 100vh;
  }

  .height-auto\@xs {
    height: auto;
  }

  .height-inherit\@xs {
    height: inherit;
  }

  .max-width-xxxxxs\@xs {
    max-width: var(--max-width-xxxxxs);
  }

  .max-width-xxxxs\@xs {
    max-width: var(--max-width-xxxxs);
  }

  .max-width-xxxs\@xs {
    max-width: var(--max-width-xxxs);
  }

  .max-width-xxs\@xs {
    max-width: var(--max-width-xxs);
  }

  .max-width-xs\@xs {
    max-width: var(--max-width-xs);
  }

  .max-width-sm\@xs {
    max-width: var(--max-width-sm);
  }

  .max-width-md\@xs {
    max-width: var(--max-width-md);
  }

  .max-width-lg\@xs {
    max-width: var(--max-width-lg);
  }

  .max-width-xl\@xs {
    max-width: var(--max-width-xl);
  }

  .max-width-xxl\@xs {
    max-width: var(--max-width-xxl);
  }

  .max-width-xxxl\@xs {
    max-width: var(--max-width-xxxl);
  }

  .max-width-xxxxl\@xs {
    max-width: var(--max-width-xxxxl);
  }

  .max-width-100\%\@xs {
    max-width: 100%;
  }

  .max-width-none\@xs {
    max-width: none;
  }

  .position-relative\@xs {
    position: relative;
  }

  .position-absolute\@xs {
    position: absolute;
  }

  .position-fixed\@xs {
    position: fixed;
  }

  .position-sticky\@xs {
    position: -webkit-sticky;
    position: sticky;
  }

  .position-static\@xs {
    position: static;
  }

  .inset-0\@xs {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .top-0\@xs {
    top: 0;
  }

  .top-50\%\@xs {
    top: 50%;
  }

  .top-xxxxs\@xs {
    top: var(--space-xxxxs);
  }

  .top-xxxs\@xs {
    top: var(--space-xxxs);
  }

  .top-xxs\@xs {
    top: var(--space-xxs);
  }

  .top-xs\@xs {
    top: var(--space-xs);
  }

  .top-sm\@xs {
    top: var(--space-sm);
  }

  .top-md\@xs {
    top: var(--space-md);
  }

  .top-lg\@xs {
    top: var(--space-lg);
  }

  .top-xl\@xs {
    top: var(--space-xl);
  }

  .top-xxl\@xs {
    top: var(--space-xxl);
  }

  .top-xxxl\@xs {
    top: var(--space-xxxl);
  }

  .top-xxxxl\@xs {
    top: var(--space-xxxxl);
  }

  .bottom-0\@xs {
    bottom: 0;
  }

  .bottom-50\%\@xs {
    bottom: 50%;
  }

  .bottom-xxxxs\@xs {
    bottom: var(--space-xxxxs);
  }

  .bottom-xxxs\@xs {
    bottom: var(--space-xxxs);
  }

  .bottom-xxs\@xs {
    bottom: var(--space-xxs);
  }

  .bottom-xs\@xs {
    bottom: var(--space-xs);
  }

  .bottom-sm\@xs {
    bottom: var(--space-sm);
  }

  .bottom-md\@xs {
    bottom: var(--space-md);
  }

  .bottom-lg\@xs {
    bottom: var(--space-lg);
  }

  .bottom-xl\@xs {
    bottom: var(--space-xl);
  }

  .bottom-xxl\@xs {
    bottom: var(--space-xxl);
  }

  .bottom-xxxl\@xs {
    bottom: var(--space-xxxl);
  }

  .bottom-xxxxl\@xs {
    bottom: var(--space-xxxxl);
  }

  .right-0\@xs {
    right: 0;
  }

  .right-50\%\@xs {
    right: 50%;
  }

  .right-xxxxs\@xs {
    right: var(--space-xxxxs);
  }

  .right-xxxs\@xs {
    right: var(--space-xxxs);
  }

  .right-xxs\@xs {
    right: var(--space-xxs);
  }

  .right-xs\@xs {
    right: var(--space-xs);
  }

  .right-sm\@xs {
    right: var(--space-sm);
  }

  .right-md\@xs {
    right: var(--space-md);
  }

  .right-lg\@xs {
    right: var(--space-lg);
  }

  .right-xl\@xs {
    right: var(--space-xl);
  }

  .right-xxl\@xs {
    right: var(--space-xxl);
  }

  .right-xxxl\@xs {
    right: var(--space-xxxl);
  }

  .right-xxxxl\@xs {
    right: var(--space-xxxxl);
  }

  .left-0\@xs {
    left: 0;
  }

  .left-50\%\@xs {
    left: 50%;
  }

  .left-xxxxs\@xs {
    left: var(--space-xxxxs);
  }

  .left-xxxs\@xs {
    left: var(--space-xxxs);
  }

  .left-xxs\@xs {
    left: var(--space-xxs);
  }

  .left-xs\@xs {
    left: var(--space-xs);
  }

  .left-sm\@xs {
    left: var(--space-sm);
  }

  .left-md\@xs {
    left: var(--space-md);
  }

  .left-lg\@xs {
    left: var(--space-lg);
  }

  .left-xl\@xs {
    left: var(--space-xl);
  }

  .left-xxl\@xs {
    left: var(--space-xxl);
  }

  .left-xxxl\@xs {
    left: var(--space-xxxl);
  }

  .left-xxxxl\@xs {
    left: var(--space-xxxxl);
  }

  .overflow-hidden\@xs {
    overflow: hidden;
  }

  .overflow-auto\@xs {
    overflow: auto;
  }

  .momentum-scrolling\@xs {
    -webkit-overflow-scrolling: touch;
  }

  .overscroll-contain\@xs {
    overscroll-behavior: contain;
  }

  .visible\@xs {
    visibility: visible;
  }

  .invisible\@xs {
    visibility: hidden;
  }
}
@media not all and (min-width: 32rem) {
  .display\@xs {
    display: none !important;
  }
}
@media (min-width: 48rem) {
  .flex\@sm {
    display: flex;
  }

  .inline-flex\@sm {
    display: inline-flex;
  }

  .flex-wrap\@sm {
    flex-wrap: wrap;
  }

  .flex-nowrap\@sm {
    flex-wrap: nowrap;
  }

  .flex-column\@sm {
    flex-direction: column;
  }

  .flex-column-reverse\@sm {
    flex-direction: column-reverse;
  }

  .flex-row\@sm {
    flex-direction: row;
  }

  .flex-row-reverse\@sm {
    flex-direction: row-reverse;
  }

  .flex-center\@sm {
    justify-content: center;
    align-items: center;
  }

  .flex-grow\@sm {
    flex-grow: 1;
  }

  .flex-grow-0\@sm {
    flex-grow: 0;
  }

  .flex-shrink\@sm {
    flex-shrink: 1;
  }

  .flex-shrink-0\@sm {
    flex-shrink: 0;
  }

  .flex-basis-0\@sm {
    flex-basis: 0;
  }

  .justify-start\@sm {
    justify-content: flex-start;
  }

  .justify-end\@sm {
    justify-content: flex-end;
  }

  .justify-center\@sm {
    justify-content: center;
  }

  .justify-between\@sm {
    justify-content: space-between;
  }

  .items-center\@sm {
    align-items: center;
  }

  .items-start\@sm {
    align-items: flex-start;
  }

  .items-end\@sm {
    align-items: flex-end;
  }

  .items-baseline\@sm {
    align-items: baseline;
  }

  .order-1\@sm {
    order: 1;
  }

  .order-2\@sm {
    order: 2;
  }

  .order-3\@sm {
    order: 3;
  }

  .block\@sm {
    display: block;
  }

  .inline-block\@sm {
    display: inline-block;
  }

  .inline\@sm {
    display: inline;
  }

  .contents\@sm {
    display: contents;
  }

  .hide\@sm {
    display: none !important;
  }

  .text-center\@sm {
    text-align: center;
  }

  .text-left\@sm {
    text-align: left;
  }

  .text-right\@sm {
    text-align: right;
  }

  .text-justify\@sm {
    text-align: justify;
  }

  .text-xs\@sm {
    font-size: var(--text-xs, 0.6875rem);
  }

  .text-sm\@sm {
    font-size: var(--text-sm, 0.75rem);
  }

  .text-base\@sm {
    font-size: var(--text-unit, 1rem);
  }

  .text-md\@sm {
    font-size: var(--text-md, 1.125rem);
  }

  .text-lg\@sm {
    font-size: var(--text-lg, 1.375rem);
  }

  .text-xl\@sm {
    font-size: var(--text-xl, 1.75rem);
  }

  .text-xxl\@sm {
    font-size: var(--text-xxl, 2rem);
  }

  .text-xxxl\@sm {
    font-size: var(--text-xxxl, 2.5rem);
  }

  .text-xxxxl\@sm {
    font-size: var(--text-xxxxl, 3rem);
  }

  .column-count-1\@sm {
    -moz-column-count: 1;
         column-count: 1;
  }

  .column-count-2\@sm {
    -moz-column-count: 2;
         column-count: 2;
  }

  .column-count-3\@sm {
    -moz-column-count: 3;
         column-count: 3;
  }

  .column-count-4\@sm {
    -moz-column-count: 4;
         column-count: 4;
  }

  .width-xxxxs\@sm {
    width: var(--size-xxxxs, 0.25rem);
  }

  .width-xxxs\@sm {
    width: var(--size-xxxs, 0.5rem);
  }

  .width-xxs\@sm {
    width: var(--size-xxs, 0.75rem);
  }

  .width-xs\@sm {
    width: var(--size-xs, 1rem);
  }

  .width-sm\@sm {
    width: var(--size-sm, 1.5rem);
  }

  .width-md\@sm {
    width: var(--size-md, 2rem);
  }

  .width-lg\@sm {
    width: var(--size-lg, 3rem);
  }

  .width-xl\@sm {
    width: var(--size-xl, 4rem);
  }

  .width-xxl\@sm {
    width: var(--size-xxl, 6rem);
  }

  .width-xxxl\@sm {
    width: var(--size-xxxl, 8rem);
  }

  .width-xxxxl\@sm {
    width: var(--size-xxxxl, 16rem);
  }

  .width-0\@sm {
    width: 0;
  }

  .width-10\%\@sm {
    width: 10%;
  }

  .width-20\%\@sm {
    width: 20%;
  }

  .width-25\%\@sm {
    width: 25%;
  }

  .width-30\%\@sm {
    width: 30%;
  }

  .width-33\%\@sm {
    width: 33.3333333333%;
  }

  .width-40\%\@sm {
    width: 40%;
  }

  .width-50\%\@sm {
    width: 50%;
  }

  .width-60\%\@sm {
    width: 60%;
  }

  .width-66\%\@sm {
    width: 66.6666666667%;
  }

  .width-70\%\@sm {
    width: 70%;
  }

  .width-75\%\@sm {
    width: 75%;
  }

  .width-80\%\@sm {
    width: 80%;
  }

  .width-90\%\@sm {
    width: 90%;
  }

  .width-100\%\@sm {
    width: 100%;
  }

  .width-100vw\@sm {
    width: 100vw;
  }

  .width-auto\@sm {
    width: auto;
  }

  .width-inherit\@sm {
    width: inherit;
  }

  .height-xxxxs\@sm {
    height: var(--size-xxxxs, 0.25rem);
  }

  .height-xxxs\@sm {
    height: var(--size-xxxs, 0.5rem);
  }

  .height-xxs\@sm {
    height: var(--size-xxs, 0.75rem);
  }

  .height-xs\@sm {
    height: var(--size-xs, 1rem);
  }

  .height-sm\@sm {
    height: var(--size-sm, 1.5rem);
  }

  .height-md\@sm {
    height: var(--size-md, 2rem);
  }

  .height-lg\@sm {
    height: var(--size-lg, 3rem);
  }

  .height-xl\@sm {
    height: var(--size-xl, 4rem);
  }

  .height-xxl\@sm {
    height: var(--size-xxl, 6rem);
  }

  .height-xxxl\@sm {
    height: var(--size-xxxl, 8rem);
  }

  .height-xxxxl\@sm {
    height: var(--size-xxxxl, 16rem);
  }

  .height-0\@sm {
    height: 0;
  }

  .height-10\%\@sm {
    height: 10%;
  }

  .height-20\%\@sm {
    height: 20%;
  }

  .height-25\%\@sm {
    height: 25%;
  }

  .height-30\%\@sm {
    height: 30%;
  }

  .height-33\%\@sm {
    height: 33.3333333333%;
  }

  .height-40\%\@sm {
    height: 40%;
  }

  .height-50\%\@sm {
    height: 50%;
  }

  .height-60\%\@sm {
    height: 60%;
  }

  .height-66\%\@sm {
    height: 66.6666666667%;
  }

  .height-70\%\@sm {
    height: 70%;
  }

  .height-75\%\@sm {
    height: 75%;
  }

  .height-80\%\@sm {
    height: 80%;
  }

  .height-90\%\@sm {
    height: 90%;
  }

  .height-100\%\@sm {
    height: 100%;
  }

  .height-100vh\@sm {
    height: 100vh;
  }

  .height-auto\@sm {
    height: auto;
  }

  .height-inherit\@sm {
    height: inherit;
  }

  .max-width-xxxxxs\@sm {
    max-width: var(--max-width-xxxxxs);
  }

  .max-width-xxxxs\@sm {
    max-width: var(--max-width-xxxxs);
  }

  .max-width-xxxs\@sm {
    max-width: var(--max-width-xxxs);
  }

  .max-width-xxs\@sm {
    max-width: var(--max-width-xxs);
  }

  .max-width-xs\@sm {
    max-width: var(--max-width-xs);
  }

  .max-width-sm\@sm {
    max-width: var(--max-width-sm);
  }

  .max-width-md\@sm {
    max-width: var(--max-width-md);
  }

  .max-width-lg\@sm {
    max-width: var(--max-width-lg);
  }

  .max-width-xl\@sm {
    max-width: var(--max-width-xl);
  }

  .max-width-xxl\@sm {
    max-width: var(--max-width-xxl);
  }

  .max-width-xxxl\@sm {
    max-width: var(--max-width-xxxl);
  }

  .max-width-xxxxl\@sm {
    max-width: var(--max-width-xxxxl);
  }

  .max-width-100\%\@sm {
    max-width: 100%;
  }

  .max-width-none\@sm {
    max-width: none;
  }

  .position-relative\@sm {
    position: relative;
  }

  .position-absolute\@sm {
    position: absolute;
  }

  .position-fixed\@sm {
    position: fixed;
  }

  .position-sticky\@sm {
    position: -webkit-sticky;
    position: sticky;
  }

  .position-static\@sm {
    position: static;
  }

  .inset-0\@sm {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .top-0\@sm {
    top: 0;
  }

  .top-50\%\@sm {
    top: 50%;
  }

  .top-xxxxs\@sm {
    top: var(--space-xxxxs);
  }

  .top-xxxs\@sm {
    top: var(--space-xxxs);
  }

  .top-xxs\@sm {
    top: var(--space-xxs);
  }

  .top-xs\@sm {
    top: var(--space-xs);
  }

  .top-sm\@sm {
    top: var(--space-sm);
  }

  .top-md\@sm {
    top: var(--space-md);
  }

  .top-lg\@sm {
    top: var(--space-lg);
  }

  .top-xl\@sm {
    top: var(--space-xl);
  }

  .top-xxl\@sm {
    top: var(--space-xxl);
  }

  .top-xxxl\@sm {
    top: var(--space-xxxl);
  }

  .top-xxxxl\@sm {
    top: var(--space-xxxxl);
  }

  .bottom-0\@sm {
    bottom: 0;
  }

  .bottom-50\%\@sm {
    bottom: 50%;
  }

  .bottom-xxxxs\@sm {
    bottom: var(--space-xxxxs);
  }

  .bottom-xxxs\@sm {
    bottom: var(--space-xxxs);
  }

  .bottom-xxs\@sm {
    bottom: var(--space-xxs);
  }

  .bottom-xs\@sm {
    bottom: var(--space-xs);
  }

  .bottom-sm\@sm {
    bottom: var(--space-sm);
  }

  .bottom-md\@sm {
    bottom: var(--space-md);
  }

  .bottom-lg\@sm {
    bottom: var(--space-lg);
  }

  .bottom-xl\@sm {
    bottom: var(--space-xl);
  }

  .bottom-xxl\@sm {
    bottom: var(--space-xxl);
  }

  .bottom-xxxl\@sm {
    bottom: var(--space-xxxl);
  }

  .bottom-xxxxl\@sm {
    bottom: var(--space-xxxxl);
  }

  .right-0\@sm {
    right: 0;
  }

  .right-50\%\@sm {
    right: 50%;
  }

  .right-xxxxs\@sm {
    right: var(--space-xxxxs);
  }

  .right-xxxs\@sm {
    right: var(--space-xxxs);
  }

  .right-xxs\@sm {
    right: var(--space-xxs);
  }

  .right-xs\@sm {
    right: var(--space-xs);
  }

  .right-sm\@sm {
    right: var(--space-sm);
  }

  .right-md\@sm {
    right: var(--space-md);
  }

  .right-lg\@sm {
    right: var(--space-lg);
  }

  .right-xl\@sm {
    right: var(--space-xl);
  }

  .right-xxl\@sm {
    right: var(--space-xxl);
  }

  .right-xxxl\@sm {
    right: var(--space-xxxl);
  }

  .right-xxxxl\@sm {
    right: var(--space-xxxxl);
  }

  .left-0\@sm {
    left: 0;
  }

  .left-50\%\@sm {
    left: 50%;
  }

  .left-xxxxs\@sm {
    left: var(--space-xxxxs);
  }

  .left-xxxs\@sm {
    left: var(--space-xxxs);
  }

  .left-xxs\@sm {
    left: var(--space-xxs);
  }

  .left-xs\@sm {
    left: var(--space-xs);
  }

  .left-sm\@sm {
    left: var(--space-sm);
  }

  .left-md\@sm {
    left: var(--space-md);
  }

  .left-lg\@sm {
    left: var(--space-lg);
  }

  .left-xl\@sm {
    left: var(--space-xl);
  }

  .left-xxl\@sm {
    left: var(--space-xxl);
  }

  .left-xxxl\@sm {
    left: var(--space-xxxl);
  }

  .left-xxxxl\@sm {
    left: var(--space-xxxxl);
  }

  .overflow-hidden\@sm {
    overflow: hidden;
  }

  .overflow-auto\@sm {
    overflow: auto;
  }

  .momentum-scrolling\@sm {
    -webkit-overflow-scrolling: touch;
  }

  .overscroll-contain\@sm {
    overscroll-behavior: contain;
  }

  .visible\@sm {
    visibility: visible;
  }

  .invisible\@sm {
    visibility: hidden;
  }
}
@media not all and (min-width: 48rem) {
  .display\@sm {
    display: none !important;
  }
}
@media (min-width: 64rem) {
  .flex\@md {
    display: flex;
  }

  .inline-flex\@md {
    display: inline-flex;
  }

  .flex-wrap\@md {
    flex-wrap: wrap;
  }

  .flex-nowrap\@md {
    flex-wrap: nowrap;
  }

  .flex-column\@md {
    flex-direction: column;
  }

  .flex-column-reverse\@md {
    flex-direction: column-reverse;
  }

  .flex-row\@md {
    flex-direction: row;
  }

  .flex-row-reverse\@md {
    flex-direction: row-reverse;
  }

  .flex-center\@md {
    justify-content: center;
    align-items: center;
  }

  .flex-grow\@md {
    flex-grow: 1;
  }

  .flex-grow-0\@md {
    flex-grow: 0;
  }

  .flex-shrink\@md {
    flex-shrink: 1;
  }

  .flex-shrink-0\@md {
    flex-shrink: 0;
  }

  .flex-basis-0\@md {
    flex-basis: 0;
  }

  .justify-start\@md {
    justify-content: flex-start;
  }

  .justify-end\@md {
    justify-content: flex-end;
  }

  .justify-center\@md {
    justify-content: center;
  }

  .justify-between\@md {
    justify-content: space-between;
  }

  .items-center\@md {
    align-items: center;
  }

  .items-start\@md {
    align-items: flex-start;
  }

  .items-end\@md {
    align-items: flex-end;
  }

  .items-baseline\@md {
    align-items: baseline;
  }

  .order-1\@md {
    order: 1;
  }

  .order-2\@md {
    order: 2;
  }

  .order-3\@md {
    order: 3;
  }

  .block\@md {
    display: block;
  }

  .inline-block\@md {
    display: inline-block;
  }

  .inline\@md {
    display: inline;
  }

  .contents\@md {
    display: contents;
  }

  .hide\@md {
    display: none !important;
  }

  .text-center\@md {
    text-align: center;
  }

  .text-left\@md {
    text-align: left;
  }

  .text-right\@md {
    text-align: right;
  }

  .text-justify\@md {
    text-align: justify;
  }

  .text-xs\@md {
    font-size: var(--text-xs, 0.6875rem);
  }

  .text-sm\@md {
    font-size: var(--text-sm, 0.75rem);
  }

  .text-base\@md {
    font-size: var(--text-unit, 1rem);
  }

  .text-md\@md {
    font-size: var(--text-md, 1.125rem);
  }

  .text-lg\@md {
    font-size: var(--text-lg, 1.375rem);
  }

  .text-xl\@md {
    font-size: var(--text-xl, 1.75rem);
  }

  .text-xxl\@md {
    font-size: var(--text-xxl, 2rem);
  }

  .text-xxxl\@md {
    font-size: var(--text-xxxl, 2.5rem);
  }

  .text-xxxxl\@md {
    font-size: var(--text-xxxxl, 3rem);
  }

  .column-count-1\@md {
    -moz-column-count: 1;
         column-count: 1;
  }

  .column-count-2\@md {
    -moz-column-count: 2;
         column-count: 2;
  }

  .column-count-3\@md {
    -moz-column-count: 3;
         column-count: 3;
  }

  .column-count-4\@md {
    -moz-column-count: 4;
         column-count: 4;
  }

  .width-xxxxs\@md {
    width: var(--size-xxxxs, 0.25rem);
  }

  .width-xxxs\@md {
    width: var(--size-xxxs, 0.5rem);
  }

  .width-xxs\@md {
    width: var(--size-xxs, 0.75rem);
  }

  .width-xs\@md {
    width: var(--size-xs, 1rem);
  }

  .width-sm\@md {
    width: var(--size-sm, 1.5rem);
  }

  .width-md\@md {
    width: var(--size-md, 2rem);
  }

  .width-lg\@md {
    width: var(--size-lg, 3rem);
  }

  .width-xl\@md {
    width: var(--size-xl, 4rem);
  }

  .width-xxl\@md {
    width: var(--size-xxl, 6rem);
  }

  .width-xxxl\@md {
    width: var(--size-xxxl, 8rem);
  }

  .width-xxxxl\@md {
    width: var(--size-xxxxl, 16rem);
  }

  .width-0\@md {
    width: 0;
  }

  .width-10\%\@md {
    width: 10%;
  }

  .width-20\%\@md {
    width: 20%;
  }

  .width-25\%\@md {
    width: 25%;
  }

  .width-30\%\@md {
    width: 30%;
  }

  .width-33\%\@md {
    width: 33.3333333333%;
  }

  .width-40\%\@md {
    width: 40%;
  }

  .width-50\%\@md {
    width: 50%;
  }

  .width-60\%\@md {
    width: 60%;
  }

  .width-66\%\@md {
    width: 66.6666666667%;
  }

  .width-70\%\@md {
    width: 70%;
  }

  .width-75\%\@md {
    width: 75%;
  }

  .width-80\%\@md {
    width: 80%;
  }

  .width-90\%\@md {
    width: 90%;
  }

  .width-100\%\@md {
    width: 100%;
  }

  .width-100vw\@md {
    width: 100vw;
  }

  .width-auto\@md {
    width: auto;
  }

  .width-inherit\@md {
    width: inherit;
  }

  .height-xxxxs\@md {
    height: var(--size-xxxxs, 0.25rem);
  }

  .height-xxxs\@md {
    height: var(--size-xxxs, 0.5rem);
  }

  .height-xxs\@md {
    height: var(--size-xxs, 0.75rem);
  }

  .height-xs\@md {
    height: var(--size-xs, 1rem);
  }

  .height-sm\@md {
    height: var(--size-sm, 1.5rem);
  }

  .height-md\@md {
    height: var(--size-md, 2rem);
  }

  .height-lg\@md {
    height: var(--size-lg, 3rem);
  }

  .height-xl\@md {
    height: var(--size-xl, 4rem);
  }

  .height-xxl\@md {
    height: var(--size-xxl, 6rem);
  }

  .height-xxxl\@md {
    height: var(--size-xxxl, 8rem);
  }

  .height-xxxxl\@md {
    height: var(--size-xxxxl, 16rem);
  }

  .height-0\@md {
    height: 0;
  }

  .height-10\%\@md {
    height: 10%;
  }

  .height-20\%\@md {
    height: 20%;
  }

  .height-25\%\@md {
    height: 25%;
  }

  .height-30\%\@md {
    height: 30%;
  }

  .height-33\%\@md {
    height: 33.3333333333%;
  }

  .height-40\%\@md {
    height: 40%;
  }

  .height-50\%\@md {
    height: 50%;
  }

  .height-60\%\@md {
    height: 60%;
  }

  .height-66\%\@md {
    height: 66.6666666667%;
  }

  .height-70\%\@md {
    height: 70%;
  }

  .height-75\%\@md {
    height: 75%;
  }

  .height-80\%\@md {
    height: 80%;
  }

  .height-90\%\@md {
    height: 90%;
  }

  .height-100\%\@md {
    height: 100%;
  }

  .height-100vh\@md {
    height: 100vh;
  }

  .height-auto\@md {
    height: auto;
  }

  .height-inherit\@md {
    height: inherit;
  }

  .max-width-xxxxxs\@md {
    max-width: var(--max-width-xxxxxs);
  }

  .max-width-xxxxs\@md {
    max-width: var(--max-width-xxxxs);
  }

  .max-width-xxxs\@md {
    max-width: var(--max-width-xxxs);
  }

  .max-width-xxs\@md {
    max-width: var(--max-width-xxs);
  }

  .max-width-xs\@md {
    max-width: var(--max-width-xs);
  }

  .max-width-sm\@md {
    max-width: var(--max-width-sm);
  }

  .max-width-md\@md {
    max-width: var(--max-width-md);
  }

  .max-width-lg\@md {
    max-width: var(--max-width-lg);
  }

  .max-width-xl\@md {
    max-width: var(--max-width-xl);
  }

  .max-width-xxl\@md {
    max-width: var(--max-width-xxl);
  }

  .max-width-xxxl\@md {
    max-width: var(--max-width-xxxl);
  }

  .max-width-xxxxl\@md {
    max-width: var(--max-width-xxxxl);
  }

  .max-width-100\%\@md {
    max-width: 100%;
  }

  .max-width-none\@md {
    max-width: none;
  }

  .position-relative\@md {
    position: relative;
  }

  .position-absolute\@md {
    position: absolute;
  }

  .position-fixed\@md {
    position: fixed;
  }

  .position-sticky\@md {
    position: -webkit-sticky;
    position: sticky;
  }

  .position-static\@md {
    position: static;
  }

  .inset-0\@md {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .top-0\@md {
    top: 0;
  }

  .top-50\%\@md {
    top: 50%;
  }

  .top-xxxxs\@md {
    top: var(--space-xxxxs);
  }

  .top-xxxs\@md {
    top: var(--space-xxxs);
  }

  .top-xxs\@md {
    top: var(--space-xxs);
  }

  .top-xs\@md {
    top: var(--space-xs);
  }

  .top-sm\@md {
    top: var(--space-sm);
  }

  .top-md\@md {
    top: var(--space-md);
  }

  .top-lg\@md {
    top: var(--space-lg);
  }

  .top-xl\@md {
    top: var(--space-xl);
  }

  .top-xxl\@md {
    top: var(--space-xxl);
  }

  .top-xxxl\@md {
    top: var(--space-xxxl);
  }

  .top-xxxxl\@md {
    top: var(--space-xxxxl);
  }

  .bottom-0\@md {
    bottom: 0;
  }

  .bottom-50\%\@md {
    bottom: 50%;
  }

  .bottom-xxxxs\@md {
    bottom: var(--space-xxxxs);
  }

  .bottom-xxxs\@md {
    bottom: var(--space-xxxs);
  }

  .bottom-xxs\@md {
    bottom: var(--space-xxs);
  }

  .bottom-xs\@md {
    bottom: var(--space-xs);
  }

  .bottom-sm\@md {
    bottom: var(--space-sm);
  }

  .bottom-md\@md {
    bottom: var(--space-md);
  }

  .bottom-lg\@md {
    bottom: var(--space-lg);
  }

  .bottom-xl\@md {
    bottom: var(--space-xl);
  }

  .bottom-xxl\@md {
    bottom: var(--space-xxl);
  }

  .bottom-xxxl\@md {
    bottom: var(--space-xxxl);
  }

  .bottom-xxxxl\@md {
    bottom: var(--space-xxxxl);
  }

  .right-0\@md {
    right: 0;
  }

  .right-50\%\@md {
    right: 50%;
  }

  .right-xxxxs\@md {
    right: var(--space-xxxxs);
  }

  .right-xxxs\@md {
    right: var(--space-xxxs);
  }

  .right-xxs\@md {
    right: var(--space-xxs);
  }

  .right-xs\@md {
    right: var(--space-xs);
  }

  .right-sm\@md {
    right: var(--space-sm);
  }

  .right-md\@md {
    right: var(--space-md);
  }

  .right-lg\@md {
    right: var(--space-lg);
  }

  .right-xl\@md {
    right: var(--space-xl);
  }

  .right-xxl\@md {
    right: var(--space-xxl);
  }

  .right-xxxl\@md {
    right: var(--space-xxxl);
  }

  .right-xxxxl\@md {
    right: var(--space-xxxxl);
  }

  .left-0\@md {
    left: 0;
  }

  .left-50\%\@md {
    left: 50%;
  }

  .left-xxxxs\@md {
    left: var(--space-xxxxs);
  }

  .left-xxxs\@md {
    left: var(--space-xxxs);
  }

  .left-xxs\@md {
    left: var(--space-xxs);
  }

  .left-xs\@md {
    left: var(--space-xs);
  }

  .left-sm\@md {
    left: var(--space-sm);
  }

  .left-md\@md {
    left: var(--space-md);
  }

  .left-lg\@md {
    left: var(--space-lg);
  }

  .left-xl\@md {
    left: var(--space-xl);
  }

  .left-xxl\@md {
    left: var(--space-xxl);
  }

  .left-xxxl\@md {
    left: var(--space-xxxl);
  }

  .left-xxxxl\@md {
    left: var(--space-xxxxl);
  }

  .overflow-hidden\@md {
    overflow: hidden;
  }

  .overflow-auto\@md {
    overflow: auto;
  }

  .momentum-scrolling\@md {
    -webkit-overflow-scrolling: touch;
  }

  .overscroll-contain\@md {
    overscroll-behavior: contain;
  }

  .visible\@md {
    visibility: visible;
  }

  .invisible\@md {
    visibility: hidden;
  }
}
@media not all and (min-width: 64rem) {
  .display\@md {
    display: none !important;
  }
}
@media (min-width: 80rem) {
  .flex\@lg {
    display: flex;
  }

  .inline-flex\@lg {
    display: inline-flex;
  }

  .flex-wrap\@lg {
    flex-wrap: wrap;
  }

  .flex-nowrap\@lg {
    flex-wrap: nowrap;
  }

  .flex-column\@lg {
    flex-direction: column;
  }

  .flex-column-reverse\@lg {
    flex-direction: column-reverse;
  }

  .flex-row\@lg {
    flex-direction: row;
  }

  .flex-row-reverse\@lg {
    flex-direction: row-reverse;
  }

  .flex-center\@lg {
    justify-content: center;
    align-items: center;
  }

  .flex-grow\@lg {
    flex-grow: 1;
  }

  .flex-grow-0\@lg {
    flex-grow: 0;
  }

  .flex-shrink\@lg {
    flex-shrink: 1;
  }

  .flex-shrink-0\@lg {
    flex-shrink: 0;
  }

  .flex-basis-0\@lg {
    flex-basis: 0;
  }

  .justify-start\@lg {
    justify-content: flex-start;
  }

  .justify-end\@lg {
    justify-content: flex-end;
  }

  .justify-center\@lg {
    justify-content: center;
  }

  .justify-between\@lg {
    justify-content: space-between;
  }

  .items-center\@lg {
    align-items: center;
  }

  .items-start\@lg {
    align-items: flex-start;
  }

  .items-end\@lg {
    align-items: flex-end;
  }

  .items-baseline\@lg {
    align-items: baseline;
  }

  .order-1\@lg {
    order: 1;
  }

  .order-2\@lg {
    order: 2;
  }

  .order-3\@lg {
    order: 3;
  }

  .block\@lg {
    display: block;
  }

  .inline-block\@lg {
    display: inline-block;
  }

  .inline\@lg {
    display: inline;
  }

  .contents\@lg {
    display: contents;
  }

  .hide\@lg {
    display: none !important;
  }

  .text-center\@lg {
    text-align: center;
  }

  .text-left\@lg {
    text-align: left;
  }

  .text-right\@lg {
    text-align: right;
  }

  .text-justify\@lg {
    text-align: justify;
  }

  .text-xs\@lg {
    font-size: var(--text-xs, 0.6875rem);
  }

  .text-sm\@lg {
    font-size: var(--text-sm, 0.75rem);
  }

  .text-base\@lg {
    font-size: var(--text-unit, 1rem);
  }

  .text-md\@lg {
    font-size: var(--text-md, 1.125rem);
  }

  .text-lg\@lg {
    font-size: var(--text-lg, 1.375rem);
  }

  .text-xl\@lg {
    font-size: var(--text-xl, 1.75rem);
  }

  .text-xxl\@lg {
    font-size: var(--text-xxl, 2rem);
  }

  .text-xxxl\@lg {
    font-size: var(--text-xxxl, 2.5rem);
  }

  .text-xxxxl\@lg {
    font-size: var(--text-xxxxl, 3rem);
  }

  .column-count-1\@lg {
    -moz-column-count: 1;
         column-count: 1;
  }

  .column-count-2\@lg {
    -moz-column-count: 2;
         column-count: 2;
  }

  .column-count-3\@lg {
    -moz-column-count: 3;
         column-count: 3;
  }

  .column-count-4\@lg {
    -moz-column-count: 4;
         column-count: 4;
  }

  .width-xxxxs\@lg {
    width: var(--size-xxxxs, 0.25rem);
  }

  .width-xxxs\@lg {
    width: var(--size-xxxs, 0.5rem);
  }

  .width-xxs\@lg {
    width: var(--size-xxs, 0.75rem);
  }

  .width-xs\@lg {
    width: var(--size-xs, 1rem);
  }

  .width-sm\@lg {
    width: var(--size-sm, 1.5rem);
  }

  .width-md\@lg {
    width: var(--size-md, 2rem);
  }

  .width-lg\@lg {
    width: var(--size-lg, 3rem);
  }

  .width-xl\@lg {
    width: var(--size-xl, 4rem);
  }

  .width-xxl\@lg {
    width: var(--size-xxl, 6rem);
  }

  .width-xxxl\@lg {
    width: var(--size-xxxl, 8rem);
  }

  .width-xxxxl\@lg {
    width: var(--size-xxxxl, 16rem);
  }

  .width-0\@lg {
    width: 0;
  }

  .width-10\%\@lg {
    width: 10%;
  }

  .width-20\%\@lg {
    width: 20%;
  }

  .width-25\%\@lg {
    width: 25%;
  }

  .width-30\%\@lg {
    width: 30%;
  }

  .width-33\%\@lg {
    width: 33.3333333333%;
  }

  .width-40\%\@lg {
    width: 40%;
  }

  .width-50\%\@lg {
    width: 50%;
  }

  .width-60\%\@lg {
    width: 60%;
  }

  .width-66\%\@lg {
    width: 66.6666666667%;
  }

  .width-70\%\@lg {
    width: 70%;
  }

  .width-75\%\@lg {
    width: 75%;
  }

  .width-80\%\@lg {
    width: 80%;
  }

  .width-90\%\@lg {
    width: 90%;
  }

  .width-100\%\@lg {
    width: 100%;
  }

  .width-100vw\@lg {
    width: 100vw;
  }

  .width-auto\@lg {
    width: auto;
  }

  .width-inherit\@lg {
    width: inherit;
  }

  .height-xxxxs\@lg {
    height: var(--size-xxxxs, 0.25rem);
  }

  .height-xxxs\@lg {
    height: var(--size-xxxs, 0.5rem);
  }

  .height-xxs\@lg {
    height: var(--size-xxs, 0.75rem);
  }

  .height-xs\@lg {
    height: var(--size-xs, 1rem);
  }

  .height-sm\@lg {
    height: var(--size-sm, 1.5rem);
  }

  .height-md\@lg {
    height: var(--size-md, 2rem);
  }

  .height-lg\@lg {
    height: var(--size-lg, 3rem);
  }

  .height-xl\@lg {
    height: var(--size-xl, 4rem);
  }

  .height-xxl\@lg {
    height: var(--size-xxl, 6rem);
  }

  .height-xxxl\@lg {
    height: var(--size-xxxl, 8rem);
  }

  .height-xxxxl\@lg {
    height: var(--size-xxxxl, 16rem);
  }

  .height-0\@lg {
    height: 0;
  }

  .height-10\%\@lg {
    height: 10%;
  }

  .height-20\%\@lg {
    height: 20%;
  }

  .height-25\%\@lg {
    height: 25%;
  }

  .height-30\%\@lg {
    height: 30%;
  }

  .height-33\%\@lg {
    height: 33.3333333333%;
  }

  .height-40\%\@lg {
    height: 40%;
  }

  .height-50\%\@lg {
    height: 50%;
  }

  .height-60\%\@lg {
    height: 60%;
  }

  .height-66\%\@lg {
    height: 66.6666666667%;
  }

  .height-70\%\@lg {
    height: 70%;
  }

  .height-75\%\@lg {
    height: 75%;
  }

  .height-80\%\@lg {
    height: 80%;
  }

  .height-90\%\@lg {
    height: 90%;
  }

  .height-100\%\@lg {
    height: 100%;
  }

  .height-100vh\@lg {
    height: 100vh;
  }

  .height-auto\@lg {
    height: auto;
  }

  .height-inherit\@lg {
    height: inherit;
  }

  .max-width-xxxxxs\@lg {
    max-width: var(--max-width-xxxxxs);
  }

  .max-width-xxxxs\@lg {
    max-width: var(--max-width-xxxxs);
  }

  .max-width-xxxs\@lg {
    max-width: var(--max-width-xxxs);
  }

  .max-width-xxs\@lg {
    max-width: var(--max-width-xxs);
  }

  .max-width-xs\@lg {
    max-width: var(--max-width-xs);
  }

  .max-width-sm\@lg {
    max-width: var(--max-width-sm);
  }

  .max-width-md\@lg {
    max-width: var(--max-width-md);
  }

  .max-width-lg\@lg {
    max-width: var(--max-width-lg);
  }

  .max-width-xl\@lg {
    max-width: var(--max-width-xl);
  }

  .max-width-xxl\@lg {
    max-width: var(--max-width-xxl);
  }

  .max-width-xxxl\@lg {
    max-width: var(--max-width-xxxl);
  }

  .max-width-xxxxl\@lg {
    max-width: var(--max-width-xxxxl);
  }

  .max-width-100\%\@lg {
    max-width: 100%;
  }

  .max-width-none\@lg {
    max-width: none;
  }

  .position-relative\@lg {
    position: relative;
  }

  .position-absolute\@lg {
    position: absolute;
  }

  .position-fixed\@lg {
    position: fixed;
  }

  .position-sticky\@lg {
    position: -webkit-sticky;
    position: sticky;
  }

  .position-static\@lg {
    position: static;
  }

  .inset-0\@lg {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .top-0\@lg {
    top: 0;
  }

  .top-50\%\@lg {
    top: 50%;
  }

  .top-xxxxs\@lg {
    top: var(--space-xxxxs);
  }

  .top-xxxs\@lg {
    top: var(--space-xxxs);
  }

  .top-xxs\@lg {
    top: var(--space-xxs);
  }

  .top-xs\@lg {
    top: var(--space-xs);
  }

  .top-sm\@lg {
    top: var(--space-sm);
  }

  .top-md\@lg {
    top: var(--space-md);
  }

  .top-lg\@lg {
    top: var(--space-lg);
  }

  .top-xl\@lg {
    top: var(--space-xl);
  }

  .top-xxl\@lg {
    top: var(--space-xxl);
  }

  .top-xxxl\@lg {
    top: var(--space-xxxl);
  }

  .top-xxxxl\@lg {
    top: var(--space-xxxxl);
  }

  .bottom-0\@lg {
    bottom: 0;
  }

  .bottom-50\%\@lg {
    bottom: 50%;
  }

  .bottom-xxxxs\@lg {
    bottom: var(--space-xxxxs);
  }

  .bottom-xxxs\@lg {
    bottom: var(--space-xxxs);
  }

  .bottom-xxs\@lg {
    bottom: var(--space-xxs);
  }

  .bottom-xs\@lg {
    bottom: var(--space-xs);
  }

  .bottom-sm\@lg {
    bottom: var(--space-sm);
  }

  .bottom-md\@lg {
    bottom: var(--space-md);
  }

  .bottom-lg\@lg {
    bottom: var(--space-lg);
  }

  .bottom-xl\@lg {
    bottom: var(--space-xl);
  }

  .bottom-xxl\@lg {
    bottom: var(--space-xxl);
  }

  .bottom-xxxl\@lg {
    bottom: var(--space-xxxl);
  }

  .bottom-xxxxl\@lg {
    bottom: var(--space-xxxxl);
  }

  .right-0\@lg {
    right: 0;
  }

  .right-50\%\@lg {
    right: 50%;
  }

  .right-xxxxs\@lg {
    right: var(--space-xxxxs);
  }

  .right-xxxs\@lg {
    right: var(--space-xxxs);
  }

  .right-xxs\@lg {
    right: var(--space-xxs);
  }

  .right-xs\@lg {
    right: var(--space-xs);
  }

  .right-sm\@lg {
    right: var(--space-sm);
  }

  .right-md\@lg {
    right: var(--space-md);
  }

  .right-lg\@lg {
    right: var(--space-lg);
  }

  .right-xl\@lg {
    right: var(--space-xl);
  }

  .right-xxl\@lg {
    right: var(--space-xxl);
  }

  .right-xxxl\@lg {
    right: var(--space-xxxl);
  }

  .right-xxxxl\@lg {
    right: var(--space-xxxxl);
  }

  .left-0\@lg {
    left: 0;
  }

  .left-50\%\@lg {
    left: 50%;
  }

  .left-xxxxs\@lg {
    left: var(--space-xxxxs);
  }

  .left-xxxs\@lg {
    left: var(--space-xxxs);
  }

  .left-xxs\@lg {
    left: var(--space-xxs);
  }

  .left-xs\@lg {
    left: var(--space-xs);
  }

  .left-sm\@lg {
    left: var(--space-sm);
  }

  .left-md\@lg {
    left: var(--space-md);
  }

  .left-lg\@lg {
    left: var(--space-lg);
  }

  .left-xl\@lg {
    left: var(--space-xl);
  }

  .left-xxl\@lg {
    left: var(--space-xxl);
  }

  .left-xxxl\@lg {
    left: var(--space-xxxl);
  }

  .left-xxxxl\@lg {
    left: var(--space-xxxxl);
  }

  .overflow-hidden\@lg {
    overflow: hidden;
  }

  .overflow-auto\@lg {
    overflow: auto;
  }

  .momentum-scrolling\@lg {
    -webkit-overflow-scrolling: touch;
  }

  .overscroll-contain\@lg {
    overscroll-behavior: contain;
  }

  .visible\@lg {
    visibility: visible;
  }

  .invisible\@lg {
    visibility: hidden;
  }
}
@media not all and (min-width: 80rem) {
  .display\@lg {
    display: none !important;
  }
}
@media (min-width: 90rem) {
  .flex\@xl {
    display: flex;
  }

  .inline-flex\@xl {
    display: inline-flex;
  }

  .flex-wrap\@xl {
    flex-wrap: wrap;
  }

  .flex-nowrap\@xl {
    flex-wrap: nowrap;
  }

  .flex-column\@xl {
    flex-direction: column;
  }

  .flex-column-reverse\@xl {
    flex-direction: column-reverse;
  }

  .flex-row\@xl {
    flex-direction: row;
  }

  .flex-row-reverse\@xl {
    flex-direction: row-reverse;
  }

  .flex-center\@xl {
    justify-content: center;
    align-items: center;
  }

  .flex-grow\@xl {
    flex-grow: 1;
  }

  .flex-grow-0\@xl {
    flex-grow: 0;
  }

  .flex-shrink\@xl {
    flex-shrink: 1;
  }

  .flex-shrink-0\@xl {
    flex-shrink: 0;
  }

  .flex-basis-0\@xl {
    flex-basis: 0;
  }

  .justify-start\@xl {
    justify-content: flex-start;
  }

  .justify-end\@xl {
    justify-content: flex-end;
  }

  .justify-center\@xl {
    justify-content: center;
  }

  .justify-between\@xl {
    justify-content: space-between;
  }

  .items-center\@xl {
    align-items: center;
  }

  .items-start\@xl {
    align-items: flex-start;
  }

  .items-end\@xl {
    align-items: flex-end;
  }

  .items-baseline\@xl {
    align-items: baseline;
  }

  .order-1\@xl {
    order: 1;
  }

  .order-2\@xl {
    order: 2;
  }

  .order-3\@xl {
    order: 3;
  }

  .block\@xl {
    display: block;
  }

  .inline-block\@xl {
    display: inline-block;
  }

  .inline\@xl {
    display: inline;
  }

  .contents\@xl {
    display: contents;
  }

  .hide\@xl {
    display: none !important;
  }

  .text-center\@xl {
    text-align: center;
  }

  .text-left\@xl {
    text-align: left;
  }

  .text-right\@xl {
    text-align: right;
  }

  .text-justify\@xl {
    text-align: justify;
  }

  .text-xs\@xl {
    font-size: var(--text-xs, 0.6875rem);
  }

  .text-sm\@xl {
    font-size: var(--text-sm, 0.75rem);
  }

  .text-base\@xl {
    font-size: var(--text-unit, 1rem);
  }

  .text-md\@xl {
    font-size: var(--text-md, 1.125rem);
  }

  .text-lg\@xl {
    font-size: var(--text-lg, 1.375rem);
  }

  .text-xl\@xl {
    font-size: var(--text-xl, 1.75rem);
  }

  .text-xxl\@xl {
    font-size: var(--text-xxl, 2rem);
  }

  .text-xxxl\@xl {
    font-size: var(--text-xxxl, 2.5rem);
  }

  .text-xxxxl\@xl {
    font-size: var(--text-xxxxl, 3rem);
  }

  .column-count-1\@xl {
    -moz-column-count: 1;
         column-count: 1;
  }

  .column-count-2\@xl {
    -moz-column-count: 2;
         column-count: 2;
  }

  .column-count-3\@xl {
    -moz-column-count: 3;
         column-count: 3;
  }

  .column-count-4\@xl {
    -moz-column-count: 4;
         column-count: 4;
  }

  .width-xxxxs\@xl {
    width: var(--size-xxxxs, 0.25rem);
  }

  .width-xxxs\@xl {
    width: var(--size-xxxs, 0.5rem);
  }

  .width-xxs\@xl {
    width: var(--size-xxs, 0.75rem);
  }

  .width-xs\@xl {
    width: var(--size-xs, 1rem);
  }

  .width-sm\@xl {
    width: var(--size-sm, 1.5rem);
  }

  .width-md\@xl {
    width: var(--size-md, 2rem);
  }

  .width-lg\@xl {
    width: var(--size-lg, 3rem);
  }

  .width-xl\@xl {
    width: var(--size-xl, 4rem);
  }

  .width-xxl\@xl {
    width: var(--size-xxl, 6rem);
  }

  .width-xxxl\@xl {
    width: var(--size-xxxl, 8rem);
  }

  .width-xxxxl\@xl {
    width: var(--size-xxxxl, 16rem);
  }

  .width-0\@xl {
    width: 0;
  }

  .width-10\%\@xl {
    width: 10%;
  }

  .width-20\%\@xl {
    width: 20%;
  }

  .width-25\%\@xl {
    width: 25%;
  }

  .width-30\%\@xl {
    width: 30%;
  }

  .width-33\%\@xl {
    width: 33.3333333333%;
  }

  .width-40\%\@xl {
    width: 40%;
  }

  .width-50\%\@xl {
    width: 50%;
  }

  .width-60\%\@xl {
    width: 60%;
  }

  .width-66\%\@xl {
    width: 66.6666666667%;
  }

  .width-70\%\@xl {
    width: 70%;
  }

  .width-75\%\@xl {
    width: 75%;
  }

  .width-80\%\@xl {
    width: 80%;
  }

  .width-90\%\@xl {
    width: 90%;
  }

  .width-100\%\@xl {
    width: 100%;
  }

  .width-100vw\@xl {
    width: 100vw;
  }

  .width-auto\@xl {
    width: auto;
  }

  .width-inherit\@xl {
    width: inherit;
  }

  .height-xxxxs\@xl {
    height: var(--size-xxxxs, 0.25rem);
  }

  .height-xxxs\@xl {
    height: var(--size-xxxs, 0.5rem);
  }

  .height-xxs\@xl {
    height: var(--size-xxs, 0.75rem);
  }

  .height-xs\@xl {
    height: var(--size-xs, 1rem);
  }

  .height-sm\@xl {
    height: var(--size-sm, 1.5rem);
  }

  .height-md\@xl {
    height: var(--size-md, 2rem);
  }

  .height-lg\@xl {
    height: var(--size-lg, 3rem);
  }

  .height-xl\@xl {
    height: var(--size-xl, 4rem);
  }

  .height-xxl\@xl {
    height: var(--size-xxl, 6rem);
  }

  .height-xxxl\@xl {
    height: var(--size-xxxl, 8rem);
  }

  .height-xxxxl\@xl {
    height: var(--size-xxxxl, 16rem);
  }

  .height-0\@xl {
    height: 0;
  }

  .height-10\%\@xl {
    height: 10%;
  }

  .height-20\%\@xl {
    height: 20%;
  }

  .height-25\%\@xl {
    height: 25%;
  }

  .height-30\%\@xl {
    height: 30%;
  }

  .height-33\%\@xl {
    height: 33.3333333333%;
  }

  .height-40\%\@xl {
    height: 40%;
  }

  .height-50\%\@xl {
    height: 50%;
  }

  .height-60\%\@xl {
    height: 60%;
  }

  .height-66\%\@xl {
    height: 66.6666666667%;
  }

  .height-70\%\@xl {
    height: 70%;
  }

  .height-75\%\@xl {
    height: 75%;
  }

  .height-80\%\@xl {
    height: 80%;
  }

  .height-90\%\@xl {
    height: 90%;
  }

  .height-100\%\@xl {
    height: 100%;
  }

  .height-100vh\@xl {
    height: 100vh;
  }

  .height-auto\@xl {
    height: auto;
  }

  .height-inherit\@xl {
    height: inherit;
  }

  .max-width-xxxxxs\@xl {
    max-width: var(--max-width-xxxxxs);
  }

  .max-width-xxxxs\@xl {
    max-width: var(--max-width-xxxxs);
  }

  .max-width-xxxs\@xl {
    max-width: var(--max-width-xxxs);
  }

  .max-width-xxs\@xl {
    max-width: var(--max-width-xxs);
  }

  .max-width-xs\@xl {
    max-width: var(--max-width-xs);
  }

  .max-width-sm\@xl {
    max-width: var(--max-width-sm);
  }

  .max-width-md\@xl {
    max-width: var(--max-width-md);
  }

  .max-width-lg\@xl {
    max-width: var(--max-width-lg);
  }

  .max-width-xl\@xl {
    max-width: var(--max-width-xl);
  }

  .max-width-xxl\@xl {
    max-width: var(--max-width-xxl);
  }

  .max-width-xxxl\@xl {
    max-width: var(--max-width-xxxl);
  }

  .max-width-xxxxl\@xl {
    max-width: var(--max-width-xxxxl);
  }

  .max-width-100\%\@xl {
    max-width: 100%;
  }

  .max-width-none\@xl {
    max-width: none;
  }

  .position-relative\@xl {
    position: relative;
  }

  .position-absolute\@xl {
    position: absolute;
  }

  .position-fixed\@xl {
    position: fixed;
  }

  .position-sticky\@xl {
    position: -webkit-sticky;
    position: sticky;
  }

  .position-static\@xl {
    position: static;
  }

  .inset-0\@xl {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .top-0\@xl {
    top: 0;
  }

  .top-50\%\@xl {
    top: 50%;
  }

  .top-xxxxs\@xl {
    top: var(--space-xxxxs);
  }

  .top-xxxs\@xl {
    top: var(--space-xxxs);
  }

  .top-xxs\@xl {
    top: var(--space-xxs);
  }

  .top-xs\@xl {
    top: var(--space-xs);
  }

  .top-sm\@xl {
    top: var(--space-sm);
  }

  .top-md\@xl {
    top: var(--space-md);
  }

  .top-lg\@xl {
    top: var(--space-lg);
  }

  .top-xl\@xl {
    top: var(--space-xl);
  }

  .top-xxl\@xl {
    top: var(--space-xxl);
  }

  .top-xxxl\@xl {
    top: var(--space-xxxl);
  }

  .top-xxxxl\@xl {
    top: var(--space-xxxxl);
  }

  .bottom-0\@xl {
    bottom: 0;
  }

  .bottom-50\%\@xl {
    bottom: 50%;
  }

  .bottom-xxxxs\@xl {
    bottom: var(--space-xxxxs);
  }

  .bottom-xxxs\@xl {
    bottom: var(--space-xxxs);
  }

  .bottom-xxs\@xl {
    bottom: var(--space-xxs);
  }

  .bottom-xs\@xl {
    bottom: var(--space-xs);
  }

  .bottom-sm\@xl {
    bottom: var(--space-sm);
  }

  .bottom-md\@xl {
    bottom: var(--space-md);
  }

  .bottom-lg\@xl {
    bottom: var(--space-lg);
  }

  .bottom-xl\@xl {
    bottom: var(--space-xl);
  }

  .bottom-xxl\@xl {
    bottom: var(--space-xxl);
  }

  .bottom-xxxl\@xl {
    bottom: var(--space-xxxl);
  }

  .bottom-xxxxl\@xl {
    bottom: var(--space-xxxxl);
  }

  .right-0\@xl {
    right: 0;
  }

  .right-50\%\@xl {
    right: 50%;
  }

  .right-xxxxs\@xl {
    right: var(--space-xxxxs);
  }

  .right-xxxs\@xl {
    right: var(--space-xxxs);
  }

  .right-xxs\@xl {
    right: var(--space-xxs);
  }

  .right-xs\@xl {
    right: var(--space-xs);
  }

  .right-sm\@xl {
    right: var(--space-sm);
  }

  .right-md\@xl {
    right: var(--space-md);
  }

  .right-lg\@xl {
    right: var(--space-lg);
  }

  .right-xl\@xl {
    right: var(--space-xl);
  }

  .right-xxl\@xl {
    right: var(--space-xxl);
  }

  .right-xxxl\@xl {
    right: var(--space-xxxl);
  }

  .right-xxxxl\@xl {
    right: var(--space-xxxxl);
  }

  .left-0\@xl {
    left: 0;
  }

  .left-50\%\@xl {
    left: 50%;
  }

  .left-xxxxs\@xl {
    left: var(--space-xxxxs);
  }

  .left-xxxs\@xl {
    left: var(--space-xxxs);
  }

  .left-xxs\@xl {
    left: var(--space-xxs);
  }

  .left-xs\@xl {
    left: var(--space-xs);
  }

  .left-sm\@xl {
    left: var(--space-sm);
  }

  .left-md\@xl {
    left: var(--space-md);
  }

  .left-lg\@xl {
    left: var(--space-lg);
  }

  .left-xl\@xl {
    left: var(--space-xl);
  }

  .left-xxl\@xl {
    left: var(--space-xxl);
  }

  .left-xxxl\@xl {
    left: var(--space-xxxl);
  }

  .left-xxxxl\@xl {
    left: var(--space-xxxxl);
  }

  .overflow-hidden\@xl {
    overflow: hidden;
  }

  .overflow-auto\@xl {
    overflow: auto;
  }

  .momentum-scrolling\@xl {
    -webkit-overflow-scrolling: touch;
  }

  .overscroll-contain\@xl {
    overscroll-behavior: contain;
  }

  .visible\@xl {
    visibility: visible;
  }

  .invisible\@xl {
    visibility: hidden;
  }
}
@media not all and (min-width: 90rem) {
  .display\@xl {
    display: none !important;
  }
}
:root, [data-theme=default] {
  --color-primary-darker: hsl(250, 84%, 38%);
  --color-primary-darker-h: 250;
  --color-primary-darker-s: 84%;
  --color-primary-darker-l: 38%;
  --color-primary-dark: hsl(250, 84%, 46%);
  --color-primary-dark-h: 250;
  --color-primary-dark-s: 84%;
  --color-primary-dark-l: 46%;
  --color-primary: hsl(250, 84%, 54%);
  --color-primary-h: 250;
  --color-primary-s: 84%;
  --color-primary-l: 54%;
  --color-primary-light: hsl(250, 84%, 60%);
  --color-primary-light-h: 250;
  --color-primary-light-s: 84%;
  --color-primary-light-l: 60%;
  --color-primary-lighter: hsl(250, 84%, 67%);
  --color-primary-lighter-h: 250;
  --color-primary-lighter-s: 84%;
  --color-primary-lighter-l: 67%;
  --color-accent-darker: hsl(342, 89%, 38%);
  --color-accent-darker-h: 342;
  --color-accent-darker-s: 89%;
  --color-accent-darker-l: 38%;
  --color-accent-dark: hsl(342, 89%, 43%);
  --color-accent-dark-h: 342;
  --color-accent-dark-s: 89%;
  --color-accent-dark-l: 43%;
  --color-accent: hsl(342, 89%, 48%);
  --color-accent-h: 342;
  --color-accent-s: 89%;
  --color-accent-l: 48%;
  --color-accent-light: hsl(342, 89%, 56%);
  --color-accent-light-h: 342;
  --color-accent-light-s: 89%;
  --color-accent-light-l: 56%;
  --color-accent-lighter: hsl(342, 89%, 62%);
  --color-accent-lighter-h: 342;
  --color-accent-lighter-s: 89%;
  --color-accent-lighter-l: 62%;
  --color-black: hsl(231, 15%, 9%);
  --color-black-h: 231;
  --color-black-s: 15%;
  --color-black-l: 9%;
  --color-white: hsl(0, 0%, 100%);
  --color-white-h: 0;
  --color-white-s: 0%;
  --color-white-l: 100%;
  --color-warning-darker: hsl(35, 79%, 48%);
  --color-warning-darker-h: 35;
  --color-warning-darker-s: 79%;
  --color-warning-darker-l: 48%;
  --color-warning-dark: hsl(35, 79%, 56%);
  --color-warning-dark-h: 35;
  --color-warning-dark-s: 79%;
  --color-warning-dark-l: 56%;
  --color-warning: hsl(35, 79%, 66%);
  --color-warning-h: 35;
  --color-warning-s: 79%;
  --color-warning-l: 66%;
  --color-warning-light: hsl(35, 79%, 74%);
  --color-warning-light-h: 35;
  --color-warning-light-s: 79%;
  --color-warning-light-l: 74%;
  --color-warning-lighter: hsl(35, 79%, 82%);
  --color-warning-lighter-h: 35;
  --color-warning-lighter-s: 79%;
  --color-warning-lighter-l: 82%;
  --color-success-darker: hsl(170, 78%, 26%);
  --color-success-darker-h: 170;
  --color-success-darker-s: 78%;
  --color-success-darker-l: 26%;
  --color-success-dark: hsl(170, 78%, 31%);
  --color-success-dark-h: 170;
  --color-success-dark-s: 78%;
  --color-success-dark-l: 31%;
  --color-success: hsl(170, 78%, 36%);
  --color-success-h: 170;
  --color-success-s: 78%;
  --color-success-l: 36%;
  --color-success-light: hsl(170, 78%, 42%);
  --color-success-light-h: 170;
  --color-success-light-s: 78%;
  --color-success-light-l: 42%;
  --color-success-lighter: hsl(170, 78%, 47%);
  --color-success-lighter-h: 170;
  --color-success-lighter-s: 78%;
  --color-success-lighter-l: 47%;
  --color-error-darker: hsl(342, 89%, 38%);
  --color-error-darker-h: 342;
  --color-error-darker-s: 89%;
  --color-error-darker-l: 38%;
  --color-error-dark: hsl(342, 89%, 43%);
  --color-error-dark-h: 342;
  --color-error-dark-s: 89%;
  --color-error-dark-l: 43%;
  --color-error: hsl(342, 89%, 48%);
  --color-error-h: 342;
  --color-error-s: 89%;
  --color-error-l: 48%;
  --color-error-light: hsl(342, 89%, 56%);
  --color-error-light-h: 342;
  --color-error-light-s: 89%;
  --color-error-light-l: 56%;
  --color-error-lighter: hsl(342, 89%, 62%);
  --color-error-lighter-h: 342;
  --color-error-lighter-s: 89%;
  --color-error-lighter-l: 62%;
  --color-bg-darker: hsl(240, 4%, 90%);
  --color-bg-darker-h: 240;
  --color-bg-darker-s: 4%;
  --color-bg-darker-l: 90%;
  --color-bg-dark: hsl(240, 4%, 95%);
  --color-bg-dark-h: 240;
  --color-bg-dark-s: 4%;
  --color-bg-dark-l: 95%;
  --color-bg: hsl(0, 0%, 100%);
  --color-bg-h: 0;
  --color-bg-s: 0%;
  --color-bg-l: 100%;
  --color-bg-light: hsl(0, 0%, 100%);
  --color-bg-light-h: 0;
  --color-bg-light-s: 0%;
  --color-bg-light-l: 100%;
  --color-bg-lighter: hsl(0, 0%, 100%);
  --color-bg-lighter-h: 0;
  --color-bg-lighter-s: 0%;
  --color-bg-lighter-l: 100%;
  --color-contrast-lower: hsl(240, 4%, 85%);
  --color-contrast-lower-h: 240;
  --color-contrast-lower-s: 4%;
  --color-contrast-lower-l: 85%;
  --color-contrast-low: hsl(240, 4%, 65%);
  --color-contrast-low-h: 240;
  --color-contrast-low-s: 4%;
  --color-contrast-low-l: 65%;
  --color-contrast-medium: hsl(225, 4%, 47%);
  --color-contrast-medium-h: 225;
  --color-contrast-medium-s: 4%;
  --color-contrast-medium-l: 47%;
  --color-contrast-high: hsl(230, 7%, 23%);
  --color-contrast-high-h: 230;
  --color-contrast-high-s: 7%;
  --color-contrast-high-l: 23%;
  --color-contrast-higher: hsl(230, 13%, 9%);
  --color-contrast-higher-h: 230;
  --color-contrast-higher-s: 13%;
  --color-contrast-higher-l: 9%;
}

[data-theme=dark] {
  --color-primary-darker: hsl(250, 100%, 60%);
  --color-primary-darker-h: 250;
  --color-primary-darker-s: 100%;
  --color-primary-darker-l: 60%;
  --color-primary-dark: hsl(250, 100%, 64%);
  --color-primary-dark-h: 250;
  --color-primary-dark-s: 100%;
  --color-primary-dark-l: 64%;
  --color-primary: hsl(250, 100%, 69%);
  --color-primary-h: 250;
  --color-primary-s: 100%;
  --color-primary-l: 69%;
  --color-primary-light: hsl(250, 100%, 72%);
  --color-primary-light-h: 250;
  --color-primary-light-s: 100%;
  --color-primary-light-l: 72%;
  --color-primary-lighter: hsl(250, 100%, 76%);
  --color-primary-lighter-h: 250;
  --color-primary-lighter-s: 100%;
  --color-primary-lighter-l: 76%;
  --color-accent-darker: hsl(342, 92%, 41%);
  --color-accent-darker-h: 342;
  --color-accent-darker-s: 92%;
  --color-accent-darker-l: 41%;
  --color-accent-dark: hsl(342, 92%, 47%);
  --color-accent-dark-h: 342;
  --color-accent-dark-s: 92%;
  --color-accent-dark-l: 47%;
  --color-accent: hsl(342, 92%, 54%);
  --color-accent-h: 342;
  --color-accent-s: 92%;
  --color-accent-l: 54%;
  --color-accent-light: hsl(342, 92%, 60%);
  --color-accent-light-h: 342;
  --color-accent-light-s: 92%;
  --color-accent-light-l: 60%;
  --color-accent-lighter: hsl(342, 92%, 65%);
  --color-accent-lighter-h: 342;
  --color-accent-lighter-s: 92%;
  --color-accent-lighter-l: 65%;
  --color-black: hsl(230, 13%, 9%);
  --color-black-h: 230;
  --color-black-s: 13%;
  --color-black-l: 9%;
  --color-white: hsl(0, 0%, 100%);
  --color-white-h: 0;
  --color-white-s: 0%;
  --color-white-l: 100%;
  --color-warning-darker: hsl(35, 79%, 48%);
  --color-warning-darker-h: 35;
  --color-warning-darker-s: 79%;
  --color-warning-darker-l: 48%;
  --color-warning-dark: hsl(35, 79%, 56%);
  --color-warning-dark-h: 35;
  --color-warning-dark-s: 79%;
  --color-warning-dark-l: 56%;
  --color-warning: hsl(35, 79%, 66%);
  --color-warning-h: 35;
  --color-warning-s: 79%;
  --color-warning-l: 66%;
  --color-warning-light: hsl(35, 79%, 74%);
  --color-warning-light-h: 35;
  --color-warning-light-s: 79%;
  --color-warning-light-l: 74%;
  --color-warning-lighter: hsl(35, 79%, 82%);
  --color-warning-lighter-h: 35;
  --color-warning-lighter-s: 79%;
  --color-warning-lighter-l: 82%;
  --color-success-darker: hsl(170, 78%, 26%);
  --color-success-darker-h: 170;
  --color-success-darker-s: 78%;
  --color-success-darker-l: 26%;
  --color-success-dark: hsl(170, 78%, 31%);
  --color-success-dark-h: 170;
  --color-success-dark-s: 78%;
  --color-success-dark-l: 31%;
  --color-success: hsl(170, 78%, 36%);
  --color-success-h: 170;
  --color-success-s: 78%;
  --color-success-l: 36%;
  --color-success-light: hsl(170, 78%, 42%);
  --color-success-light-h: 170;
  --color-success-light-s: 78%;
  --color-success-light-l: 42%;
  --color-success-lighter: hsl(170, 78%, 47%);
  --color-success-lighter-h: 170;
  --color-success-lighter-s: 78%;
  --color-success-lighter-l: 47%;
  --color-error-darker: hsl(342, 92%, 41%);
  --color-error-darker-h: 342;
  --color-error-darker-s: 92%;
  --color-error-darker-l: 41%;
  --color-error-dark: hsl(342, 92%, 47%);
  --color-error-dark-h: 342;
  --color-error-dark-s: 92%;
  --color-error-dark-l: 47%;
  --color-error: hsl(342, 92%, 54%);
  --color-error-h: 342;
  --color-error-s: 92%;
  --color-error-l: 54%;
  --color-error-light: hsl(342, 92%, 60%);
  --color-error-light-h: 342;
  --color-error-light-s: 92%;
  --color-error-light-l: 60%;
  --color-error-lighter: hsl(342, 92%, 65%);
  --color-error-lighter-h: 342;
  --color-error-lighter-s: 92%;
  --color-error-lighter-l: 65%;
  --color-bg-darker: hsl(232, 7%, 8%);
  --color-bg-darker-h: 232;
  --color-bg-darker-s: 7%;
  --color-bg-darker-l: 8%;
  --color-bg-dark: hsl(233, 8%, 11%);
  --color-bg-dark-h: 233;
  --color-bg-dark-s: 8%;
  --color-bg-dark-l: 11%;
  --color-bg: hsl(232, 11%, 15%);
  --color-bg-h: 232;
  --color-bg-s: 11%;
  --color-bg-l: 15%;
  --color-bg-light: hsl(233, 8%, 19%);
  --color-bg-light-h: 233;
  --color-bg-light-s: 8%;
  --color-bg-light-l: 19%;
  --color-bg-lighter: hsl(232, 7%, 22%);
  --color-bg-lighter-h: 232;
  --color-bg-lighter-s: 7%;
  --color-bg-lighter-l: 22%;
  --color-contrast-lower: hsl(240, 6%, 26%);
  --color-contrast-lower-h: 240;
  --color-contrast-lower-s: 6%;
  --color-contrast-lower-l: 26%;
  --color-contrast-low: hsl(240, 3%, 41%);
  --color-contrast-low-h: 240;
  --color-contrast-low-s: 3%;
  --color-contrast-low-l: 41%;
  --color-contrast-medium: hsl(231, 3%, 57%);
  --color-contrast-medium-h: 231;
  --color-contrast-medium-s: 3%;
  --color-contrast-medium-l: 57%;
  --color-contrast-high: hsl(240, 5%, 82%);
  --color-contrast-high-h: 240;
  --color-contrast-high-s: 5%;
  --color-contrast-high-l: 82%;
  --color-contrast-higher: hsl(240, 100%, 99%);
  --color-contrast-higher-h: 240;
  --color-contrast-higher-s: 100%;
  --color-contrast-higher-l: 99%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 64rem) {
  :root, * {
    --space-xxxxs: calc(0.1875 * var(--space-unit));
    --space-xxxs: calc(0.375 * var(--space-unit));
    --space-xxs: calc(0.5625 * var(--space-unit));
    --space-xs: calc(0.75 * var(--space-unit));
    --space-sm: calc(1.125 * var(--space-unit));
    --space-md: calc(2 * var(--space-unit));
    --space-lg: calc(3.125 * var(--space-unit));
    --space-xl: calc(5.125 * var(--space-unit));
    --space-xxl: calc(8.25 * var(--space-unit));
    --space-xxxl: calc(13.25 * var(--space-unit));
    --space-xxxxl: calc(21.5 * var(--space-unit));
  }
}
:root {
  --radius: 0.375em;
}

.hover\:reduce-opacity {
  opacity: 1;
  transition: all 0.3s ease;
}
.hover\:reduce-opacity:hover {
  opacity: 0.8;
}

.hover\:scale {
  transition: transform 0.3s var(--ease-out-back);
}
.hover\:scale:hover {
  transform: scale(1.1);
}

.hover\:elevate {
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.hover\:elevate:hover {
  box-shadow: var(--shadow-md);
}

.link-subtle {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.link-subtle:hover {
  color: var(--color-primary);
}

