@charset "UTF-8";
.container {
  width: calc(100% - 2*var(--component-padding));
  margin-left: auto;
  margin-right: auto;
}

.grid, .flex, .inline-flex,
[class^=flex\@], [class*=" flex@"],
[class^=inline-flex\@], [class*=" inline-flex@"] {
  --gap: 0px;
  --gap-x: var(--gap);
  --gap-y: var(--gap);
  gap: var(--gap-y) var(--gap-x);
}
.grid > *, .flex > *, .inline-flex > *,
[class^=flex\@] > *, [class*=" flex@"] > *,
[class^=inline-flex\@] > *, [class*=" inline-flex@"] > * {
  --sub-gap: 0px;
  --sub-gap-x: var(--sub-gap);
  --sub-gap-y: var(--sub-gap);
}

.grid {
  --grid-columns: 12;
  display: flex;
  flex-wrap: wrap;
}
.grid > * {
  flex-basis: 100%;
  max-width: 100%;
  min-width: 0;
}

/* #region (Safari < 14.1 fallback) */
@media not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .grid, .flex[class*=gap-], .inline-flex[class*=gap-] {
      gap: 0px;
      margin-bottom: calc(-1 * var(--gap-y));
      margin-left: calc(-1 * var(--gap-x));
    }
    .grid > *, .flex[class*=gap-] > *, .inline-flex[class*=gap-] > * {
      margin-bottom: var(--sub-gap-y);
    }

    .grid {
      --offset: var(--gap-x);
      --gap-modifier: 0;
      --offset-modifier: 1;
    }
    .grid > * {
      margin-left: var(--offset);
    }

    .flex[class*=gap-] > *, .inline-flex[class*=gap-] > * {
      margin-left: var(--sub-gap-x);
    }
  }
}
/* #endregion */
.gap-xxxxs {
  --gap-x: var(--space-xxxxs);
  --gap-y: var(--space-xxxxs);
}
.gap-xxxxs > * {
  --sub-gap-x: var(--space-xxxxs);
  --sub-gap-y: var(--space-xxxxs);
}

.gap-xxxs {
  --gap-x: var(--space-xxxs);
  --gap-y: var(--space-xxxs);
}
.gap-xxxs > * {
  --sub-gap-x: var(--space-xxxs);
  --sub-gap-y: var(--space-xxxs);
}

.gap-xxs {
  --gap-x: var(--space-xxs);
  --gap-y: var(--space-xxs);
}
.gap-xxs > * {
  --sub-gap-x: var(--space-xxs);
  --sub-gap-y: var(--space-xxs);
}

.gap-xs {
  --gap-x: var(--space-xs);
  --gap-y: var(--space-xs);
}
.gap-xs > * {
  --sub-gap-x: var(--space-xs);
  --sub-gap-y: var(--space-xs);
}

.gap-sm {
  --gap-x: var(--space-sm);
  --gap-y: var(--space-sm);
}
.gap-sm > * {
  --sub-gap-x: var(--space-sm);
  --sub-gap-y: var(--space-sm);
}

.gap-md {
  --gap-x: var(--space-md);
  --gap-y: var(--space-md);
}
.gap-md > * {
  --sub-gap-x: var(--space-md);
  --sub-gap-y: var(--space-md);
}

.gap-lg {
  --gap-x: var(--space-lg);
  --gap-y: var(--space-lg);
}
.gap-lg > * {
  --sub-gap-x: var(--space-lg);
  --sub-gap-y: var(--space-lg);
}

.gap-xl {
  --gap-x: var(--space-xl);
  --gap-y: var(--space-xl);
}
.gap-xl > * {
  --sub-gap-x: var(--space-xl);
  --sub-gap-y: var(--space-xl);
}

.gap-xxl {
  --gap-x: var(--space-xxl);
  --gap-y: var(--space-xxl);
}
.gap-xxl > * {
  --sub-gap-x: var(--space-xxl);
  --sub-gap-y: var(--space-xxl);
}

.gap-xxxl {
  --gap-x: var(--space-xxxl);
  --gap-y: var(--space-xxxl);
}
.gap-xxxl > * {
  --sub-gap-x: var(--space-xxxl);
  --sub-gap-y: var(--space-xxxl);
}

.gap-xxxxl {
  --gap-x: var(--space-xxxxl);
  --gap-y: var(--space-xxxxl);
}
.gap-xxxxl > * {
  --sub-gap-x: var(--space-xxxxl);
  --sub-gap-y: var(--space-xxxxl);
}

.gap-0 {
  --gap-x: 0px;
  --gap-y: 0px;
}
.gap-0 > * {
  --sub-gap-x: 0px;
  --sub-gap-y: 0px;
}

.gap-x-xxxxs {
  --gap-x: var(--space-xxxxs);
}
.gap-x-xxxxs > * {
  --sub-gap-x: var(--space-xxxxs);
}

.gap-x-xxxs {
  --gap-x: var(--space-xxxs);
}
.gap-x-xxxs > * {
  --sub-gap-x: var(--space-xxxs);
}

.gap-x-xxs {
  --gap-x: var(--space-xxs);
}
.gap-x-xxs > * {
  --sub-gap-x: var(--space-xxs);
}

.gap-x-xs {
  --gap-x: var(--space-xs);
}
.gap-x-xs > * {
  --sub-gap-x: var(--space-xs);
}

.gap-x-sm {
  --gap-x: var(--space-sm);
}
.gap-x-sm > * {
  --sub-gap-x: var(--space-sm);
}

.gap-x-md {
  --gap-x: var(--space-md);
}
.gap-x-md > * {
  --sub-gap-x: var(--space-md);
}

.gap-x-lg {
  --gap-x: var(--space-lg);
}
.gap-x-lg > * {
  --sub-gap-x: var(--space-lg);
}

.gap-x-xl {
  --gap-x: var(--space-xl);
}
.gap-x-xl > * {
  --sub-gap-x: var(--space-xl);
}

.gap-x-xxl {
  --gap-x: var(--space-xxl);
}
.gap-x-xxl > * {
  --sub-gap-x: var(--space-xxl);
}

.gap-x-xxxl {
  --gap-x: var(--space-xxxl);
}
.gap-x-xxxl > * {
  --sub-gap-x: var(--space-xxxl);
}

.gap-x-xxxxl {
  --gap-x: var(--space-xxxxl);
}
.gap-x-xxxxl > * {
  --sub-gap-x: var(--space-xxxxl);
}

.gap-x-0 {
  --gap-x: 0px;
}
.gap-x-0 > * {
  --sub-gap-x: 0px;
}

.gap-y-xxxxs {
  --gap-y: var(--space-xxxxs);
}
.gap-y-xxxxs > * {
  --sub-gap-y: var(--space-xxxxs);
}

.gap-y-xxxs {
  --gap-y: var(--space-xxxs);
}
.gap-y-xxxs > * {
  --sub-gap-y: var(--space-xxxs);
}

.gap-y-xxs {
  --gap-y: var(--space-xxs);
}
.gap-y-xxs > * {
  --sub-gap-y: var(--space-xxs);
}

.gap-y-xs {
  --gap-y: var(--space-xs);
}
.gap-y-xs > * {
  --sub-gap-y: var(--space-xs);
}

.gap-y-sm {
  --gap-y: var(--space-sm);
}
.gap-y-sm > * {
  --sub-gap-y: var(--space-sm);
}

.gap-y-md {
  --gap-y: var(--space-md);
}
.gap-y-md > * {
  --sub-gap-y: var(--space-md);
}

.gap-y-lg {
  --gap-y: var(--space-lg);
}
.gap-y-lg > * {
  --sub-gap-y: var(--space-lg);
}

.gap-y-xl {
  --gap-y: var(--space-xl);
}
.gap-y-xl > * {
  --sub-gap-y: var(--space-xl);
}

.gap-y-xxl {
  --gap-y: var(--space-xxl);
}
.gap-y-xxl > * {
  --sub-gap-y: var(--space-xxl);
}

.gap-y-xxxl {
  --gap-y: var(--space-xxxl);
}
.gap-y-xxxl > * {
  --sub-gap-y: var(--space-xxxl);
}

.gap-y-xxxxl {
  --gap-y: var(--space-xxxxl);
}
.gap-y-xxxxl > * {
  --sub-gap-y: var(--space-xxxxl);
}

.gap-y-0 {
  --gap-y: 0px;
}
.gap-y-0 > * {
  --sub-gap-y: 0px;
}

.grid-col-1 {
  --grid-columns: 1;
}

.col-1 {
  --span: 1;
}

.grid-col-2 {
  --grid-columns: 2;
}

.col-2 {
  --span: 2;
}

.grid-col-3 {
  --grid-columns: 3;
}

.col-3 {
  --span: 3;
}

.grid-col-4 {
  --grid-columns: 4;
}

.col-4 {
  --span: 4;
}

.grid-col-5 {
  --grid-columns: 5;
}

.col-5 {
  --span: 5;
}

.grid-col-6 {
  --grid-columns: 6;
}

.col-6 {
  --span: 6;
}

.grid-col-7 {
  --grid-columns: 7;
}

.col-7 {
  --span: 7;
}

.grid-col-8 {
  --grid-columns: 8;
}

.col-8 {
  --span: 8;
}

.grid-col-9 {
  --grid-columns: 9;
}

.col-9 {
  --span: 9;
}

.grid-col-10 {
  --grid-columns: 10;
}

.col-10 {
  --span: 10;
}

.grid-col-11 {
  --grid-columns: 11;
}

.col-11 {
  --span: 11;
}

.grid-col-12 {
  --grid-columns: 12;
}

.col-12 {
  --span: 12;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  flex-basis: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
  max-width: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
}

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

.col-content {
  flex-grow: 0;
  flex-basis: initial;
  max-width: initial;
}

.offset-1 {
  --offset: 1;
}

.offset-2 {
  --offset: 2;
}

.offset-3 {
  --offset: 3;
}

.offset-4 {
  --offset: 4;
}

.offset-5 {
  --offset: 5;
}

.offset-6 {
  --offset: 6;
}

.offset-7 {
  --offset: 7;
}

.offset-8 {
  --offset: 8;
}

.offset-9 {
  --offset: 9;
}

.offset-10 {
  --offset: 10;
}

.offset-11 {
  --offset: 11;
}

.offset-1, .offset-2, .offset-3, .offset-4, .offset-5, .offset-6, .offset-7, .offset-8, .offset-9, .offset-10, .offset-11 {
  margin-left: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--offset) / var(--grid-columns)) + (var(--offset) + var(--offset-modifier, 0)) * var(--sub-gap-x));
}

@media (min-width: 32rem) {
  .gap-xxxxs\@xs {
    --gap-x: var(--space-xxxxs);
    --gap-y: var(--space-xxxxs);
  }
  .gap-xxxxs\@xs > * {
    --sub-gap-x: var(--space-xxxxs);
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-xxxs\@xs {
    --gap-x: var(--space-xxxs);
    --gap-y: var(--space-xxxs);
  }
  .gap-xxxs\@xs > * {
    --sub-gap-x: var(--space-xxxs);
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-xxs\@xs {
    --gap-x: var(--space-xxs);
    --gap-y: var(--space-xxs);
  }
  .gap-xxs\@xs > * {
    --sub-gap-x: var(--space-xxs);
    --sub-gap-y: var(--space-xxs);
  }

  .gap-xs\@xs {
    --gap-x: var(--space-xs);
    --gap-y: var(--space-xs);
  }
  .gap-xs\@xs > * {
    --sub-gap-x: var(--space-xs);
    --sub-gap-y: var(--space-xs);
  }

  .gap-sm\@xs {
    --gap-x: var(--space-sm);
    --gap-y: var(--space-sm);
  }
  .gap-sm\@xs > * {
    --sub-gap-x: var(--space-sm);
    --sub-gap-y: var(--space-sm);
  }

  .gap-md\@xs {
    --gap-x: var(--space-md);
    --gap-y: var(--space-md);
  }
  .gap-md\@xs > * {
    --sub-gap-x: var(--space-md);
    --sub-gap-y: var(--space-md);
  }

  .gap-lg\@xs {
    --gap-x: var(--space-lg);
    --gap-y: var(--space-lg);
  }
  .gap-lg\@xs > * {
    --sub-gap-x: var(--space-lg);
    --sub-gap-y: var(--space-lg);
  }

  .gap-xl\@xs {
    --gap-x: var(--space-xl);
    --gap-y: var(--space-xl);
  }
  .gap-xl\@xs > * {
    --sub-gap-x: var(--space-xl);
    --sub-gap-y: var(--space-xl);
  }

  .gap-xxl\@xs {
    --gap-x: var(--space-xxl);
    --gap-y: var(--space-xxl);
  }
  .gap-xxl\@xs > * {
    --sub-gap-x: var(--space-xxl);
    --sub-gap-y: var(--space-xxl);
  }

  .gap-xxxl\@xs {
    --gap-x: var(--space-xxxl);
    --gap-y: var(--space-xxxl);
  }
  .gap-xxxl\@xs > * {
    --sub-gap-x: var(--space-xxxl);
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-xxxxl\@xs {
    --gap-x: var(--space-xxxxl);
    --gap-y: var(--space-xxxxl);
  }
  .gap-xxxxl\@xs > * {
    --sub-gap-x: var(--space-xxxxl);
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-0\@xs {
    --gap-x: 0px;
    --gap-y: 0px;
  }
  .gap-0\@xs > * {
    --sub-gap-x: 0px;
    --sub-gap-y: 0px;
  }

  .gap-x-xxxxs\@xs {
    --gap-x: var(--space-xxxxs);
  }
  .gap-x-xxxxs\@xs > * {
    --sub-gap-x: var(--space-xxxxs);
  }

  .gap-x-xxxs\@xs {
    --gap-x: var(--space-xxxs);
  }
  .gap-x-xxxs\@xs > * {
    --sub-gap-x: var(--space-xxxs);
  }

  .gap-x-xxs\@xs {
    --gap-x: var(--space-xxs);
  }
  .gap-x-xxs\@xs > * {
    --sub-gap-x: var(--space-xxs);
  }

  .gap-x-xs\@xs {
    --gap-x: var(--space-xs);
  }
  .gap-x-xs\@xs > * {
    --sub-gap-x: var(--space-xs);
  }

  .gap-x-sm\@xs {
    --gap-x: var(--space-sm);
  }
  .gap-x-sm\@xs > * {
    --sub-gap-x: var(--space-sm);
  }

  .gap-x-md\@xs {
    --gap-x: var(--space-md);
  }
  .gap-x-md\@xs > * {
    --sub-gap-x: var(--space-md);
  }

  .gap-x-lg\@xs {
    --gap-x: var(--space-lg);
  }
  .gap-x-lg\@xs > * {
    --sub-gap-x: var(--space-lg);
  }

  .gap-x-xl\@xs {
    --gap-x: var(--space-xl);
  }
  .gap-x-xl\@xs > * {
    --sub-gap-x: var(--space-xl);
  }

  .gap-x-xxl\@xs {
    --gap-x: var(--space-xxl);
  }
  .gap-x-xxl\@xs > * {
    --sub-gap-x: var(--space-xxl);
  }

  .gap-x-xxxl\@xs {
    --gap-x: var(--space-xxxl);
  }
  .gap-x-xxxl\@xs > * {
    --sub-gap-x: var(--space-xxxl);
  }

  .gap-x-xxxxl\@xs {
    --gap-x: var(--space-xxxxl);
  }
  .gap-x-xxxxl\@xs > * {
    --sub-gap-x: var(--space-xxxxl);
  }

  .gap-x-0\@xs {
    --gap-x: 0px;
  }
  .gap-x-0\@xs > * {
    --sub-gap-x: 0px;
  }

  .gap-y-xxxxs\@xs {
    --gap-y: var(--space-xxxxs);
  }
  .gap-y-xxxxs\@xs > * {
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-y-xxxs\@xs {
    --gap-y: var(--space-xxxs);
  }
  .gap-y-xxxs\@xs > * {
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-y-xxs\@xs {
    --gap-y: var(--space-xxs);
  }
  .gap-y-xxs\@xs > * {
    --sub-gap-y: var(--space-xxs);
  }

  .gap-y-xs\@xs {
    --gap-y: var(--space-xs);
  }
  .gap-y-xs\@xs > * {
    --sub-gap-y: var(--space-xs);
  }

  .gap-y-sm\@xs {
    --gap-y: var(--space-sm);
  }
  .gap-y-sm\@xs > * {
    --sub-gap-y: var(--space-sm);
  }

  .gap-y-md\@xs {
    --gap-y: var(--space-md);
  }
  .gap-y-md\@xs > * {
    --sub-gap-y: var(--space-md);
  }

  .gap-y-lg\@xs {
    --gap-y: var(--space-lg);
  }
  .gap-y-lg\@xs > * {
    --sub-gap-y: var(--space-lg);
  }

  .gap-y-xl\@xs {
    --gap-y: var(--space-xl);
  }
  .gap-y-xl\@xs > * {
    --sub-gap-y: var(--space-xl);
  }

  .gap-y-xxl\@xs {
    --gap-y: var(--space-xxl);
  }
  .gap-y-xxl\@xs > * {
    --sub-gap-y: var(--space-xxl);
  }

  .gap-y-xxxl\@xs {
    --gap-y: var(--space-xxxl);
  }
  .gap-y-xxxl\@xs > * {
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-y-xxxxl\@xs {
    --gap-y: var(--space-xxxxl);
  }
  .gap-y-xxxxl\@xs > * {
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-y-0\@xs {
    --gap-y: 0px;
  }
  .gap-y-0\@xs > * {
    --sub-gap-y: 0px;
  }

  .grid-col-1\@xs {
    --grid-columns: 1;
  }

  .col-1\@xs {
    --span: 1;
  }

  .grid-col-2\@xs {
    --grid-columns: 2;
  }

  .col-2\@xs {
    --span: 2;
  }

  .grid-col-3\@xs {
    --grid-columns: 3;
  }

  .col-3\@xs {
    --span: 3;
  }

  .grid-col-4\@xs {
    --grid-columns: 4;
  }

  .col-4\@xs {
    --span: 4;
  }

  .grid-col-5\@xs {
    --grid-columns: 5;
  }

  .col-5\@xs {
    --span: 5;
  }

  .grid-col-6\@xs {
    --grid-columns: 6;
  }

  .col-6\@xs {
    --span: 6;
  }

  .grid-col-7\@xs {
    --grid-columns: 7;
  }

  .col-7\@xs {
    --span: 7;
  }

  .grid-col-8\@xs {
    --grid-columns: 8;
  }

  .col-8\@xs {
    --span: 8;
  }

  .grid-col-9\@xs {
    --grid-columns: 9;
  }

  .col-9\@xs {
    --span: 9;
  }

  .grid-col-10\@xs {
    --grid-columns: 10;
  }

  .col-10\@xs {
    --span: 10;
  }

  .grid-col-11\@xs {
    --grid-columns: 11;
  }

  .col-11\@xs {
    --span: 11;
  }

  .grid-col-12\@xs {
    --grid-columns: 12;
  }

  .col-12\@xs {
    --span: 12;
  }

  .col-1\@xs, .col-2\@xs, .col-3\@xs, .col-4\@xs, .col-5\@xs, .col-6\@xs, .col-7\@xs, .col-8\@xs, .col-9\@xs, .col-10\@xs, .col-11\@xs, .col-12\@xs {
    flex-basis: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
  }

  .col\@xs {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-content\@xs {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }

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

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

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

  .offset-4\@xs {
    --offset: 4;
  }

  .offset-5\@xs {
    --offset: 5;
  }

  .offset-6\@xs {
    --offset: 6;
  }

  .offset-7\@xs {
    --offset: 7;
  }

  .offset-8\@xs {
    --offset: 8;
  }

  .offset-9\@xs {
    --offset: 9;
  }

  .offset-10\@xs {
    --offset: 10;
  }

  .offset-11\@xs {
    --offset: 11;
  }

  .offset-1\@xs, .offset-2\@xs, .offset-3\@xs, .offset-4\@xs, .offset-5\@xs, .offset-6\@xs, .offset-7\@xs, .offset-8\@xs, .offset-9\@xs, .offset-10\@xs, .offset-11\@xs {
    margin-left: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--offset) / var(--grid-columns)) + (var(--offset) + var(--offset-modifier, 0)) * var(--sub-gap-x));
  }

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

  @media not all and (min-resolution: 0.001dpcm) {
    @supports not (translate: none) {
      .offset-0\@xs {
        margin-left: var(--gap-x);
      }
    }
  }
}
@media (min-width: 48rem) {
  .gap-xxxxs\@sm {
    --gap-x: var(--space-xxxxs);
    --gap-y: var(--space-xxxxs);
  }
  .gap-xxxxs\@sm > * {
    --sub-gap-x: var(--space-xxxxs);
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-xxxs\@sm {
    --gap-x: var(--space-xxxs);
    --gap-y: var(--space-xxxs);
  }
  .gap-xxxs\@sm > * {
    --sub-gap-x: var(--space-xxxs);
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-xxs\@sm {
    --gap-x: var(--space-xxs);
    --gap-y: var(--space-xxs);
  }
  .gap-xxs\@sm > * {
    --sub-gap-x: var(--space-xxs);
    --sub-gap-y: var(--space-xxs);
  }

  .gap-xs\@sm {
    --gap-x: var(--space-xs);
    --gap-y: var(--space-xs);
  }
  .gap-xs\@sm > * {
    --sub-gap-x: var(--space-xs);
    --sub-gap-y: var(--space-xs);
  }

  .gap-sm\@sm {
    --gap-x: var(--space-sm);
    --gap-y: var(--space-sm);
  }
  .gap-sm\@sm > * {
    --sub-gap-x: var(--space-sm);
    --sub-gap-y: var(--space-sm);
  }

  .gap-md\@sm {
    --gap-x: var(--space-md);
    --gap-y: var(--space-md);
  }
  .gap-md\@sm > * {
    --sub-gap-x: var(--space-md);
    --sub-gap-y: var(--space-md);
  }

  .gap-lg\@sm {
    --gap-x: var(--space-lg);
    --gap-y: var(--space-lg);
  }
  .gap-lg\@sm > * {
    --sub-gap-x: var(--space-lg);
    --sub-gap-y: var(--space-lg);
  }

  .gap-xl\@sm {
    --gap-x: var(--space-xl);
    --gap-y: var(--space-xl);
  }
  .gap-xl\@sm > * {
    --sub-gap-x: var(--space-xl);
    --sub-gap-y: var(--space-xl);
  }

  .gap-xxl\@sm {
    --gap-x: var(--space-xxl);
    --gap-y: var(--space-xxl);
  }
  .gap-xxl\@sm > * {
    --sub-gap-x: var(--space-xxl);
    --sub-gap-y: var(--space-xxl);
  }

  .gap-xxxl\@sm {
    --gap-x: var(--space-xxxl);
    --gap-y: var(--space-xxxl);
  }
  .gap-xxxl\@sm > * {
    --sub-gap-x: var(--space-xxxl);
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-xxxxl\@sm {
    --gap-x: var(--space-xxxxl);
    --gap-y: var(--space-xxxxl);
  }
  .gap-xxxxl\@sm > * {
    --sub-gap-x: var(--space-xxxxl);
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-0\@sm {
    --gap-x: 0px;
    --gap-y: 0px;
  }
  .gap-0\@sm > * {
    --sub-gap-x: 0px;
    --sub-gap-y: 0px;
  }

  .gap-x-xxxxs\@sm {
    --gap-x: var(--space-xxxxs);
  }
  .gap-x-xxxxs\@sm > * {
    --sub-gap-x: var(--space-xxxxs);
  }

  .gap-x-xxxs\@sm {
    --gap-x: var(--space-xxxs);
  }
  .gap-x-xxxs\@sm > * {
    --sub-gap-x: var(--space-xxxs);
  }

  .gap-x-xxs\@sm {
    --gap-x: var(--space-xxs);
  }
  .gap-x-xxs\@sm > * {
    --sub-gap-x: var(--space-xxs);
  }

  .gap-x-xs\@sm {
    --gap-x: var(--space-xs);
  }
  .gap-x-xs\@sm > * {
    --sub-gap-x: var(--space-xs);
  }

  .gap-x-sm\@sm {
    --gap-x: var(--space-sm);
  }
  .gap-x-sm\@sm > * {
    --sub-gap-x: var(--space-sm);
  }

  .gap-x-md\@sm {
    --gap-x: var(--space-md);
  }
  .gap-x-md\@sm > * {
    --sub-gap-x: var(--space-md);
  }

  .gap-x-lg\@sm {
    --gap-x: var(--space-lg);
  }
  .gap-x-lg\@sm > * {
    --sub-gap-x: var(--space-lg);
  }

  .gap-x-xl\@sm {
    --gap-x: var(--space-xl);
  }
  .gap-x-xl\@sm > * {
    --sub-gap-x: var(--space-xl);
  }

  .gap-x-xxl\@sm {
    --gap-x: var(--space-xxl);
  }
  .gap-x-xxl\@sm > * {
    --sub-gap-x: var(--space-xxl);
  }

  .gap-x-xxxl\@sm {
    --gap-x: var(--space-xxxl);
  }
  .gap-x-xxxl\@sm > * {
    --sub-gap-x: var(--space-xxxl);
  }

  .gap-x-xxxxl\@sm {
    --gap-x: var(--space-xxxxl);
  }
  .gap-x-xxxxl\@sm > * {
    --sub-gap-x: var(--space-xxxxl);
  }

  .gap-x-0\@sm {
    --gap-x: 0px;
  }
  .gap-x-0\@sm > * {
    --sub-gap-x: 0px;
  }

  .gap-y-xxxxs\@sm {
    --gap-y: var(--space-xxxxs);
  }
  .gap-y-xxxxs\@sm > * {
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-y-xxxs\@sm {
    --gap-y: var(--space-xxxs);
  }
  .gap-y-xxxs\@sm > * {
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-y-xxs\@sm {
    --gap-y: var(--space-xxs);
  }
  .gap-y-xxs\@sm > * {
    --sub-gap-y: var(--space-xxs);
  }

  .gap-y-xs\@sm {
    --gap-y: var(--space-xs);
  }
  .gap-y-xs\@sm > * {
    --sub-gap-y: var(--space-xs);
  }

  .gap-y-sm\@sm {
    --gap-y: var(--space-sm);
  }
  .gap-y-sm\@sm > * {
    --sub-gap-y: var(--space-sm);
  }

  .gap-y-md\@sm {
    --gap-y: var(--space-md);
  }
  .gap-y-md\@sm > * {
    --sub-gap-y: var(--space-md);
  }

  .gap-y-lg\@sm {
    --gap-y: var(--space-lg);
  }
  .gap-y-lg\@sm > * {
    --sub-gap-y: var(--space-lg);
  }

  .gap-y-xl\@sm {
    --gap-y: var(--space-xl);
  }
  .gap-y-xl\@sm > * {
    --sub-gap-y: var(--space-xl);
  }

  .gap-y-xxl\@sm {
    --gap-y: var(--space-xxl);
  }
  .gap-y-xxl\@sm > * {
    --sub-gap-y: var(--space-xxl);
  }

  .gap-y-xxxl\@sm {
    --gap-y: var(--space-xxxl);
  }
  .gap-y-xxxl\@sm > * {
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-y-xxxxl\@sm {
    --gap-y: var(--space-xxxxl);
  }
  .gap-y-xxxxl\@sm > * {
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-y-0\@sm {
    --gap-y: 0px;
  }
  .gap-y-0\@sm > * {
    --sub-gap-y: 0px;
  }

  .grid-col-1\@sm {
    --grid-columns: 1;
  }

  .col-1\@sm {
    --span: 1;
  }

  .grid-col-2\@sm {
    --grid-columns: 2;
  }

  .col-2\@sm {
    --span: 2;
  }

  .grid-col-3\@sm {
    --grid-columns: 3;
  }

  .col-3\@sm {
    --span: 3;
  }

  .grid-col-4\@sm {
    --grid-columns: 4;
  }

  .col-4\@sm {
    --span: 4;
  }

  .grid-col-5\@sm {
    --grid-columns: 5;
  }

  .col-5\@sm {
    --span: 5;
  }

  .grid-col-6\@sm {
    --grid-columns: 6;
  }

  .col-6\@sm {
    --span: 6;
  }

  .grid-col-7\@sm {
    --grid-columns: 7;
  }

  .col-7\@sm {
    --span: 7;
  }

  .grid-col-8\@sm {
    --grid-columns: 8;
  }

  .col-8\@sm {
    --span: 8;
  }

  .grid-col-9\@sm {
    --grid-columns: 9;
  }

  .col-9\@sm {
    --span: 9;
  }

  .grid-col-10\@sm {
    --grid-columns: 10;
  }

  .col-10\@sm {
    --span: 10;
  }

  .grid-col-11\@sm {
    --grid-columns: 11;
  }

  .col-11\@sm {
    --span: 11;
  }

  .grid-col-12\@sm {
    --grid-columns: 12;
  }

  .col-12\@sm {
    --span: 12;
  }

  .col-1\@sm, .col-2\@sm, .col-3\@sm, .col-4\@sm, .col-5\@sm, .col-6\@sm, .col-7\@sm, .col-8\@sm, .col-9\@sm, .col-10\@sm, .col-11\@sm, .col-12\@sm {
    flex-basis: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
  }

  .col\@sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-content\@sm {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }

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

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

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

  .offset-4\@sm {
    --offset: 4;
  }

  .offset-5\@sm {
    --offset: 5;
  }

  .offset-6\@sm {
    --offset: 6;
  }

  .offset-7\@sm {
    --offset: 7;
  }

  .offset-8\@sm {
    --offset: 8;
  }

  .offset-9\@sm {
    --offset: 9;
  }

  .offset-10\@sm {
    --offset: 10;
  }

  .offset-11\@sm {
    --offset: 11;
  }

  .offset-1\@sm, .offset-2\@sm, .offset-3\@sm, .offset-4\@sm, .offset-5\@sm, .offset-6\@sm, .offset-7\@sm, .offset-8\@sm, .offset-9\@sm, .offset-10\@sm, .offset-11\@sm {
    margin-left: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--offset) / var(--grid-columns)) + (var(--offset) + var(--offset-modifier, 0)) * var(--sub-gap-x));
  }

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

  @media not all and (min-resolution: 0.001dpcm) {
    @supports not (translate: none) {
      .offset-0\@sm {
        margin-left: var(--gap-x);
      }
    }
  }
}
@media (min-width: 64rem) {
  .gap-xxxxs\@md {
    --gap-x: var(--space-xxxxs);
    --gap-y: var(--space-xxxxs);
  }
  .gap-xxxxs\@md > * {
    --sub-gap-x: var(--space-xxxxs);
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-xxxs\@md {
    --gap-x: var(--space-xxxs);
    --gap-y: var(--space-xxxs);
  }
  .gap-xxxs\@md > * {
    --sub-gap-x: var(--space-xxxs);
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-xxs\@md {
    --gap-x: var(--space-xxs);
    --gap-y: var(--space-xxs);
  }
  .gap-xxs\@md > * {
    --sub-gap-x: var(--space-xxs);
    --sub-gap-y: var(--space-xxs);
  }

  .gap-xs\@md {
    --gap-x: var(--space-xs);
    --gap-y: var(--space-xs);
  }
  .gap-xs\@md > * {
    --sub-gap-x: var(--space-xs);
    --sub-gap-y: var(--space-xs);
  }

  .gap-sm\@md {
    --gap-x: var(--space-sm);
    --gap-y: var(--space-sm);
  }
  .gap-sm\@md > * {
    --sub-gap-x: var(--space-sm);
    --sub-gap-y: var(--space-sm);
  }

  .gap-md\@md {
    --gap-x: var(--space-md);
    --gap-y: var(--space-md);
  }
  .gap-md\@md > * {
    --sub-gap-x: var(--space-md);
    --sub-gap-y: var(--space-md);
  }

  .gap-lg\@md {
    --gap-x: var(--space-lg);
    --gap-y: var(--space-lg);
  }
  .gap-lg\@md > * {
    --sub-gap-x: var(--space-lg);
    --sub-gap-y: var(--space-lg);
  }

  .gap-xl\@md {
    --gap-x: var(--space-xl);
    --gap-y: var(--space-xl);
  }
  .gap-xl\@md > * {
    --sub-gap-x: var(--space-xl);
    --sub-gap-y: var(--space-xl);
  }

  .gap-xxl\@md {
    --gap-x: var(--space-xxl);
    --gap-y: var(--space-xxl);
  }
  .gap-xxl\@md > * {
    --sub-gap-x: var(--space-xxl);
    --sub-gap-y: var(--space-xxl);
  }

  .gap-xxxl\@md {
    --gap-x: var(--space-xxxl);
    --gap-y: var(--space-xxxl);
  }
  .gap-xxxl\@md > * {
    --sub-gap-x: var(--space-xxxl);
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-xxxxl\@md {
    --gap-x: var(--space-xxxxl);
    --gap-y: var(--space-xxxxl);
  }
  .gap-xxxxl\@md > * {
    --sub-gap-x: var(--space-xxxxl);
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-0\@md {
    --gap-x: 0px;
    --gap-y: 0px;
  }
  .gap-0\@md > * {
    --sub-gap-x: 0px;
    --sub-gap-y: 0px;
  }

  .gap-x-xxxxs\@md {
    --gap-x: var(--space-xxxxs);
  }
  .gap-x-xxxxs\@md > * {
    --sub-gap-x: var(--space-xxxxs);
  }

  .gap-x-xxxs\@md {
    --gap-x: var(--space-xxxs);
  }
  .gap-x-xxxs\@md > * {
    --sub-gap-x: var(--space-xxxs);
  }

  .gap-x-xxs\@md {
    --gap-x: var(--space-xxs);
  }
  .gap-x-xxs\@md > * {
    --sub-gap-x: var(--space-xxs);
  }

  .gap-x-xs\@md {
    --gap-x: var(--space-xs);
  }
  .gap-x-xs\@md > * {
    --sub-gap-x: var(--space-xs);
  }

  .gap-x-sm\@md {
    --gap-x: var(--space-sm);
  }
  .gap-x-sm\@md > * {
    --sub-gap-x: var(--space-sm);
  }

  .gap-x-md\@md {
    --gap-x: var(--space-md);
  }
  .gap-x-md\@md > * {
    --sub-gap-x: var(--space-md);
  }

  .gap-x-lg\@md {
    --gap-x: var(--space-lg);
  }
  .gap-x-lg\@md > * {
    --sub-gap-x: var(--space-lg);
  }

  .gap-x-xl\@md {
    --gap-x: var(--space-xl);
  }
  .gap-x-xl\@md > * {
    --sub-gap-x: var(--space-xl);
  }

  .gap-x-xxl\@md {
    --gap-x: var(--space-xxl);
  }
  .gap-x-xxl\@md > * {
    --sub-gap-x: var(--space-xxl);
  }

  .gap-x-xxxl\@md {
    --gap-x: var(--space-xxxl);
  }
  .gap-x-xxxl\@md > * {
    --sub-gap-x: var(--space-xxxl);
  }

  .gap-x-xxxxl\@md {
    --gap-x: var(--space-xxxxl);
  }
  .gap-x-xxxxl\@md > * {
    --sub-gap-x: var(--space-xxxxl);
  }

  .gap-x-0\@md {
    --gap-x: 0px;
  }
  .gap-x-0\@md > * {
    --sub-gap-x: 0px;
  }

  .gap-y-xxxxs\@md {
    --gap-y: var(--space-xxxxs);
  }
  .gap-y-xxxxs\@md > * {
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-y-xxxs\@md {
    --gap-y: var(--space-xxxs);
  }
  .gap-y-xxxs\@md > * {
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-y-xxs\@md {
    --gap-y: var(--space-xxs);
  }
  .gap-y-xxs\@md > * {
    --sub-gap-y: var(--space-xxs);
  }

  .gap-y-xs\@md {
    --gap-y: var(--space-xs);
  }
  .gap-y-xs\@md > * {
    --sub-gap-y: var(--space-xs);
  }

  .gap-y-sm\@md {
    --gap-y: var(--space-sm);
  }
  .gap-y-sm\@md > * {
    --sub-gap-y: var(--space-sm);
  }

  .gap-y-md\@md {
    --gap-y: var(--space-md);
  }
  .gap-y-md\@md > * {
    --sub-gap-y: var(--space-md);
  }

  .gap-y-lg\@md {
    --gap-y: var(--space-lg);
  }
  .gap-y-lg\@md > * {
    --sub-gap-y: var(--space-lg);
  }

  .gap-y-xl\@md {
    --gap-y: var(--space-xl);
  }
  .gap-y-xl\@md > * {
    --sub-gap-y: var(--space-xl);
  }

  .gap-y-xxl\@md {
    --gap-y: var(--space-xxl);
  }
  .gap-y-xxl\@md > * {
    --sub-gap-y: var(--space-xxl);
  }

  .gap-y-xxxl\@md {
    --gap-y: var(--space-xxxl);
  }
  .gap-y-xxxl\@md > * {
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-y-xxxxl\@md {
    --gap-y: var(--space-xxxxl);
  }
  .gap-y-xxxxl\@md > * {
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-y-0\@md {
    --gap-y: 0px;
  }
  .gap-y-0\@md > * {
    --sub-gap-y: 0px;
  }

  .grid-col-1\@md {
    --grid-columns: 1;
  }

  .col-1\@md {
    --span: 1;
  }

  .grid-col-2\@md {
    --grid-columns: 2;
  }

  .col-2\@md {
    --span: 2;
  }

  .grid-col-3\@md {
    --grid-columns: 3;
  }

  .col-3\@md {
    --span: 3;
  }

  .grid-col-4\@md {
    --grid-columns: 4;
  }

  .col-4\@md {
    --span: 4;
  }

  .grid-col-5\@md {
    --grid-columns: 5;
  }

  .col-5\@md {
    --span: 5;
  }

  .grid-col-6\@md {
    --grid-columns: 6;
  }

  .col-6\@md {
    --span: 6;
  }

  .grid-col-7\@md {
    --grid-columns: 7;
  }

  .col-7\@md {
    --span: 7;
  }

  .grid-col-8\@md {
    --grid-columns: 8;
  }

  .col-8\@md {
    --span: 8;
  }

  .grid-col-9\@md {
    --grid-columns: 9;
  }

  .col-9\@md {
    --span: 9;
  }

  .grid-col-10\@md {
    --grid-columns: 10;
  }

  .col-10\@md {
    --span: 10;
  }

  .grid-col-11\@md {
    --grid-columns: 11;
  }

  .col-11\@md {
    --span: 11;
  }

  .grid-col-12\@md {
    --grid-columns: 12;
  }

  .col-12\@md {
    --span: 12;
  }

  .col-1\@md, .col-2\@md, .col-3\@md, .col-4\@md, .col-5\@md, .col-6\@md, .col-7\@md, .col-8\@md, .col-9\@md, .col-10\@md, .col-11\@md, .col-12\@md {
    flex-basis: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
  }

  .col\@md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-content\@md {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }

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

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

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

  .offset-4\@md {
    --offset: 4;
  }

  .offset-5\@md {
    --offset: 5;
  }

  .offset-6\@md {
    --offset: 6;
  }

  .offset-7\@md {
    --offset: 7;
  }

  .offset-8\@md {
    --offset: 8;
  }

  .offset-9\@md {
    --offset: 9;
  }

  .offset-10\@md {
    --offset: 10;
  }

  .offset-11\@md {
    --offset: 11;
  }

  .offset-1\@md, .offset-2\@md, .offset-3\@md, .offset-4\@md, .offset-5\@md, .offset-6\@md, .offset-7\@md, .offset-8\@md, .offset-9\@md, .offset-10\@md, .offset-11\@md {
    margin-left: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--offset) / var(--grid-columns)) + (var(--offset) + var(--offset-modifier, 0)) * var(--sub-gap-x));
  }

  .offset-0\@md {
    margin-left: 0;
  }

  @media not all and (min-resolution: 0.001dpcm) {
    @supports not (translate: none) {
      .offset-0\@md {
        margin-left: var(--gap-x);
      }
    }
  }
}
@media (min-width: 80rem) {
  .gap-xxxxs\@lg {
    --gap-x: var(--space-xxxxs);
    --gap-y: var(--space-xxxxs);
  }
  .gap-xxxxs\@lg > * {
    --sub-gap-x: var(--space-xxxxs);
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-xxxs\@lg {
    --gap-x: var(--space-xxxs);
    --gap-y: var(--space-xxxs);
  }
  .gap-xxxs\@lg > * {
    --sub-gap-x: var(--space-xxxs);
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-xxs\@lg {
    --gap-x: var(--space-xxs);
    --gap-y: var(--space-xxs);
  }
  .gap-xxs\@lg > * {
    --sub-gap-x: var(--space-xxs);
    --sub-gap-y: var(--space-xxs);
  }

  .gap-xs\@lg {
    --gap-x: var(--space-xs);
    --gap-y: var(--space-xs);
  }
  .gap-xs\@lg > * {
    --sub-gap-x: var(--space-xs);
    --sub-gap-y: var(--space-xs);
  }

  .gap-sm\@lg {
    --gap-x: var(--space-sm);
    --gap-y: var(--space-sm);
  }
  .gap-sm\@lg > * {
    --sub-gap-x: var(--space-sm);
    --sub-gap-y: var(--space-sm);
  }

  .gap-md\@lg {
    --gap-x: var(--space-md);
    --gap-y: var(--space-md);
  }
  .gap-md\@lg > * {
    --sub-gap-x: var(--space-md);
    --sub-gap-y: var(--space-md);
  }

  .gap-lg\@lg {
    --gap-x: var(--space-lg);
    --gap-y: var(--space-lg);
  }
  .gap-lg\@lg > * {
    --sub-gap-x: var(--space-lg);
    --sub-gap-y: var(--space-lg);
  }

  .gap-xl\@lg {
    --gap-x: var(--space-xl);
    --gap-y: var(--space-xl);
  }
  .gap-xl\@lg > * {
    --sub-gap-x: var(--space-xl);
    --sub-gap-y: var(--space-xl);
  }

  .gap-xxl\@lg {
    --gap-x: var(--space-xxl);
    --gap-y: var(--space-xxl);
  }
  .gap-xxl\@lg > * {
    --sub-gap-x: var(--space-xxl);
    --sub-gap-y: var(--space-xxl);
  }

  .gap-xxxl\@lg {
    --gap-x: var(--space-xxxl);
    --gap-y: var(--space-xxxl);
  }
  .gap-xxxl\@lg > * {
    --sub-gap-x: var(--space-xxxl);
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-xxxxl\@lg {
    --gap-x: var(--space-xxxxl);
    --gap-y: var(--space-xxxxl);
  }
  .gap-xxxxl\@lg > * {
    --sub-gap-x: var(--space-xxxxl);
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-0\@lg {
    --gap-x: 0px;
    --gap-y: 0px;
  }
  .gap-0\@lg > * {
    --sub-gap-x: 0px;
    --sub-gap-y: 0px;
  }

  .gap-x-xxxxs\@lg {
    --gap-x: var(--space-xxxxs);
  }
  .gap-x-xxxxs\@lg > * {
    --sub-gap-x: var(--space-xxxxs);
  }

  .gap-x-xxxs\@lg {
    --gap-x: var(--space-xxxs);
  }
  .gap-x-xxxs\@lg > * {
    --sub-gap-x: var(--space-xxxs);
  }

  .gap-x-xxs\@lg {
    --gap-x: var(--space-xxs);
  }
  .gap-x-xxs\@lg > * {
    --sub-gap-x: var(--space-xxs);
  }

  .gap-x-xs\@lg {
    --gap-x: var(--space-xs);
  }
  .gap-x-xs\@lg > * {
    --sub-gap-x: var(--space-xs);
  }

  .gap-x-sm\@lg {
    --gap-x: var(--space-sm);
  }
  .gap-x-sm\@lg > * {
    --sub-gap-x: var(--space-sm);
  }

  .gap-x-md\@lg {
    --gap-x: var(--space-md);
  }
  .gap-x-md\@lg > * {
    --sub-gap-x: var(--space-md);
  }

  .gap-x-lg\@lg {
    --gap-x: var(--space-lg);
  }
  .gap-x-lg\@lg > * {
    --sub-gap-x: var(--space-lg);
  }

  .gap-x-xl\@lg {
    --gap-x: var(--space-xl);
  }
  .gap-x-xl\@lg > * {
    --sub-gap-x: var(--space-xl);
  }

  .gap-x-xxl\@lg {
    --gap-x: var(--space-xxl);
  }
  .gap-x-xxl\@lg > * {
    --sub-gap-x: var(--space-xxl);
  }

  .gap-x-xxxl\@lg {
    --gap-x: var(--space-xxxl);
  }
  .gap-x-xxxl\@lg > * {
    --sub-gap-x: var(--space-xxxl);
  }

  .gap-x-xxxxl\@lg {
    --gap-x: var(--space-xxxxl);
  }
  .gap-x-xxxxl\@lg > * {
    --sub-gap-x: var(--space-xxxxl);
  }

  .gap-x-0\@lg {
    --gap-x: 0px;
  }
  .gap-x-0\@lg > * {
    --sub-gap-x: 0px;
  }

  .gap-y-xxxxs\@lg {
    --gap-y: var(--space-xxxxs);
  }
  .gap-y-xxxxs\@lg > * {
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-y-xxxs\@lg {
    --gap-y: var(--space-xxxs);
  }
  .gap-y-xxxs\@lg > * {
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-y-xxs\@lg {
    --gap-y: var(--space-xxs);
  }
  .gap-y-xxs\@lg > * {
    --sub-gap-y: var(--space-xxs);
  }

  .gap-y-xs\@lg {
    --gap-y: var(--space-xs);
  }
  .gap-y-xs\@lg > * {
    --sub-gap-y: var(--space-xs);
  }

  .gap-y-sm\@lg {
    --gap-y: var(--space-sm);
  }
  .gap-y-sm\@lg > * {
    --sub-gap-y: var(--space-sm);
  }

  .gap-y-md\@lg {
    --gap-y: var(--space-md);
  }
  .gap-y-md\@lg > * {
    --sub-gap-y: var(--space-md);
  }

  .gap-y-lg\@lg {
    --gap-y: var(--space-lg);
  }
  .gap-y-lg\@lg > * {
    --sub-gap-y: var(--space-lg);
  }

  .gap-y-xl\@lg {
    --gap-y: var(--space-xl);
  }
  .gap-y-xl\@lg > * {
    --sub-gap-y: var(--space-xl);
  }

  .gap-y-xxl\@lg {
    --gap-y: var(--space-xxl);
  }
  .gap-y-xxl\@lg > * {
    --sub-gap-y: var(--space-xxl);
  }

  .gap-y-xxxl\@lg {
    --gap-y: var(--space-xxxl);
  }
  .gap-y-xxxl\@lg > * {
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-y-xxxxl\@lg {
    --gap-y: var(--space-xxxxl);
  }
  .gap-y-xxxxl\@lg > * {
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-y-0\@lg {
    --gap-y: 0px;
  }
  .gap-y-0\@lg > * {
    --sub-gap-y: 0px;
  }

  .grid-col-1\@lg {
    --grid-columns: 1;
  }

  .col-1\@lg {
    --span: 1;
  }

  .grid-col-2\@lg {
    --grid-columns: 2;
  }

  .col-2\@lg {
    --span: 2;
  }

  .grid-col-3\@lg {
    --grid-columns: 3;
  }

  .col-3\@lg {
    --span: 3;
  }

  .grid-col-4\@lg {
    --grid-columns: 4;
  }

  .col-4\@lg {
    --span: 4;
  }

  .grid-col-5\@lg {
    --grid-columns: 5;
  }

  .col-5\@lg {
    --span: 5;
  }

  .grid-col-6\@lg {
    --grid-columns: 6;
  }

  .col-6\@lg {
    --span: 6;
  }

  .grid-col-7\@lg {
    --grid-columns: 7;
  }

  .col-7\@lg {
    --span: 7;
  }

  .grid-col-8\@lg {
    --grid-columns: 8;
  }

  .col-8\@lg {
    --span: 8;
  }

  .grid-col-9\@lg {
    --grid-columns: 9;
  }

  .col-9\@lg {
    --span: 9;
  }

  .grid-col-10\@lg {
    --grid-columns: 10;
  }

  .col-10\@lg {
    --span: 10;
  }

  .grid-col-11\@lg {
    --grid-columns: 11;
  }

  .col-11\@lg {
    --span: 11;
  }

  .grid-col-12\@lg {
    --grid-columns: 12;
  }

  .col-12\@lg {
    --span: 12;
  }

  .col-1\@lg, .col-2\@lg, .col-3\@lg, .col-4\@lg, .col-5\@lg, .col-6\@lg, .col-7\@lg, .col-8\@lg, .col-9\@lg, .col-10\@lg, .col-11\@lg, .col-12\@lg {
    flex-basis: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
  }

  .col\@lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-content\@lg {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }

  .offset-1\@lg {
    --offset: 1;
  }

  .offset-2\@lg {
    --offset: 2;
  }

  .offset-3\@lg {
    --offset: 3;
  }

  .offset-4\@lg {
    --offset: 4;
  }

  .offset-5\@lg {
    --offset: 5;
  }

  .offset-6\@lg {
    --offset: 6;
  }

  .offset-7\@lg {
    --offset: 7;
  }

  .offset-8\@lg {
    --offset: 8;
  }

  .offset-9\@lg {
    --offset: 9;
  }

  .offset-10\@lg {
    --offset: 10;
  }

  .offset-11\@lg {
    --offset: 11;
  }

  .offset-1\@lg, .offset-2\@lg, .offset-3\@lg, .offset-4\@lg, .offset-5\@lg, .offset-6\@lg, .offset-7\@lg, .offset-8\@lg, .offset-9\@lg, .offset-10\@lg, .offset-11\@lg {
    margin-left: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--offset) / var(--grid-columns)) + (var(--offset) + var(--offset-modifier, 0)) * var(--sub-gap-x));
  }

  .offset-0\@lg {
    margin-left: 0;
  }

  @media not all and (min-resolution: 0.001dpcm) {
    @supports not (translate: none) {
      .offset-0\@lg {
        margin-left: var(--gap-x);
      }
    }
  }
}
@media (min-width: 90rem) {
  .gap-xxxxs\@xl {
    --gap-x: var(--space-xxxxs);
    --gap-y: var(--space-xxxxs);
  }
  .gap-xxxxs\@xl > * {
    --sub-gap-x: var(--space-xxxxs);
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-xxxs\@xl {
    --gap-x: var(--space-xxxs);
    --gap-y: var(--space-xxxs);
  }
  .gap-xxxs\@xl > * {
    --sub-gap-x: var(--space-xxxs);
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-xxs\@xl {
    --gap-x: var(--space-xxs);
    --gap-y: var(--space-xxs);
  }
  .gap-xxs\@xl > * {
    --sub-gap-x: var(--space-xxs);
    --sub-gap-y: var(--space-xxs);
  }

  .gap-xs\@xl {
    --gap-x: var(--space-xs);
    --gap-y: var(--space-xs);
  }
  .gap-xs\@xl > * {
    --sub-gap-x: var(--space-xs);
    --sub-gap-y: var(--space-xs);
  }

  .gap-sm\@xl {
    --gap-x: var(--space-sm);
    --gap-y: var(--space-sm);
  }
  .gap-sm\@xl > * {
    --sub-gap-x: var(--space-sm);
    --sub-gap-y: var(--space-sm);
  }

  .gap-md\@xl {
    --gap-x: var(--space-md);
    --gap-y: var(--space-md);
  }
  .gap-md\@xl > * {
    --sub-gap-x: var(--space-md);
    --sub-gap-y: var(--space-md);
  }

  .gap-lg\@xl {
    --gap-x: var(--space-lg);
    --gap-y: var(--space-lg);
  }
  .gap-lg\@xl > * {
    --sub-gap-x: var(--space-lg);
    --sub-gap-y: var(--space-lg);
  }

  .gap-xl\@xl {
    --gap-x: var(--space-xl);
    --gap-y: var(--space-xl);
  }
  .gap-xl\@xl > * {
    --sub-gap-x: var(--space-xl);
    --sub-gap-y: var(--space-xl);
  }

  .gap-xxl\@xl {
    --gap-x: var(--space-xxl);
    --gap-y: var(--space-xxl);
  }
  .gap-xxl\@xl > * {
    --sub-gap-x: var(--space-xxl);
    --sub-gap-y: var(--space-xxl);
  }

  .gap-xxxl\@xl {
    --gap-x: var(--space-xxxl);
    --gap-y: var(--space-xxxl);
  }
  .gap-xxxl\@xl > * {
    --sub-gap-x: var(--space-xxxl);
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-xxxxl\@xl {
    --gap-x: var(--space-xxxxl);
    --gap-y: var(--space-xxxxl);
  }
  .gap-xxxxl\@xl > * {
    --sub-gap-x: var(--space-xxxxl);
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-0\@xl {
    --gap-x: 0px;
    --gap-y: 0px;
  }
  .gap-0\@xl > * {
    --sub-gap-x: 0px;
    --sub-gap-y: 0px;
  }

  .gap-x-xxxxs\@xl {
    --gap-x: var(--space-xxxxs);
  }
  .gap-x-xxxxs\@xl > * {
    --sub-gap-x: var(--space-xxxxs);
  }

  .gap-x-xxxs\@xl {
    --gap-x: var(--space-xxxs);
  }
  .gap-x-xxxs\@xl > * {
    --sub-gap-x: var(--space-xxxs);
  }

  .gap-x-xxs\@xl {
    --gap-x: var(--space-xxs);
  }
  .gap-x-xxs\@xl > * {
    --sub-gap-x: var(--space-xxs);
  }

  .gap-x-xs\@xl {
    --gap-x: var(--space-xs);
  }
  .gap-x-xs\@xl > * {
    --sub-gap-x: var(--space-xs);
  }

  .gap-x-sm\@xl {
    --gap-x: var(--space-sm);
  }
  .gap-x-sm\@xl > * {
    --sub-gap-x: var(--space-sm);
  }

  .gap-x-md\@xl {
    --gap-x: var(--space-md);
  }
  .gap-x-md\@xl > * {
    --sub-gap-x: var(--space-md);
  }

  .gap-x-lg\@xl {
    --gap-x: var(--space-lg);
  }
  .gap-x-lg\@xl > * {
    --sub-gap-x: var(--space-lg);
  }

  .gap-x-xl\@xl {
    --gap-x: var(--space-xl);
  }
  .gap-x-xl\@xl > * {
    --sub-gap-x: var(--space-xl);
  }

  .gap-x-xxl\@xl {
    --gap-x: var(--space-xxl);
  }
  .gap-x-xxl\@xl > * {
    --sub-gap-x: var(--space-xxl);
  }

  .gap-x-xxxl\@xl {
    --gap-x: var(--space-xxxl);
  }
  .gap-x-xxxl\@xl > * {
    --sub-gap-x: var(--space-xxxl);
  }

  .gap-x-xxxxl\@xl {
    --gap-x: var(--space-xxxxl);
  }
  .gap-x-xxxxl\@xl > * {
    --sub-gap-x: var(--space-xxxxl);
  }

  .gap-x-0\@xl {
    --gap-x: 0px;
  }
  .gap-x-0\@xl > * {
    --sub-gap-x: 0px;
  }

  .gap-y-xxxxs\@xl {
    --gap-y: var(--space-xxxxs);
  }
  .gap-y-xxxxs\@xl > * {
    --sub-gap-y: var(--space-xxxxs);
  }

  .gap-y-xxxs\@xl {
    --gap-y: var(--space-xxxs);
  }
  .gap-y-xxxs\@xl > * {
    --sub-gap-y: var(--space-xxxs);
  }

  .gap-y-xxs\@xl {
    --gap-y: var(--space-xxs);
  }
  .gap-y-xxs\@xl > * {
    --sub-gap-y: var(--space-xxs);
  }

  .gap-y-xs\@xl {
    --gap-y: var(--space-xs);
  }
  .gap-y-xs\@xl > * {
    --sub-gap-y: var(--space-xs);
  }

  .gap-y-sm\@xl {
    --gap-y: var(--space-sm);
  }
  .gap-y-sm\@xl > * {
    --sub-gap-y: var(--space-sm);
  }

  .gap-y-md\@xl {
    --gap-y: var(--space-md);
  }
  .gap-y-md\@xl > * {
    --sub-gap-y: var(--space-md);
  }

  .gap-y-lg\@xl {
    --gap-y: var(--space-lg);
  }
  .gap-y-lg\@xl > * {
    --sub-gap-y: var(--space-lg);
  }

  .gap-y-xl\@xl {
    --gap-y: var(--space-xl);
  }
  .gap-y-xl\@xl > * {
    --sub-gap-y: var(--space-xl);
  }

  .gap-y-xxl\@xl {
    --gap-y: var(--space-xxl);
  }
  .gap-y-xxl\@xl > * {
    --sub-gap-y: var(--space-xxl);
  }

  .gap-y-xxxl\@xl {
    --gap-y: var(--space-xxxl);
  }
  .gap-y-xxxl\@xl > * {
    --sub-gap-y: var(--space-xxxl);
  }

  .gap-y-xxxxl\@xl {
    --gap-y: var(--space-xxxxl);
  }
  .gap-y-xxxxl\@xl > * {
    --sub-gap-y: var(--space-xxxxl);
  }

  .gap-y-0\@xl {
    --gap-y: 0px;
  }
  .gap-y-0\@xl > * {
    --sub-gap-y: 0px;
  }

  .grid-col-1\@xl {
    --grid-columns: 1;
  }

  .col-1\@xl {
    --span: 1;
  }

  .grid-col-2\@xl {
    --grid-columns: 2;
  }

  .col-2\@xl {
    --span: 2;
  }

  .grid-col-3\@xl {
    --grid-columns: 3;
  }

  .col-3\@xl {
    --span: 3;
  }

  .grid-col-4\@xl {
    --grid-columns: 4;
  }

  .col-4\@xl {
    --span: 4;
  }

  .grid-col-5\@xl {
    --grid-columns: 5;
  }

  .col-5\@xl {
    --span: 5;
  }

  .grid-col-6\@xl {
    --grid-columns: 6;
  }

  .col-6\@xl {
    --span: 6;
  }

  .grid-col-7\@xl {
    --grid-columns: 7;
  }

  .col-7\@xl {
    --span: 7;
  }

  .grid-col-8\@xl {
    --grid-columns: 8;
  }

  .col-8\@xl {
    --span: 8;
  }

  .grid-col-9\@xl {
    --grid-columns: 9;
  }

  .col-9\@xl {
    --span: 9;
  }

  .grid-col-10\@xl {
    --grid-columns: 10;
  }

  .col-10\@xl {
    --span: 10;
  }

  .grid-col-11\@xl {
    --grid-columns: 11;
  }

  .col-11\@xl {
    --span: 11;
  }

  .grid-col-12\@xl {
    --grid-columns: 12;
  }

  .col-12\@xl {
    --span: 12;
  }

  .col-1\@xl, .col-2\@xl, .col-3\@xl, .col-4\@xl, .col-5\@xl, .col-6\@xl, .col-7\@xl, .col-8\@xl, .col-9\@xl, .col-10\@xl, .col-11\@xl, .col-12\@xl {
    flex-basis: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns)) + (var(--span) - 1) * var(--sub-gap-x));
  }

  .col\@xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-content\@xl {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }

  .offset-1\@xl {
    --offset: 1;
  }

  .offset-2\@xl {
    --offset: 2;
  }

  .offset-3\@xl {
    --offset: 3;
  }

  .offset-4\@xl {
    --offset: 4;
  }

  .offset-5\@xl {
    --offset: 5;
  }

  .offset-6\@xl {
    --offset: 6;
  }

  .offset-7\@xl {
    --offset: 7;
  }

  .offset-8\@xl {
    --offset: 8;
  }

  .offset-9\@xl {
    --offset: 9;
  }

  .offset-10\@xl {
    --offset: 10;
  }

  .offset-11\@xl {
    --offset: 11;
  }

  .offset-1\@xl, .offset-2\@xl, .offset-3\@xl, .offset-4\@xl, .offset-5\@xl, .offset-6\@xl, .offset-7\@xl, .offset-8\@xl, .offset-9\@xl, .offset-10\@xl, .offset-11\@xl {
    margin-left: calc(((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--offset) / var(--grid-columns)) + (var(--offset) + var(--offset-modifier, 0)) * var(--sub-gap-x));
  }

  .offset-0\@xl {
    margin-left: 0;
  }

  @media not all and (min-resolution: 0.001dpcm) {
    @supports not (translate: none) {
      .offset-0\@xl {
        margin-left: var(--gap-x);
      }
    }
  }
}
*, *::after, *::before {
  box-sizing: inherit;
}

* {
  font: inherit;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg, white);
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, form legend {
  display: block;
}

ol, ul, menu {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

button, input, textarea, select {
  margin: 0;
}

.btn, form#mail_form input[type=button], .form-control, .link, .reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

input::-ms-clear {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  max-width: 100%;
}

[data-theme] {
  background-color: var(--color-bg, white);
  color: var(--color-contrast-high, #323639);
}

: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-ring: 0 0 0 1px hsla(0, 0%, 0%, 0.05);
  --shadow-xs: 0 0 0 1px hsla(0, 0%, 0%, 0.02),
                0 1px 3px -1px hsla(0, 0%, 0%, 0.2);
  --shadow-sm: 0 0.3px 0.4px hsla(0, 0%, 0%, 0.02),
                0 0.9px 1.5px hsla(0, 0%, 0%, 0.045),
                0 3.5px 6px hsla(0, 0%, 0%, 0.09);
  --shadow-md: 0 0.9px 1.25px hsla(0, 0%, 0%, 0.025),
                0 3px 5px hsla(0, 0%, 0%, 0.05),
                0 12px 20px hsla(0, 0%, 0%, 0.09);
  --shadow-lg: 0 1.2px 1.9px -1px hsla(0, 0%, 0%, 0.01),
                0 3px 5px -1px hsla(0, 0%, 0%, 0.015),
                0 8px 15px -1px hsla(0, 0%, 0%, 0.05),
                0 28px 40px -1px hsla(0, 0%, 0%, 0.1);
  --shadow-xl: 0 1.5px 2.1px -6px hsla(0, 0%, 0%, 0.009),
                0 3.6px 5.2px -6px hsla(0, 0%, 0%, 0.0115),
                0 7.3px 10.6px -6px hsla(0, 0%, 0%, 0.0125),
                0 16.2px 21.9px -6px hsla(0, 0%, 0%, 0.025),
                0 46px 60px -6px hsla(0, 0%, 0%, 0.15);
  --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);
}

:root {
  --heading-line-height: 1.2;
  --body-line-height: 1.4;
}

body {
  font-size: var(--text-base-size, 1rem);
  font-family: var(--font-primary, sans-serif);
  color: var(--color-contrast-high, #323639);
  font-weight: var(--body-font-weight, normal);
}

h1, h2, h3, h4 {
  color: var(--color-contrast-higher, #0d1317);
  line-height: var(--heading-line-height, 1.2);
  font-weight: var(--heading-font-weight, 700);
}

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

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

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

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

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

a, .link {
  color: var(--color-primary, #4827ec);
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

s {
  text-decoration: line-through;
}

u {
  text-decoration: underline;
}

.text-component h1, .text-component h2, .text-component h3, .text-component h4 {
  line-height: calc(var(--heading-line-height) * var(--line-height-multiplier, 1));
  margin-bottom: calc(var(--space-unit) * 0.3125 * var(--text-space-y-multiplier, 1));
}
.text-component h2, .text-component h3, .text-component h4 {
  margin-top: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}
.text-component p, .text-component blockquote, .text-component ul li, .text-component ol li {
  line-height: calc(var(--body-line-height) * var(--line-height-multiplier, 1));
}
.text-component ul, .text-component ol, .text-component p, .text-component blockquote, .text-component .text-component__block {
  margin-bottom: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}
.text-component ul, .text-component ol {
  list-style-position: inside;
}
.text-component ul ul, .text-component ul ol, .text-component ol ul, .text-component ol ol {
  padding-left: 1em;
  margin-bottom: 0;
}
.text-component ul {
  list-style-type: disc;
}
.text-component ol {
  list-style-type: decimal;
}
.text-component img {
  display: block;
  margin: 0 auto;
}
.text-component figcaption {
  text-align: center;
  margin-top: calc(var(--space-unit) * 0.5);
}
.text-component em {
  font-style: italic;
}
.text-component hr {
  margin-top: calc(var(--space-unit) * 1.875 * var(--text-space-y-multiplier, 1));
  margin-bottom: calc(var(--space-unit) * 1.875 * var(--text-space-y-multiplier, 1));
  margin-left: auto;
  margin-right: auto;
}
.text-component > *:first-child {
  margin-top: 0;
}
.text-component > *:last-child {
  margin-bottom: 0;
}

.text-component__block--full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (min-width: 48rem) {
  .text-component__block--left,
.text-component__block--right {
    width: 45%;
  }
  .text-component__block--left img,
.text-component__block--right img {
    width: 100%;
  }

  .text-component__block--left {
    float: left;
    margin-right: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
  }

  .text-component__block--right {
    float: right;
    margin-left: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
  }
}
@media (min-width: 90rem) {
  .text-component__block--outset {
    width: calc(100% + 10.5 * var(--space-unit));
  }
  .text-component__block--outset img {
    width: 100%;
  }

  .text-component__block--outset:not(.text-component__block--right) {
    margin-left: calc(-5.25 * var(--space-unit));
  }

  .text-component__block--left, .text-component__block--right {
    width: 50%;
  }

  .text-component__block--right.text-component__block--outset {
    margin-right: calc(-5.25 * var(--space-unit));
  }
}
:root {
  --icon-xxxs: 8px;
  --icon-xxs: 12px;
  --icon-xs: 16px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
  --icon-xxl: 96px;
  --icon-xxxl: 128px;
}

.icon {
  --size: 1em;
  font-size: var(--size);
  height: 1em;
  width: 1em;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.icon--xxxs {
  --size: var(--icon-xxxs);
}

.icon--xxs {
  --size: var(--icon-xxs);
}

.icon--xs {
  --size: var(--icon-xs);
}

.icon--sm {
  --size: var(--icon-sm);
}

.icon--md {
  --size: var(--icon-md);
}

.icon--lg {
  --size: var(--icon-lg);
}

.icon--xl {
  --size: var(--icon-xl);
}

.icon--xxl {
  --size: var(--icon-xxl);
}

.icon--xxxl {
  --size: var(--icon-xxxl);
}

.icon--is-spinning {
  animation: icon-spin 1s infinite linear;
}

@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.icon use {
  color: inherit;
  fill: currentColor;
}

.btn, form#mail_form input[type=button] {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: var(--btn-font-size, 1em);
  padding-top: var(--btn-padding-y, 0.5em);
  padding-bottom: var(--btn-padding-y, 0.5em);
  padding-left: var(--btn-padding-x, 0.75em);
  padding-right: var(--btn-padding-x, 0.75em);
  border-radius: var(--btn-radius, 0.25em);
}

.btn--sm {
  font-size: var(--btn-font-size-sm, 0.8em);
}

.btn--md {
  font-size: var(--btn-font-size-md, 1.2em);
}

.btn--lg {
  font-size: var(--btn-font-size-lg, 1.4em);
}

.btn--icon {
  padding: var(--btn-padding-y, 0.5em);
}

.form-control {
  font-size: var(--form-control-font-size, 1em);
  padding-top: var(--form-control-padding-y, 0.5em);
  padding-bottom: var(--form-control-padding-y, 0.5em);
  padding-left: var(--form-control-padding-x, 0.75em);
  padding-right: var(--form-control-padding-x, 0.75em);
  border-radius: var(--form-control-radius, 0.25em);
}

.form-legend {
  color: var(--color-contrast-higher, #0d1317);
  line-height: var(--heading-line-height, 1.2);
  font-weight: var(--heading-font-weight, 700);
  font-size: var(--text-md, 1.125rem);
  margin-bottom: var(--space-md);
}

.form-label {
  display: inline-block;
  font-size: var(--text-sm, 0.75rem);
}

:root {
  --z-index-header: 3;
  --z-index-popover: 5;
  --z-index-fixed-element: 10;
  --z-index-overlay: 15;
}

:root {
  --display: block;
}

.is-visible {
  display: var(--display) !important;
}

.is-hidden {
  display: none !important;
}

html:not(.js) .no-js\:is-hidden {
  display: none !important;
}

@media print {
  .print\:is-hidden {
    display: none !important;
  }

  .print\:shadow-none {
    box-shadow: none;
  }
}
.sr-only, .sr-only-focusable:not(:focus):not(:focus-within) {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.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;
}

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

.content-start {
  align-content: start;
}

.content-end {
  align-content: end;
}

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

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

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

[class^=aspect-ratio], [class*=" aspect-ratio"] {
  --aspect-ratio: calc(16/9);
  position: relative;
  height: 0;
  padding-bottom: calc(100%/(var(--aspect-ratio)));
}
[class^=aspect-ratio] > *, [class*=" aspect-ratio"] > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[class^=aspect-ratio] > *:not(iframe), [class*=" aspect-ratio"] > *:not(iframe) {
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect-ratio-16\:9 {
  --aspect-ratio: calc(16/9);
}

.aspect-ratio-3\:2 {
  --aspect-ratio: calc(3/2);
}

.aspect-ratio-4\:3 {
  --aspect-ratio: calc(4/3);
}

.aspect-ratio-5\:4 {
  --aspect-ratio: calc(5/4);
}

.aspect-ratio-1\:1 {
  --aspect-ratio: calc(1/1);
}

.aspect-ratio-4\:5 {
  --aspect-ratio: calc(4/5);
}

.aspect-ratio-3\:4 {
  --aspect-ratio: calc(3/4);
}

.aspect-ratio-2\:3 {
  --aspect-ratio: calc(2/3);
}

.aspect-ratio-9\:16 {
  --aspect-ratio: calc(9/16);
}

.ratio-16\:9 {
  aspect-ratio: 16/9;
}

.ratio-3\:2 {
  aspect-ratio: 3/2;
}

.ratio-4\:3 {
  aspect-ratio: 4/3;
}

.ratio-5\:4 {
  aspect-ratio: 5/4;
}

.ratio-1\:1 {
  aspect-ratio: 1/1;
}

.ratio-4\:5 {
  aspect-ratio: 4/5;
}

.ratio-3\:4 {
  aspect-ratio: 3/4;
}

.ratio-2\:3 {
  aspect-ratio: 2/3;
}

.ratio-9\:16 {
  aspect-ratio: 9/16;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.contents {
  display: contents;
}

.hide {
  display: none;
}

.css-grid {
  display: grid;
}

.css-inline-grid {
  display: inline-grid;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.margin-auto {
  margin: auto;
}

.margin-0 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-top-auto {
  margin-top: auto;
}

.margin-top-0 {
  margin-top: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-bottom-auto {
  margin-bottom: auto;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-right-auto {
  margin-right: auto;
}

.margin-right-0 {
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-left-auto {
  margin-left: auto;
}

.margin-left-0 {
  margin-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.margin-x-0 {
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-y-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.margin-y-0 {
  margin-top: 0;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.padding-0 {
  padding: 0;
}

.padding-component {
  padding: var(--component-padding);
}

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

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

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

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

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

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

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

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

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

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

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

.padding-top-0 {
  padding-top: 0;
}

.padding-top-component {
  padding-top: var(--component-padding);
}

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

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

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

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

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

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

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

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

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

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

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

.padding-bottom-0 {
  padding-bottom: 0;
}

.padding-bottom-component {
  padding-bottom: var(--component-padding);
}

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

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

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

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

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

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

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

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

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

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

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

.padding-right-0 {
  padding-right: 0;
}

.padding-right-component {
  padding-right: var(--component-padding);
}

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

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

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

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

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

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

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

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

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

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

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

.padding-left-0 {
  padding-left: 0;
}

.padding-left-component {
  padding-left: var(--component-padding);
}

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

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

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

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

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

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

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

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

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

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

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

.padding-x-0 {
  padding-left: 0;
  padding-right: 0;
}

.padding-x-component {
  padding-left: var(--component-padding);
  padding-right: var(--component-padding);
}

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

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

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

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

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

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

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

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

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

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

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

.padding-y-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-y-component {
  padding-top: var(--component-padding);
  padding-bottom: var(--component-padding);
}

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

.align-sub {
  vertical-align: sub;
}

.align-super {
  vertical-align: super;
}

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.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-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.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-indent-sm {
  text-indent: 0.5em;
}

.text-indent-md {
  text-indent: 1em;
}

.text-indent-lg {
  text-indent: 1.5em;
}

.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;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.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;
}

.list-style-none {
  list-style: none;
}

.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;
  opacity: var(--color-o, 1);
}

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

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

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

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

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

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

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

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

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

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

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

.width-0 {
  width: 0;
}

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

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

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

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

.width-33\% {
  width: calc(100% / 3);
}

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

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

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

.width-66\% {
  width: calc(100% / 1.5);
}

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

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

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

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

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

.width-100vw {
  width: 100vw;
}

.width-auto {
  width: auto;
}

.width-inherit {
  width: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

.height-0 {
  height: 0;
}

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

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

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

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

.height-33\% {
  height: calc(100% / 3);
}

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

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

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

.height-66\% {
  height: calc(100% / 1.5);
}

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

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

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

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

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

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

.height-auto {
  height: auto;
}

.height-inherit {
  height: inherit;
}

.min-width-0 {
  min-width: 0;
}

.min-width-25\% {
  min-width: 25%;
}

.min-width-33\% {
  min-width: calc(100% / 3);
}

.min-width-50\% {
  min-width: 50%;
}

.min-width-66\% {
  min-width: calc(100% / 1.5);
}

.min-width-75\% {
  min-width: 75%;
}

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

.min-width-100vw {
  min-width: 100vw;
}

.min-height-0 {
  min-height: 0;
}

.min-height-100\% {
  min-height: 100%;
}

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

: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-ring {
  box-shadow: var(--shadow-ring);
}

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

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

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

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

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

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

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

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

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

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

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

:where(.inner-glow, .inner-glow-top) {
  position: relative;
}
:where(.inner-glow, .inner-glow-top)::after {
  content: "";
  position: absolute;
  z-index: 1;
  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: 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-visible {
  overflow: visible;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-clip {
  overflow: clip;
}

.overflow-x-clip {
  overflow-x: clip;
}

.overflow-y-clip {
  overflow-y: clip;
}

.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;
  --border-width: 1px;
  --border-style: solid;
}

.border {
  border: var(--border-width, 1px) var(--border-style, solid) hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--border-o-base, 0.1));
}

.border-top {
  border-top: var(--border-width, 1px) var(--border-style, solid) hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--border-o-base, 0.1));
}

.border-bottom {
  border-bottom: var(--border-width, 1px) var(--border-style, solid) hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--border-o-base, 0.1));
}

.border-left {
  border-left: var(--border-width, 1px) var(--border-style, solid) hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--border-o-base, 0.1));
}

.border-right {
  border-right: var(--border-width, 1px) var(--border-style, solid) hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--border-o-base, 0.1));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.radius-sm {
  border-radius: var(--radius-sm);
}

.radius-md {
  border-radius: var(--radius-md);
}

.radius-lg {
  border-radius: var(--radius-lg);
}

.radius-50\% {
  border-radius: 50%;
}

.radius-full {
  border-radius: 50em;
}

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

.radius-inherit {
  border-radius: inherit;
}

.radius-top-left-0 {
  border-top-left-radius: 0;
}

.radius-top-right-0 {
  border-top-right-radius: 0;
}

.radius-bottom-right-0 {
  border-bottom-right-radius: 0;
}

.radius-bottom-left-0 {
  border-bottom-left-radius: 0;
}

.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 {
  backdrop-filter: blur(10px);
}

.backdrop-blur-20 {
  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;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.appearance-auto {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

@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;
  }

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

  .content-start\@xs {
    align-content: start;
  }

  .content-end\@xs {
    align-content: end;
  }

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

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

  .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;
  }

  .css-grid\@xs {
    display: grid;
  }

  .css-inline-grid\@xs {
    display: inline-grid;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-top-auto\@xs {
    margin-top: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-bottom-auto\@xs {
    margin-bottom: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-right-auto\@xs {
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-left-auto\@xs {
    margin-left: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-x-auto\@xs {
    margin-left: auto;
    margin-right: auto;
  }

  .margin-x-0\@xs {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .margin-y-auto\@xs {
    margin-top: auto;
    margin-bottom: auto;
  }

  .margin-y-0\@xs {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .padding-component\@xs {
    padding: var(--component-padding);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .padding-x-0\@xs {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-x-component\@xs {
    padding-left: var(--component-padding);
    padding-right: var(--component-padding);
  }

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

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

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

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

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

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

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

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

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

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

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

  .padding-y-0\@xs {
    padding-top: 0;
    padding-bottom: 0;
  }

  .padding-y-component\@xs {
    padding-top: var(--component-padding);
    padding-bottom: var(--component-padding);
  }

  .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: calc(100% / 3);
  }

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

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

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

  .width-66\%\@xs {
    width: calc(100% / 1.5);
  }

  .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: calc(100% / 3);
  }

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

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

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

  .height-66\%\@xs {
    height: calc(100% / 1.5);
  }

  .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: 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;
  }

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

  .content-start\@sm {
    align-content: start;
  }

  .content-end\@sm {
    align-content: end;
  }

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

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

  .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;
  }

  .css-grid\@sm {
    display: grid;
  }

  .css-inline-grid\@sm {
    display: inline-grid;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-top-auto\@sm {
    margin-top: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-bottom-auto\@sm {
    margin-bottom: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-right-auto\@sm {
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-left-auto\@sm {
    margin-left: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-x-auto\@sm {
    margin-left: auto;
    margin-right: auto;
  }

  .margin-x-0\@sm {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .margin-y-auto\@sm {
    margin-top: auto;
    margin-bottom: auto;
  }

  .margin-y-0\@sm {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .padding-component\@sm {
    padding: var(--component-padding);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .padding-x-0\@sm {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-x-component\@sm {
    padding-left: var(--component-padding);
    padding-right: var(--component-padding);
  }

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

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

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

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

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

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

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

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

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

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

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

  .padding-y-0\@sm {
    padding-top: 0;
    padding-bottom: 0;
  }

  .padding-y-component\@sm {
    padding-top: var(--component-padding);
    padding-bottom: var(--component-padding);
  }

  .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: calc(100% / 3);
  }

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

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

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

  .width-66\%\@sm {
    width: calc(100% / 1.5);
  }

  .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: calc(100% / 3);
  }

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

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

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

  .height-66\%\@sm {
    height: calc(100% / 1.5);
  }

  .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: 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;
  }

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

  .content-start\@md {
    align-content: start;
  }

  .content-end\@md {
    align-content: end;
  }

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

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

  .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;
  }

  .css-grid\@md {
    display: grid;
  }

  .css-inline-grid\@md {
    display: inline-grid;
  }

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

  .margin-xxxxs\@md {
    margin: var(--space-xxxxs);
  }

  .margin-xxxs\@md {
    margin: var(--space-xxxs);
  }

  .margin-xxs\@md {
    margin: var(--space-xxs);
  }

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

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

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

  .margin-lg\@md {
    margin: var(--space-lg);
  }

  .margin-xl\@md {
    margin: var(--space-xl);
  }

  .margin-xxl\@md {
    margin: var(--space-xxl);
  }

  .margin-xxxl\@md {
    margin: var(--space-xxxl);
  }

  .margin-xxxxl\@md {
    margin: var(--space-xxxxl);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .margin-top-auto\@md {
    margin-top: auto;
  }

  .margin-top-0\@md {
    margin-top: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .margin-bottom-auto\@md {
    margin-bottom: auto;
  }

  .margin-bottom-0\@md {
    margin-bottom: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .margin-right-auto\@md {
    margin-right: auto;
  }

  .margin-right-0\@md {
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .margin-left-auto\@md {
    margin-left: auto;
  }

  .margin-left-0\@md {
    margin-left: 0;
  }

  .margin-x-xxxxs\@md {
    margin-left: var(--space-xxxxs);
    margin-right: var(--space-xxxxs);
  }

  .margin-x-xxxs\@md {
    margin-left: var(--space-xxxs);
    margin-right: var(--space-xxxs);
  }

  .margin-x-xxs\@md {
    margin-left: var(--space-xxs);
    margin-right: var(--space-xxs);
  }

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

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

  .margin-x-md\@md {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
  }

  .margin-x-lg\@md {
    margin-left: var(--space-lg);
    margin-right: var(--space-lg);
  }

  .margin-x-xl\@md {
    margin-left: var(--space-xl);
    margin-right: var(--space-xl);
  }

  .margin-x-xxl\@md {
    margin-left: var(--space-xxl);
    margin-right: var(--space-xxl);
  }

  .margin-x-xxxl\@md {
    margin-left: var(--space-xxxl);
    margin-right: var(--space-xxxl);
  }

  .margin-x-xxxxl\@md {
    margin-left: var(--space-xxxxl);
    margin-right: var(--space-xxxxl);
  }

  .margin-x-auto\@md {
    margin-left: auto;
    margin-right: auto;
  }

  .margin-x-0\@md {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-y-xxxxs\@md {
    margin-top: var(--space-xxxxs);
    margin-bottom: var(--space-xxxxs);
  }

  .margin-y-xxxs\@md {
    margin-top: var(--space-xxxs);
    margin-bottom: var(--space-xxxs);
  }

  .margin-y-xxs\@md {
    margin-top: var(--space-xxs);
    margin-bottom: var(--space-xxs);
  }

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

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

  .margin-y-md\@md {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .margin-y-lg\@md {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  .margin-y-xl\@md {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
  }

  .margin-y-xxl\@md {
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-xxl);
  }

  .margin-y-xxxl\@md {
    margin-top: var(--space-xxxl);
    margin-bottom: var(--space-xxxl);
  }

  .margin-y-xxxxl\@md {
    margin-top: var(--space-xxxxl);
    margin-bottom: var(--space-xxxxl);
  }

  .margin-y-auto\@md {
    margin-top: auto;
    margin-bottom: auto;
  }

  .margin-y-0\@md {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-xxxxs\@md {
    padding: var(--space-xxxxs);
  }

  .padding-xxxs\@md {
    padding: var(--space-xxxs);
  }

  .padding-xxs\@md {
    padding: var(--space-xxs);
  }

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

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

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

  .padding-lg\@md {
    padding: var(--space-lg);
  }

  .padding-xl\@md {
    padding: var(--space-xl);
  }

  .padding-xxl\@md {
    padding: var(--space-xxl);
  }

  .padding-xxxl\@md {
    padding: var(--space-xxxl);
  }

  .padding-xxxxl\@md {
    padding: var(--space-xxxxl);
  }

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

  .padding-component\@md {
    padding: var(--component-padding);
  }

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

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

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

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

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

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

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

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

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

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

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

  .padding-top-0\@md {
    padding-top: 0;
  }

  .padding-top-component\@md {
    padding-top: var(--component-padding);
  }

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

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

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

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

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

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

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

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

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

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

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

  .padding-bottom-0\@md {
    padding-bottom: 0;
  }

  .padding-bottom-component\@md {
    padding-bottom: var(--component-padding);
  }

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

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

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

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

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

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

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

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

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

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

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

  .padding-right-0\@md {
    padding-right: 0;
  }

  .padding-right-component\@md {
    padding-right: var(--component-padding);
  }

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

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

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

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

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

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

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

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

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

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

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

  .padding-left-0\@md {
    padding-left: 0;
  }

  .padding-left-component\@md {
    padding-left: var(--component-padding);
  }

  .padding-x-xxxxs\@md {
    padding-left: var(--space-xxxxs);
    padding-right: var(--space-xxxxs);
  }

  .padding-x-xxxs\@md {
    padding-left: var(--space-xxxs);
    padding-right: var(--space-xxxs);
  }

  .padding-x-xxs\@md {
    padding-left: var(--space-xxs);
    padding-right: var(--space-xxs);
  }

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

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

  .padding-x-md\@md {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .padding-x-lg\@md {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .padding-x-xl\@md {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .padding-x-xxl\@md {
    padding-left: var(--space-xxl);
    padding-right: var(--space-xxl);
  }

  .padding-x-xxxl\@md {
    padding-left: var(--space-xxxl);
    padding-right: var(--space-xxxl);
  }

  .padding-x-xxxxl\@md {
    padding-left: var(--space-xxxxl);
    padding-right: var(--space-xxxxl);
  }

  .padding-x-0\@md {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-x-component\@md {
    padding-left: var(--component-padding);
    padding-right: var(--component-padding);
  }

  .padding-y-xxxxs\@md {
    padding-top: var(--space-xxxxs);
    padding-bottom: var(--space-xxxxs);
  }

  .padding-y-xxxs\@md {
    padding-top: var(--space-xxxs);
    padding-bottom: var(--space-xxxs);
  }

  .padding-y-xxs\@md {
    padding-top: var(--space-xxs);
    padding-bottom: var(--space-xxs);
  }

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

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

  .padding-y-md\@md {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .padding-y-lg\@md {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  .padding-y-xl\@md {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .padding-y-xxl\@md {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
  }

  .padding-y-xxxl\@md {
    padding-top: var(--space-xxxl);
    padding-bottom: var(--space-xxxl);
  }

  .padding-y-xxxxl\@md {
    padding-top: var(--space-xxxxl);
    padding-bottom: var(--space-xxxxl);
  }

  .padding-y-0\@md {
    padding-top: 0;
    padding-bottom: 0;
  }

  .padding-y-component\@md {
    padding-top: var(--component-padding);
    padding-bottom: var(--component-padding);
  }

  .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: calc(100% / 3);
  }

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

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

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

  .width-66\%\@md {
    width: calc(100% / 1.5);
  }

  .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: calc(100% / 3);
  }

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

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

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

  .height-66\%\@md {
    height: calc(100% / 1.5);
  }

  .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: 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;
  }

  .items-stretch\@lg {
    align-items: stretch;
  }

  .content-start\@lg {
    align-content: start;
  }

  .content-end\@lg {
    align-content: end;
  }

  .content-center\@lg {
    align-content: center;
  }

  .content-between\@lg {
    align-content: space-between;
  }

  .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;
  }

  .css-grid\@lg {
    display: grid;
  }

  .css-inline-grid\@lg {
    display: inline-grid;
  }

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

  .margin-xxxxs\@lg {
    margin: var(--space-xxxxs);
  }

  .margin-xxxs\@lg {
    margin: var(--space-xxxs);
  }

  .margin-xxs\@lg {
    margin: var(--space-xxs);
  }

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

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

  .margin-md\@lg {
    margin: var(--space-md);
  }

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

  .margin-xl\@lg {
    margin: var(--space-xl);
  }

  .margin-xxl\@lg {
    margin: var(--space-xxl);
  }

  .margin-xxxl\@lg {
    margin: var(--space-xxxl);
  }

  .margin-xxxxl\@lg {
    margin: var(--space-xxxxl);
  }

  .margin-auto\@lg {
    margin: auto;
  }

  .margin-0\@lg {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .margin-top-auto\@lg {
    margin-top: auto;
  }

  .margin-top-0\@lg {
    margin-top: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .margin-bottom-auto\@lg {
    margin-bottom: auto;
  }

  .margin-bottom-0\@lg {
    margin-bottom: 0;
  }

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

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

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

  .margin-right-xs\@lg {
    margin-right: var(--space-xs);
  }

  .margin-right-sm\@lg {
    margin-right: var(--space-sm);
  }

  .margin-right-md\@lg {
    margin-right: var(--space-md);
  }

  .margin-right-lg\@lg {
    margin-right: var(--space-lg);
  }

  .margin-right-xl\@lg {
    margin-right: var(--space-xl);
  }

  .margin-right-xxl\@lg {
    margin-right: var(--space-xxl);
  }

  .margin-right-xxxl\@lg {
    margin-right: var(--space-xxxl);
  }

  .margin-right-xxxxl\@lg {
    margin-right: var(--space-xxxxl);
  }

  .margin-right-auto\@lg {
    margin-right: auto;
  }

  .margin-right-0\@lg {
    margin-right: 0;
  }

  .margin-left-xxxxs\@lg {
    margin-left: var(--space-xxxxs);
  }

  .margin-left-xxxs\@lg {
    margin-left: var(--space-xxxs);
  }

  .margin-left-xxs\@lg {
    margin-left: var(--space-xxs);
  }

  .margin-left-xs\@lg {
    margin-left: var(--space-xs);
  }

  .margin-left-sm\@lg {
    margin-left: var(--space-sm);
  }

  .margin-left-md\@lg {
    margin-left: var(--space-md);
  }

  .margin-left-lg\@lg {
    margin-left: var(--space-lg);
  }

  .margin-left-xl\@lg {
    margin-left: var(--space-xl);
  }

  .margin-left-xxl\@lg {
    margin-left: var(--space-xxl);
  }

  .margin-left-xxxl\@lg {
    margin-left: var(--space-xxxl);
  }

  .margin-left-xxxxl\@lg {
    margin-left: var(--space-xxxxl);
  }

  .margin-left-auto\@lg {
    margin-left: auto;
  }

  .margin-left-0\@lg {
    margin-left: 0;
  }

  .margin-x-xxxxs\@lg {
    margin-left: var(--space-xxxxs);
    margin-right: var(--space-xxxxs);
  }

  .margin-x-xxxs\@lg {
    margin-left: var(--space-xxxs);
    margin-right: var(--space-xxxs);
  }

  .margin-x-xxs\@lg {
    margin-left: var(--space-xxs);
    margin-right: var(--space-xxs);
  }

  .margin-x-xs\@lg {
    margin-left: var(--space-xs);
    margin-right: var(--space-xs);
  }

  .margin-x-sm\@lg {
    margin-left: var(--space-sm);
    margin-right: var(--space-sm);
  }

  .margin-x-md\@lg {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
  }

  .margin-x-lg\@lg {
    margin-left: var(--space-lg);
    margin-right: var(--space-lg);
  }

  .margin-x-xl\@lg {
    margin-left: var(--space-xl);
    margin-right: var(--space-xl);
  }

  .margin-x-xxl\@lg {
    margin-left: var(--space-xxl);
    margin-right: var(--space-xxl);
  }

  .margin-x-xxxl\@lg {
    margin-left: var(--space-xxxl);
    margin-right: var(--space-xxxl);
  }

  .margin-x-xxxxl\@lg {
    margin-left: var(--space-xxxxl);
    margin-right: var(--space-xxxxl);
  }

  .margin-x-auto\@lg {
    margin-left: auto;
    margin-right: auto;
  }

  .margin-x-0\@lg {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-y-xxxxs\@lg {
    margin-top: var(--space-xxxxs);
    margin-bottom: var(--space-xxxxs);
  }

  .margin-y-xxxs\@lg {
    margin-top: var(--space-xxxs);
    margin-bottom: var(--space-xxxs);
  }

  .margin-y-xxs\@lg {
    margin-top: var(--space-xxs);
    margin-bottom: var(--space-xxs);
  }

  .margin-y-xs\@lg {
    margin-top: var(--space-xs);
    margin-bottom: var(--space-xs);
  }

  .margin-y-sm\@lg {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
  }

  .margin-y-md\@lg {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .margin-y-lg\@lg {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  .margin-y-xl\@lg {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
  }

  .margin-y-xxl\@lg {
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-xxl);
  }

  .margin-y-xxxl\@lg {
    margin-top: var(--space-xxxl);
    margin-bottom: var(--space-xxxl);
  }

  .margin-y-xxxxl\@lg {
    margin-top: var(--space-xxxxl);
    margin-bottom: var(--space-xxxxl);
  }

  .margin-y-auto\@lg {
    margin-top: auto;
    margin-bottom: auto;
  }

  .margin-y-0\@lg {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-xxxxs\@lg {
    padding: var(--space-xxxxs);
  }

  .padding-xxxs\@lg {
    padding: var(--space-xxxs);
  }

  .padding-xxs\@lg {
    padding: var(--space-xxs);
  }

  .padding-xs\@lg {
    padding: var(--space-xs);
  }

  .padding-sm\@lg {
    padding: var(--space-sm);
  }

  .padding-md\@lg {
    padding: var(--space-md);
  }

  .padding-lg\@lg {
    padding: var(--space-lg);
  }

  .padding-xl\@lg {
    padding: var(--space-xl);
  }

  .padding-xxl\@lg {
    padding: var(--space-xxl);
  }

  .padding-xxxl\@lg {
    padding: var(--space-xxxl);
  }

  .padding-xxxxl\@lg {
    padding: var(--space-xxxxl);
  }

  .padding-0\@lg {
    padding: 0;
  }

  .padding-component\@lg {
    padding: var(--component-padding);
  }

  .padding-top-xxxxs\@lg {
    padding-top: var(--space-xxxxs);
  }

  .padding-top-xxxs\@lg {
    padding-top: var(--space-xxxs);
  }

  .padding-top-xxs\@lg {
    padding-top: var(--space-xxs);
  }

  .padding-top-xs\@lg {
    padding-top: var(--space-xs);
  }

  .padding-top-sm\@lg {
    padding-top: var(--space-sm);
  }

  .padding-top-md\@lg {
    padding-top: var(--space-md);
  }

  .padding-top-lg\@lg {
    padding-top: var(--space-lg);
  }

  .padding-top-xl\@lg {
    padding-top: var(--space-xl);
  }

  .padding-top-xxl\@lg {
    padding-top: var(--space-xxl);
  }

  .padding-top-xxxl\@lg {
    padding-top: var(--space-xxxl);
  }

  .padding-top-xxxxl\@lg {
    padding-top: var(--space-xxxxl);
  }

  .padding-top-0\@lg {
    padding-top: 0;
  }

  .padding-top-component\@lg {
    padding-top: var(--component-padding);
  }

  .padding-bottom-xxxxs\@lg {
    padding-bottom: var(--space-xxxxs);
  }

  .padding-bottom-xxxs\@lg {
    padding-bottom: var(--space-xxxs);
  }

  .padding-bottom-xxs\@lg {
    padding-bottom: var(--space-xxs);
  }

  .padding-bottom-xs\@lg {
    padding-bottom: var(--space-xs);
  }

  .padding-bottom-sm\@lg {
    padding-bottom: var(--space-sm);
  }

  .padding-bottom-md\@lg {
    padding-bottom: var(--space-md);
  }

  .padding-bottom-lg\@lg {
    padding-bottom: var(--space-lg);
  }

  .padding-bottom-xl\@lg {
    padding-bottom: var(--space-xl);
  }

  .padding-bottom-xxl\@lg {
    padding-bottom: var(--space-xxl);
  }

  .padding-bottom-xxxl\@lg {
    padding-bottom: var(--space-xxxl);
  }

  .padding-bottom-xxxxl\@lg {
    padding-bottom: var(--space-xxxxl);
  }

  .padding-bottom-0\@lg {
    padding-bottom: 0;
  }

  .padding-bottom-component\@lg {
    padding-bottom: var(--component-padding);
  }

  .padding-right-xxxxs\@lg {
    padding-right: var(--space-xxxxs);
  }

  .padding-right-xxxs\@lg {
    padding-right: var(--space-xxxs);
  }

  .padding-right-xxs\@lg {
    padding-right: var(--space-xxs);
  }

  .padding-right-xs\@lg {
    padding-right: var(--space-xs);
  }

  .padding-right-sm\@lg {
    padding-right: var(--space-sm);
  }

  .padding-right-md\@lg {
    padding-right: var(--space-md);
  }

  .padding-right-lg\@lg {
    padding-right: var(--space-lg);
  }

  .padding-right-xl\@lg {
    padding-right: var(--space-xl);
  }

  .padding-right-xxl\@lg {
    padding-right: var(--space-xxl);
  }

  .padding-right-xxxl\@lg {
    padding-right: var(--space-xxxl);
  }

  .padding-right-xxxxl\@lg {
    padding-right: var(--space-xxxxl);
  }

  .padding-right-0\@lg {
    padding-right: 0;
  }

  .padding-right-component\@lg {
    padding-right: var(--component-padding);
  }

  .padding-left-xxxxs\@lg {
    padding-left: var(--space-xxxxs);
  }

  .padding-left-xxxs\@lg {
    padding-left: var(--space-xxxs);
  }

  .padding-left-xxs\@lg {
    padding-left: var(--space-xxs);
  }

  .padding-left-xs\@lg {
    padding-left: var(--space-xs);
  }

  .padding-left-sm\@lg {
    padding-left: var(--space-sm);
  }

  .padding-left-md\@lg {
    padding-left: var(--space-md);
  }

  .padding-left-lg\@lg {
    padding-left: var(--space-lg);
  }

  .padding-left-xl\@lg {
    padding-left: var(--space-xl);
  }

  .padding-left-xxl\@lg {
    padding-left: var(--space-xxl);
  }

  .padding-left-xxxl\@lg {
    padding-left: var(--space-xxxl);
  }

  .padding-left-xxxxl\@lg {
    padding-left: var(--space-xxxxl);
  }

  .padding-left-0\@lg {
    padding-left: 0;
  }

  .padding-left-component\@lg {
    padding-left: var(--component-padding);
  }

  .padding-x-xxxxs\@lg {
    padding-left: var(--space-xxxxs);
    padding-right: var(--space-xxxxs);
  }

  .padding-x-xxxs\@lg {
    padding-left: var(--space-xxxs);
    padding-right: var(--space-xxxs);
  }

  .padding-x-xxs\@lg {
    padding-left: var(--space-xxs);
    padding-right: var(--space-xxs);
  }

  .padding-x-xs\@lg {
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
  }

  .padding-x-sm\@lg {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .padding-x-md\@lg {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .padding-x-lg\@lg {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .padding-x-xl\@lg {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .padding-x-xxl\@lg {
    padding-left: var(--space-xxl);
    padding-right: var(--space-xxl);
  }

  .padding-x-xxxl\@lg {
    padding-left: var(--space-xxxl);
    padding-right: var(--space-xxxl);
  }

  .padding-x-xxxxl\@lg {
    padding-left: var(--space-xxxxl);
    padding-right: var(--space-xxxxl);
  }

  .padding-x-0\@lg {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-x-component\@lg {
    padding-left: var(--component-padding);
    padding-right: var(--component-padding);
  }

  .padding-y-xxxxs\@lg {
    padding-top: var(--space-xxxxs);
    padding-bottom: var(--space-xxxxs);
  }

  .padding-y-xxxs\@lg {
    padding-top: var(--space-xxxs);
    padding-bottom: var(--space-xxxs);
  }

  .padding-y-xxs\@lg {
    padding-top: var(--space-xxs);
    padding-bottom: var(--space-xxs);
  }

  .padding-y-xs\@lg {
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
  }

  .padding-y-sm\@lg {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  .padding-y-md\@lg {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .padding-y-lg\@lg {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  .padding-y-xl\@lg {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .padding-y-xxl\@lg {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
  }

  .padding-y-xxxl\@lg {
    padding-top: var(--space-xxxl);
    padding-bottom: var(--space-xxxl);
  }

  .padding-y-xxxxl\@lg {
    padding-top: var(--space-xxxxl);
    padding-bottom: var(--space-xxxxl);
  }

  .padding-y-0\@lg {
    padding-top: 0;
    padding-bottom: 0;
  }

  .padding-y-component\@lg {
    padding-top: var(--component-padding);
    padding-bottom: var(--component-padding);
  }

  .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: calc(100% / 3);
  }

  .width-40\%\@lg {
    width: 40%;
  }

  .width-50\%\@lg {
    width: 50%;
  }

  .width-60\%\@lg {
    width: 60%;
  }

  .width-66\%\@lg {
    width: calc(100% / 1.5);
  }

  .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: calc(100% / 3);
  }

  .height-40\%\@lg {
    height: 40%;
  }

  .height-50\%\@lg {
    height: 50%;
  }

  .height-60\%\@lg {
    height: 60%;
  }

  .height-66\%\@lg {
    height: calc(100% / 1.5);
  }

  .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: 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;
  }

  .items-stretch\@xl {
    align-items: stretch;
  }

  .content-start\@xl {
    align-content: start;
  }

  .content-end\@xl {
    align-content: end;
  }

  .content-center\@xl {
    align-content: center;
  }

  .content-between\@xl {
    align-content: space-between;
  }

  .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;
  }

  .css-grid\@xl {
    display: grid;
  }

  .css-inline-grid\@xl {
    display: inline-grid;
  }

  .hide\@xl {
    display: none !important;
  }

  .margin-xxxxs\@xl {
    margin: var(--space-xxxxs);
  }

  .margin-xxxs\@xl {
    margin: var(--space-xxxs);
  }

  .margin-xxs\@xl {
    margin: var(--space-xxs);
  }

  .margin-xs\@xl {
    margin: var(--space-xs);
  }

  .margin-sm\@xl {
    margin: var(--space-sm);
  }

  .margin-md\@xl {
    margin: var(--space-md);
  }

  .margin-lg\@xl {
    margin: var(--space-lg);
  }

  .margin-xl\@xl {
    margin: var(--space-xl);
  }

  .margin-xxl\@xl {
    margin: var(--space-xxl);
  }

  .margin-xxxl\@xl {
    margin: var(--space-xxxl);
  }

  .margin-xxxxl\@xl {
    margin: var(--space-xxxxl);
  }

  .margin-auto\@xl {
    margin: auto;
  }

  .margin-0\@xl {
    margin: 0;
  }

  .margin-top-xxxxs\@xl {
    margin-top: var(--space-xxxxs);
  }

  .margin-top-xxxs\@xl {
    margin-top: var(--space-xxxs);
  }

  .margin-top-xxs\@xl {
    margin-top: var(--space-xxs);
  }

  .margin-top-xs\@xl {
    margin-top: var(--space-xs);
  }

  .margin-top-sm\@xl {
    margin-top: var(--space-sm);
  }

  .margin-top-md\@xl {
    margin-top: var(--space-md);
  }

  .margin-top-lg\@xl {
    margin-top: var(--space-lg);
  }

  .margin-top-xl\@xl {
    margin-top: var(--space-xl);
  }

  .margin-top-xxl\@xl {
    margin-top: var(--space-xxl);
  }

  .margin-top-xxxl\@xl {
    margin-top: var(--space-xxxl);
  }

  .margin-top-xxxxl\@xl {
    margin-top: var(--space-xxxxl);
  }

  .margin-top-auto\@xl {
    margin-top: auto;
  }

  .margin-top-0\@xl {
    margin-top: 0;
  }

  .margin-bottom-xxxxs\@xl {
    margin-bottom: var(--space-xxxxs);
  }

  .margin-bottom-xxxs\@xl {
    margin-bottom: var(--space-xxxs);
  }

  .margin-bottom-xxs\@xl {
    margin-bottom: var(--space-xxs);
  }

  .margin-bottom-xs\@xl {
    margin-bottom: var(--space-xs);
  }

  .margin-bottom-sm\@xl {
    margin-bottom: var(--space-sm);
  }

  .margin-bottom-md\@xl {
    margin-bottom: var(--space-md);
  }

  .margin-bottom-lg\@xl {
    margin-bottom: var(--space-lg);
  }

  .margin-bottom-xl\@xl {
    margin-bottom: var(--space-xl);
  }

  .margin-bottom-xxl\@xl {
    margin-bottom: var(--space-xxl);
  }

  .margin-bottom-xxxl\@xl {
    margin-bottom: var(--space-xxxl);
  }

  .margin-bottom-xxxxl\@xl {
    margin-bottom: var(--space-xxxxl);
  }

  .margin-bottom-auto\@xl {
    margin-bottom: auto;
  }

  .margin-bottom-0\@xl {
    margin-bottom: 0;
  }

  .margin-right-xxxxs\@xl {
    margin-right: var(--space-xxxxs);
  }

  .margin-right-xxxs\@xl {
    margin-right: var(--space-xxxs);
  }

  .margin-right-xxs\@xl {
    margin-right: var(--space-xxs);
  }

  .margin-right-xs\@xl {
    margin-right: var(--space-xs);
  }

  .margin-right-sm\@xl {
    margin-right: var(--space-sm);
  }

  .margin-right-md\@xl {
    margin-right: var(--space-md);
  }

  .margin-right-lg\@xl {
    margin-right: var(--space-lg);
  }

  .margin-right-xl\@xl {
    margin-right: var(--space-xl);
  }

  .margin-right-xxl\@xl {
    margin-right: var(--space-xxl);
  }

  .margin-right-xxxl\@xl {
    margin-right: var(--space-xxxl);
  }

  .margin-right-xxxxl\@xl {
    margin-right: var(--space-xxxxl);
  }

  .margin-right-auto\@xl {
    margin-right: auto;
  }

  .margin-right-0\@xl {
    margin-right: 0;
  }

  .margin-left-xxxxs\@xl {
    margin-left: var(--space-xxxxs);
  }

  .margin-left-xxxs\@xl {
    margin-left: var(--space-xxxs);
  }

  .margin-left-xxs\@xl {
    margin-left: var(--space-xxs);
  }

  .margin-left-xs\@xl {
    margin-left: var(--space-xs);
  }

  .margin-left-sm\@xl {
    margin-left: var(--space-sm);
  }

  .margin-left-md\@xl {
    margin-left: var(--space-md);
  }

  .margin-left-lg\@xl {
    margin-left: var(--space-lg);
  }

  .margin-left-xl\@xl {
    margin-left: var(--space-xl);
  }

  .margin-left-xxl\@xl {
    margin-left: var(--space-xxl);
  }

  .margin-left-xxxl\@xl {
    margin-left: var(--space-xxxl);
  }

  .margin-left-xxxxl\@xl {
    margin-left: var(--space-xxxxl);
  }

  .margin-left-auto\@xl {
    margin-left: auto;
  }

  .margin-left-0\@xl {
    margin-left: 0;
  }

  .margin-x-xxxxs\@xl {
    margin-left: var(--space-xxxxs);
    margin-right: var(--space-xxxxs);
  }

  .margin-x-xxxs\@xl {
    margin-left: var(--space-xxxs);
    margin-right: var(--space-xxxs);
  }

  .margin-x-xxs\@xl {
    margin-left: var(--space-xxs);
    margin-right: var(--space-xxs);
  }

  .margin-x-xs\@xl {
    margin-left: var(--space-xs);
    margin-right: var(--space-xs);
  }

  .margin-x-sm\@xl {
    margin-left: var(--space-sm);
    margin-right: var(--space-sm);
  }

  .margin-x-md\@xl {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
  }

  .margin-x-lg\@xl {
    margin-left: var(--space-lg);
    margin-right: var(--space-lg);
  }

  .margin-x-xl\@xl {
    margin-left: var(--space-xl);
    margin-right: var(--space-xl);
  }

  .margin-x-xxl\@xl {
    margin-left: var(--space-xxl);
    margin-right: var(--space-xxl);
  }

  .margin-x-xxxl\@xl {
    margin-left: var(--space-xxxl);
    margin-right: var(--space-xxxl);
  }

  .margin-x-xxxxl\@xl {
    margin-left: var(--space-xxxxl);
    margin-right: var(--space-xxxxl);
  }

  .margin-x-auto\@xl {
    margin-left: auto;
    margin-right: auto;
  }

  .margin-x-0\@xl {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-y-xxxxs\@xl {
    margin-top: var(--space-xxxxs);
    margin-bottom: var(--space-xxxxs);
  }

  .margin-y-xxxs\@xl {
    margin-top: var(--space-xxxs);
    margin-bottom: var(--space-xxxs);
  }

  .margin-y-xxs\@xl {
    margin-top: var(--space-xxs);
    margin-bottom: var(--space-xxs);
  }

  .margin-y-xs\@xl {
    margin-top: var(--space-xs);
    margin-bottom: var(--space-xs);
  }

  .margin-y-sm\@xl {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
  }

  .margin-y-md\@xl {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .margin-y-lg\@xl {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  .margin-y-xl\@xl {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
  }

  .margin-y-xxl\@xl {
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-xxl);
  }

  .margin-y-xxxl\@xl {
    margin-top: var(--space-xxxl);
    margin-bottom: var(--space-xxxl);
  }

  .margin-y-xxxxl\@xl {
    margin-top: var(--space-xxxxl);
    margin-bottom: var(--space-xxxxl);
  }

  .margin-y-auto\@xl {
    margin-top: auto;
    margin-bottom: auto;
  }

  .margin-y-0\@xl {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-xxxxs\@xl {
    padding: var(--space-xxxxs);
  }

  .padding-xxxs\@xl {
    padding: var(--space-xxxs);
  }

  .padding-xxs\@xl {
    padding: var(--space-xxs);
  }

  .padding-xs\@xl {
    padding: var(--space-xs);
  }

  .padding-sm\@xl {
    padding: var(--space-sm);
  }

  .padding-md\@xl {
    padding: var(--space-md);
  }

  .padding-lg\@xl {
    padding: var(--space-lg);
  }

  .padding-xl\@xl {
    padding: var(--space-xl);
  }

  .padding-xxl\@xl {
    padding: var(--space-xxl);
  }

  .padding-xxxl\@xl {
    padding: var(--space-xxxl);
  }

  .padding-xxxxl\@xl {
    padding: var(--space-xxxxl);
  }

  .padding-0\@xl {
    padding: 0;
  }

  .padding-component\@xl {
    padding: var(--component-padding);
  }

  .padding-top-xxxxs\@xl {
    padding-top: var(--space-xxxxs);
  }

  .padding-top-xxxs\@xl {
    padding-top: var(--space-xxxs);
  }

  .padding-top-xxs\@xl {
    padding-top: var(--space-xxs);
  }

  .padding-top-xs\@xl {
    padding-top: var(--space-xs);
  }

  .padding-top-sm\@xl {
    padding-top: var(--space-sm);
  }

  .padding-top-md\@xl {
    padding-top: var(--space-md);
  }

  .padding-top-lg\@xl {
    padding-top: var(--space-lg);
  }

  .padding-top-xl\@xl {
    padding-top: var(--space-xl);
  }

  .padding-top-xxl\@xl {
    padding-top: var(--space-xxl);
  }

  .padding-top-xxxl\@xl {
    padding-top: var(--space-xxxl);
  }

  .padding-top-xxxxl\@xl {
    padding-top: var(--space-xxxxl);
  }

  .padding-top-0\@xl {
    padding-top: 0;
  }

  .padding-top-component\@xl {
    padding-top: var(--component-padding);
  }

  .padding-bottom-xxxxs\@xl {
    padding-bottom: var(--space-xxxxs);
  }

  .padding-bottom-xxxs\@xl {
    padding-bottom: var(--space-xxxs);
  }

  .padding-bottom-xxs\@xl {
    padding-bottom: var(--space-xxs);
  }

  .padding-bottom-xs\@xl {
    padding-bottom: var(--space-xs);
  }

  .padding-bottom-sm\@xl {
    padding-bottom: var(--space-sm);
  }

  .padding-bottom-md\@xl {
    padding-bottom: var(--space-md);
  }

  .padding-bottom-lg\@xl {
    padding-bottom: var(--space-lg);
  }

  .padding-bottom-xl\@xl {
    padding-bottom: var(--space-xl);
  }

  .padding-bottom-xxl\@xl {
    padding-bottom: var(--space-xxl);
  }

  .padding-bottom-xxxl\@xl {
    padding-bottom: var(--space-xxxl);
  }

  .padding-bottom-xxxxl\@xl {
    padding-bottom: var(--space-xxxxl);
  }

  .padding-bottom-0\@xl {
    padding-bottom: 0;
  }

  .padding-bottom-component\@xl {
    padding-bottom: var(--component-padding);
  }

  .padding-right-xxxxs\@xl {
    padding-right: var(--space-xxxxs);
  }

  .padding-right-xxxs\@xl {
    padding-right: var(--space-xxxs);
  }

  .padding-right-xxs\@xl {
    padding-right: var(--space-xxs);
  }

  .padding-right-xs\@xl {
    padding-right: var(--space-xs);
  }

  .padding-right-sm\@xl {
    padding-right: var(--space-sm);
  }

  .padding-right-md\@xl {
    padding-right: var(--space-md);
  }

  .padding-right-lg\@xl {
    padding-right: var(--space-lg);
  }

  .padding-right-xl\@xl {
    padding-right: var(--space-xl);
  }

  .padding-right-xxl\@xl {
    padding-right: var(--space-xxl);
  }

  .padding-right-xxxl\@xl {
    padding-right: var(--space-xxxl);
  }

  .padding-right-xxxxl\@xl {
    padding-right: var(--space-xxxxl);
  }

  .padding-right-0\@xl {
    padding-right: 0;
  }

  .padding-right-component\@xl {
    padding-right: var(--component-padding);
  }

  .padding-left-xxxxs\@xl {
    padding-left: var(--space-xxxxs);
  }

  .padding-left-xxxs\@xl {
    padding-left: var(--space-xxxs);
  }

  .padding-left-xxs\@xl {
    padding-left: var(--space-xxs);
  }

  .padding-left-xs\@xl {
    padding-left: var(--space-xs);
  }

  .padding-left-sm\@xl {
    padding-left: var(--space-sm);
  }

  .padding-left-md\@xl {
    padding-left: var(--space-md);
  }

  .padding-left-lg\@xl {
    padding-left: var(--space-lg);
  }

  .padding-left-xl\@xl {
    padding-left: var(--space-xl);
  }

  .padding-left-xxl\@xl {
    padding-left: var(--space-xxl);
  }

  .padding-left-xxxl\@xl {
    padding-left: var(--space-xxxl);
  }

  .padding-left-xxxxl\@xl {
    padding-left: var(--space-xxxxl);
  }

  .padding-left-0\@xl {
    padding-left: 0;
  }

  .padding-left-component\@xl {
    padding-left: var(--component-padding);
  }

  .padding-x-xxxxs\@xl {
    padding-left: var(--space-xxxxs);
    padding-right: var(--space-xxxxs);
  }

  .padding-x-xxxs\@xl {
    padding-left: var(--space-xxxs);
    padding-right: var(--space-xxxs);
  }

  .padding-x-xxs\@xl {
    padding-left: var(--space-xxs);
    padding-right: var(--space-xxs);
  }

  .padding-x-xs\@xl {
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
  }

  .padding-x-sm\@xl {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .padding-x-md\@xl {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .padding-x-lg\@xl {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .padding-x-xl\@xl {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .padding-x-xxl\@xl {
    padding-left: var(--space-xxl);
    padding-right: var(--space-xxl);
  }

  .padding-x-xxxl\@xl {
    padding-left: var(--space-xxxl);
    padding-right: var(--space-xxxl);
  }

  .padding-x-xxxxl\@xl {
    padding-left: var(--space-xxxxl);
    padding-right: var(--space-xxxxl);
  }

  .padding-x-0\@xl {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-x-component\@xl {
    padding-left: var(--component-padding);
    padding-right: var(--component-padding);
  }

  .padding-y-xxxxs\@xl {
    padding-top: var(--space-xxxxs);
    padding-bottom: var(--space-xxxxs);
  }

  .padding-y-xxxs\@xl {
    padding-top: var(--space-xxxs);
    padding-bottom: var(--space-xxxs);
  }

  .padding-y-xxs\@xl {
    padding-top: var(--space-xxs);
    padding-bottom: var(--space-xxs);
  }

  .padding-y-xs\@xl {
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
  }

  .padding-y-sm\@xl {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  .padding-y-md\@xl {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .padding-y-lg\@xl {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  .padding-y-xl\@xl {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .padding-y-xxl\@xl {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
  }

  .padding-y-xxxl\@xl {
    padding-top: var(--space-xxxl);
    padding-bottom: var(--space-xxxl);
  }

  .padding-y-xxxxl\@xl {
    padding-top: var(--space-xxxxl);
    padding-bottom: var(--space-xxxxl);
  }

  .padding-y-0\@xl {
    padding-top: 0;
    padding-bottom: 0;
  }

  .padding-y-component\@xl {
    padding-top: var(--component-padding);
    padding-bottom: var(--component-padding);
  }

  .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: calc(100% / 3);
  }

  .width-40\%\@xl {
    width: 40%;
  }

  .width-50\%\@xl {
    width: 50%;
  }

  .width-60\%\@xl {
    width: 60%;
  }

  .width-66\%\@xl {
    width: calc(100% / 1.5);
  }

  .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: calc(100% / 3);
  }

  .height-40\%\@xl {
    height: 40%;
  }

  .height-50\%\@xl {
    height: 50%;
  }

  .height-60\%\@xl {
    height: 60%;
  }

  .height-66\%\@xl {
    height: calc(100% / 1.5);
  }

  .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: 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(35, 89%, 41%);
  --color-primary-darker-h: 35;
  --color-primary-darker-s: 89%;
  --color-primary-darker-l: 41%;
  --color-primary-dark: hsl(35, 89%, 47%);
  --color-primary-dark-h: 35;
  --color-primary-dark-s: 89%;
  --color-primary-dark-l: 47%;
  --color-primary: hsl(35, 89%, 53%);
  --color-primary-h: 35;
  --color-primary-s: 89%;
  --color-primary-l: 53%;
  --color-primary-light: hsl(35, 89%, 59%);
  --color-primary-light-h: 35;
  --color-primary-light-s: 89%;
  --color-primary-light-l: 59%;
  --color-primary-lighter: hsl(35, 89%, 65%);
  --color-primary-lighter-h: 35;
  --color-primary-lighter-s: 89%;
  --color-primary-lighter-l: 65%;
  --color-accent-darker: hsl(15, 3%, 17%);
  --color-accent-darker-h: 15;
  --color-accent-darker-s: 3%;
  --color-accent-darker-l: 17%;
  --color-accent-dark: hsl(15, 3%, 23%);
  --color-accent-dark-h: 15;
  --color-accent-dark-s: 3%;
  --color-accent-dark-l: 23%;
  --color-accent: hsl(15, 3%, 29%);
  --color-accent-h: 15;
  --color-accent-s: 3%;
  --color-accent-l: 29%;
  --color-accent-light: hsl(15, 3%, 35%);
  --color-accent-light-h: 15;
  --color-accent-light-s: 3%;
  --color-accent-light-l: 35%;
  --color-accent-lighter: hsl(15, 3%, 41%);
  --color-accent-lighter-h: 15;
  --color-accent-lighter-s: 3%;
  --color-accent-lighter-l: 41%;
  --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, 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(43, 24%, 85%);
  --color-bg-darker-h: 43;
  --color-bg-darker-s: 24%;
  --color-bg-darker-l: 85%;
  --color-bg-dark: hsl(41, 31%, 88%);
  --color-bg-dark-h: 41;
  --color-bg-dark-s: 31%;
  --color-bg-dark-l: 88%;
  --color-bg: hsl(41, 46%, 92%);
  --color-bg-h: 41;
  --color-bg-s: 46%;
  --color-bg-l: 92%;
  --color-bg-light: hsl(41, 31%, 96%);
  --color-bg-light-h: 41;
  --color-bg-light-s: 31%;
  --color-bg-light-l: 96%;
  --color-bg-lighter: hsl(43, 24%, 99%);
  --color-bg-lighter-h: 43;
  --color-bg-lighter-s: 24%;
  --color-bg-lighter-l: 99%;
  --color-contrast-lower: hsl(40, 20%, 82%);
  --color-contrast-lower-h: 40;
  --color-contrast-lower-s: 20%;
  --color-contrast-lower-l: 82%;
  --color-contrast-low: hsl(42, 11%, 70%);
  --color-contrast-low-h: 42;
  --color-contrast-low-s: 11%;
  --color-contrast-low-l: 70%;
  --color-contrast-medium: hsl(45, 7%, 58%);
  --color-contrast-medium-h: 45;
  --color-contrast-medium-s: 7%;
  --color-contrast-medium-l: 58%;
  --color-contrast-high: hsl(43, 7%, 42%);
  --color-contrast-high-h: 43;
  --color-contrast-high-s: 7%;
  --color-contrast-high-l: 42%;
  --color-contrast-higher: hsl(46, 8%, 32%);
  --color-contrast-higher-h: 46;
  --color-contrast-higher-s: 8%;
  --color-contrast-higher-l: 32%;
}

[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(213, 3%, 57%);
  --color-contrast-medium-h: 213;
  --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%;
}

@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);
}

:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --text-base-size: 0.875rem;
  --text-scale-ratio: 1.2;
  --body-line-height: 2;
  --heading-line-height: 1.5;
  --font-primary-capital-letter: 1;
  --font-secondary-capital-letter: 1;
  --text-unit: var(--text-base-size);
}

:root, * {
  --text-xs: calc((var(--text-unit) / var(--text-scale-ratio)) / var(--text-scale-ratio));
  --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
  --text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
  --text-xxxxl: calc(var(--text-xxxl) * var(--text-scale-ratio));
}

body {
  font-family: var(--font-primary);
}

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  --heading-font-weight: 700;
}

.font-primary {
  font-family: var(--font-primary);
}

.font-secondary {
  font-family: var(--font-secondary);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-contrast-higher);
  transition: 0.2s;
}
a:hover {
  color: var(--color-primary);
}

.link {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 50%, hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15) 50%);
  background-size: 200% 1px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  transition: background-position 0.2s;
}
.link:hover {
  background-position: 0% 100%;
}

mark {
  background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2);
  color: inherit;
}

.text-component {
  --line-height-multiplier: 1;
  --text-space-y-multiplier: 1;
}
.text-component > * {
  --text-unit: 1em;
  --space-unit: 1em;
}
.text-component > *:not([class^=letter-spacing]):not([class*=" letter-spacing"]) {
  letter-spacing: 0.1em;
}
.text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid var(--color-contrast-lower);
  font-style: italic;
}
.text-component hr {
  background: var(--color-contrast-lower);
  height: 1px;
}
.text-component figcaption {
  font-size: var(--text-sm);
  color: var(--color-contrast-low);
}

.article {
  --body-line-height: 2;
  --text-space-y-multiplier: 2;
}
.article .text-component {
  --line-height-multiplier: 1.25;
  --text-space-y-multiplier: 2;
}
.article .text-component h2, .article .text-component h3, .article .text-component h4 {
  margin-top: calc(var(--space-unit) * 3 * var(--text-space-y-multiplier, 1));
  margin-bottom: calc(var(--space-unit) * 2 * var(--text-space-y-multiplier, 1));
}
.article .text-component h2:not([class^=text-]):not([class*=" text-"]), .article .text-component h3:not([class^=text-]):not([class*=" text-"]), .article .text-component h4:not([class^=text-]):not([class*=" text-"]) {
  font-size: var(--text-md);
}
.article .text-component h2:not([class^=font-]):not([class*=" font-"]), .article .text-component h3:not([class^=font-]):not([class*=" font-"]), .article .text-component h4:not([class^=font-]):not([class*=" font-"]) {
  font-weight: 500;
}
.article .text-component h2:not([class^=letter-spacing]):not([class*=" letter-spacing"]), .article .text-component h3:not([class^=letter-spacing]):not([class*=" letter-spacing"]), .article .text-component h4:not([class^=letter-spacing]):not([class*=" letter-spacing"]) {
  letter-spacing: 0.25em;
}
.article .text-component p:not([class^=letter-spacing]):not([class*=" letter-spacing"]) {
  letter-spacing: 0.1em;
}

:root {
  --btn-font-size: 1em;
  --btn-padding-x: var(--space-md);
  --btn-padding-y: var(--space-xxs);
  --btn-radius: var(--radius-sm);
}

.btn, form#mail_form input[type=button] {
  background: var(--color-bg-dark);
  color: var(--color-contrast-higher);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
}
.btn:hover, form#mail_form input[type=button]:hover {
  color: var(--color-contrast-higher);
  background: hsla(var(--color-primary-dark-h), var(--color-primary-dark-s), var(--color-primary-dark-l), 0.12);
}
.btn:focus, form#mail_form input[type=button]:focus {
  box-shadow: 0px 0px 0px 2px var(--color-bg), 0px 0px 0px 4px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
  outline: none;
}
.btn:active, form#mail_form input[type=button]:active {
  transform: translateY(2px);
}

.btn--primary, form#mail_form input[type=button] {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 1px 3px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25), 0px 2px 6px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.1), 0px 6px 10px -2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25);
}
.btn--primary:hover, form#mail_form input[type=button]:hover {
  background: var(--color-primary-light);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 1px 2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25), 0px 1px 4px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.1), 0px 3px 6px -2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25);
}
.btn--primary:focus, form#mail_form input[type=button]:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 1px 2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25), 0px 1px 4px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.1), 0px 3px 6px -2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25), 0px 0px 0px 2px var(--color-bg), 0px 0px 0px 4px var(--color-primary);
}

.btn--subtle {
  background: var(--color-bg-lighter);
  color: var(--color-contrast-higher);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.1), 0px 0px 0px 1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.02), 0px 1px 3px -1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.2), 0px 3px 6px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.12);
}
.btn--subtle:hover {
  background: var(--color-bg-light);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.1), 0px 0px 0px 1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.02), 0px 1px 2px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.12), 0px 1px 3px -1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.2);
}
.btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.1), 0px 0px 0px 1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.02), 0px 1px 3px -1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.2), 0px 3px 6px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.12), 0px 0px 0px 2px var(--color-bg), 0px 0px 0px 4px var(--color-contrast-high);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 1px 3px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.25), 0px 2px 6px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.1), 0px 6px 10px -2px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.25);
}
.btn--accent:hover {
  background: var(--color-accent-light);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 1px 2px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.25), 0px 1px 4px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.1), 0px 3px 6px -2px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.1);
}
.btn--accent:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 1px 2px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.25), 0px 1px 4px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.1), 0px 3px 6px -2px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.1), 0px 0px 0px 2px var(--color-bg), 0px 0px 0px 4px var(--color-accent);
}

.btn--disabled, .btn[disabled], form#mail_form input[disabled][type=button], .btn[readonly], form#mail_form input[readonly][type=button] {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--sm {
  font-size: 0.8em;
}

.btn--md {
  font-size: 1.2em;
}

.btn--lg {
  font-size: 1.4em;
}

:root {
  --form-control-font-size: 1em;
  --form-control-padding-x: var(--space-xs);
  --form-control-padding-y: var(--space-xxs);
  --form-control-radius: var(--radius-sm);
}

.form-control {
  background: var(--color-bg-dark);
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px var(--color-contrast-lower);
  transition: all 0.2s ease;
}
.form-control::-moz-placeholder {
  opacity: 1;
  color: var(--color-contrast-low);
}
.form-control::placeholder {
  opacity: 1;
  color: var(--color-contrast-low);
}
.form-control:focus, .form-control:focus-within {
  background: var(--color-bg);
  box-shadow: inset 0px 0px 0px 1px hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0), 0px 0px 0px 2px var(--color-primary), var(--shadow-sm);
  outline: none;
}

.form-control--disabled, .form-control[disabled], .form-control[readonly] {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-control[aria-invalid=true], .form-control.form-control--error {
  box-shadow: inset 0px 0px 0px 1px hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0), 0px 0px 0px 2px var(--color-error);
}
.form-control[aria-invalid=true]:focus, .form-control[aria-invalid=true]:focus-within, .form-control.form-control--error:focus, .form-control.form-control--error:focus-within {
  box-shadow: inset 0px 0px 0px 1px hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0), 0px 0px 0px 2px var(--color-error), var(--shadow-sm);
}

.letter-spacing-xxl {
  letter-spacing: 0.4em;
}

.component-padding-0 {
  --component-padding: 0px;
}

.component-padding-xxxxs {
  --component-padding: var(--space-xxxxs);
}

.component-padding-xxxs {
  --component-padding: var(--space-xxxs);
}

.component-padding-xxs {
  --component-padding: var(--space-xxs);
}

.component-padding-xs {
  --component-padding: var(--space-xs);
}

.component-padding-sm {
  --component-padding: var(--space-sm);
}

.component-padding-md {
  --component-padding: var(--space-md);
}

.component-padding-lg {
  --component-padding: var(--space-lg);
}

.component-padding-xl {
  --component-padding: var(--space-xl);
}

.component-padding-xxl {
  --component-padding: var(--space-xxl);
}

.component-padding-xxxl {
  --component-padding: var(--space-xxxl);
}

.component-padding-xxxxl {
  --component-padding: var(--space-xxxxl);
}

.justify-around {
  justify-content: space-around;
}

.height-0px {
  height: 0px;
}

.min-height-0px {
  min-height: 0px;
}

.max-height-0px {
  max-height: 0px;
}

.width-0px {
  width: 0px;
}

.min-width-0px {
  min-width: 0px;
}

.max-width-0px {
  max-width: 0px;
}

.height-20px {
  height: 20px;
}

.min-height-20px {
  min-height: 20px;
}

.max-height-20px {
  max-height: 20px;
}

.width-20px {
  width: 20px;
}

.min-width-20px {
  min-width: 20px;
}

.max-width-20px {
  max-width: 20px;
}

.height-40px {
  height: 40px;
}

.min-height-40px {
  min-height: 40px;
}

.max-height-40px {
  max-height: 40px;
}

.width-40px {
  width: 40px;
}

.min-width-40px {
  min-width: 40px;
}

.max-width-40px {
  max-width: 40px;
}

.height-60px {
  height: 60px;
}

.min-height-60px {
  min-height: 60px;
}

.max-height-60px {
  max-height: 60px;
}

.width-60px {
  width: 60px;
}

.min-width-60px {
  min-width: 60px;
}

.max-width-60px {
  max-width: 60px;
}

.height-80px {
  height: 80px;
}

.min-height-80px {
  min-height: 80px;
}

.max-height-80px {
  max-height: 80px;
}

.width-80px {
  width: 80px;
}

.min-width-80px {
  min-width: 80px;
}

.max-width-80px {
  max-width: 80px;
}

.height-100px {
  height: 100px;
}

.min-height-100px {
  min-height: 100px;
}

.max-height-100px {
  max-height: 100px;
}

.width-100px {
  width: 100px;
}

.min-width-100px {
  min-width: 100px;
}

.max-width-100px {
  max-width: 100px;
}

.height-120px {
  height: 120px;
}

.min-height-120px {
  min-height: 120px;
}

.max-height-120px {
  max-height: 120px;
}

.width-120px {
  width: 120px;
}

.min-width-120px {
  min-width: 120px;
}

.max-width-120px {
  max-width: 120px;
}

.height-140px {
  height: 140px;
}

.min-height-140px {
  min-height: 140px;
}

.max-height-140px {
  max-height: 140px;
}

.width-140px {
  width: 140px;
}

.min-width-140px {
  min-width: 140px;
}

.max-width-140px {
  max-width: 140px;
}

.height-160px {
  height: 160px;
}

.min-height-160px {
  min-height: 160px;
}

.max-height-160px {
  max-height: 160px;
}

.width-160px {
  width: 160px;
}

.min-width-160px {
  min-width: 160px;
}

.max-width-160px {
  max-width: 160px;
}

.height-180px {
  height: 180px;
}

.min-height-180px {
  min-height: 180px;
}

.max-height-180px {
  max-height: 180px;
}

.width-180px {
  width: 180px;
}

.min-width-180px {
  min-width: 180px;
}

.max-width-180px {
  max-width: 180px;
}

.height-200px {
  height: 200px;
}

.min-height-200px {
  min-height: 200px;
}

.max-height-200px {
  max-height: 200px;
}

.width-200px {
  width: 200px;
}

.min-width-200px {
  min-width: 200px;
}

.max-width-200px {
  max-width: 200px;
}

.height-220px {
  height: 220px;
}

.min-height-220px {
  min-height: 220px;
}

.max-height-220px {
  max-height: 220px;
}

.width-220px {
  width: 220px;
}

.min-width-220px {
  min-width: 220px;
}

.max-width-220px {
  max-width: 220px;
}

.height-240px {
  height: 240px;
}

.min-height-240px {
  min-height: 240px;
}

.max-height-240px {
  max-height: 240px;
}

.width-240px {
  width: 240px;
}

.min-width-240px {
  min-width: 240px;
}

.max-width-240px {
  max-width: 240px;
}

.height-260px {
  height: 260px;
}

.min-height-260px {
  min-height: 260px;
}

.max-height-260px {
  max-height: 260px;
}

.width-260px {
  width: 260px;
}

.min-width-260px {
  min-width: 260px;
}

.max-width-260px {
  max-width: 260px;
}

.height-280px {
  height: 280px;
}

.min-height-280px {
  min-height: 280px;
}

.max-height-280px {
  max-height: 280px;
}

.width-280px {
  width: 280px;
}

.min-width-280px {
  min-width: 280px;
}

.max-width-280px {
  max-width: 280px;
}

.height-300px {
  height: 300px;
}

.min-height-300px {
  min-height: 300px;
}

.max-height-300px {
  max-height: 300px;
}

.width-300px {
  width: 300px;
}

.min-width-300px {
  min-width: 300px;
}

.max-width-300px {
  max-width: 300px;
}

.height-320px {
  height: 320px;
}

.min-height-320px {
  min-height: 320px;
}

.max-height-320px {
  max-height: 320px;
}

.width-320px {
  width: 320px;
}

.min-width-320px {
  min-width: 320px;
}

.max-width-320px {
  max-width: 320px;
}

.height-340px {
  height: 340px;
}

.min-height-340px {
  min-height: 340px;
}

.max-height-340px {
  max-height: 340px;
}

.width-340px {
  width: 340px;
}

.min-width-340px {
  min-width: 340px;
}

.max-width-340px {
  max-width: 340px;
}

.height-360px {
  height: 360px;
}

.min-height-360px {
  min-height: 360px;
}

.max-height-360px {
  max-height: 360px;
}

.width-360px {
  width: 360px;
}

.min-width-360px {
  min-width: 360px;
}

.max-width-360px {
  max-width: 360px;
}

.height-380px {
  height: 380px;
}

.min-height-380px {
  min-height: 380px;
}

.max-height-380px {
  max-height: 380px;
}

.width-380px {
  width: 380px;
}

.min-width-380px {
  min-width: 380px;
}

.max-width-380px {
  max-width: 380px;
}

.height-400px {
  height: 400px;
}

.min-height-400px {
  min-height: 400px;
}

.max-height-400px {
  max-height: 400px;
}

.width-400px {
  width: 400px;
}

.min-width-400px {
  min-width: 400px;
}

.max-width-400px {
  max-width: 400px;
}

.height-420px {
  height: 420px;
}

.min-height-420px {
  min-height: 420px;
}

.max-height-420px {
  max-height: 420px;
}

.width-420px {
  width: 420px;
}

.min-width-420px {
  min-width: 420px;
}

.max-width-420px {
  max-width: 420px;
}

.height-440px {
  height: 440px;
}

.min-height-440px {
  min-height: 440px;
}

.max-height-440px {
  max-height: 440px;
}

.width-440px {
  width: 440px;
}

.min-width-440px {
  min-width: 440px;
}

.max-width-440px {
  max-width: 440px;
}

.height-460px {
  height: 460px;
}

.min-height-460px {
  min-height: 460px;
}

.max-height-460px {
  max-height: 460px;
}

.width-460px {
  width: 460px;
}

.min-width-460px {
  min-width: 460px;
}

.max-width-460px {
  max-width: 460px;
}

.height-480px {
  height: 480px;
}

.min-height-480px {
  min-height: 480px;
}

.max-height-480px {
  max-height: 480px;
}

.width-480px {
  width: 480px;
}

.min-width-480px {
  min-width: 480px;
}

.max-width-480px {
  max-width: 480px;
}

.height-500px {
  height: 500px;
}

.min-height-500px {
  min-height: 500px;
}

.max-height-500px {
  max-height: 500px;
}

.width-500px {
  width: 500px;
}

.min-width-500px {
  min-width: 500px;
}

.max-width-500px {
  max-width: 500px;
}

.height-520px {
  height: 520px;
}

.min-height-520px {
  min-height: 520px;
}

.max-height-520px {
  max-height: 520px;
}

.width-520px {
  width: 520px;
}

.min-width-520px {
  min-width: 520px;
}

.max-width-520px {
  max-width: 520px;
}

.height-540px {
  height: 540px;
}

.min-height-540px {
  min-height: 540px;
}

.max-height-540px {
  max-height: 540px;
}

.width-540px {
  width: 540px;
}

.min-width-540px {
  min-width: 540px;
}

.max-width-540px {
  max-width: 540px;
}

.height-560px {
  height: 560px;
}

.min-height-560px {
  min-height: 560px;
}

.max-height-560px {
  max-height: 560px;
}

.width-560px {
  width: 560px;
}

.min-width-560px {
  min-width: 560px;
}

.max-width-560px {
  max-width: 560px;
}

.height-580px {
  height: 580px;
}

.min-height-580px {
  min-height: 580px;
}

.max-height-580px {
  max-height: 580px;
}

.width-580px {
  width: 580px;
}

.min-width-580px {
  min-width: 580px;
}

.max-width-580px {
  max-width: 580px;
}

.height-600px {
  height: 600px;
}

.min-height-600px {
  min-height: 600px;
}

.max-height-600px {
  max-height: 600px;
}

.width-600px {
  width: 600px;
}

.min-width-600px {
  min-width: 600px;
}

.max-width-600px {
  max-width: 600px;
}

.height-620px {
  height: 620px;
}

.min-height-620px {
  min-height: 620px;
}

.max-height-620px {
  max-height: 620px;
}

.width-620px {
  width: 620px;
}

.min-width-620px {
  min-width: 620px;
}

.max-width-620px {
  max-width: 620px;
}

.height-640px {
  height: 640px;
}

.min-height-640px {
  min-height: 640px;
}

.max-height-640px {
  max-height: 640px;
}

.width-640px {
  width: 640px;
}

.min-width-640px {
  min-width: 640px;
}

.max-width-640px {
  max-width: 640px;
}

.height-660px {
  height: 660px;
}

.min-height-660px {
  min-height: 660px;
}

.max-height-660px {
  max-height: 660px;
}

.width-660px {
  width: 660px;
}

.min-width-660px {
  min-width: 660px;
}

.max-width-660px {
  max-width: 660px;
}

.height-680px {
  height: 680px;
}

.min-height-680px {
  min-height: 680px;
}

.max-height-680px {
  max-height: 680px;
}

.width-680px {
  width: 680px;
}

.min-width-680px {
  min-width: 680px;
}

.max-width-680px {
  max-width: 680px;
}

.height-700px {
  height: 700px;
}

.min-height-700px {
  min-height: 700px;
}

.max-height-700px {
  max-height: 700px;
}

.width-700px {
  width: 700px;
}

.min-width-700px {
  min-width: 700px;
}

.max-width-700px {
  max-width: 700px;
}

.height-720px {
  height: 720px;
}

.min-height-720px {
  min-height: 720px;
}

.max-height-720px {
  max-height: 720px;
}

.width-720px {
  width: 720px;
}

.min-width-720px {
  min-width: 720px;
}

.max-width-720px {
  max-width: 720px;
}

.height-740px {
  height: 740px;
}

.min-height-740px {
  min-height: 740px;
}

.max-height-740px {
  max-height: 740px;
}

.width-740px {
  width: 740px;
}

.min-width-740px {
  min-width: 740px;
}

.max-width-740px {
  max-width: 740px;
}

.height-760px {
  height: 760px;
}

.min-height-760px {
  min-height: 760px;
}

.max-height-760px {
  max-height: 760px;
}

.width-760px {
  width: 760px;
}

.min-width-760px {
  min-width: 760px;
}

.max-width-760px {
  max-width: 760px;
}

.height-780px {
  height: 780px;
}

.min-height-780px {
  min-height: 780px;
}

.max-height-780px {
  max-height: 780px;
}

.width-780px {
  width: 780px;
}

.min-width-780px {
  min-width: 780px;
}

.max-width-780px {
  max-width: 780px;
}

.height-800px {
  height: 800px;
}

.min-height-800px {
  min-height: 800px;
}

.max-height-800px {
  max-height: 800px;
}

.width-800px {
  width: 800px;
}

.min-width-800px {
  min-width: 800px;
}

.max-width-800px {
  max-width: 800px;
}

.height-820px {
  height: 820px;
}

.min-height-820px {
  min-height: 820px;
}

.max-height-820px {
  max-height: 820px;
}

.width-820px {
  width: 820px;
}

.min-width-820px {
  min-width: 820px;
}

.max-width-820px {
  max-width: 820px;
}

.height-840px {
  height: 840px;
}

.min-height-840px {
  min-height: 840px;
}

.max-height-840px {
  max-height: 840px;
}

.width-840px {
  width: 840px;
}

.min-width-840px {
  min-width: 840px;
}

.max-width-840px {
  max-width: 840px;
}

.height-860px {
  height: 860px;
}

.min-height-860px {
  min-height: 860px;
}

.max-height-860px {
  max-height: 860px;
}

.width-860px {
  width: 860px;
}

.min-width-860px {
  min-width: 860px;
}

.max-width-860px {
  max-width: 860px;
}

.height-880px {
  height: 880px;
}

.min-height-880px {
  min-height: 880px;
}

.max-height-880px {
  max-height: 880px;
}

.width-880px {
  width: 880px;
}

.min-width-880px {
  min-width: 880px;
}

.max-width-880px {
  max-width: 880px;
}

.height-900px {
  height: 900px;
}

.min-height-900px {
  min-height: 900px;
}

.max-height-900px {
  max-height: 900px;
}

.width-900px {
  width: 900px;
}

.min-width-900px {
  min-width: 900px;
}

.max-width-900px {
  max-width: 900px;
}

.height-920px {
  height: 920px;
}

.min-height-920px {
  min-height: 920px;
}

.max-height-920px {
  max-height: 920px;
}

.width-920px {
  width: 920px;
}

.min-width-920px {
  min-width: 920px;
}

.max-width-920px {
  max-width: 920px;
}

.height-940px {
  height: 940px;
}

.min-height-940px {
  min-height: 940px;
}

.max-height-940px {
  max-height: 940px;
}

.width-940px {
  width: 940px;
}

.min-width-940px {
  min-width: 940px;
}

.max-width-940px {
  max-width: 940px;
}

.height-960px {
  height: 960px;
}

.min-height-960px {
  min-height: 960px;
}

.max-height-960px {
  max-height: 960px;
}

.width-960px {
  width: 960px;
}

.min-width-960px {
  min-width: 960px;
}

.max-width-960px {
  max-width: 960px;
}

.height-980px {
  height: 980px;
}

.min-height-980px {
  min-height: 980px;
}

.max-height-980px {
  max-height: 980px;
}

.width-980px {
  width: 980px;
}

.min-width-980px {
  min-width: 980px;
}

.max-width-980px {
  max-width: 980px;
}

.height-1000px {
  height: 1000px;
}

.min-height-1000px {
  min-height: 1000px;
}

.max-height-1000px {
  max-height: 1000px;
}

.width-1000px {
  width: 1000px;
}

.min-width-1000px {
  min-width: 1000px;
}

.max-width-1000px {
  max-width: 1000px;
}

.height-1020px {
  height: 1020px;
}

.min-height-1020px {
  min-height: 1020px;
}

.max-height-1020px {
  max-height: 1020px;
}

.width-1020px {
  width: 1020px;
}

.min-width-1020px {
  min-width: 1020px;
}

.max-width-1020px {
  max-width: 1020px;
}

.height-1040px {
  height: 1040px;
}

.min-height-1040px {
  min-height: 1040px;
}

.max-height-1040px {
  max-height: 1040px;
}

.width-1040px {
  width: 1040px;
}

.min-width-1040px {
  min-width: 1040px;
}

.max-width-1040px {
  max-width: 1040px;
}

.height-1060px {
  height: 1060px;
}

.min-height-1060px {
  min-height: 1060px;
}

.max-height-1060px {
  max-height: 1060px;
}

.width-1060px {
  width: 1060px;
}

.min-width-1060px {
  min-width: 1060px;
}

.max-width-1060px {
  max-width: 1060px;
}

.height-1080px {
  height: 1080px;
}

.min-height-1080px {
  min-height: 1080px;
}

.max-height-1080px {
  max-height: 1080px;
}

.width-1080px {
  width: 1080px;
}

.min-width-1080px {
  min-width: 1080px;
}

.max-width-1080px {
  max-width: 1080px;
}

.height-1100px {
  height: 1100px;
}

.min-height-1100px {
  min-height: 1100px;
}

.max-height-1100px {
  max-height: 1100px;
}

.width-1100px {
  width: 1100px;
}

.min-width-1100px {
  min-width: 1100px;
}

.max-width-1100px {
  max-width: 1100px;
}

.height-1120px {
  height: 1120px;
}

.min-height-1120px {
  min-height: 1120px;
}

.max-height-1120px {
  max-height: 1120px;
}

.width-1120px {
  width: 1120px;
}

.min-width-1120px {
  min-width: 1120px;
}

.max-width-1120px {
  max-width: 1120px;
}

.height-1140px {
  height: 1140px;
}

.min-height-1140px {
  min-height: 1140px;
}

.max-height-1140px {
  max-height: 1140px;
}

.width-1140px {
  width: 1140px;
}

.min-width-1140px {
  min-width: 1140px;
}

.max-width-1140px {
  max-width: 1140px;
}

.height-1160px {
  height: 1160px;
}

.min-height-1160px {
  min-height: 1160px;
}

.max-height-1160px {
  max-height: 1160px;
}

.width-1160px {
  width: 1160px;
}

.min-width-1160px {
  min-width: 1160px;
}

.max-width-1160px {
  max-width: 1160px;
}

.height-1180px {
  height: 1180px;
}

.min-height-1180px {
  min-height: 1180px;
}

.max-height-1180px {
  max-height: 1180px;
}

.width-1180px {
  width: 1180px;
}

.min-width-1180px {
  min-width: 1180px;
}

.max-width-1180px {
  max-width: 1180px;
}

.height-1200px {
  height: 1200px;
}

.min-height-1200px {
  min-height: 1200px;
}

.max-height-1200px {
  max-height: 1200px;
}

.width-1200px {
  width: 1200px;
}

.min-width-1200px {
  min-width: 1200px;
}

.max-width-1200px {
  max-width: 1200px;
}

.height-1220px {
  height: 1220px;
}

.min-height-1220px {
  min-height: 1220px;
}

.max-height-1220px {
  max-height: 1220px;
}

.width-1220px {
  width: 1220px;
}

.min-width-1220px {
  min-width: 1220px;
}

.max-width-1220px {
  max-width: 1220px;
}

.height-1240px {
  height: 1240px;
}

.min-height-1240px {
  min-height: 1240px;
}

.max-height-1240px {
  max-height: 1240px;
}

.width-1240px {
  width: 1240px;
}

.min-width-1240px {
  min-width: 1240px;
}

.max-width-1240px {
  max-width: 1240px;
}

.height-1260px {
  height: 1260px;
}

.min-height-1260px {
  min-height: 1260px;
}

.max-height-1260px {
  max-height: 1260px;
}

.width-1260px {
  width: 1260px;
}

.min-width-1260px {
  min-width: 1260px;
}

.max-width-1260px {
  max-width: 1260px;
}

.height-1280px {
  height: 1280px;
}

.min-height-1280px {
  min-height: 1280px;
}

.max-height-1280px {
  max-height: 1280px;
}

.width-1280px {
  width: 1280px;
}

.min-width-1280px {
  min-width: 1280px;
}

.max-width-1280px {
  max-width: 1280px;
}

.height-1300px {
  height: 1300px;
}

.min-height-1300px {
  min-height: 1300px;
}

.max-height-1300px {
  max-height: 1300px;
}

.width-1300px {
  width: 1300px;
}

.min-width-1300px {
  min-width: 1300px;
}

.max-width-1300px {
  max-width: 1300px;
}

.height-1320px {
  height: 1320px;
}

.min-height-1320px {
  min-height: 1320px;
}

.max-height-1320px {
  max-height: 1320px;
}

.width-1320px {
  width: 1320px;
}

.min-width-1320px {
  min-width: 1320px;
}

.max-width-1320px {
  max-width: 1320px;
}

.height-1340px {
  height: 1340px;
}

.min-height-1340px {
  min-height: 1340px;
}

.max-height-1340px {
  max-height: 1340px;
}

.width-1340px {
  width: 1340px;
}

.min-width-1340px {
  min-width: 1340px;
}

.max-width-1340px {
  max-width: 1340px;
}

.height-1360px {
  height: 1360px;
}

.min-height-1360px {
  min-height: 1360px;
}

.max-height-1360px {
  max-height: 1360px;
}

.width-1360px {
  width: 1360px;
}

.min-width-1360px {
  min-width: 1360px;
}

.max-width-1360px {
  max-width: 1360px;
}

.height-1380px {
  height: 1380px;
}

.min-height-1380px {
  min-height: 1380px;
}

.max-height-1380px {
  max-height: 1380px;
}

.width-1380px {
  width: 1380px;
}

.min-width-1380px {
  min-width: 1380px;
}

.max-width-1380px {
  max-width: 1380px;
}

.height-1400px {
  height: 1400px;
}

.min-height-1400px {
  min-height: 1400px;
}

.max-height-1400px {
  max-height: 1400px;
}

.width-1400px {
  width: 1400px;
}

.min-width-1400px {
  min-width: 1400px;
}

.max-width-1400px {
  max-width: 1400px;
}

.height-1420px {
  height: 1420px;
}

.min-height-1420px {
  min-height: 1420px;
}

.max-height-1420px {
  max-height: 1420px;
}

.width-1420px {
  width: 1420px;
}

.min-width-1420px {
  min-width: 1420px;
}

.max-width-1420px {
  max-width: 1420px;
}

.height-1440px {
  height: 1440px;
}

.min-height-1440px {
  min-height: 1440px;
}

.max-height-1440px {
  max-height: 1440px;
}

.width-1440px {
  width: 1440px;
}

.min-width-1440px {
  min-width: 1440px;
}

.max-width-1440px {
  max-width: 1440px;
}

.height-1460px {
  height: 1460px;
}

.min-height-1460px {
  min-height: 1460px;
}

.max-height-1460px {
  max-height: 1460px;
}

.width-1460px {
  width: 1460px;
}

.min-width-1460px {
  min-width: 1460px;
}

.max-width-1460px {
  max-width: 1460px;
}

.height-1480px {
  height: 1480px;
}

.min-height-1480px {
  min-height: 1480px;
}

.max-height-1480px {
  max-height: 1480px;
}

.width-1480px {
  width: 1480px;
}

.min-width-1480px {
  min-width: 1480px;
}

.max-width-1480px {
  max-width: 1480px;
}

.height-1500px {
  height: 1500px;
}

.min-height-1500px {
  min-height: 1500px;
}

.max-height-1500px {
  max-height: 1500px;
}

.width-1500px {
  width: 1500px;
}

.min-width-1500px {
  min-width: 1500px;
}

.max-width-1500px {
  max-width: 1500px;
}

.height-1520px {
  height: 1520px;
}

.min-height-1520px {
  min-height: 1520px;
}

.max-height-1520px {
  max-height: 1520px;
}

.width-1520px {
  width: 1520px;
}

.min-width-1520px {
  min-width: 1520px;
}

.max-width-1520px {
  max-width: 1520px;
}

.height-1540px {
  height: 1540px;
}

.min-height-1540px {
  min-height: 1540px;
}

.max-height-1540px {
  max-height: 1540px;
}

.width-1540px {
  width: 1540px;
}

.min-width-1540px {
  min-width: 1540px;
}

.max-width-1540px {
  max-width: 1540px;
}

.height-1560px {
  height: 1560px;
}

.min-height-1560px {
  min-height: 1560px;
}

.max-height-1560px {
  max-height: 1560px;
}

.width-1560px {
  width: 1560px;
}

.min-width-1560px {
  min-width: 1560px;
}

.max-width-1560px {
  max-width: 1560px;
}

.height-1580px {
  height: 1580px;
}

.min-height-1580px {
  min-height: 1580px;
}

.max-height-1580px {
  max-height: 1580px;
}

.width-1580px {
  width: 1580px;
}

.min-width-1580px {
  min-width: 1580px;
}

.max-width-1580px {
  max-width: 1580px;
}

.height-1600px {
  height: 1600px;
}

.min-height-1600px {
  min-height: 1600px;
}

.max-height-1600px {
  max-height: 1600px;
}

.width-1600px {
  width: 1600px;
}

.min-width-1600px {
  min-width: 1600px;
}

.max-width-1600px {
  max-width: 1600px;
}

.height-1620px {
  height: 1620px;
}

.min-height-1620px {
  min-height: 1620px;
}

.max-height-1620px {
  max-height: 1620px;
}

.width-1620px {
  width: 1620px;
}

.min-width-1620px {
  min-width: 1620px;
}

.max-width-1620px {
  max-width: 1620px;
}

.height-1640px {
  height: 1640px;
}

.min-height-1640px {
  min-height: 1640px;
}

.max-height-1640px {
  max-height: 1640px;
}

.width-1640px {
  width: 1640px;
}

.min-width-1640px {
  min-width: 1640px;
}

.max-width-1640px {
  max-width: 1640px;
}

.height-1660px {
  height: 1660px;
}

.min-height-1660px {
  min-height: 1660px;
}

.max-height-1660px {
  max-height: 1660px;
}

.width-1660px {
  width: 1660px;
}

.min-width-1660px {
  min-width: 1660px;
}

.max-width-1660px {
  max-width: 1660px;
}

.height-1680px {
  height: 1680px;
}

.min-height-1680px {
  min-height: 1680px;
}

.max-height-1680px {
  max-height: 1680px;
}

.width-1680px {
  width: 1680px;
}

.min-width-1680px {
  min-width: 1680px;
}

.max-width-1680px {
  max-width: 1680px;
}

.height-1700px {
  height: 1700px;
}

.min-height-1700px {
  min-height: 1700px;
}

.max-height-1700px {
  max-height: 1700px;
}

.width-1700px {
  width: 1700px;
}

.min-width-1700px {
  min-width: 1700px;
}

.max-width-1700px {
  max-width: 1700px;
}

.height-1720px {
  height: 1720px;
}

.min-height-1720px {
  min-height: 1720px;
}

.max-height-1720px {
  max-height: 1720px;
}

.width-1720px {
  width: 1720px;
}

.min-width-1720px {
  min-width: 1720px;
}

.max-width-1720px {
  max-width: 1720px;
}

.height-1740px {
  height: 1740px;
}

.min-height-1740px {
  min-height: 1740px;
}

.max-height-1740px {
  max-height: 1740px;
}

.width-1740px {
  width: 1740px;
}

.min-width-1740px {
  min-width: 1740px;
}

.max-width-1740px {
  max-width: 1740px;
}

.height-1760px {
  height: 1760px;
}

.min-height-1760px {
  min-height: 1760px;
}

.max-height-1760px {
  max-height: 1760px;
}

.width-1760px {
  width: 1760px;
}

.min-width-1760px {
  min-width: 1760px;
}

.max-width-1760px {
  max-width: 1760px;
}

.height-1780px {
  height: 1780px;
}

.min-height-1780px {
  min-height: 1780px;
}

.max-height-1780px {
  max-height: 1780px;
}

.width-1780px {
  width: 1780px;
}

.min-width-1780px {
  min-width: 1780px;
}

.max-width-1780px {
  max-width: 1780px;
}

.height-1800px {
  height: 1800px;
}

.min-height-1800px {
  min-height: 1800px;
}

.max-height-1800px {
  max-height: 1800px;
}

.width-1800px {
  width: 1800px;
}

.min-width-1800px {
  min-width: 1800px;
}

.max-width-1800px {
  max-width: 1800px;
}

.height-1820px {
  height: 1820px;
}

.min-height-1820px {
  min-height: 1820px;
}

.max-height-1820px {
  max-height: 1820px;
}

.width-1820px {
  width: 1820px;
}

.min-width-1820px {
  min-width: 1820px;
}

.max-width-1820px {
  max-width: 1820px;
}

.height-1840px {
  height: 1840px;
}

.min-height-1840px {
  min-height: 1840px;
}

.max-height-1840px {
  max-height: 1840px;
}

.width-1840px {
  width: 1840px;
}

.min-width-1840px {
  min-width: 1840px;
}

.max-width-1840px {
  max-width: 1840px;
}

.height-1860px {
  height: 1860px;
}

.min-height-1860px {
  min-height: 1860px;
}

.max-height-1860px {
  max-height: 1860px;
}

.width-1860px {
  width: 1860px;
}

.min-width-1860px {
  min-width: 1860px;
}

.max-width-1860px {
  max-width: 1860px;
}

.height-1880px {
  height: 1880px;
}

.min-height-1880px {
  min-height: 1880px;
}

.max-height-1880px {
  max-height: 1880px;
}

.width-1880px {
  width: 1880px;
}

.min-width-1880px {
  min-width: 1880px;
}

.max-width-1880px {
  max-width: 1880px;
}

.height-1900px {
  height: 1900px;
}

.min-height-1900px {
  min-height: 1900px;
}

.max-height-1900px {
  max-height: 1900px;
}

.width-1900px {
  width: 1900px;
}

.min-width-1900px {
  min-width: 1900px;
}

.max-width-1900px {
  max-width: 1900px;
}

.height-1920px {
  height: 1920px;
}

.min-height-1920px {
  min-height: 1920px;
}

.max-height-1920px {
  max-height: 1920px;
}

.width-1920px {
  width: 1920px;
}

.min-width-1920px {
  min-width: 1920px;
}

.max-width-1920px {
  max-width: 1920px;
}

.height-1940px {
  height: 1940px;
}

.min-height-1940px {
  min-height: 1940px;
}

.max-height-1940px {
  max-height: 1940px;
}

.width-1940px {
  width: 1940px;
}

.min-width-1940px {
  min-width: 1940px;
}

.max-width-1940px {
  max-width: 1940px;
}

.height-1960px {
  height: 1960px;
}

.min-height-1960px {
  min-height: 1960px;
}

.max-height-1960px {
  max-height: 1960px;
}

.width-1960px {
  width: 1960px;
}

.min-width-1960px {
  min-width: 1960px;
}

.max-width-1960px {
  max-width: 1960px;
}

.height-1980px {
  height: 1980px;
}

.min-height-1980px {
  min-height: 1980px;
}

.max-height-1980px {
  max-height: 1980px;
}

.width-1980px {
  width: 1980px;
}

.min-width-1980px {
  min-width: 1980px;
}

.max-width-1980px {
  max-width: 1980px;
}

.height-2000px {
  height: 2000px;
}

.min-height-2000px {
  min-height: 2000px;
}

.max-height-2000px {
  max-height: 2000px;
}

.width-2000px {
  width: 2000px;
}

.min-width-2000px {
  min-width: 2000px;
}

.max-width-2000px {
  max-width: 2000px;
}

.height-2020px {
  height: 2020px;
}

.min-height-2020px {
  min-height: 2020px;
}

.max-height-2020px {
  max-height: 2020px;
}

.width-2020px {
  width: 2020px;
}

.min-width-2020px {
  min-width: 2020px;
}

.max-width-2020px {
  max-width: 2020px;
}

.height-2040px {
  height: 2040px;
}

.min-height-2040px {
  min-height: 2040px;
}

.max-height-2040px {
  max-height: 2040px;
}

.width-2040px {
  width: 2040px;
}

.min-width-2040px {
  min-width: 2040px;
}

.max-width-2040px {
  max-width: 2040px;
}

.height-2060px {
  height: 2060px;
}

.min-height-2060px {
  min-height: 2060px;
}

.max-height-2060px {
  max-height: 2060px;
}

.width-2060px {
  width: 2060px;
}

.min-width-2060px {
  min-width: 2060px;
}

.max-width-2060px {
  max-width: 2060px;
}

.height-2080px {
  height: 2080px;
}

.min-height-2080px {
  min-height: 2080px;
}

.max-height-2080px {
  max-height: 2080px;
}

.width-2080px {
  width: 2080px;
}

.min-width-2080px {
  min-width: 2080px;
}

.max-width-2080px {
  max-width: 2080px;
}

.height-2100px {
  height: 2100px;
}

.min-height-2100px {
  min-height: 2100px;
}

.max-height-2100px {
  max-height: 2100px;
}

.width-2100px {
  width: 2100px;
}

.min-width-2100px {
  min-width: 2100px;
}

.max-width-2100px {
  max-width: 2100px;
}

.height-2120px {
  height: 2120px;
}

.min-height-2120px {
  min-height: 2120px;
}

.max-height-2120px {
  max-height: 2120px;
}

.width-2120px {
  width: 2120px;
}

.min-width-2120px {
  min-width: 2120px;
}

.max-width-2120px {
  max-width: 2120px;
}

.height-2140px {
  height: 2140px;
}

.min-height-2140px {
  min-height: 2140px;
}

.max-height-2140px {
  max-height: 2140px;
}

.width-2140px {
  width: 2140px;
}

.min-width-2140px {
  min-width: 2140px;
}

.max-width-2140px {
  max-width: 2140px;
}

.height-2160px {
  height: 2160px;
}

.min-height-2160px {
  min-height: 2160px;
}

.max-height-2160px {
  max-height: 2160px;
}

.width-2160px {
  width: 2160px;
}

.min-width-2160px {
  min-width: 2160px;
}

.max-width-2160px {
  max-width: 2160px;
}

.height-2180px {
  height: 2180px;
}

.min-height-2180px {
  min-height: 2180px;
}

.max-height-2180px {
  max-height: 2180px;
}

.width-2180px {
  width: 2180px;
}

.min-width-2180px {
  min-width: 2180px;
}

.max-width-2180px {
  max-width: 2180px;
}

.height-2200px {
  height: 2200px;
}

.min-height-2200px {
  min-height: 2200px;
}

.max-height-2200px {
  max-height: 2200px;
}

.width-2200px {
  width: 2200px;
}

.min-width-2200px {
  min-width: 2200px;
}

.max-width-2200px {
  max-width: 2200px;
}

.height-2220px {
  height: 2220px;
}

.min-height-2220px {
  min-height: 2220px;
}

.max-height-2220px {
  max-height: 2220px;
}

.width-2220px {
  width: 2220px;
}

.min-width-2220px {
  min-width: 2220px;
}

.max-width-2220px {
  max-width: 2220px;
}

.height-2240px {
  height: 2240px;
}

.min-height-2240px {
  min-height: 2240px;
}

.max-height-2240px {
  max-height: 2240px;
}

.width-2240px {
  width: 2240px;
}

.min-width-2240px {
  min-width: 2240px;
}

.max-width-2240px {
  max-width: 2240px;
}

.height-2260px {
  height: 2260px;
}

.min-height-2260px {
  min-height: 2260px;
}

.max-height-2260px {
  max-height: 2260px;
}

.width-2260px {
  width: 2260px;
}

.min-width-2260px {
  min-width: 2260px;
}

.max-width-2260px {
  max-width: 2260px;
}

.height-2280px {
  height: 2280px;
}

.min-height-2280px {
  min-height: 2280px;
}

.max-height-2280px {
  max-height: 2280px;
}

.width-2280px {
  width: 2280px;
}

.min-width-2280px {
  min-width: 2280px;
}

.max-width-2280px {
  max-width: 2280px;
}

.height-2300px {
  height: 2300px;
}

.min-height-2300px {
  min-height: 2300px;
}

.max-height-2300px {
  max-height: 2300px;
}

.width-2300px {
  width: 2300px;
}

.min-width-2300px {
  min-width: 2300px;
}

.max-width-2300px {
  max-width: 2300px;
}

.height-2320px {
  height: 2320px;
}

.min-height-2320px {
  min-height: 2320px;
}

.max-height-2320px {
  max-height: 2320px;
}

.width-2320px {
  width: 2320px;
}

.min-width-2320px {
  min-width: 2320px;
}

.max-width-2320px {
  max-width: 2320px;
}

.height-2340px {
  height: 2340px;
}

.min-height-2340px {
  min-height: 2340px;
}

.max-height-2340px {
  max-height: 2340px;
}

.width-2340px {
  width: 2340px;
}

.min-width-2340px {
  min-width: 2340px;
}

.max-width-2340px {
  max-width: 2340px;
}

.height-2360px {
  height: 2360px;
}

.min-height-2360px {
  min-height: 2360px;
}

.max-height-2360px {
  max-height: 2360px;
}

.width-2360px {
  width: 2360px;
}

.min-width-2360px {
  min-width: 2360px;
}

.max-width-2360px {
  max-width: 2360px;
}

.height-2380px {
  height: 2380px;
}

.min-height-2380px {
  min-height: 2380px;
}

.max-height-2380px {
  max-height: 2380px;
}

.width-2380px {
  width: 2380px;
}

.min-width-2380px {
  min-width: 2380px;
}

.max-width-2380px {
  max-width: 2380px;
}

.height-2400px {
  height: 2400px;
}

.min-height-2400px {
  min-height: 2400px;
}

.max-height-2400px {
  max-height: 2400px;
}

.width-2400px {
  width: 2400px;
}

.min-width-2400px {
  min-width: 2400px;
}

.max-width-2400px {
  max-width: 2400px;
}

.height-2420px {
  height: 2420px;
}

.min-height-2420px {
  min-height: 2420px;
}

.max-height-2420px {
  max-height: 2420px;
}

.width-2420px {
  width: 2420px;
}

.min-width-2420px {
  min-width: 2420px;
}

.max-width-2420px {
  max-width: 2420px;
}

.height-2440px {
  height: 2440px;
}

.min-height-2440px {
  min-height: 2440px;
}

.max-height-2440px {
  max-height: 2440px;
}

.width-2440px {
  width: 2440px;
}

.min-width-2440px {
  min-width: 2440px;
}

.max-width-2440px {
  max-width: 2440px;
}

.height-2460px {
  height: 2460px;
}

.min-height-2460px {
  min-height: 2460px;
}

.max-height-2460px {
  max-height: 2460px;
}

.width-2460px {
  width: 2460px;
}

.min-width-2460px {
  min-width: 2460px;
}

.max-width-2460px {
  max-width: 2460px;
}

.height-2480px {
  height: 2480px;
}

.min-height-2480px {
  min-height: 2480px;
}

.max-height-2480px {
  max-height: 2480px;
}

.width-2480px {
  width: 2480px;
}

.min-width-2480px {
  min-width: 2480px;
}

.max-width-2480px {
  max-width: 2480px;
}

.height-2500px {
  height: 2500px;
}

.min-height-2500px {
  min-height: 2500px;
}

.max-height-2500px {
  max-height: 2500px;
}

.width-2500px {
  width: 2500px;
}

.min-width-2500px {
  min-width: 2500px;
}

.max-width-2500px {
  max-width: 2500px;
}

.height-2520px {
  height: 2520px;
}

.min-height-2520px {
  min-height: 2520px;
}

.max-height-2520px {
  max-height: 2520px;
}

.width-2520px {
  width: 2520px;
}

.min-width-2520px {
  min-width: 2520px;
}

.max-width-2520px {
  max-width: 2520px;
}

.height-2540px {
  height: 2540px;
}

.min-height-2540px {
  min-height: 2540px;
}

.max-height-2540px {
  max-height: 2540px;
}

.width-2540px {
  width: 2540px;
}

.min-width-2540px {
  min-width: 2540px;
}

.max-width-2540px {
  max-width: 2540px;
}

.height-2560px {
  height: 2560px;
}

.min-height-2560px {
  min-height: 2560px;
}

.max-height-2560px {
  max-height: 2560px;
}

.width-2560px {
  width: 2560px;
}

.min-width-2560px {
  min-width: 2560px;
}

.max-width-2560px {
  max-width: 2560px;
}

.height-2580px {
  height: 2580px;
}

.min-height-2580px {
  min-height: 2580px;
}

.max-height-2580px {
  max-height: 2580px;
}

.width-2580px {
  width: 2580px;
}

.min-width-2580px {
  min-width: 2580px;
}

.max-width-2580px {
  max-width: 2580px;
}

.height-2600px {
  height: 2600px;
}

.min-height-2600px {
  min-height: 2600px;
}

.max-height-2600px {
  max-height: 2600px;
}

.width-2600px {
  width: 2600px;
}

.min-width-2600px {
  min-width: 2600px;
}

.max-width-2600px {
  max-width: 2600px;
}

.height-2620px {
  height: 2620px;
}

.min-height-2620px {
  min-height: 2620px;
}

.max-height-2620px {
  max-height: 2620px;
}

.width-2620px {
  width: 2620px;
}

.min-width-2620px {
  min-width: 2620px;
}

.max-width-2620px {
  max-width: 2620px;
}

.height-2640px {
  height: 2640px;
}

.min-height-2640px {
  min-height: 2640px;
}

.max-height-2640px {
  max-height: 2640px;
}

.width-2640px {
  width: 2640px;
}

.min-width-2640px {
  min-width: 2640px;
}

.max-width-2640px {
  max-width: 2640px;
}

.height-2660px {
  height: 2660px;
}

.min-height-2660px {
  min-height: 2660px;
}

.max-height-2660px {
  max-height: 2660px;
}

.width-2660px {
  width: 2660px;
}

.min-width-2660px {
  min-width: 2660px;
}

.max-width-2660px {
  max-width: 2660px;
}

.height-2680px {
  height: 2680px;
}

.min-height-2680px {
  min-height: 2680px;
}

.max-height-2680px {
  max-height: 2680px;
}

.width-2680px {
  width: 2680px;
}

.min-width-2680px {
  min-width: 2680px;
}

.max-width-2680px {
  max-width: 2680px;
}

.height-2700px {
  height: 2700px;
}

.min-height-2700px {
  min-height: 2700px;
}

.max-height-2700px {
  max-height: 2700px;
}

.width-2700px {
  width: 2700px;
}

.min-width-2700px {
  min-width: 2700px;
}

.max-width-2700px {
  max-width: 2700px;
}

.height-2720px {
  height: 2720px;
}

.min-height-2720px {
  min-height: 2720px;
}

.max-height-2720px {
  max-height: 2720px;
}

.width-2720px {
  width: 2720px;
}

.min-width-2720px {
  min-width: 2720px;
}

.max-width-2720px {
  max-width: 2720px;
}

.height-2740px {
  height: 2740px;
}

.min-height-2740px {
  min-height: 2740px;
}

.max-height-2740px {
  max-height: 2740px;
}

.width-2740px {
  width: 2740px;
}

.min-width-2740px {
  min-width: 2740px;
}

.max-width-2740px {
  max-width: 2740px;
}

.height-2760px {
  height: 2760px;
}

.min-height-2760px {
  min-height: 2760px;
}

.max-height-2760px {
  max-height: 2760px;
}

.width-2760px {
  width: 2760px;
}

.min-width-2760px {
  min-width: 2760px;
}

.max-width-2760px {
  max-width: 2760px;
}

.height-2780px {
  height: 2780px;
}

.min-height-2780px {
  min-height: 2780px;
}

.max-height-2780px {
  max-height: 2780px;
}

.width-2780px {
  width: 2780px;
}

.min-width-2780px {
  min-width: 2780px;
}

.max-width-2780px {
  max-width: 2780px;
}

.height-2800px {
  height: 2800px;
}

.min-height-2800px {
  min-height: 2800px;
}

.max-height-2800px {
  max-height: 2800px;
}

.width-2800px {
  width: 2800px;
}

.min-width-2800px {
  min-width: 2800px;
}

.max-width-2800px {
  max-width: 2800px;
}

.height-2820px {
  height: 2820px;
}

.min-height-2820px {
  min-height: 2820px;
}

.max-height-2820px {
  max-height: 2820px;
}

.width-2820px {
  width: 2820px;
}

.min-width-2820px {
  min-width: 2820px;
}

.max-width-2820px {
  max-width: 2820px;
}

.height-2840px {
  height: 2840px;
}

.min-height-2840px {
  min-height: 2840px;
}

.max-height-2840px {
  max-height: 2840px;
}

.width-2840px {
  width: 2840px;
}

.min-width-2840px {
  min-width: 2840px;
}

.max-width-2840px {
  max-width: 2840px;
}

.height-2860px {
  height: 2860px;
}

.min-height-2860px {
  min-height: 2860px;
}

.max-height-2860px {
  max-height: 2860px;
}

.width-2860px {
  width: 2860px;
}

.min-width-2860px {
  min-width: 2860px;
}

.max-width-2860px {
  max-width: 2860px;
}

.height-2880px {
  height: 2880px;
}

.min-height-2880px {
  min-height: 2880px;
}

.max-height-2880px {
  max-height: 2880px;
}

.width-2880px {
  width: 2880px;
}

.min-width-2880px {
  min-width: 2880px;
}

.max-width-2880px {
  max-width: 2880px;
}

.height-2900px {
  height: 2900px;
}

.min-height-2900px {
  min-height: 2900px;
}

.max-height-2900px {
  max-height: 2900px;
}

.width-2900px {
  width: 2900px;
}

.min-width-2900px {
  min-width: 2900px;
}

.max-width-2900px {
  max-width: 2900px;
}

.height-2920px {
  height: 2920px;
}

.min-height-2920px {
  min-height: 2920px;
}

.max-height-2920px {
  max-height: 2920px;
}

.width-2920px {
  width: 2920px;
}

.min-width-2920px {
  min-width: 2920px;
}

.max-width-2920px {
  max-width: 2920px;
}

.height-2940px {
  height: 2940px;
}

.min-height-2940px {
  min-height: 2940px;
}

.max-height-2940px {
  max-height: 2940px;
}

.width-2940px {
  width: 2940px;
}

.min-width-2940px {
  min-width: 2940px;
}

.max-width-2940px {
  max-width: 2940px;
}

.height-2960px {
  height: 2960px;
}

.min-height-2960px {
  min-height: 2960px;
}

.max-height-2960px {
  max-height: 2960px;
}

.width-2960px {
  width: 2960px;
}

.min-width-2960px {
  min-width: 2960px;
}

.max-width-2960px {
  max-width: 2960px;
}

.height-2980px {
  height: 2980px;
}

.min-height-2980px {
  min-height: 2980px;
}

.max-height-2980px {
  max-height: 2980px;
}

.width-2980px {
  width: 2980px;
}

.min-width-2980px {
  min-width: 2980px;
}

.max-width-2980px {
  max-width: 2980px;
}

.height-3000px {
  height: 3000px;
}

.min-height-3000px {
  min-height: 3000px;
}

.max-height-3000px {
  max-height: 3000px;
}

.width-3000px {
  width: 3000px;
}

.min-width-3000px {
  min-width: 3000px;
}

.max-width-3000px {
  max-width: 3000px;
}

.height-3020px {
  height: 3020px;
}

.min-height-3020px {
  min-height: 3020px;
}

.max-height-3020px {
  max-height: 3020px;
}

.width-3020px {
  width: 3020px;
}

.min-width-3020px {
  min-width: 3020px;
}

.max-width-3020px {
  max-width: 3020px;
}

.height-3040px {
  height: 3040px;
}

.min-height-3040px {
  min-height: 3040px;
}

.max-height-3040px {
  max-height: 3040px;
}

.width-3040px {
  width: 3040px;
}

.min-width-3040px {
  min-width: 3040px;
}

.max-width-3040px {
  max-width: 3040px;
}

.height-3060px {
  height: 3060px;
}

.min-height-3060px {
  min-height: 3060px;
}

.max-height-3060px {
  max-height: 3060px;
}

.width-3060px {
  width: 3060px;
}

.min-width-3060px {
  min-width: 3060px;
}

.max-width-3060px {
  max-width: 3060px;
}

.height-3080px {
  height: 3080px;
}

.min-height-3080px {
  min-height: 3080px;
}

.max-height-3080px {
  max-height: 3080px;
}

.width-3080px {
  width: 3080px;
}

.min-width-3080px {
  min-width: 3080px;
}

.max-width-3080px {
  max-width: 3080px;
}

.height-3100px {
  height: 3100px;
}

.min-height-3100px {
  min-height: 3100px;
}

.max-height-3100px {
  max-height: 3100px;
}

.width-3100px {
  width: 3100px;
}

.min-width-3100px {
  min-width: 3100px;
}

.max-width-3100px {
  max-width: 3100px;
}

.height-3120px {
  height: 3120px;
}

.min-height-3120px {
  min-height: 3120px;
}

.max-height-3120px {
  max-height: 3120px;
}

.width-3120px {
  width: 3120px;
}

.min-width-3120px {
  min-width: 3120px;
}

.max-width-3120px {
  max-width: 3120px;
}

.height-3140px {
  height: 3140px;
}

.min-height-3140px {
  min-height: 3140px;
}

.max-height-3140px {
  max-height: 3140px;
}

.width-3140px {
  width: 3140px;
}

.min-width-3140px {
  min-width: 3140px;
}

.max-width-3140px {
  max-width: 3140px;
}

.height-3160px {
  height: 3160px;
}

.min-height-3160px {
  min-height: 3160px;
}

.max-height-3160px {
  max-height: 3160px;
}

.width-3160px {
  width: 3160px;
}

.min-width-3160px {
  min-width: 3160px;
}

.max-width-3160px {
  max-width: 3160px;
}

.height-3180px {
  height: 3180px;
}

.min-height-3180px {
  min-height: 3180px;
}

.max-height-3180px {
  max-height: 3180px;
}

.width-3180px {
  width: 3180px;
}

.min-width-3180px {
  min-width: 3180px;
}

.max-width-3180px {
  max-width: 3180px;
}

.height-3200px {
  height: 3200px;
}

.min-height-3200px {
  min-height: 3200px;
}

.max-height-3200px {
  max-height: 3200px;
}

.width-3200px {
  width: 3200px;
}

.min-width-3200px {
  min-width: 3200px;
}

.max-width-3200px {
  max-width: 3200px;
}

.height-3220px {
  height: 3220px;
}

.min-height-3220px {
  min-height: 3220px;
}

.max-height-3220px {
  max-height: 3220px;
}

.width-3220px {
  width: 3220px;
}

.min-width-3220px {
  min-width: 3220px;
}

.max-width-3220px {
  max-width: 3220px;
}

.height-3240px {
  height: 3240px;
}

.min-height-3240px {
  min-height: 3240px;
}

.max-height-3240px {
  max-height: 3240px;
}

.width-3240px {
  width: 3240px;
}

.min-width-3240px {
  min-width: 3240px;
}

.max-width-3240px {
  max-width: 3240px;
}

.height-3260px {
  height: 3260px;
}

.min-height-3260px {
  min-height: 3260px;
}

.max-height-3260px {
  max-height: 3260px;
}

.width-3260px {
  width: 3260px;
}

.min-width-3260px {
  min-width: 3260px;
}

.max-width-3260px {
  max-width: 3260px;
}

.height-3280px {
  height: 3280px;
}

.min-height-3280px {
  min-height: 3280px;
}

.max-height-3280px {
  max-height: 3280px;
}

.width-3280px {
  width: 3280px;
}

.min-width-3280px {
  min-width: 3280px;
}

.max-width-3280px {
  max-width: 3280px;
}

.height-3300px {
  height: 3300px;
}

.min-height-3300px {
  min-height: 3300px;
}

.max-height-3300px {
  max-height: 3300px;
}

.width-3300px {
  width: 3300px;
}

.min-width-3300px {
  min-width: 3300px;
}

.max-width-3300px {
  max-width: 3300px;
}

.height-3320px {
  height: 3320px;
}

.min-height-3320px {
  min-height: 3320px;
}

.max-height-3320px {
  max-height: 3320px;
}

.width-3320px {
  width: 3320px;
}

.min-width-3320px {
  min-width: 3320px;
}

.max-width-3320px {
  max-width: 3320px;
}

.height-3340px {
  height: 3340px;
}

.min-height-3340px {
  min-height: 3340px;
}

.max-height-3340px {
  max-height: 3340px;
}

.width-3340px {
  width: 3340px;
}

.min-width-3340px {
  min-width: 3340px;
}

.max-width-3340px {
  max-width: 3340px;
}

.height-3360px {
  height: 3360px;
}

.min-height-3360px {
  min-height: 3360px;
}

.max-height-3360px {
  max-height: 3360px;
}

.width-3360px {
  width: 3360px;
}

.min-width-3360px {
  min-width: 3360px;
}

.max-width-3360px {
  max-width: 3360px;
}

.height-3380px {
  height: 3380px;
}

.min-height-3380px {
  min-height: 3380px;
}

.max-height-3380px {
  max-height: 3380px;
}

.width-3380px {
  width: 3380px;
}

.min-width-3380px {
  min-width: 3380px;
}

.max-width-3380px {
  max-width: 3380px;
}

.height-3400px {
  height: 3400px;
}

.min-height-3400px {
  min-height: 3400px;
}

.max-height-3400px {
  max-height: 3400px;
}

.width-3400px {
  width: 3400px;
}

.min-width-3400px {
  min-width: 3400px;
}

.max-width-3400px {
  max-width: 3400px;
}

.height-3420px {
  height: 3420px;
}

.min-height-3420px {
  min-height: 3420px;
}

.max-height-3420px {
  max-height: 3420px;
}

.width-3420px {
  width: 3420px;
}

.min-width-3420px {
  min-width: 3420px;
}

.max-width-3420px {
  max-width: 3420px;
}

.height-3440px {
  height: 3440px;
}

.min-height-3440px {
  min-height: 3440px;
}

.max-height-3440px {
  max-height: 3440px;
}

.width-3440px {
  width: 3440px;
}

.min-width-3440px {
  min-width: 3440px;
}

.max-width-3440px {
  max-width: 3440px;
}

.height-3460px {
  height: 3460px;
}

.min-height-3460px {
  min-height: 3460px;
}

.max-height-3460px {
  max-height: 3460px;
}

.width-3460px {
  width: 3460px;
}

.min-width-3460px {
  min-width: 3460px;
}

.max-width-3460px {
  max-width: 3460px;
}

.height-3480px {
  height: 3480px;
}

.min-height-3480px {
  min-height: 3480px;
}

.max-height-3480px {
  max-height: 3480px;
}

.width-3480px {
  width: 3480px;
}

.min-width-3480px {
  min-width: 3480px;
}

.max-width-3480px {
  max-width: 3480px;
}

.height-3500px {
  height: 3500px;
}

.min-height-3500px {
  min-height: 3500px;
}

.max-height-3500px {
  max-height: 3500px;
}

.width-3500px {
  width: 3500px;
}

.min-width-3500px {
  min-width: 3500px;
}

.max-width-3500px {
  max-width: 3500px;
}

.height-3520px {
  height: 3520px;
}

.min-height-3520px {
  min-height: 3520px;
}

.max-height-3520px {
  max-height: 3520px;
}

.width-3520px {
  width: 3520px;
}

.min-width-3520px {
  min-width: 3520px;
}

.max-width-3520px {
  max-width: 3520px;
}

.height-3540px {
  height: 3540px;
}

.min-height-3540px {
  min-height: 3540px;
}

.max-height-3540px {
  max-height: 3540px;
}

.width-3540px {
  width: 3540px;
}

.min-width-3540px {
  min-width: 3540px;
}

.max-width-3540px {
  max-width: 3540px;
}

.height-3560px {
  height: 3560px;
}

.min-height-3560px {
  min-height: 3560px;
}

.max-height-3560px {
  max-height: 3560px;
}

.width-3560px {
  width: 3560px;
}

.min-width-3560px {
  min-width: 3560px;
}

.max-width-3560px {
  max-width: 3560px;
}

.height-3580px {
  height: 3580px;
}

.min-height-3580px {
  min-height: 3580px;
}

.max-height-3580px {
  max-height: 3580px;
}

.width-3580px {
  width: 3580px;
}

.min-width-3580px {
  min-width: 3580px;
}

.max-width-3580px {
  max-width: 3580px;
}

.height-3600px {
  height: 3600px;
}

.min-height-3600px {
  min-height: 3600px;
}

.max-height-3600px {
  max-height: 3600px;
}

.width-3600px {
  width: 3600px;
}

.min-width-3600px {
  min-width: 3600px;
}

.max-width-3600px {
  max-width: 3600px;
}

.height-3620px {
  height: 3620px;
}

.min-height-3620px {
  min-height: 3620px;
}

.max-height-3620px {
  max-height: 3620px;
}

.width-3620px {
  width: 3620px;
}

.min-width-3620px {
  min-width: 3620px;
}

.max-width-3620px {
  max-width: 3620px;
}

.height-3640px {
  height: 3640px;
}

.min-height-3640px {
  min-height: 3640px;
}

.max-height-3640px {
  max-height: 3640px;
}

.width-3640px {
  width: 3640px;
}

.min-width-3640px {
  min-width: 3640px;
}

.max-width-3640px {
  max-width: 3640px;
}

.height-3660px {
  height: 3660px;
}

.min-height-3660px {
  min-height: 3660px;
}

.max-height-3660px {
  max-height: 3660px;
}

.width-3660px {
  width: 3660px;
}

.min-width-3660px {
  min-width: 3660px;
}

.max-width-3660px {
  max-width: 3660px;
}

.height-3680px {
  height: 3680px;
}

.min-height-3680px {
  min-height: 3680px;
}

.max-height-3680px {
  max-height: 3680px;
}

.width-3680px {
  width: 3680px;
}

.min-width-3680px {
  min-width: 3680px;
}

.max-width-3680px {
  max-width: 3680px;
}

.height-3700px {
  height: 3700px;
}

.min-height-3700px {
  min-height: 3700px;
}

.max-height-3700px {
  max-height: 3700px;
}

.width-3700px {
  width: 3700px;
}

.min-width-3700px {
  min-width: 3700px;
}

.max-width-3700px {
  max-width: 3700px;
}

.height-3720px {
  height: 3720px;
}

.min-height-3720px {
  min-height: 3720px;
}

.max-height-3720px {
  max-height: 3720px;
}

.width-3720px {
  width: 3720px;
}

.min-width-3720px {
  min-width: 3720px;
}

.max-width-3720px {
  max-width: 3720px;
}

.height-3740px {
  height: 3740px;
}

.min-height-3740px {
  min-height: 3740px;
}

.max-height-3740px {
  max-height: 3740px;
}

.width-3740px {
  width: 3740px;
}

.min-width-3740px {
  min-width: 3740px;
}

.max-width-3740px {
  max-width: 3740px;
}

.height-3760px {
  height: 3760px;
}

.min-height-3760px {
  min-height: 3760px;
}

.max-height-3760px {
  max-height: 3760px;
}

.width-3760px {
  width: 3760px;
}

.min-width-3760px {
  min-width: 3760px;
}

.max-width-3760px {
  max-width: 3760px;
}

.height-3780px {
  height: 3780px;
}

.min-height-3780px {
  min-height: 3780px;
}

.max-height-3780px {
  max-height: 3780px;
}

.width-3780px {
  width: 3780px;
}

.min-width-3780px {
  min-width: 3780px;
}

.max-width-3780px {
  max-width: 3780px;
}

.height-3800px {
  height: 3800px;
}

.min-height-3800px {
  min-height: 3800px;
}

.max-height-3800px {
  max-height: 3800px;
}

.width-3800px {
  width: 3800px;
}

.min-width-3800px {
  min-width: 3800px;
}

.max-width-3800px {
  max-width: 3800px;
}

.height-3820px {
  height: 3820px;
}

.min-height-3820px {
  min-height: 3820px;
}

.max-height-3820px {
  max-height: 3820px;
}

.width-3820px {
  width: 3820px;
}

.min-width-3820px {
  min-width: 3820px;
}

.max-width-3820px {
  max-width: 3820px;
}

.height-3840px {
  height: 3840px;
}

.min-height-3840px {
  min-height: 3840px;
}

.max-height-3840px {
  max-height: 3840px;
}

.width-3840px {
  width: 3840px;
}

.min-width-3840px {
  min-width: 3840px;
}

.max-width-3840px {
  max-width: 3840px;
}

.height-3860px {
  height: 3860px;
}

.min-height-3860px {
  min-height: 3860px;
}

.max-height-3860px {
  max-height: 3860px;
}

.width-3860px {
  width: 3860px;
}

.min-width-3860px {
  min-width: 3860px;
}

.max-width-3860px {
  max-width: 3860px;
}

.height-3880px {
  height: 3880px;
}

.min-height-3880px {
  min-height: 3880px;
}

.max-height-3880px {
  max-height: 3880px;
}

.width-3880px {
  width: 3880px;
}

.min-width-3880px {
  min-width: 3880px;
}

.max-width-3880px {
  max-width: 3880px;
}

.height-3900px {
  height: 3900px;
}

.min-height-3900px {
  min-height: 3900px;
}

.max-height-3900px {
  max-height: 3900px;
}

.width-3900px {
  width: 3900px;
}

.min-width-3900px {
  min-width: 3900px;
}

.max-width-3900px {
  max-width: 3900px;
}

.height-3920px {
  height: 3920px;
}

.min-height-3920px {
  min-height: 3920px;
}

.max-height-3920px {
  max-height: 3920px;
}

.width-3920px {
  width: 3920px;
}

.min-width-3920px {
  min-width: 3920px;
}

.max-width-3920px {
  max-width: 3920px;
}

.height-3940px {
  height: 3940px;
}

.min-height-3940px {
  min-height: 3940px;
}

.max-height-3940px {
  max-height: 3940px;
}

.width-3940px {
  width: 3940px;
}

.min-width-3940px {
  min-width: 3940px;
}

.max-width-3940px {
  max-width: 3940px;
}

.height-3960px {
  height: 3960px;
}

.min-height-3960px {
  min-height: 3960px;
}

.max-height-3960px {
  max-height: 3960px;
}

.width-3960px {
  width: 3960px;
}

.min-width-3960px {
  min-width: 3960px;
}

.max-width-3960px {
  max-width: 3960px;
}

.height-3980px {
  height: 3980px;
}

.min-height-3980px {
  min-height: 3980px;
}

.max-height-3980px {
  max-height: 3980px;
}

.width-3980px {
  width: 3980px;
}

.min-width-3980px {
  min-width: 3980px;
}

.max-width-3980px {
  max-width: 3980px;
}

.height-4000px {
  height: 4000px;
}

.min-height-4000px {
  min-height: 4000px;
}

.max-height-4000px {
  max-height: 4000px;
}

.width-4000px {
  width: 4000px;
}

.min-width-4000px {
  min-width: 4000px;
}

.max-width-4000px {
  max-width: 4000px;
}

.text-25\% {
  font-size: 25%;
}

.text-30\% {
  font-size: 30%;
}

.text-35\% {
  font-size: 35%;
}

.text-40\% {
  font-size: 40%;
}

.text-45\% {
  font-size: 45%;
}

.text-50\% {
  font-size: 50%;
}

.text-55\% {
  font-size: 55%;
}

.text-60\% {
  font-size: 60%;
}

.text-65\% {
  font-size: 65%;
}

.text-70\% {
  font-size: 70%;
}

.text-75\% {
  font-size: 75%;
}

.text-80\% {
  font-size: 80%;
}

.text-85\% {
  font-size: 85%;
}

.text-90\% {
  font-size: 90%;
}

.text-95\% {
  font-size: 95%;
}

.text-100\% {
  font-size: 100%;
}

.text-105\% {
  font-size: 105%;
}

.text-110\% {
  font-size: 110%;
}

.text-115\% {
  font-size: 115%;
}

.text-120\% {
  font-size: 120%;
}

.text-125\% {
  font-size: 125%;
}

.text-130\% {
  font-size: 130%;
}

.text-135\% {
  font-size: 135%;
}

.text-140\% {
  font-size: 140%;
}

.text-145\% {
  font-size: 145%;
}

.text-150\% {
  font-size: 150%;
}

.text-155\% {
  font-size: 155%;
}

.text-160\% {
  font-size: 160%;
}

.text-165\% {
  font-size: 165%;
}

.text-170\% {
  font-size: 170%;
}

.text-175\% {
  font-size: 175%;
}

.text-180\% {
  font-size: 180%;
}

.text-185\% {
  font-size: 185%;
}

.text-190\% {
  font-size: 190%;
}

.text-195\% {
  font-size: 195%;
}

.text-200\% {
  font-size: 200%;
}

.text-offset-5\% {
  width: calc(100% + 5%);
}

.text-offset-10\% {
  width: calc(100% + 10%);
}

.text-offset-15\% {
  width: calc(100% + 15%);
}

.text-offset-20\% {
  width: calc(100% + 20%);
}

.text-offset-25\% {
  width: calc(100% + 25%);
}

.text-offset-30\% {
  width: calc(100% + 30%);
}

.text-offset-35\% {
  width: calc(100% + 35%);
}

.text-offset-40\% {
  width: calc(100% + 40%);
}

.text-offset-45\% {
  width: calc(100% + 45%);
}

.text-offset-50\% {
  width: calc(100% + 50%);
}

.text-offset-55\% {
  width: calc(100% + 55%);
}

.text-offset-60\% {
  width: calc(100% + 60%);
}

.text-offset-65\% {
  width: calc(100% + 65%);
}

.text-offset-70\% {
  width: calc(100% + 70%);
}

.text-offset-75\% {
  width: calc(100% + 75%);
}

.text-offset-80\% {
  width: calc(100% + 80%);
}

.text-offset-85\% {
  width: calc(100% + 85%);
}

.text-offset-90\% {
  width: calc(100% + 90%);
}

.text-offset-95\% {
  width: calc(100% + 95%);
}

.text-offset-100\% {
  width: calc(100% + 100%);
}

.border-5 {
  border-width: 5px;
}

.border-6 {
  border-width: 6px;
}

.border-7 {
  border-width: 7px;
}

.border-8 {
  border-width: 8px;
}

.border-9 {
  border-width: 9px;
}

.border-10 {
  border-width: 10px;
}

.border-11 {
  border-width: 11px;
}

.border-12 {
  border-width: 12px;
}

.border-13 {
  border-width: 13px;
}

.border-14 {
  border-width: 14px;
}

.border-15 {
  border-width: 15px;
}

.border-16 {
  border-width: 16px;
}

.border-17 {
  border-width: 17px;
}

.border-18 {
  border-width: 18px;
}

.border-19 {
  border-width: 19px;
}

.border-20 {
  border-width: 20px;
}

.width-full {
  width: 100%;
}

@media (min-width: 32rem) {
  .component-padding-0\@xs {
    --component-padding: 0px;
  }

  .component-padding-xxxxs\@xs {
    --component-padding: var(--space-xxxxs);
  }

  .component-padding-xxxs\@xs {
    --component-padding: var(--space-xxxs);
  }

  .component-padding-xxs\@xs {
    --component-padding: var(--space-xxs);
  }

  .component-padding-xs\@xs {
    --component-padding: var(--space-xs);
  }

  .component-padding-sm\@xs {
    --component-padding: var(--space-sm);
  }

  .component-padding-md\@xs {
    --component-padding: var(--space-md);
  }

  .component-padding-lg\@xs {
    --component-padding: var(--space-lg);
  }

  .component-padding-xl\@xs {
    --component-padding: var(--space-xl);
  }

  .component-padding-xxl\@xs {
    --component-padding: var(--space-xxl);
  }

  .component-padding-xxxl\@xs {
    --component-padding: var(--space-xxxl);
  }

  .component-padding-xxxxl\@xs {
    --component-padding: var(--space-xxxxl);
  }

  .justify-around\@xs {
    justify-content: space-around;
  }

  .height-0px\@xs {
    height: 0px;
  }

  .min-height-0px\@xs {
    min-height: 0px;
  }

  .max-height-0px\@xs {
    max-height: 0px;
  }

  .width-0px\@xs {
    width: 0px;
  }

  .min-width-0px\@xs {
    min-width: 0px;
  }

  .max-width-0px\@xs {
    max-width: 0px;
  }

  .height-20px\@xs {
    height: 20px;
  }

  .min-height-20px\@xs {
    min-height: 20px;
  }

  .max-height-20px\@xs {
    max-height: 20px;
  }

  .width-20px\@xs {
    width: 20px;
  }

  .min-width-20px\@xs {
    min-width: 20px;
  }

  .max-width-20px\@xs {
    max-width: 20px;
  }

  .height-40px\@xs {
    height: 40px;
  }

  .min-height-40px\@xs {
    min-height: 40px;
  }

  .max-height-40px\@xs {
    max-height: 40px;
  }

  .width-40px\@xs {
    width: 40px;
  }

  .min-width-40px\@xs {
    min-width: 40px;
  }

  .max-width-40px\@xs {
    max-width: 40px;
  }

  .height-60px\@xs {
    height: 60px;
  }

  .min-height-60px\@xs {
    min-height: 60px;
  }

  .max-height-60px\@xs {
    max-height: 60px;
  }

  .width-60px\@xs {
    width: 60px;
  }

  .min-width-60px\@xs {
    min-width: 60px;
  }

  .max-width-60px\@xs {
    max-width: 60px;
  }

  .height-80px\@xs {
    height: 80px;
  }

  .min-height-80px\@xs {
    min-height: 80px;
  }

  .max-height-80px\@xs {
    max-height: 80px;
  }

  .width-80px\@xs {
    width: 80px;
  }

  .min-width-80px\@xs {
    min-width: 80px;
  }

  .max-width-80px\@xs {
    max-width: 80px;
  }

  .height-100px\@xs {
    height: 100px;
  }

  .min-height-100px\@xs {
    min-height: 100px;
  }

  .max-height-100px\@xs {
    max-height: 100px;
  }

  .width-100px\@xs {
    width: 100px;
  }

  .min-width-100px\@xs {
    min-width: 100px;
  }

  .max-width-100px\@xs {
    max-width: 100px;
  }

  .height-120px\@xs {
    height: 120px;
  }

  .min-height-120px\@xs {
    min-height: 120px;
  }

  .max-height-120px\@xs {
    max-height: 120px;
  }

  .width-120px\@xs {
    width: 120px;
  }

  .min-width-120px\@xs {
    min-width: 120px;
  }

  .max-width-120px\@xs {
    max-width: 120px;
  }

  .height-140px\@xs {
    height: 140px;
  }

  .min-height-140px\@xs {
    min-height: 140px;
  }

  .max-height-140px\@xs {
    max-height: 140px;
  }

  .width-140px\@xs {
    width: 140px;
  }

  .min-width-140px\@xs {
    min-width: 140px;
  }

  .max-width-140px\@xs {
    max-width: 140px;
  }

  .height-160px\@xs {
    height: 160px;
  }

  .min-height-160px\@xs {
    min-height: 160px;
  }

  .max-height-160px\@xs {
    max-height: 160px;
  }

  .width-160px\@xs {
    width: 160px;
  }

  .min-width-160px\@xs {
    min-width: 160px;
  }

  .max-width-160px\@xs {
    max-width: 160px;
  }

  .height-180px\@xs {
    height: 180px;
  }

  .min-height-180px\@xs {
    min-height: 180px;
  }

  .max-height-180px\@xs {
    max-height: 180px;
  }

  .width-180px\@xs {
    width: 180px;
  }

  .min-width-180px\@xs {
    min-width: 180px;
  }

  .max-width-180px\@xs {
    max-width: 180px;
  }

  .height-200px\@xs {
    height: 200px;
  }

  .min-height-200px\@xs {
    min-height: 200px;
  }

  .max-height-200px\@xs {
    max-height: 200px;
  }

  .width-200px\@xs {
    width: 200px;
  }

  .min-width-200px\@xs {
    min-width: 200px;
  }

  .max-width-200px\@xs {
    max-width: 200px;
  }

  .height-220px\@xs {
    height: 220px;
  }

  .min-height-220px\@xs {
    min-height: 220px;
  }

  .max-height-220px\@xs {
    max-height: 220px;
  }

  .width-220px\@xs {
    width: 220px;
  }

  .min-width-220px\@xs {
    min-width: 220px;
  }

  .max-width-220px\@xs {
    max-width: 220px;
  }

  .height-240px\@xs {
    height: 240px;
  }

  .min-height-240px\@xs {
    min-height: 240px;
  }

  .max-height-240px\@xs {
    max-height: 240px;
  }

  .width-240px\@xs {
    width: 240px;
  }

  .min-width-240px\@xs {
    min-width: 240px;
  }

  .max-width-240px\@xs {
    max-width: 240px;
  }

  .height-260px\@xs {
    height: 260px;
  }

  .min-height-260px\@xs {
    min-height: 260px;
  }

  .max-height-260px\@xs {
    max-height: 260px;
  }

  .width-260px\@xs {
    width: 260px;
  }

  .min-width-260px\@xs {
    min-width: 260px;
  }

  .max-width-260px\@xs {
    max-width: 260px;
  }

  .height-280px\@xs {
    height: 280px;
  }

  .min-height-280px\@xs {
    min-height: 280px;
  }

  .max-height-280px\@xs {
    max-height: 280px;
  }

  .width-280px\@xs {
    width: 280px;
  }

  .min-width-280px\@xs {
    min-width: 280px;
  }

  .max-width-280px\@xs {
    max-width: 280px;
  }

  .height-300px\@xs {
    height: 300px;
  }

  .min-height-300px\@xs {
    min-height: 300px;
  }

  .max-height-300px\@xs {
    max-height: 300px;
  }

  .width-300px\@xs {
    width: 300px;
  }

  .min-width-300px\@xs {
    min-width: 300px;
  }

  .max-width-300px\@xs {
    max-width: 300px;
  }

  .height-320px\@xs {
    height: 320px;
  }

  .min-height-320px\@xs {
    min-height: 320px;
  }

  .max-height-320px\@xs {
    max-height: 320px;
  }

  .width-320px\@xs {
    width: 320px;
  }

  .min-width-320px\@xs {
    min-width: 320px;
  }

  .max-width-320px\@xs {
    max-width: 320px;
  }

  .height-340px\@xs {
    height: 340px;
  }

  .min-height-340px\@xs {
    min-height: 340px;
  }

  .max-height-340px\@xs {
    max-height: 340px;
  }

  .width-340px\@xs {
    width: 340px;
  }

  .min-width-340px\@xs {
    min-width: 340px;
  }

  .max-width-340px\@xs {
    max-width: 340px;
  }

  .height-360px\@xs {
    height: 360px;
  }

  .min-height-360px\@xs {
    min-height: 360px;
  }

  .max-height-360px\@xs {
    max-height: 360px;
  }

  .width-360px\@xs {
    width: 360px;
  }

  .min-width-360px\@xs {
    min-width: 360px;
  }

  .max-width-360px\@xs {
    max-width: 360px;
  }

  .height-380px\@xs {
    height: 380px;
  }

  .min-height-380px\@xs {
    min-height: 380px;
  }

  .max-height-380px\@xs {
    max-height: 380px;
  }

  .width-380px\@xs {
    width: 380px;
  }

  .min-width-380px\@xs {
    min-width: 380px;
  }

  .max-width-380px\@xs {
    max-width: 380px;
  }

  .height-400px\@xs {
    height: 400px;
  }

  .min-height-400px\@xs {
    min-height: 400px;
  }

  .max-height-400px\@xs {
    max-height: 400px;
  }

  .width-400px\@xs {
    width: 400px;
  }

  .min-width-400px\@xs {
    min-width: 400px;
  }

  .max-width-400px\@xs {
    max-width: 400px;
  }

  .height-420px\@xs {
    height: 420px;
  }

  .min-height-420px\@xs {
    min-height: 420px;
  }

  .max-height-420px\@xs {
    max-height: 420px;
  }

  .width-420px\@xs {
    width: 420px;
  }

  .min-width-420px\@xs {
    min-width: 420px;
  }

  .max-width-420px\@xs {
    max-width: 420px;
  }

  .height-440px\@xs {
    height: 440px;
  }

  .min-height-440px\@xs {
    min-height: 440px;
  }

  .max-height-440px\@xs {
    max-height: 440px;
  }

  .width-440px\@xs {
    width: 440px;
  }

  .min-width-440px\@xs {
    min-width: 440px;
  }

  .max-width-440px\@xs {
    max-width: 440px;
  }

  .height-460px\@xs {
    height: 460px;
  }

  .min-height-460px\@xs {
    min-height: 460px;
  }

  .max-height-460px\@xs {
    max-height: 460px;
  }

  .width-460px\@xs {
    width: 460px;
  }

  .min-width-460px\@xs {
    min-width: 460px;
  }

  .max-width-460px\@xs {
    max-width: 460px;
  }

  .height-480px\@xs {
    height: 480px;
  }

  .min-height-480px\@xs {
    min-height: 480px;
  }

  .max-height-480px\@xs {
    max-height: 480px;
  }

  .width-480px\@xs {
    width: 480px;
  }

  .min-width-480px\@xs {
    min-width: 480px;
  }

  .max-width-480px\@xs {
    max-width: 480px;
  }

  .height-500px\@xs {
    height: 500px;
  }

  .min-height-500px\@xs {
    min-height: 500px;
  }

  .max-height-500px\@xs {
    max-height: 500px;
  }

  .width-500px\@xs {
    width: 500px;
  }

  .min-width-500px\@xs {
    min-width: 500px;
  }

  .max-width-500px\@xs {
    max-width: 500px;
  }

  .height-520px\@xs {
    height: 520px;
  }

  .min-height-520px\@xs {
    min-height: 520px;
  }

  .max-height-520px\@xs {
    max-height: 520px;
  }

  .width-520px\@xs {
    width: 520px;
  }

  .min-width-520px\@xs {
    min-width: 520px;
  }

  .max-width-520px\@xs {
    max-width: 520px;
  }

  .height-540px\@xs {
    height: 540px;
  }

  .min-height-540px\@xs {
    min-height: 540px;
  }

  .max-height-540px\@xs {
    max-height: 540px;
  }

  .width-540px\@xs {
    width: 540px;
  }

  .min-width-540px\@xs {
    min-width: 540px;
  }

  .max-width-540px\@xs {
    max-width: 540px;
  }

  .height-560px\@xs {
    height: 560px;
  }

  .min-height-560px\@xs {
    min-height: 560px;
  }

  .max-height-560px\@xs {
    max-height: 560px;
  }

  .width-560px\@xs {
    width: 560px;
  }

  .min-width-560px\@xs {
    min-width: 560px;
  }

  .max-width-560px\@xs {
    max-width: 560px;
  }

  .height-580px\@xs {
    height: 580px;
  }

  .min-height-580px\@xs {
    min-height: 580px;
  }

  .max-height-580px\@xs {
    max-height: 580px;
  }

  .width-580px\@xs {
    width: 580px;
  }

  .min-width-580px\@xs {
    min-width: 580px;
  }

  .max-width-580px\@xs {
    max-width: 580px;
  }

  .height-600px\@xs {
    height: 600px;
  }

  .min-height-600px\@xs {
    min-height: 600px;
  }

  .max-height-600px\@xs {
    max-height: 600px;
  }

  .width-600px\@xs {
    width: 600px;
  }

  .min-width-600px\@xs {
    min-width: 600px;
  }

  .max-width-600px\@xs {
    max-width: 600px;
  }

  .height-620px\@xs {
    height: 620px;
  }

  .min-height-620px\@xs {
    min-height: 620px;
  }

  .max-height-620px\@xs {
    max-height: 620px;
  }

  .width-620px\@xs {
    width: 620px;
  }

  .min-width-620px\@xs {
    min-width: 620px;
  }

  .max-width-620px\@xs {
    max-width: 620px;
  }

  .height-640px\@xs {
    height: 640px;
  }

  .min-height-640px\@xs {
    min-height: 640px;
  }

  .max-height-640px\@xs {
    max-height: 640px;
  }

  .width-640px\@xs {
    width: 640px;
  }

  .min-width-640px\@xs {
    min-width: 640px;
  }

  .max-width-640px\@xs {
    max-width: 640px;
  }

  .height-660px\@xs {
    height: 660px;
  }

  .min-height-660px\@xs {
    min-height: 660px;
  }

  .max-height-660px\@xs {
    max-height: 660px;
  }

  .width-660px\@xs {
    width: 660px;
  }

  .min-width-660px\@xs {
    min-width: 660px;
  }

  .max-width-660px\@xs {
    max-width: 660px;
  }

  .height-680px\@xs {
    height: 680px;
  }

  .min-height-680px\@xs {
    min-height: 680px;
  }

  .max-height-680px\@xs {
    max-height: 680px;
  }

  .width-680px\@xs {
    width: 680px;
  }

  .min-width-680px\@xs {
    min-width: 680px;
  }

  .max-width-680px\@xs {
    max-width: 680px;
  }

  .height-700px\@xs {
    height: 700px;
  }

  .min-height-700px\@xs {
    min-height: 700px;
  }

  .max-height-700px\@xs {
    max-height: 700px;
  }

  .width-700px\@xs {
    width: 700px;
  }

  .min-width-700px\@xs {
    min-width: 700px;
  }

  .max-width-700px\@xs {
    max-width: 700px;
  }

  .height-720px\@xs {
    height: 720px;
  }

  .min-height-720px\@xs {
    min-height: 720px;
  }

  .max-height-720px\@xs {
    max-height: 720px;
  }

  .width-720px\@xs {
    width: 720px;
  }

  .min-width-720px\@xs {
    min-width: 720px;
  }

  .max-width-720px\@xs {
    max-width: 720px;
  }

  .height-740px\@xs {
    height: 740px;
  }

  .min-height-740px\@xs {
    min-height: 740px;
  }

  .max-height-740px\@xs {
    max-height: 740px;
  }

  .width-740px\@xs {
    width: 740px;
  }

  .min-width-740px\@xs {
    min-width: 740px;
  }

  .max-width-740px\@xs {
    max-width: 740px;
  }

  .height-760px\@xs {
    height: 760px;
  }

  .min-height-760px\@xs {
    min-height: 760px;
  }

  .max-height-760px\@xs {
    max-height: 760px;
  }

  .width-760px\@xs {
    width: 760px;
  }

  .min-width-760px\@xs {
    min-width: 760px;
  }

  .max-width-760px\@xs {
    max-width: 760px;
  }

  .height-780px\@xs {
    height: 780px;
  }

  .min-height-780px\@xs {
    min-height: 780px;
  }

  .max-height-780px\@xs {
    max-height: 780px;
  }

  .width-780px\@xs {
    width: 780px;
  }

  .min-width-780px\@xs {
    min-width: 780px;
  }

  .max-width-780px\@xs {
    max-width: 780px;
  }

  .height-800px\@xs {
    height: 800px;
  }

  .min-height-800px\@xs {
    min-height: 800px;
  }

  .max-height-800px\@xs {
    max-height: 800px;
  }

  .width-800px\@xs {
    width: 800px;
  }

  .min-width-800px\@xs {
    min-width: 800px;
  }

  .max-width-800px\@xs {
    max-width: 800px;
  }

  .height-820px\@xs {
    height: 820px;
  }

  .min-height-820px\@xs {
    min-height: 820px;
  }

  .max-height-820px\@xs {
    max-height: 820px;
  }

  .width-820px\@xs {
    width: 820px;
  }

  .min-width-820px\@xs {
    min-width: 820px;
  }

  .max-width-820px\@xs {
    max-width: 820px;
  }

  .height-840px\@xs {
    height: 840px;
  }

  .min-height-840px\@xs {
    min-height: 840px;
  }

  .max-height-840px\@xs {
    max-height: 840px;
  }

  .width-840px\@xs {
    width: 840px;
  }

  .min-width-840px\@xs {
    min-width: 840px;
  }

  .max-width-840px\@xs {
    max-width: 840px;
  }

  .height-860px\@xs {
    height: 860px;
  }

  .min-height-860px\@xs {
    min-height: 860px;
  }

  .max-height-860px\@xs {
    max-height: 860px;
  }

  .width-860px\@xs {
    width: 860px;
  }

  .min-width-860px\@xs {
    min-width: 860px;
  }

  .max-width-860px\@xs {
    max-width: 860px;
  }

  .height-880px\@xs {
    height: 880px;
  }

  .min-height-880px\@xs {
    min-height: 880px;
  }

  .max-height-880px\@xs {
    max-height: 880px;
  }

  .width-880px\@xs {
    width: 880px;
  }

  .min-width-880px\@xs {
    min-width: 880px;
  }

  .max-width-880px\@xs {
    max-width: 880px;
  }

  .height-900px\@xs {
    height: 900px;
  }

  .min-height-900px\@xs {
    min-height: 900px;
  }

  .max-height-900px\@xs {
    max-height: 900px;
  }

  .width-900px\@xs {
    width: 900px;
  }

  .min-width-900px\@xs {
    min-width: 900px;
  }

  .max-width-900px\@xs {
    max-width: 900px;
  }

  .height-920px\@xs {
    height: 920px;
  }

  .min-height-920px\@xs {
    min-height: 920px;
  }

  .max-height-920px\@xs {
    max-height: 920px;
  }

  .width-920px\@xs {
    width: 920px;
  }

  .min-width-920px\@xs {
    min-width: 920px;
  }

  .max-width-920px\@xs {
    max-width: 920px;
  }

  .height-940px\@xs {
    height: 940px;
  }

  .min-height-940px\@xs {
    min-height: 940px;
  }

  .max-height-940px\@xs {
    max-height: 940px;
  }

  .width-940px\@xs {
    width: 940px;
  }

  .min-width-940px\@xs {
    min-width: 940px;
  }

  .max-width-940px\@xs {
    max-width: 940px;
  }

  .height-960px\@xs {
    height: 960px;
  }

  .min-height-960px\@xs {
    min-height: 960px;
  }

  .max-height-960px\@xs {
    max-height: 960px;
  }

  .width-960px\@xs {
    width: 960px;
  }

  .min-width-960px\@xs {
    min-width: 960px;
  }

  .max-width-960px\@xs {
    max-width: 960px;
  }

  .height-980px\@xs {
    height: 980px;
  }

  .min-height-980px\@xs {
    min-height: 980px;
  }

  .max-height-980px\@xs {
    max-height: 980px;
  }

  .width-980px\@xs {
    width: 980px;
  }

  .min-width-980px\@xs {
    min-width: 980px;
  }

  .max-width-980px\@xs {
    max-width: 980px;
  }

  .height-1000px\@xs {
    height: 1000px;
  }

  .min-height-1000px\@xs {
    min-height: 1000px;
  }

  .max-height-1000px\@xs {
    max-height: 1000px;
  }

  .width-1000px\@xs {
    width: 1000px;
  }

  .min-width-1000px\@xs {
    min-width: 1000px;
  }

  .max-width-1000px\@xs {
    max-width: 1000px;
  }

  .height-1020px\@xs {
    height: 1020px;
  }

  .min-height-1020px\@xs {
    min-height: 1020px;
  }

  .max-height-1020px\@xs {
    max-height: 1020px;
  }

  .width-1020px\@xs {
    width: 1020px;
  }

  .min-width-1020px\@xs {
    min-width: 1020px;
  }

  .max-width-1020px\@xs {
    max-width: 1020px;
  }

  .height-1040px\@xs {
    height: 1040px;
  }

  .min-height-1040px\@xs {
    min-height: 1040px;
  }

  .max-height-1040px\@xs {
    max-height: 1040px;
  }

  .width-1040px\@xs {
    width: 1040px;
  }

  .min-width-1040px\@xs {
    min-width: 1040px;
  }

  .max-width-1040px\@xs {
    max-width: 1040px;
  }

  .height-1060px\@xs {
    height: 1060px;
  }

  .min-height-1060px\@xs {
    min-height: 1060px;
  }

  .max-height-1060px\@xs {
    max-height: 1060px;
  }

  .width-1060px\@xs {
    width: 1060px;
  }

  .min-width-1060px\@xs {
    min-width: 1060px;
  }

  .max-width-1060px\@xs {
    max-width: 1060px;
  }

  .height-1080px\@xs {
    height: 1080px;
  }

  .min-height-1080px\@xs {
    min-height: 1080px;
  }

  .max-height-1080px\@xs {
    max-height: 1080px;
  }

  .width-1080px\@xs {
    width: 1080px;
  }

  .min-width-1080px\@xs {
    min-width: 1080px;
  }

  .max-width-1080px\@xs {
    max-width: 1080px;
  }

  .height-1100px\@xs {
    height: 1100px;
  }

  .min-height-1100px\@xs {
    min-height: 1100px;
  }

  .max-height-1100px\@xs {
    max-height: 1100px;
  }

  .width-1100px\@xs {
    width: 1100px;
  }

  .min-width-1100px\@xs {
    min-width: 1100px;
  }

  .max-width-1100px\@xs {
    max-width: 1100px;
  }

  .height-1120px\@xs {
    height: 1120px;
  }

  .min-height-1120px\@xs {
    min-height: 1120px;
  }

  .max-height-1120px\@xs {
    max-height: 1120px;
  }

  .width-1120px\@xs {
    width: 1120px;
  }

  .min-width-1120px\@xs {
    min-width: 1120px;
  }

  .max-width-1120px\@xs {
    max-width: 1120px;
  }

  .height-1140px\@xs {
    height: 1140px;
  }

  .min-height-1140px\@xs {
    min-height: 1140px;
  }

  .max-height-1140px\@xs {
    max-height: 1140px;
  }

  .width-1140px\@xs {
    width: 1140px;
  }

  .min-width-1140px\@xs {
    min-width: 1140px;
  }

  .max-width-1140px\@xs {
    max-width: 1140px;
  }

  .height-1160px\@xs {
    height: 1160px;
  }

  .min-height-1160px\@xs {
    min-height: 1160px;
  }

  .max-height-1160px\@xs {
    max-height: 1160px;
  }

  .width-1160px\@xs {
    width: 1160px;
  }

  .min-width-1160px\@xs {
    min-width: 1160px;
  }

  .max-width-1160px\@xs {
    max-width: 1160px;
  }

  .height-1180px\@xs {
    height: 1180px;
  }

  .min-height-1180px\@xs {
    min-height: 1180px;
  }

  .max-height-1180px\@xs {
    max-height: 1180px;
  }

  .width-1180px\@xs {
    width: 1180px;
  }

  .min-width-1180px\@xs {
    min-width: 1180px;
  }

  .max-width-1180px\@xs {
    max-width: 1180px;
  }

  .height-1200px\@xs {
    height: 1200px;
  }

  .min-height-1200px\@xs {
    min-height: 1200px;
  }

  .max-height-1200px\@xs {
    max-height: 1200px;
  }

  .width-1200px\@xs {
    width: 1200px;
  }

  .min-width-1200px\@xs {
    min-width: 1200px;
  }

  .max-width-1200px\@xs {
    max-width: 1200px;
  }

  .height-1220px\@xs {
    height: 1220px;
  }

  .min-height-1220px\@xs {
    min-height: 1220px;
  }

  .max-height-1220px\@xs {
    max-height: 1220px;
  }

  .width-1220px\@xs {
    width: 1220px;
  }

  .min-width-1220px\@xs {
    min-width: 1220px;
  }

  .max-width-1220px\@xs {
    max-width: 1220px;
  }

  .height-1240px\@xs {
    height: 1240px;
  }

  .min-height-1240px\@xs {
    min-height: 1240px;
  }

  .max-height-1240px\@xs {
    max-height: 1240px;
  }

  .width-1240px\@xs {
    width: 1240px;
  }

  .min-width-1240px\@xs {
    min-width: 1240px;
  }

  .max-width-1240px\@xs {
    max-width: 1240px;
  }

  .height-1260px\@xs {
    height: 1260px;
  }

  .min-height-1260px\@xs {
    min-height: 1260px;
  }

  .max-height-1260px\@xs {
    max-height: 1260px;
  }

  .width-1260px\@xs {
    width: 1260px;
  }

  .min-width-1260px\@xs {
    min-width: 1260px;
  }

  .max-width-1260px\@xs {
    max-width: 1260px;
  }

  .height-1280px\@xs {
    height: 1280px;
  }

  .min-height-1280px\@xs {
    min-height: 1280px;
  }

  .max-height-1280px\@xs {
    max-height: 1280px;
  }

  .width-1280px\@xs {
    width: 1280px;
  }

  .min-width-1280px\@xs {
    min-width: 1280px;
  }

  .max-width-1280px\@xs {
    max-width: 1280px;
  }

  .height-1300px\@xs {
    height: 1300px;
  }

  .min-height-1300px\@xs {
    min-height: 1300px;
  }

  .max-height-1300px\@xs {
    max-height: 1300px;
  }

  .width-1300px\@xs {
    width: 1300px;
  }

  .min-width-1300px\@xs {
    min-width: 1300px;
  }

  .max-width-1300px\@xs {
    max-width: 1300px;
  }

  .height-1320px\@xs {
    height: 1320px;
  }

  .min-height-1320px\@xs {
    min-height: 1320px;
  }

  .max-height-1320px\@xs {
    max-height: 1320px;
  }

  .width-1320px\@xs {
    width: 1320px;
  }

  .min-width-1320px\@xs {
    min-width: 1320px;
  }

  .max-width-1320px\@xs {
    max-width: 1320px;
  }

  .height-1340px\@xs {
    height: 1340px;
  }

  .min-height-1340px\@xs {
    min-height: 1340px;
  }

  .max-height-1340px\@xs {
    max-height: 1340px;
  }

  .width-1340px\@xs {
    width: 1340px;
  }

  .min-width-1340px\@xs {
    min-width: 1340px;
  }

  .max-width-1340px\@xs {
    max-width: 1340px;
  }

  .height-1360px\@xs {
    height: 1360px;
  }

  .min-height-1360px\@xs {
    min-height: 1360px;
  }

  .max-height-1360px\@xs {
    max-height: 1360px;
  }

  .width-1360px\@xs {
    width: 1360px;
  }

  .min-width-1360px\@xs {
    min-width: 1360px;
  }

  .max-width-1360px\@xs {
    max-width: 1360px;
  }

  .height-1380px\@xs {
    height: 1380px;
  }

  .min-height-1380px\@xs {
    min-height: 1380px;
  }

  .max-height-1380px\@xs {
    max-height: 1380px;
  }

  .width-1380px\@xs {
    width: 1380px;
  }

  .min-width-1380px\@xs {
    min-width: 1380px;
  }

  .max-width-1380px\@xs {
    max-width: 1380px;
  }

  .height-1400px\@xs {
    height: 1400px;
  }

  .min-height-1400px\@xs {
    min-height: 1400px;
  }

  .max-height-1400px\@xs {
    max-height: 1400px;
  }

  .width-1400px\@xs {
    width: 1400px;
  }

  .min-width-1400px\@xs {
    min-width: 1400px;
  }

  .max-width-1400px\@xs {
    max-width: 1400px;
  }

  .height-1420px\@xs {
    height: 1420px;
  }

  .min-height-1420px\@xs {
    min-height: 1420px;
  }

  .max-height-1420px\@xs {
    max-height: 1420px;
  }

  .width-1420px\@xs {
    width: 1420px;
  }

  .min-width-1420px\@xs {
    min-width: 1420px;
  }

  .max-width-1420px\@xs {
    max-width: 1420px;
  }

  .height-1440px\@xs {
    height: 1440px;
  }

  .min-height-1440px\@xs {
    min-height: 1440px;
  }

  .max-height-1440px\@xs {
    max-height: 1440px;
  }

  .width-1440px\@xs {
    width: 1440px;
  }

  .min-width-1440px\@xs {
    min-width: 1440px;
  }

  .max-width-1440px\@xs {
    max-width: 1440px;
  }

  .height-1460px\@xs {
    height: 1460px;
  }

  .min-height-1460px\@xs {
    min-height: 1460px;
  }

  .max-height-1460px\@xs {
    max-height: 1460px;
  }

  .width-1460px\@xs {
    width: 1460px;
  }

  .min-width-1460px\@xs {
    min-width: 1460px;
  }

  .max-width-1460px\@xs {
    max-width: 1460px;
  }

  .height-1480px\@xs {
    height: 1480px;
  }

  .min-height-1480px\@xs {
    min-height: 1480px;
  }

  .max-height-1480px\@xs {
    max-height: 1480px;
  }

  .width-1480px\@xs {
    width: 1480px;
  }

  .min-width-1480px\@xs {
    min-width: 1480px;
  }

  .max-width-1480px\@xs {
    max-width: 1480px;
  }

  .height-1500px\@xs {
    height: 1500px;
  }

  .min-height-1500px\@xs {
    min-height: 1500px;
  }

  .max-height-1500px\@xs {
    max-height: 1500px;
  }

  .width-1500px\@xs {
    width: 1500px;
  }

  .min-width-1500px\@xs {
    min-width: 1500px;
  }

  .max-width-1500px\@xs {
    max-width: 1500px;
  }

  .height-1520px\@xs {
    height: 1520px;
  }

  .min-height-1520px\@xs {
    min-height: 1520px;
  }

  .max-height-1520px\@xs {
    max-height: 1520px;
  }

  .width-1520px\@xs {
    width: 1520px;
  }

  .min-width-1520px\@xs {
    min-width: 1520px;
  }

  .max-width-1520px\@xs {
    max-width: 1520px;
  }

  .height-1540px\@xs {
    height: 1540px;
  }

  .min-height-1540px\@xs {
    min-height: 1540px;
  }

  .max-height-1540px\@xs {
    max-height: 1540px;
  }

  .width-1540px\@xs {
    width: 1540px;
  }

  .min-width-1540px\@xs {
    min-width: 1540px;
  }

  .max-width-1540px\@xs {
    max-width: 1540px;
  }

  .height-1560px\@xs {
    height: 1560px;
  }

  .min-height-1560px\@xs {
    min-height: 1560px;
  }

  .max-height-1560px\@xs {
    max-height: 1560px;
  }

  .width-1560px\@xs {
    width: 1560px;
  }

  .min-width-1560px\@xs {
    min-width: 1560px;
  }

  .max-width-1560px\@xs {
    max-width: 1560px;
  }

  .height-1580px\@xs {
    height: 1580px;
  }

  .min-height-1580px\@xs {
    min-height: 1580px;
  }

  .max-height-1580px\@xs {
    max-height: 1580px;
  }

  .width-1580px\@xs {
    width: 1580px;
  }

  .min-width-1580px\@xs {
    min-width: 1580px;
  }

  .max-width-1580px\@xs {
    max-width: 1580px;
  }

  .height-1600px\@xs {
    height: 1600px;
  }

  .min-height-1600px\@xs {
    min-height: 1600px;
  }

  .max-height-1600px\@xs {
    max-height: 1600px;
  }

  .width-1600px\@xs {
    width: 1600px;
  }

  .min-width-1600px\@xs {
    min-width: 1600px;
  }

  .max-width-1600px\@xs {
    max-width: 1600px;
  }

  .height-1620px\@xs {
    height: 1620px;
  }

  .min-height-1620px\@xs {
    min-height: 1620px;
  }

  .max-height-1620px\@xs {
    max-height: 1620px;
  }

  .width-1620px\@xs {
    width: 1620px;
  }

  .min-width-1620px\@xs {
    min-width: 1620px;
  }

  .max-width-1620px\@xs {
    max-width: 1620px;
  }

  .height-1640px\@xs {
    height: 1640px;
  }

  .min-height-1640px\@xs {
    min-height: 1640px;
  }

  .max-height-1640px\@xs {
    max-height: 1640px;
  }

  .width-1640px\@xs {
    width: 1640px;
  }

  .min-width-1640px\@xs {
    min-width: 1640px;
  }

  .max-width-1640px\@xs {
    max-width: 1640px;
  }

  .height-1660px\@xs {
    height: 1660px;
  }

  .min-height-1660px\@xs {
    min-height: 1660px;
  }

  .max-height-1660px\@xs {
    max-height: 1660px;
  }

  .width-1660px\@xs {
    width: 1660px;
  }

  .min-width-1660px\@xs {
    min-width: 1660px;
  }

  .max-width-1660px\@xs {
    max-width: 1660px;
  }

  .height-1680px\@xs {
    height: 1680px;
  }

  .min-height-1680px\@xs {
    min-height: 1680px;
  }

  .max-height-1680px\@xs {
    max-height: 1680px;
  }

  .width-1680px\@xs {
    width: 1680px;
  }

  .min-width-1680px\@xs {
    min-width: 1680px;
  }

  .max-width-1680px\@xs {
    max-width: 1680px;
  }

  .height-1700px\@xs {
    height: 1700px;
  }

  .min-height-1700px\@xs {
    min-height: 1700px;
  }

  .max-height-1700px\@xs {
    max-height: 1700px;
  }

  .width-1700px\@xs {
    width: 1700px;
  }

  .min-width-1700px\@xs {
    min-width: 1700px;
  }

  .max-width-1700px\@xs {
    max-width: 1700px;
  }

  .height-1720px\@xs {
    height: 1720px;
  }

  .min-height-1720px\@xs {
    min-height: 1720px;
  }

  .max-height-1720px\@xs {
    max-height: 1720px;
  }

  .width-1720px\@xs {
    width: 1720px;
  }

  .min-width-1720px\@xs {
    min-width: 1720px;
  }

  .max-width-1720px\@xs {
    max-width: 1720px;
  }

  .height-1740px\@xs {
    height: 1740px;
  }

  .min-height-1740px\@xs {
    min-height: 1740px;
  }

  .max-height-1740px\@xs {
    max-height: 1740px;
  }

  .width-1740px\@xs {
    width: 1740px;
  }

  .min-width-1740px\@xs {
    min-width: 1740px;
  }

  .max-width-1740px\@xs {
    max-width: 1740px;
  }

  .height-1760px\@xs {
    height: 1760px;
  }

  .min-height-1760px\@xs {
    min-height: 1760px;
  }

  .max-height-1760px\@xs {
    max-height: 1760px;
  }

  .width-1760px\@xs {
    width: 1760px;
  }

  .min-width-1760px\@xs {
    min-width: 1760px;
  }

  .max-width-1760px\@xs {
    max-width: 1760px;
  }

  .height-1780px\@xs {
    height: 1780px;
  }

  .min-height-1780px\@xs {
    min-height: 1780px;
  }

  .max-height-1780px\@xs {
    max-height: 1780px;
  }

  .width-1780px\@xs {
    width: 1780px;
  }

  .min-width-1780px\@xs {
    min-width: 1780px;
  }

  .max-width-1780px\@xs {
    max-width: 1780px;
  }

  .height-1800px\@xs {
    height: 1800px;
  }

  .min-height-1800px\@xs {
    min-height: 1800px;
  }

  .max-height-1800px\@xs {
    max-height: 1800px;
  }

  .width-1800px\@xs {
    width: 1800px;
  }

  .min-width-1800px\@xs {
    min-width: 1800px;
  }

  .max-width-1800px\@xs {
    max-width: 1800px;
  }

  .height-1820px\@xs {
    height: 1820px;
  }

  .min-height-1820px\@xs {
    min-height: 1820px;
  }

  .max-height-1820px\@xs {
    max-height: 1820px;
  }

  .width-1820px\@xs {
    width: 1820px;
  }

  .min-width-1820px\@xs {
    min-width: 1820px;
  }

  .max-width-1820px\@xs {
    max-width: 1820px;
  }

  .height-1840px\@xs {
    height: 1840px;
  }

  .min-height-1840px\@xs {
    min-height: 1840px;
  }

  .max-height-1840px\@xs {
    max-height: 1840px;
  }

  .width-1840px\@xs {
    width: 1840px;
  }

  .min-width-1840px\@xs {
    min-width: 1840px;
  }

  .max-width-1840px\@xs {
    max-width: 1840px;
  }

  .height-1860px\@xs {
    height: 1860px;
  }

  .min-height-1860px\@xs {
    min-height: 1860px;
  }

  .max-height-1860px\@xs {
    max-height: 1860px;
  }

  .width-1860px\@xs {
    width: 1860px;
  }

  .min-width-1860px\@xs {
    min-width: 1860px;
  }

  .max-width-1860px\@xs {
    max-width: 1860px;
  }

  .height-1880px\@xs {
    height: 1880px;
  }

  .min-height-1880px\@xs {
    min-height: 1880px;
  }

  .max-height-1880px\@xs {
    max-height: 1880px;
  }

  .width-1880px\@xs {
    width: 1880px;
  }

  .min-width-1880px\@xs {
    min-width: 1880px;
  }

  .max-width-1880px\@xs {
    max-width: 1880px;
  }

  .height-1900px\@xs {
    height: 1900px;
  }

  .min-height-1900px\@xs {
    min-height: 1900px;
  }

  .max-height-1900px\@xs {
    max-height: 1900px;
  }

  .width-1900px\@xs {
    width: 1900px;
  }

  .min-width-1900px\@xs {
    min-width: 1900px;
  }

  .max-width-1900px\@xs {
    max-width: 1900px;
  }

  .height-1920px\@xs {
    height: 1920px;
  }

  .min-height-1920px\@xs {
    min-height: 1920px;
  }

  .max-height-1920px\@xs {
    max-height: 1920px;
  }

  .width-1920px\@xs {
    width: 1920px;
  }

  .min-width-1920px\@xs {
    min-width: 1920px;
  }

  .max-width-1920px\@xs {
    max-width: 1920px;
  }

  .height-1940px\@xs {
    height: 1940px;
  }

  .min-height-1940px\@xs {
    min-height: 1940px;
  }

  .max-height-1940px\@xs {
    max-height: 1940px;
  }

  .width-1940px\@xs {
    width: 1940px;
  }

  .min-width-1940px\@xs {
    min-width: 1940px;
  }

  .max-width-1940px\@xs {
    max-width: 1940px;
  }

  .height-1960px\@xs {
    height: 1960px;
  }

  .min-height-1960px\@xs {
    min-height: 1960px;
  }

  .max-height-1960px\@xs {
    max-height: 1960px;
  }

  .width-1960px\@xs {
    width: 1960px;
  }

  .min-width-1960px\@xs {
    min-width: 1960px;
  }

  .max-width-1960px\@xs {
    max-width: 1960px;
  }

  .height-1980px\@xs {
    height: 1980px;
  }

  .min-height-1980px\@xs {
    min-height: 1980px;
  }

  .max-height-1980px\@xs {
    max-height: 1980px;
  }

  .width-1980px\@xs {
    width: 1980px;
  }

  .min-width-1980px\@xs {
    min-width: 1980px;
  }

  .max-width-1980px\@xs {
    max-width: 1980px;
  }

  .height-2000px\@xs {
    height: 2000px;
  }

  .min-height-2000px\@xs {
    min-height: 2000px;
  }

  .max-height-2000px\@xs {
    max-height: 2000px;
  }

  .width-2000px\@xs {
    width: 2000px;
  }

  .min-width-2000px\@xs {
    min-width: 2000px;
  }

  .max-width-2000px\@xs {
    max-width: 2000px;
  }

  .height-2020px\@xs {
    height: 2020px;
  }

  .min-height-2020px\@xs {
    min-height: 2020px;
  }

  .max-height-2020px\@xs {
    max-height: 2020px;
  }

  .width-2020px\@xs {
    width: 2020px;
  }

  .min-width-2020px\@xs {
    min-width: 2020px;
  }

  .max-width-2020px\@xs {
    max-width: 2020px;
  }

  .height-2040px\@xs {
    height: 2040px;
  }

  .min-height-2040px\@xs {
    min-height: 2040px;
  }

  .max-height-2040px\@xs {
    max-height: 2040px;
  }

  .width-2040px\@xs {
    width: 2040px;
  }

  .min-width-2040px\@xs {
    min-width: 2040px;
  }

  .max-width-2040px\@xs {
    max-width: 2040px;
  }

  .height-2060px\@xs {
    height: 2060px;
  }

  .min-height-2060px\@xs {
    min-height: 2060px;
  }

  .max-height-2060px\@xs {
    max-height: 2060px;
  }

  .width-2060px\@xs {
    width: 2060px;
  }

  .min-width-2060px\@xs {
    min-width: 2060px;
  }

  .max-width-2060px\@xs {
    max-width: 2060px;
  }

  .height-2080px\@xs {
    height: 2080px;
  }

  .min-height-2080px\@xs {
    min-height: 2080px;
  }

  .max-height-2080px\@xs {
    max-height: 2080px;
  }

  .width-2080px\@xs {
    width: 2080px;
  }

  .min-width-2080px\@xs {
    min-width: 2080px;
  }

  .max-width-2080px\@xs {
    max-width: 2080px;
  }

  .height-2100px\@xs {
    height: 2100px;
  }

  .min-height-2100px\@xs {
    min-height: 2100px;
  }

  .max-height-2100px\@xs {
    max-height: 2100px;
  }

  .width-2100px\@xs {
    width: 2100px;
  }

  .min-width-2100px\@xs {
    min-width: 2100px;
  }

  .max-width-2100px\@xs {
    max-width: 2100px;
  }

  .height-2120px\@xs {
    height: 2120px;
  }

  .min-height-2120px\@xs {
    min-height: 2120px;
  }

  .max-height-2120px\@xs {
    max-height: 2120px;
  }

  .width-2120px\@xs {
    width: 2120px;
  }

  .min-width-2120px\@xs {
    min-width: 2120px;
  }

  .max-width-2120px\@xs {
    max-width: 2120px;
  }

  .height-2140px\@xs {
    height: 2140px;
  }

  .min-height-2140px\@xs {
    min-height: 2140px;
  }

  .max-height-2140px\@xs {
    max-height: 2140px;
  }

  .width-2140px\@xs {
    width: 2140px;
  }

  .min-width-2140px\@xs {
    min-width: 2140px;
  }

  .max-width-2140px\@xs {
    max-width: 2140px;
  }

  .height-2160px\@xs {
    height: 2160px;
  }

  .min-height-2160px\@xs {
    min-height: 2160px;
  }

  .max-height-2160px\@xs {
    max-height: 2160px;
  }

  .width-2160px\@xs {
    width: 2160px;
  }

  .min-width-2160px\@xs {
    min-width: 2160px;
  }

  .max-width-2160px\@xs {
    max-width: 2160px;
  }

  .height-2180px\@xs {
    height: 2180px;
  }

  .min-height-2180px\@xs {
    min-height: 2180px;
  }

  .max-height-2180px\@xs {
    max-height: 2180px;
  }

  .width-2180px\@xs {
    width: 2180px;
  }

  .min-width-2180px\@xs {
    min-width: 2180px;
  }

  .max-width-2180px\@xs {
    max-width: 2180px;
  }

  .height-2200px\@xs {
    height: 2200px;
  }

  .min-height-2200px\@xs {
    min-height: 2200px;
  }

  .max-height-2200px\@xs {
    max-height: 2200px;
  }

  .width-2200px\@xs {
    width: 2200px;
  }

  .min-width-2200px\@xs {
    min-width: 2200px;
  }

  .max-width-2200px\@xs {
    max-width: 2200px;
  }

  .height-2220px\@xs {
    height: 2220px;
  }

  .min-height-2220px\@xs {
    min-height: 2220px;
  }

  .max-height-2220px\@xs {
    max-height: 2220px;
  }

  .width-2220px\@xs {
    width: 2220px;
  }

  .min-width-2220px\@xs {
    min-width: 2220px;
  }

  .max-width-2220px\@xs {
    max-width: 2220px;
  }

  .height-2240px\@xs {
    height: 2240px;
  }

  .min-height-2240px\@xs {
    min-height: 2240px;
  }

  .max-height-2240px\@xs {
    max-height: 2240px;
  }

  .width-2240px\@xs {
    width: 2240px;
  }

  .min-width-2240px\@xs {
    min-width: 2240px;
  }

  .max-width-2240px\@xs {
    max-width: 2240px;
  }

  .height-2260px\@xs {
    height: 2260px;
  }

  .min-height-2260px\@xs {
    min-height: 2260px;
  }

  .max-height-2260px\@xs {
    max-height: 2260px;
  }

  .width-2260px\@xs {
    width: 2260px;
  }

  .min-width-2260px\@xs {
    min-width: 2260px;
  }

  .max-width-2260px\@xs {
    max-width: 2260px;
  }

  .height-2280px\@xs {
    height: 2280px;
  }

  .min-height-2280px\@xs {
    min-height: 2280px;
  }

  .max-height-2280px\@xs {
    max-height: 2280px;
  }

  .width-2280px\@xs {
    width: 2280px;
  }

  .min-width-2280px\@xs {
    min-width: 2280px;
  }

  .max-width-2280px\@xs {
    max-width: 2280px;
  }

  .height-2300px\@xs {
    height: 2300px;
  }

  .min-height-2300px\@xs {
    min-height: 2300px;
  }

  .max-height-2300px\@xs {
    max-height: 2300px;
  }

  .width-2300px\@xs {
    width: 2300px;
  }

  .min-width-2300px\@xs {
    min-width: 2300px;
  }

  .max-width-2300px\@xs {
    max-width: 2300px;
  }

  .height-2320px\@xs {
    height: 2320px;
  }

  .min-height-2320px\@xs {
    min-height: 2320px;
  }

  .max-height-2320px\@xs {
    max-height: 2320px;
  }

  .width-2320px\@xs {
    width: 2320px;
  }

  .min-width-2320px\@xs {
    min-width: 2320px;
  }

  .max-width-2320px\@xs {
    max-width: 2320px;
  }

  .height-2340px\@xs {
    height: 2340px;
  }

  .min-height-2340px\@xs {
    min-height: 2340px;
  }

  .max-height-2340px\@xs {
    max-height: 2340px;
  }

  .width-2340px\@xs {
    width: 2340px;
  }

  .min-width-2340px\@xs {
    min-width: 2340px;
  }

  .max-width-2340px\@xs {
    max-width: 2340px;
  }

  .height-2360px\@xs {
    height: 2360px;
  }

  .min-height-2360px\@xs {
    min-height: 2360px;
  }

  .max-height-2360px\@xs {
    max-height: 2360px;
  }

  .width-2360px\@xs {
    width: 2360px;
  }

  .min-width-2360px\@xs {
    min-width: 2360px;
  }

  .max-width-2360px\@xs {
    max-width: 2360px;
  }

  .height-2380px\@xs {
    height: 2380px;
  }

  .min-height-2380px\@xs {
    min-height: 2380px;
  }

  .max-height-2380px\@xs {
    max-height: 2380px;
  }

  .width-2380px\@xs {
    width: 2380px;
  }

  .min-width-2380px\@xs {
    min-width: 2380px;
  }

  .max-width-2380px\@xs {
    max-width: 2380px;
  }

  .height-2400px\@xs {
    height: 2400px;
  }

  .min-height-2400px\@xs {
    min-height: 2400px;
  }

  .max-height-2400px\@xs {
    max-height: 2400px;
  }

  .width-2400px\@xs {
    width: 2400px;
  }

  .min-width-2400px\@xs {
    min-width: 2400px;
  }

  .max-width-2400px\@xs {
    max-width: 2400px;
  }

  .height-2420px\@xs {
    height: 2420px;
  }

  .min-height-2420px\@xs {
    min-height: 2420px;
  }

  .max-height-2420px\@xs {
    max-height: 2420px;
  }

  .width-2420px\@xs {
    width: 2420px;
  }

  .min-width-2420px\@xs {
    min-width: 2420px;
  }

  .max-width-2420px\@xs {
    max-width: 2420px;
  }

  .height-2440px\@xs {
    height: 2440px;
  }

  .min-height-2440px\@xs {
    min-height: 2440px;
  }

  .max-height-2440px\@xs {
    max-height: 2440px;
  }

  .width-2440px\@xs {
    width: 2440px;
  }

  .min-width-2440px\@xs {
    min-width: 2440px;
  }

  .max-width-2440px\@xs {
    max-width: 2440px;
  }

  .height-2460px\@xs {
    height: 2460px;
  }

  .min-height-2460px\@xs {
    min-height: 2460px;
  }

  .max-height-2460px\@xs {
    max-height: 2460px;
  }

  .width-2460px\@xs {
    width: 2460px;
  }

  .min-width-2460px\@xs {
    min-width: 2460px;
  }

  .max-width-2460px\@xs {
    max-width: 2460px;
  }

  .height-2480px\@xs {
    height: 2480px;
  }

  .min-height-2480px\@xs {
    min-height: 2480px;
  }

  .max-height-2480px\@xs {
    max-height: 2480px;
  }

  .width-2480px\@xs {
    width: 2480px;
  }

  .min-width-2480px\@xs {
    min-width: 2480px;
  }

  .max-width-2480px\@xs {
    max-width: 2480px;
  }

  .height-2500px\@xs {
    height: 2500px;
  }

  .min-height-2500px\@xs {
    min-height: 2500px;
  }

  .max-height-2500px\@xs {
    max-height: 2500px;
  }

  .width-2500px\@xs {
    width: 2500px;
  }

  .min-width-2500px\@xs {
    min-width: 2500px;
  }

  .max-width-2500px\@xs {
    max-width: 2500px;
  }

  .height-2520px\@xs {
    height: 2520px;
  }

  .min-height-2520px\@xs {
    min-height: 2520px;
  }

  .max-height-2520px\@xs {
    max-height: 2520px;
  }

  .width-2520px\@xs {
    width: 2520px;
  }

  .min-width-2520px\@xs {
    min-width: 2520px;
  }

  .max-width-2520px\@xs {
    max-width: 2520px;
  }

  .height-2540px\@xs {
    height: 2540px;
  }

  .min-height-2540px\@xs {
    min-height: 2540px;
  }

  .max-height-2540px\@xs {
    max-height: 2540px;
  }

  .width-2540px\@xs {
    width: 2540px;
  }

  .min-width-2540px\@xs {
    min-width: 2540px;
  }

  .max-width-2540px\@xs {
    max-width: 2540px;
  }

  .height-2560px\@xs {
    height: 2560px;
  }

  .min-height-2560px\@xs {
    min-height: 2560px;
  }

  .max-height-2560px\@xs {
    max-height: 2560px;
  }

  .width-2560px\@xs {
    width: 2560px;
  }

  .min-width-2560px\@xs {
    min-width: 2560px;
  }

  .max-width-2560px\@xs {
    max-width: 2560px;
  }

  .height-2580px\@xs {
    height: 2580px;
  }

  .min-height-2580px\@xs {
    min-height: 2580px;
  }

  .max-height-2580px\@xs {
    max-height: 2580px;
  }

  .width-2580px\@xs {
    width: 2580px;
  }

  .min-width-2580px\@xs {
    min-width: 2580px;
  }

  .max-width-2580px\@xs {
    max-width: 2580px;
  }

  .height-2600px\@xs {
    height: 2600px;
  }

  .min-height-2600px\@xs {
    min-height: 2600px;
  }

  .max-height-2600px\@xs {
    max-height: 2600px;
  }

  .width-2600px\@xs {
    width: 2600px;
  }

  .min-width-2600px\@xs {
    min-width: 2600px;
  }

  .max-width-2600px\@xs {
    max-width: 2600px;
  }

  .height-2620px\@xs {
    height: 2620px;
  }

  .min-height-2620px\@xs {
    min-height: 2620px;
  }

  .max-height-2620px\@xs {
    max-height: 2620px;
  }

  .width-2620px\@xs {
    width: 2620px;
  }

  .min-width-2620px\@xs {
    min-width: 2620px;
  }

  .max-width-2620px\@xs {
    max-width: 2620px;
  }

  .height-2640px\@xs {
    height: 2640px;
  }

  .min-height-2640px\@xs {
    min-height: 2640px;
  }

  .max-height-2640px\@xs {
    max-height: 2640px;
  }

  .width-2640px\@xs {
    width: 2640px;
  }

  .min-width-2640px\@xs {
    min-width: 2640px;
  }

  .max-width-2640px\@xs {
    max-width: 2640px;
  }

  .height-2660px\@xs {
    height: 2660px;
  }

  .min-height-2660px\@xs {
    min-height: 2660px;
  }

  .max-height-2660px\@xs {
    max-height: 2660px;
  }

  .width-2660px\@xs {
    width: 2660px;
  }

  .min-width-2660px\@xs {
    min-width: 2660px;
  }

  .max-width-2660px\@xs {
    max-width: 2660px;
  }

  .height-2680px\@xs {
    height: 2680px;
  }

  .min-height-2680px\@xs {
    min-height: 2680px;
  }

  .max-height-2680px\@xs {
    max-height: 2680px;
  }

  .width-2680px\@xs {
    width: 2680px;
  }

  .min-width-2680px\@xs {
    min-width: 2680px;
  }

  .max-width-2680px\@xs {
    max-width: 2680px;
  }

  .height-2700px\@xs {
    height: 2700px;
  }

  .min-height-2700px\@xs {
    min-height: 2700px;
  }

  .max-height-2700px\@xs {
    max-height: 2700px;
  }

  .width-2700px\@xs {
    width: 2700px;
  }

  .min-width-2700px\@xs {
    min-width: 2700px;
  }

  .max-width-2700px\@xs {
    max-width: 2700px;
  }

  .height-2720px\@xs {
    height: 2720px;
  }

  .min-height-2720px\@xs {
    min-height: 2720px;
  }

  .max-height-2720px\@xs {
    max-height: 2720px;
  }

  .width-2720px\@xs {
    width: 2720px;
  }

  .min-width-2720px\@xs {
    min-width: 2720px;
  }

  .max-width-2720px\@xs {
    max-width: 2720px;
  }

  .height-2740px\@xs {
    height: 2740px;
  }

  .min-height-2740px\@xs {
    min-height: 2740px;
  }

  .max-height-2740px\@xs {
    max-height: 2740px;
  }

  .width-2740px\@xs {
    width: 2740px;
  }

  .min-width-2740px\@xs {
    min-width: 2740px;
  }

  .max-width-2740px\@xs {
    max-width: 2740px;
  }

  .height-2760px\@xs {
    height: 2760px;
  }

  .min-height-2760px\@xs {
    min-height: 2760px;
  }

  .max-height-2760px\@xs {
    max-height: 2760px;
  }

  .width-2760px\@xs {
    width: 2760px;
  }

  .min-width-2760px\@xs {
    min-width: 2760px;
  }

  .max-width-2760px\@xs {
    max-width: 2760px;
  }

  .height-2780px\@xs {
    height: 2780px;
  }

  .min-height-2780px\@xs {
    min-height: 2780px;
  }

  .max-height-2780px\@xs {
    max-height: 2780px;
  }

  .width-2780px\@xs {
    width: 2780px;
  }

  .min-width-2780px\@xs {
    min-width: 2780px;
  }

  .max-width-2780px\@xs {
    max-width: 2780px;
  }

  .height-2800px\@xs {
    height: 2800px;
  }

  .min-height-2800px\@xs {
    min-height: 2800px;
  }

  .max-height-2800px\@xs {
    max-height: 2800px;
  }

  .width-2800px\@xs {
    width: 2800px;
  }

  .min-width-2800px\@xs {
    min-width: 2800px;
  }

  .max-width-2800px\@xs {
    max-width: 2800px;
  }

  .height-2820px\@xs {
    height: 2820px;
  }

  .min-height-2820px\@xs {
    min-height: 2820px;
  }

  .max-height-2820px\@xs {
    max-height: 2820px;
  }

  .width-2820px\@xs {
    width: 2820px;
  }

  .min-width-2820px\@xs {
    min-width: 2820px;
  }

  .max-width-2820px\@xs {
    max-width: 2820px;
  }

  .height-2840px\@xs {
    height: 2840px;
  }

  .min-height-2840px\@xs {
    min-height: 2840px;
  }

  .max-height-2840px\@xs {
    max-height: 2840px;
  }

  .width-2840px\@xs {
    width: 2840px;
  }

  .min-width-2840px\@xs {
    min-width: 2840px;
  }

  .max-width-2840px\@xs {
    max-width: 2840px;
  }

  .height-2860px\@xs {
    height: 2860px;
  }

  .min-height-2860px\@xs {
    min-height: 2860px;
  }

  .max-height-2860px\@xs {
    max-height: 2860px;
  }

  .width-2860px\@xs {
    width: 2860px;
  }

  .min-width-2860px\@xs {
    min-width: 2860px;
  }

  .max-width-2860px\@xs {
    max-width: 2860px;
  }

  .height-2880px\@xs {
    height: 2880px;
  }

  .min-height-2880px\@xs {
    min-height: 2880px;
  }

  .max-height-2880px\@xs {
    max-height: 2880px;
  }

  .width-2880px\@xs {
    width: 2880px;
  }

  .min-width-2880px\@xs {
    min-width: 2880px;
  }

  .max-width-2880px\@xs {
    max-width: 2880px;
  }

  .height-2900px\@xs {
    height: 2900px;
  }

  .min-height-2900px\@xs {
    min-height: 2900px;
  }

  .max-height-2900px\@xs {
    max-height: 2900px;
  }

  .width-2900px\@xs {
    width: 2900px;
  }

  .min-width-2900px\@xs {
    min-width: 2900px;
  }

  .max-width-2900px\@xs {
    max-width: 2900px;
  }

  .height-2920px\@xs {
    height: 2920px;
  }

  .min-height-2920px\@xs {
    min-height: 2920px;
  }

  .max-height-2920px\@xs {
    max-height: 2920px;
  }

  .width-2920px\@xs {
    width: 2920px;
  }

  .min-width-2920px\@xs {
    min-width: 2920px;
  }

  .max-width-2920px\@xs {
    max-width: 2920px;
  }

  .height-2940px\@xs {
    height: 2940px;
  }

  .min-height-2940px\@xs {
    min-height: 2940px;
  }

  .max-height-2940px\@xs {
    max-height: 2940px;
  }

  .width-2940px\@xs {
    width: 2940px;
  }

  .min-width-2940px\@xs {
    min-width: 2940px;
  }

  .max-width-2940px\@xs {
    max-width: 2940px;
  }

  .height-2960px\@xs {
    height: 2960px;
  }

  .min-height-2960px\@xs {
    min-height: 2960px;
  }

  .max-height-2960px\@xs {
    max-height: 2960px;
  }

  .width-2960px\@xs {
    width: 2960px;
  }

  .min-width-2960px\@xs {
    min-width: 2960px;
  }

  .max-width-2960px\@xs {
    max-width: 2960px;
  }

  .height-2980px\@xs {
    height: 2980px;
  }

  .min-height-2980px\@xs {
    min-height: 2980px;
  }

  .max-height-2980px\@xs {
    max-height: 2980px;
  }

  .width-2980px\@xs {
    width: 2980px;
  }

  .min-width-2980px\@xs {
    min-width: 2980px;
  }

  .max-width-2980px\@xs {
    max-width: 2980px;
  }

  .height-3000px\@xs {
    height: 3000px;
  }

  .min-height-3000px\@xs {
    min-height: 3000px;
  }

  .max-height-3000px\@xs {
    max-height: 3000px;
  }

  .width-3000px\@xs {
    width: 3000px;
  }

  .min-width-3000px\@xs {
    min-width: 3000px;
  }

  .max-width-3000px\@xs {
    max-width: 3000px;
  }

  .height-3020px\@xs {
    height: 3020px;
  }

  .min-height-3020px\@xs {
    min-height: 3020px;
  }

  .max-height-3020px\@xs {
    max-height: 3020px;
  }

  .width-3020px\@xs {
    width: 3020px;
  }

  .min-width-3020px\@xs {
    min-width: 3020px;
  }

  .max-width-3020px\@xs {
    max-width: 3020px;
  }

  .height-3040px\@xs {
    height: 3040px;
  }

  .min-height-3040px\@xs {
    min-height: 3040px;
  }

  .max-height-3040px\@xs {
    max-height: 3040px;
  }

  .width-3040px\@xs {
    width: 3040px;
  }

  .min-width-3040px\@xs {
    min-width: 3040px;
  }

  .max-width-3040px\@xs {
    max-width: 3040px;
  }

  .height-3060px\@xs {
    height: 3060px;
  }

  .min-height-3060px\@xs {
    min-height: 3060px;
  }

  .max-height-3060px\@xs {
    max-height: 3060px;
  }

  .width-3060px\@xs {
    width: 3060px;
  }

  .min-width-3060px\@xs {
    min-width: 3060px;
  }

  .max-width-3060px\@xs {
    max-width: 3060px;
  }

  .height-3080px\@xs {
    height: 3080px;
  }

  .min-height-3080px\@xs {
    min-height: 3080px;
  }

  .max-height-3080px\@xs {
    max-height: 3080px;
  }

  .width-3080px\@xs {
    width: 3080px;
  }

  .min-width-3080px\@xs {
    min-width: 3080px;
  }

  .max-width-3080px\@xs {
    max-width: 3080px;
  }

  .height-3100px\@xs {
    height: 3100px;
  }

  .min-height-3100px\@xs {
    min-height: 3100px;
  }

  .max-height-3100px\@xs {
    max-height: 3100px;
  }

  .width-3100px\@xs {
    width: 3100px;
  }

  .min-width-3100px\@xs {
    min-width: 3100px;
  }

  .max-width-3100px\@xs {
    max-width: 3100px;
  }

  .height-3120px\@xs {
    height: 3120px;
  }

  .min-height-3120px\@xs {
    min-height: 3120px;
  }

  .max-height-3120px\@xs {
    max-height: 3120px;
  }

  .width-3120px\@xs {
    width: 3120px;
  }

  .min-width-3120px\@xs {
    min-width: 3120px;
  }

  .max-width-3120px\@xs {
    max-width: 3120px;
  }

  .height-3140px\@xs {
    height: 3140px;
  }

  .min-height-3140px\@xs {
    min-height: 3140px;
  }

  .max-height-3140px\@xs {
    max-height: 3140px;
  }

  .width-3140px\@xs {
    width: 3140px;
  }

  .min-width-3140px\@xs {
    min-width: 3140px;
  }

  .max-width-3140px\@xs {
    max-width: 3140px;
  }

  .height-3160px\@xs {
    height: 3160px;
  }

  .min-height-3160px\@xs {
    min-height: 3160px;
  }

  .max-height-3160px\@xs {
    max-height: 3160px;
  }

  .width-3160px\@xs {
    width: 3160px;
  }

  .min-width-3160px\@xs {
    min-width: 3160px;
  }

  .max-width-3160px\@xs {
    max-width: 3160px;
  }

  .height-3180px\@xs {
    height: 3180px;
  }

  .min-height-3180px\@xs {
    min-height: 3180px;
  }

  .max-height-3180px\@xs {
    max-height: 3180px;
  }

  .width-3180px\@xs {
    width: 3180px;
  }

  .min-width-3180px\@xs {
    min-width: 3180px;
  }

  .max-width-3180px\@xs {
    max-width: 3180px;
  }

  .height-3200px\@xs {
    height: 3200px;
  }

  .min-height-3200px\@xs {
    min-height: 3200px;
  }

  .max-height-3200px\@xs {
    max-height: 3200px;
  }

  .width-3200px\@xs {
    width: 3200px;
  }

  .min-width-3200px\@xs {
    min-width: 3200px;
  }

  .max-width-3200px\@xs {
    max-width: 3200px;
  }

  .height-3220px\@xs {
    height: 3220px;
  }

  .min-height-3220px\@xs {
    min-height: 3220px;
  }

  .max-height-3220px\@xs {
    max-height: 3220px;
  }

  .width-3220px\@xs {
    width: 3220px;
  }

  .min-width-3220px\@xs {
    min-width: 3220px;
  }

  .max-width-3220px\@xs {
    max-width: 3220px;
  }

  .height-3240px\@xs {
    height: 3240px;
  }

  .min-height-3240px\@xs {
    min-height: 3240px;
  }

  .max-height-3240px\@xs {
    max-height: 3240px;
  }

  .width-3240px\@xs {
    width: 3240px;
  }

  .min-width-3240px\@xs {
    min-width: 3240px;
  }

  .max-width-3240px\@xs {
    max-width: 3240px;
  }

  .height-3260px\@xs {
    height: 3260px;
  }

  .min-height-3260px\@xs {
    min-height: 3260px;
  }

  .max-height-3260px\@xs {
    max-height: 3260px;
  }

  .width-3260px\@xs {
    width: 3260px;
  }

  .min-width-3260px\@xs {
    min-width: 3260px;
  }

  .max-width-3260px\@xs {
    max-width: 3260px;
  }

  .height-3280px\@xs {
    height: 3280px;
  }

  .min-height-3280px\@xs {
    min-height: 3280px;
  }

  .max-height-3280px\@xs {
    max-height: 3280px;
  }

  .width-3280px\@xs {
    width: 3280px;
  }

  .min-width-3280px\@xs {
    min-width: 3280px;
  }

  .max-width-3280px\@xs {
    max-width: 3280px;
  }

  .height-3300px\@xs {
    height: 3300px;
  }

  .min-height-3300px\@xs {
    min-height: 3300px;
  }

  .max-height-3300px\@xs {
    max-height: 3300px;
  }

  .width-3300px\@xs {
    width: 3300px;
  }

  .min-width-3300px\@xs {
    min-width: 3300px;
  }

  .max-width-3300px\@xs {
    max-width: 3300px;
  }

  .height-3320px\@xs {
    height: 3320px;
  }

  .min-height-3320px\@xs {
    min-height: 3320px;
  }

  .max-height-3320px\@xs {
    max-height: 3320px;
  }

  .width-3320px\@xs {
    width: 3320px;
  }

  .min-width-3320px\@xs {
    min-width: 3320px;
  }

  .max-width-3320px\@xs {
    max-width: 3320px;
  }

  .height-3340px\@xs {
    height: 3340px;
  }

  .min-height-3340px\@xs {
    min-height: 3340px;
  }

  .max-height-3340px\@xs {
    max-height: 3340px;
  }

  .width-3340px\@xs {
    width: 3340px;
  }

  .min-width-3340px\@xs {
    min-width: 3340px;
  }

  .max-width-3340px\@xs {
    max-width: 3340px;
  }

  .height-3360px\@xs {
    height: 3360px;
  }

  .min-height-3360px\@xs {
    min-height: 3360px;
  }

  .max-height-3360px\@xs {
    max-height: 3360px;
  }

  .width-3360px\@xs {
    width: 3360px;
  }

  .min-width-3360px\@xs {
    min-width: 3360px;
  }

  .max-width-3360px\@xs {
    max-width: 3360px;
  }

  .height-3380px\@xs {
    height: 3380px;
  }

  .min-height-3380px\@xs {
    min-height: 3380px;
  }

  .max-height-3380px\@xs {
    max-height: 3380px;
  }

  .width-3380px\@xs {
    width: 3380px;
  }

  .min-width-3380px\@xs {
    min-width: 3380px;
  }

  .max-width-3380px\@xs {
    max-width: 3380px;
  }

  .height-3400px\@xs {
    height: 3400px;
  }

  .min-height-3400px\@xs {
    min-height: 3400px;
  }

  .max-height-3400px\@xs {
    max-height: 3400px;
  }

  .width-3400px\@xs {
    width: 3400px;
  }

  .min-width-3400px\@xs {
    min-width: 3400px;
  }

  .max-width-3400px\@xs {
    max-width: 3400px;
  }

  .height-3420px\@xs {
    height: 3420px;
  }

  .min-height-3420px\@xs {
    min-height: 3420px;
  }

  .max-height-3420px\@xs {
    max-height: 3420px;
  }

  .width-3420px\@xs {
    width: 3420px;
  }

  .min-width-3420px\@xs {
    min-width: 3420px;
  }

  .max-width-3420px\@xs {
    max-width: 3420px;
  }

  .height-3440px\@xs {
    height: 3440px;
  }

  .min-height-3440px\@xs {
    min-height: 3440px;
  }

  .max-height-3440px\@xs {
    max-height: 3440px;
  }

  .width-3440px\@xs {
    width: 3440px;
  }

  .min-width-3440px\@xs {
    min-width: 3440px;
  }

  .max-width-3440px\@xs {
    max-width: 3440px;
  }

  .height-3460px\@xs {
    height: 3460px;
  }

  .min-height-3460px\@xs {
    min-height: 3460px;
  }

  .max-height-3460px\@xs {
    max-height: 3460px;
  }

  .width-3460px\@xs {
    width: 3460px;
  }

  .min-width-3460px\@xs {
    min-width: 3460px;
  }

  .max-width-3460px\@xs {
    max-width: 3460px;
  }

  .height-3480px\@xs {
    height: 3480px;
  }

  .min-height-3480px\@xs {
    min-height: 3480px;
  }

  .max-height-3480px\@xs {
    max-height: 3480px;
  }

  .width-3480px\@xs {
    width: 3480px;
  }

  .min-width-3480px\@xs {
    min-width: 3480px;
  }

  .max-width-3480px\@xs {
    max-width: 3480px;
  }

  .height-3500px\@xs {
    height: 3500px;
  }

  .min-height-3500px\@xs {
    min-height: 3500px;
  }

  .max-height-3500px\@xs {
    max-height: 3500px;
  }

  .width-3500px\@xs {
    width: 3500px;
  }

  .min-width-3500px\@xs {
    min-width: 3500px;
  }

  .max-width-3500px\@xs {
    max-width: 3500px;
  }

  .height-3520px\@xs {
    height: 3520px;
  }

  .min-height-3520px\@xs {
    min-height: 3520px;
  }

  .max-height-3520px\@xs {
    max-height: 3520px;
  }

  .width-3520px\@xs {
    width: 3520px;
  }

  .min-width-3520px\@xs {
    min-width: 3520px;
  }

  .max-width-3520px\@xs {
    max-width: 3520px;
  }

  .height-3540px\@xs {
    height: 3540px;
  }

  .min-height-3540px\@xs {
    min-height: 3540px;
  }

  .max-height-3540px\@xs {
    max-height: 3540px;
  }

  .width-3540px\@xs {
    width: 3540px;
  }

  .min-width-3540px\@xs {
    min-width: 3540px;
  }

  .max-width-3540px\@xs {
    max-width: 3540px;
  }

  .height-3560px\@xs {
    height: 3560px;
  }

  .min-height-3560px\@xs {
    min-height: 3560px;
  }

  .max-height-3560px\@xs {
    max-height: 3560px;
  }

  .width-3560px\@xs {
    width: 3560px;
  }

  .min-width-3560px\@xs {
    min-width: 3560px;
  }

  .max-width-3560px\@xs {
    max-width: 3560px;
  }

  .height-3580px\@xs {
    height: 3580px;
  }

  .min-height-3580px\@xs {
    min-height: 3580px;
  }

  .max-height-3580px\@xs {
    max-height: 3580px;
  }

  .width-3580px\@xs {
    width: 3580px;
  }

  .min-width-3580px\@xs {
    min-width: 3580px;
  }

  .max-width-3580px\@xs {
    max-width: 3580px;
  }

  .height-3600px\@xs {
    height: 3600px;
  }

  .min-height-3600px\@xs {
    min-height: 3600px;
  }

  .max-height-3600px\@xs {
    max-height: 3600px;
  }

  .width-3600px\@xs {
    width: 3600px;
  }

  .min-width-3600px\@xs {
    min-width: 3600px;
  }

  .max-width-3600px\@xs {
    max-width: 3600px;
  }

  .height-3620px\@xs {
    height: 3620px;
  }

  .min-height-3620px\@xs {
    min-height: 3620px;
  }

  .max-height-3620px\@xs {
    max-height: 3620px;
  }

  .width-3620px\@xs {
    width: 3620px;
  }

  .min-width-3620px\@xs {
    min-width: 3620px;
  }

  .max-width-3620px\@xs {
    max-width: 3620px;
  }

  .height-3640px\@xs {
    height: 3640px;
  }

  .min-height-3640px\@xs {
    min-height: 3640px;
  }

  .max-height-3640px\@xs {
    max-height: 3640px;
  }

  .width-3640px\@xs {
    width: 3640px;
  }

  .min-width-3640px\@xs {
    min-width: 3640px;
  }

  .max-width-3640px\@xs {
    max-width: 3640px;
  }

  .height-3660px\@xs {
    height: 3660px;
  }

  .min-height-3660px\@xs {
    min-height: 3660px;
  }

  .max-height-3660px\@xs {
    max-height: 3660px;
  }

  .width-3660px\@xs {
    width: 3660px;
  }

  .min-width-3660px\@xs {
    min-width: 3660px;
  }

  .max-width-3660px\@xs {
    max-width: 3660px;
  }

  .height-3680px\@xs {
    height: 3680px;
  }

  .min-height-3680px\@xs {
    min-height: 3680px;
  }

  .max-height-3680px\@xs {
    max-height: 3680px;
  }

  .width-3680px\@xs {
    width: 3680px;
  }

  .min-width-3680px\@xs {
    min-width: 3680px;
  }

  .max-width-3680px\@xs {
    max-width: 3680px;
  }

  .height-3700px\@xs {
    height: 3700px;
  }

  .min-height-3700px\@xs {
    min-height: 3700px;
  }

  .max-height-3700px\@xs {
    max-height: 3700px;
  }

  .width-3700px\@xs {
    width: 3700px;
  }

  .min-width-3700px\@xs {
    min-width: 3700px;
  }

  .max-width-3700px\@xs {
    max-width: 3700px;
  }

  .height-3720px\@xs {
    height: 3720px;
  }

  .min-height-3720px\@xs {
    min-height: 3720px;
  }

  .max-height-3720px\@xs {
    max-height: 3720px;
  }

  .width-3720px\@xs {
    width: 3720px;
  }

  .min-width-3720px\@xs {
    min-width: 3720px;
  }

  .max-width-3720px\@xs {
    max-width: 3720px;
  }

  .height-3740px\@xs {
    height: 3740px;
  }

  .min-height-3740px\@xs {
    min-height: 3740px;
  }

  .max-height-3740px\@xs {
    max-height: 3740px;
  }

  .width-3740px\@xs {
    width: 3740px;
  }

  .min-width-3740px\@xs {
    min-width: 3740px;
  }

  .max-width-3740px\@xs {
    max-width: 3740px;
  }

  .height-3760px\@xs {
    height: 3760px;
  }

  .min-height-3760px\@xs {
    min-height: 3760px;
  }

  .max-height-3760px\@xs {
    max-height: 3760px;
  }

  .width-3760px\@xs {
    width: 3760px;
  }

  .min-width-3760px\@xs {
    min-width: 3760px;
  }

  .max-width-3760px\@xs {
    max-width: 3760px;
  }

  .height-3780px\@xs {
    height: 3780px;
  }

  .min-height-3780px\@xs {
    min-height: 3780px;
  }

  .max-height-3780px\@xs {
    max-height: 3780px;
  }

  .width-3780px\@xs {
    width: 3780px;
  }

  .min-width-3780px\@xs {
    min-width: 3780px;
  }

  .max-width-3780px\@xs {
    max-width: 3780px;
  }

  .height-3800px\@xs {
    height: 3800px;
  }

  .min-height-3800px\@xs {
    min-height: 3800px;
  }

  .max-height-3800px\@xs {
    max-height: 3800px;
  }

  .width-3800px\@xs {
    width: 3800px;
  }

  .min-width-3800px\@xs {
    min-width: 3800px;
  }

  .max-width-3800px\@xs {
    max-width: 3800px;
  }

  .height-3820px\@xs {
    height: 3820px;
  }

  .min-height-3820px\@xs {
    min-height: 3820px;
  }

  .max-height-3820px\@xs {
    max-height: 3820px;
  }

  .width-3820px\@xs {
    width: 3820px;
  }

  .min-width-3820px\@xs {
    min-width: 3820px;
  }

  .max-width-3820px\@xs {
    max-width: 3820px;
  }

  .height-3840px\@xs {
    height: 3840px;
  }

  .min-height-3840px\@xs {
    min-height: 3840px;
  }

  .max-height-3840px\@xs {
    max-height: 3840px;
  }

  .width-3840px\@xs {
    width: 3840px;
  }

  .min-width-3840px\@xs {
    min-width: 3840px;
  }

  .max-width-3840px\@xs {
    max-width: 3840px;
  }

  .height-3860px\@xs {
    height: 3860px;
  }

  .min-height-3860px\@xs {
    min-height: 3860px;
  }

  .max-height-3860px\@xs {
    max-height: 3860px;
  }

  .width-3860px\@xs {
    width: 3860px;
  }

  .min-width-3860px\@xs {
    min-width: 3860px;
  }

  .max-width-3860px\@xs {
    max-width: 3860px;
  }

  .height-3880px\@xs {
    height: 3880px;
  }

  .min-height-3880px\@xs {
    min-height: 3880px;
  }

  .max-height-3880px\@xs {
    max-height: 3880px;
  }

  .width-3880px\@xs {
    width: 3880px;
  }

  .min-width-3880px\@xs {
    min-width: 3880px;
  }

  .max-width-3880px\@xs {
    max-width: 3880px;
  }

  .height-3900px\@xs {
    height: 3900px;
  }

  .min-height-3900px\@xs {
    min-height: 3900px;
  }

  .max-height-3900px\@xs {
    max-height: 3900px;
  }

  .width-3900px\@xs {
    width: 3900px;
  }

  .min-width-3900px\@xs {
    min-width: 3900px;
  }

  .max-width-3900px\@xs {
    max-width: 3900px;
  }

  .height-3920px\@xs {
    height: 3920px;
  }

  .min-height-3920px\@xs {
    min-height: 3920px;
  }

  .max-height-3920px\@xs {
    max-height: 3920px;
  }

  .width-3920px\@xs {
    width: 3920px;
  }

  .min-width-3920px\@xs {
    min-width: 3920px;
  }

  .max-width-3920px\@xs {
    max-width: 3920px;
  }

  .height-3940px\@xs {
    height: 3940px;
  }

  .min-height-3940px\@xs {
    min-height: 3940px;
  }

  .max-height-3940px\@xs {
    max-height: 3940px;
  }

  .width-3940px\@xs {
    width: 3940px;
  }

  .min-width-3940px\@xs {
    min-width: 3940px;
  }

  .max-width-3940px\@xs {
    max-width: 3940px;
  }

  .height-3960px\@xs {
    height: 3960px;
  }

  .min-height-3960px\@xs {
    min-height: 3960px;
  }

  .max-height-3960px\@xs {
    max-height: 3960px;
  }

  .width-3960px\@xs {
    width: 3960px;
  }

  .min-width-3960px\@xs {
    min-width: 3960px;
  }

  .max-width-3960px\@xs {
    max-width: 3960px;
  }

  .height-3980px\@xs {
    height: 3980px;
  }

  .min-height-3980px\@xs {
    min-height: 3980px;
  }

  .max-height-3980px\@xs {
    max-height: 3980px;
  }

  .width-3980px\@xs {
    width: 3980px;
  }

  .min-width-3980px\@xs {
    min-width: 3980px;
  }

  .max-width-3980px\@xs {
    max-width: 3980px;
  }

  .height-4000px\@xs {
    height: 4000px;
  }

  .min-height-4000px\@xs {
    min-height: 4000px;
  }

  .max-height-4000px\@xs {
    max-height: 4000px;
  }

  .width-4000px\@xs {
    width: 4000px;
  }

  .min-width-4000px\@xs {
    min-width: 4000px;
  }

  .max-width-4000px\@xs {
    max-width: 4000px;
  }

  .text-25\%\@xs {
    font-size: 25%;
  }

  .text-30\%\@xs {
    font-size: 30%;
  }

  .text-35\%\@xs {
    font-size: 35%;
  }

  .text-40\%\@xs {
    font-size: 40%;
  }

  .text-45\%\@xs {
    font-size: 45%;
  }

  .text-50\%\@xs {
    font-size: 50%;
  }

  .text-55\%\@xs {
    font-size: 55%;
  }

  .text-60\%\@xs {
    font-size: 60%;
  }

  .text-65\%\@xs {
    font-size: 65%;
  }

  .text-70\%\@xs {
    font-size: 70%;
  }

  .text-75\%\@xs {
    font-size: 75%;
  }

  .text-80\%\@xs {
    font-size: 80%;
  }

  .text-85\%\@xs {
    font-size: 85%;
  }

  .text-90\%\@xs {
    font-size: 90%;
  }

  .text-95\%\@xs {
    font-size: 95%;
  }

  .text-100\%\@xs {
    font-size: 100%;
  }

  .text-105\%\@xs {
    font-size: 105%;
  }

  .text-110\%\@xs {
    font-size: 110%;
  }

  .text-115\%\@xs {
    font-size: 115%;
  }

  .text-120\%\@xs {
    font-size: 120%;
  }

  .text-125\%\@xs {
    font-size: 125%;
  }

  .text-130\%\@xs {
    font-size: 130%;
  }

  .text-135\%\@xs {
    font-size: 135%;
  }

  .text-140\%\@xs {
    font-size: 140%;
  }

  .text-145\%\@xs {
    font-size: 145%;
  }

  .text-150\%\@xs {
    font-size: 150%;
  }

  .text-155\%\@xs {
    font-size: 155%;
  }

  .text-160\%\@xs {
    font-size: 160%;
  }

  .text-165\%\@xs {
    font-size: 165%;
  }

  .text-170\%\@xs {
    font-size: 170%;
  }

  .text-175\%\@xs {
    font-size: 175%;
  }

  .text-180\%\@xs {
    font-size: 180%;
  }

  .text-185\%\@xs {
    font-size: 185%;
  }

  .text-190\%\@xs {
    font-size: 190%;
  }

  .text-195\%\@xs {
    font-size: 195%;
  }

  .text-200\%\@xs {
    font-size: 200%;
  }

  .text-offset-5\%\@xs {
    width: calc(100% + 5%);
  }

  .text-offset-10\%\@xs {
    width: calc(100% + 10%);
  }

  .text-offset-15\%\@xs {
    width: calc(100% + 15%);
  }

  .text-offset-20\%\@xs {
    width: calc(100% + 20%);
  }

  .text-offset-25\%\@xs {
    width: calc(100% + 25%);
  }

  .text-offset-30\%\@xs {
    width: calc(100% + 30%);
  }

  .text-offset-35\%\@xs {
    width: calc(100% + 35%);
  }

  .text-offset-40\%\@xs {
    width: calc(100% + 40%);
  }

  .text-offset-45\%\@xs {
    width: calc(100% + 45%);
  }

  .text-offset-50\%\@xs {
    width: calc(100% + 50%);
  }

  .text-offset-55\%\@xs {
    width: calc(100% + 55%);
  }

  .text-offset-60\%\@xs {
    width: calc(100% + 60%);
  }

  .text-offset-65\%\@xs {
    width: calc(100% + 65%);
  }

  .text-offset-70\%\@xs {
    width: calc(100% + 70%);
  }

  .text-offset-75\%\@xs {
    width: calc(100% + 75%);
  }

  .text-offset-80\%\@xs {
    width: calc(100% + 80%);
  }

  .text-offset-85\%\@xs {
    width: calc(100% + 85%);
  }

  .text-offset-90\%\@xs {
    width: calc(100% + 90%);
  }

  .text-offset-95\%\@xs {
    width: calc(100% + 95%);
  }

  .text-offset-100\%\@xs {
    width: calc(100% + 100%);
  }
}
@media (min-width: 48rem) {
  .component-padding-0\@sm {
    --component-padding: 0px;
  }

  .component-padding-xxxxs\@sm {
    --component-padding: var(--space-xxxxs);
  }

  .component-padding-xxxs\@sm {
    --component-padding: var(--space-xxxs);
  }

  .component-padding-xxs\@sm {
    --component-padding: var(--space-xxs);
  }

  .component-padding-xs\@sm {
    --component-padding: var(--space-xs);
  }

  .component-padding-sm\@sm {
    --component-padding: var(--space-sm);
  }

  .component-padding-md\@sm {
    --component-padding: var(--space-md);
  }

  .component-padding-lg\@sm {
    --component-padding: var(--space-lg);
  }

  .component-padding-xl\@sm {
    --component-padding: var(--space-xl);
  }

  .component-padding-xxl\@sm {
    --component-padding: var(--space-xxl);
  }

  .component-padding-xxxl\@sm {
    --component-padding: var(--space-xxxl);
  }

  .component-padding-xxxxl\@sm {
    --component-padding: var(--space-xxxxl);
  }

  .justify-around\@sm {
    justify-content: space-around;
  }

  .height-0px\@sm {
    height: 0px;
  }

  .min-height-0px\@sm {
    min-height: 0px;
  }

  .max-height-0px\@sm {
    max-height: 0px;
  }

  .width-0px\@sm {
    width: 0px;
  }

  .min-width-0px\@sm {
    min-width: 0px;
  }

  .max-width-0px\@sm {
    max-width: 0px;
  }

  .height-20px\@sm {
    height: 20px;
  }

  .min-height-20px\@sm {
    min-height: 20px;
  }

  .max-height-20px\@sm {
    max-height: 20px;
  }

  .width-20px\@sm {
    width: 20px;
  }

  .min-width-20px\@sm {
    min-width: 20px;
  }

  .max-width-20px\@sm {
    max-width: 20px;
  }

  .height-40px\@sm {
    height: 40px;
  }

  .min-height-40px\@sm {
    min-height: 40px;
  }

  .max-height-40px\@sm {
    max-height: 40px;
  }

  .width-40px\@sm {
    width: 40px;
  }

  .min-width-40px\@sm {
    min-width: 40px;
  }

  .max-width-40px\@sm {
    max-width: 40px;
  }

  .height-60px\@sm {
    height: 60px;
  }

  .min-height-60px\@sm {
    min-height: 60px;
  }

  .max-height-60px\@sm {
    max-height: 60px;
  }

  .width-60px\@sm {
    width: 60px;
  }

  .min-width-60px\@sm {
    min-width: 60px;
  }

  .max-width-60px\@sm {
    max-width: 60px;
  }

  .height-80px\@sm {
    height: 80px;
  }

  .min-height-80px\@sm {
    min-height: 80px;
  }

  .max-height-80px\@sm {
    max-height: 80px;
  }

  .width-80px\@sm {
    width: 80px;
  }

  .min-width-80px\@sm {
    min-width: 80px;
  }

  .max-width-80px\@sm {
    max-width: 80px;
  }

  .height-100px\@sm {
    height: 100px;
  }

  .min-height-100px\@sm {
    min-height: 100px;
  }

  .max-height-100px\@sm {
    max-height: 100px;
  }

  .width-100px\@sm {
    width: 100px;
  }

  .min-width-100px\@sm {
    min-width: 100px;
  }

  .max-width-100px\@sm {
    max-width: 100px;
  }

  .height-120px\@sm {
    height: 120px;
  }

  .min-height-120px\@sm {
    min-height: 120px;
  }

  .max-height-120px\@sm {
    max-height: 120px;
  }

  .width-120px\@sm {
    width: 120px;
  }

  .min-width-120px\@sm {
    min-width: 120px;
  }

  .max-width-120px\@sm {
    max-width: 120px;
  }

  .height-140px\@sm {
    height: 140px;
  }

  .min-height-140px\@sm {
    min-height: 140px;
  }

  .max-height-140px\@sm {
    max-height: 140px;
  }

  .width-140px\@sm {
    width: 140px;
  }

  .min-width-140px\@sm {
    min-width: 140px;
  }

  .max-width-140px\@sm {
    max-width: 140px;
  }

  .height-160px\@sm {
    height: 160px;
  }

  .min-height-160px\@sm {
    min-height: 160px;
  }

  .max-height-160px\@sm {
    max-height: 160px;
  }

  .width-160px\@sm {
    width: 160px;
  }

  .min-width-160px\@sm {
    min-width: 160px;
  }

  .max-width-160px\@sm {
    max-width: 160px;
  }

  .height-180px\@sm {
    height: 180px;
  }

  .min-height-180px\@sm {
    min-height: 180px;
  }

  .max-height-180px\@sm {
    max-height: 180px;
  }

  .width-180px\@sm {
    width: 180px;
  }

  .min-width-180px\@sm {
    min-width: 180px;
  }

  .max-width-180px\@sm {
    max-width: 180px;
  }

  .height-200px\@sm {
    height: 200px;
  }

  .min-height-200px\@sm {
    min-height: 200px;
  }

  .max-height-200px\@sm {
    max-height: 200px;
  }

  .width-200px\@sm {
    width: 200px;
  }

  .min-width-200px\@sm {
    min-width: 200px;
  }

  .max-width-200px\@sm {
    max-width: 200px;
  }

  .height-220px\@sm {
    height: 220px;
  }

  .min-height-220px\@sm {
    min-height: 220px;
  }

  .max-height-220px\@sm {
    max-height: 220px;
  }

  .width-220px\@sm {
    width: 220px;
  }

  .min-width-220px\@sm {
    min-width: 220px;
  }

  .max-width-220px\@sm {
    max-width: 220px;
  }

  .height-240px\@sm {
    height: 240px;
  }

  .min-height-240px\@sm {
    min-height: 240px;
  }

  .max-height-240px\@sm {
    max-height: 240px;
  }

  .width-240px\@sm {
    width: 240px;
  }

  .min-width-240px\@sm {
    min-width: 240px;
  }

  .max-width-240px\@sm {
    max-width: 240px;
  }

  .height-260px\@sm {
    height: 260px;
  }

  .min-height-260px\@sm {
    min-height: 260px;
  }

  .max-height-260px\@sm {
    max-height: 260px;
  }

  .width-260px\@sm {
    width: 260px;
  }

  .min-width-260px\@sm {
    min-width: 260px;
  }

  .max-width-260px\@sm {
    max-width: 260px;
  }

  .height-280px\@sm {
    height: 280px;
  }

  .min-height-280px\@sm {
    min-height: 280px;
  }

  .max-height-280px\@sm {
    max-height: 280px;
  }

  .width-280px\@sm {
    width: 280px;
  }

  .min-width-280px\@sm {
    min-width: 280px;
  }

  .max-width-280px\@sm {
    max-width: 280px;
  }

  .height-300px\@sm {
    height: 300px;
  }

  .min-height-300px\@sm {
    min-height: 300px;
  }

  .max-height-300px\@sm {
    max-height: 300px;
  }

  .width-300px\@sm {
    width: 300px;
  }

  .min-width-300px\@sm {
    min-width: 300px;
  }

  .max-width-300px\@sm {
    max-width: 300px;
  }

  .height-320px\@sm {
    height: 320px;
  }

  .min-height-320px\@sm {
    min-height: 320px;
  }

  .max-height-320px\@sm {
    max-height: 320px;
  }

  .width-320px\@sm {
    width: 320px;
  }

  .min-width-320px\@sm {
    min-width: 320px;
  }

  .max-width-320px\@sm {
    max-width: 320px;
  }

  .height-340px\@sm {
    height: 340px;
  }

  .min-height-340px\@sm {
    min-height: 340px;
  }

  .max-height-340px\@sm {
    max-height: 340px;
  }

  .width-340px\@sm {
    width: 340px;
  }

  .min-width-340px\@sm {
    min-width: 340px;
  }

  .max-width-340px\@sm {
    max-width: 340px;
  }

  .height-360px\@sm {
    height: 360px;
  }

  .min-height-360px\@sm {
    min-height: 360px;
  }

  .max-height-360px\@sm {
    max-height: 360px;
  }

  .width-360px\@sm {
    width: 360px;
  }

  .min-width-360px\@sm {
    min-width: 360px;
  }

  .max-width-360px\@sm {
    max-width: 360px;
  }

  .height-380px\@sm {
    height: 380px;
  }

  .min-height-380px\@sm {
    min-height: 380px;
  }

  .max-height-380px\@sm {
    max-height: 380px;
  }

  .width-380px\@sm {
    width: 380px;
  }

  .min-width-380px\@sm {
    min-width: 380px;
  }

  .max-width-380px\@sm {
    max-width: 380px;
  }

  .height-400px\@sm {
    height: 400px;
  }

  .min-height-400px\@sm {
    min-height: 400px;
  }

  .max-height-400px\@sm {
    max-height: 400px;
  }

  .width-400px\@sm {
    width: 400px;
  }

  .min-width-400px\@sm {
    min-width: 400px;
  }

  .max-width-400px\@sm {
    max-width: 400px;
  }

  .height-420px\@sm {
    height: 420px;
  }

  .min-height-420px\@sm {
    min-height: 420px;
  }

  .max-height-420px\@sm {
    max-height: 420px;
  }

  .width-420px\@sm {
    width: 420px;
  }

  .min-width-420px\@sm {
    min-width: 420px;
  }

  .max-width-420px\@sm {
    max-width: 420px;
  }

  .height-440px\@sm {
    height: 440px;
  }

  .min-height-440px\@sm {
    min-height: 440px;
  }

  .max-height-440px\@sm {
    max-height: 440px;
  }

  .width-440px\@sm {
    width: 440px;
  }

  .min-width-440px\@sm {
    min-width: 440px;
  }

  .max-width-440px\@sm {
    max-width: 440px;
  }

  .height-460px\@sm {
    height: 460px;
  }

  .min-height-460px\@sm {
    min-height: 460px;
  }

  .max-height-460px\@sm {
    max-height: 460px;
  }

  .width-460px\@sm {
    width: 460px;
  }

  .min-width-460px\@sm {
    min-width: 460px;
  }

  .max-width-460px\@sm {
    max-width: 460px;
  }

  .height-480px\@sm {
    height: 480px;
  }

  .min-height-480px\@sm {
    min-height: 480px;
  }

  .max-height-480px\@sm {
    max-height: 480px;
  }

  .width-480px\@sm {
    width: 480px;
  }

  .min-width-480px\@sm {
    min-width: 480px;
  }

  .max-width-480px\@sm {
    max-width: 480px;
  }

  .height-500px\@sm {
    height: 500px;
  }

  .min-height-500px\@sm {
    min-height: 500px;
  }

  .max-height-500px\@sm {
    max-height: 500px;
  }

  .width-500px\@sm {
    width: 500px;
  }

  .min-width-500px\@sm {
    min-width: 500px;
  }

  .max-width-500px\@sm {
    max-width: 500px;
  }

  .height-520px\@sm {
    height: 520px;
  }

  .min-height-520px\@sm {
    min-height: 520px;
  }

  .max-height-520px\@sm {
    max-height: 520px;
  }

  .width-520px\@sm {
    width: 520px;
  }

  .min-width-520px\@sm {
    min-width: 520px;
  }

  .max-width-520px\@sm {
    max-width: 520px;
  }

  .height-540px\@sm {
    height: 540px;
  }

  .min-height-540px\@sm {
    min-height: 540px;
  }

  .max-height-540px\@sm {
    max-height: 540px;
  }

  .width-540px\@sm {
    width: 540px;
  }

  .min-width-540px\@sm {
    min-width: 540px;
  }

  .max-width-540px\@sm {
    max-width: 540px;
  }

  .height-560px\@sm {
    height: 560px;
  }

  .min-height-560px\@sm {
    min-height: 560px;
  }

  .max-height-560px\@sm {
    max-height: 560px;
  }

  .width-560px\@sm {
    width: 560px;
  }

  .min-width-560px\@sm {
    min-width: 560px;
  }

  .max-width-560px\@sm {
    max-width: 560px;
  }

  .height-580px\@sm {
    height: 580px;
  }

  .min-height-580px\@sm {
    min-height: 580px;
  }

  .max-height-580px\@sm {
    max-height: 580px;
  }

  .width-580px\@sm {
    width: 580px;
  }

  .min-width-580px\@sm {
    min-width: 580px;
  }

  .max-width-580px\@sm {
    max-width: 580px;
  }

  .height-600px\@sm {
    height: 600px;
  }

  .min-height-600px\@sm {
    min-height: 600px;
  }

  .max-height-600px\@sm {
    max-height: 600px;
  }

  .width-600px\@sm {
    width: 600px;
  }

  .min-width-600px\@sm {
    min-width: 600px;
  }

  .max-width-600px\@sm {
    max-width: 600px;
  }

  .height-620px\@sm {
    height: 620px;
  }

  .min-height-620px\@sm {
    min-height: 620px;
  }

  .max-height-620px\@sm {
    max-height: 620px;
  }

  .width-620px\@sm {
    width: 620px;
  }

  .min-width-620px\@sm {
    min-width: 620px;
  }

  .max-width-620px\@sm {
    max-width: 620px;
  }

  .height-640px\@sm {
    height: 640px;
  }

  .min-height-640px\@sm {
    min-height: 640px;
  }

  .max-height-640px\@sm {
    max-height: 640px;
  }

  .width-640px\@sm {
    width: 640px;
  }

  .min-width-640px\@sm {
    min-width: 640px;
  }

  .max-width-640px\@sm {
    max-width: 640px;
  }

  .height-660px\@sm {
    height: 660px;
  }

  .min-height-660px\@sm {
    min-height: 660px;
  }

  .max-height-660px\@sm {
    max-height: 660px;
  }

  .width-660px\@sm {
    width: 660px;
  }

  .min-width-660px\@sm {
    min-width: 660px;
  }

  .max-width-660px\@sm {
    max-width: 660px;
  }

  .height-680px\@sm {
    height: 680px;
  }

  .min-height-680px\@sm {
    min-height: 680px;
  }

  .max-height-680px\@sm {
    max-height: 680px;
  }

  .width-680px\@sm {
    width: 680px;
  }

  .min-width-680px\@sm {
    min-width: 680px;
  }

  .max-width-680px\@sm {
    max-width: 680px;
  }

  .height-700px\@sm {
    height: 700px;
  }

  .min-height-700px\@sm {
    min-height: 700px;
  }

  .max-height-700px\@sm {
    max-height: 700px;
  }

  .width-700px\@sm {
    width: 700px;
  }

  .min-width-700px\@sm {
    min-width: 700px;
  }

  .max-width-700px\@sm {
    max-width: 700px;
  }

  .height-720px\@sm {
    height: 720px;
  }

  .min-height-720px\@sm {
    min-height: 720px;
  }

  .max-height-720px\@sm {
    max-height: 720px;
  }

  .width-720px\@sm {
    width: 720px;
  }

  .min-width-720px\@sm {
    min-width: 720px;
  }

  .max-width-720px\@sm {
    max-width: 720px;
  }

  .height-740px\@sm {
    height: 740px;
  }

  .min-height-740px\@sm {
    min-height: 740px;
  }

  .max-height-740px\@sm {
    max-height: 740px;
  }

  .width-740px\@sm {
    width: 740px;
  }

  .min-width-740px\@sm {
    min-width: 740px;
  }

  .max-width-740px\@sm {
    max-width: 740px;
  }

  .height-760px\@sm {
    height: 760px;
  }

  .min-height-760px\@sm {
    min-height: 760px;
  }

  .max-height-760px\@sm {
    max-height: 760px;
  }

  .width-760px\@sm {
    width: 760px;
  }

  .min-width-760px\@sm {
    min-width: 760px;
  }

  .max-width-760px\@sm {
    max-width: 760px;
  }

  .height-780px\@sm {
    height: 780px;
  }

  .min-height-780px\@sm {
    min-height: 780px;
  }

  .max-height-780px\@sm {
    max-height: 780px;
  }

  .width-780px\@sm {
    width: 780px;
  }

  .min-width-780px\@sm {
    min-width: 780px;
  }

  .max-width-780px\@sm {
    max-width: 780px;
  }

  .height-800px\@sm {
    height: 800px;
  }

  .min-height-800px\@sm {
    min-height: 800px;
  }

  .max-height-800px\@sm {
    max-height: 800px;
  }

  .width-800px\@sm {
    width: 800px;
  }

  .min-width-800px\@sm {
    min-width: 800px;
  }

  .max-width-800px\@sm {
    max-width: 800px;
  }

  .height-820px\@sm {
    height: 820px;
  }

  .min-height-820px\@sm {
    min-height: 820px;
  }

  .max-height-820px\@sm {
    max-height: 820px;
  }

  .width-820px\@sm {
    width: 820px;
  }

  .min-width-820px\@sm {
    min-width: 820px;
  }

  .max-width-820px\@sm {
    max-width: 820px;
  }

  .height-840px\@sm {
    height: 840px;
  }

  .min-height-840px\@sm {
    min-height: 840px;
  }

  .max-height-840px\@sm {
    max-height: 840px;
  }

  .width-840px\@sm {
    width: 840px;
  }

  .min-width-840px\@sm {
    min-width: 840px;
  }

  .max-width-840px\@sm {
    max-width: 840px;
  }

  .height-860px\@sm {
    height: 860px;
  }

  .min-height-860px\@sm {
    min-height: 860px;
  }

  .max-height-860px\@sm {
    max-height: 860px;
  }

  .width-860px\@sm {
    width: 860px;
  }

  .min-width-860px\@sm {
    min-width: 860px;
  }

  .max-width-860px\@sm {
    max-width: 860px;
  }

  .height-880px\@sm {
    height: 880px;
  }

  .min-height-880px\@sm {
    min-height: 880px;
  }

  .max-height-880px\@sm {
    max-height: 880px;
  }

  .width-880px\@sm {
    width: 880px;
  }

  .min-width-880px\@sm {
    min-width: 880px;
  }

  .max-width-880px\@sm {
    max-width: 880px;
  }

  .height-900px\@sm {
    height: 900px;
  }

  .min-height-900px\@sm {
    min-height: 900px;
  }

  .max-height-900px\@sm {
    max-height: 900px;
  }

  .width-900px\@sm {
    width: 900px;
  }

  .min-width-900px\@sm {
    min-width: 900px;
  }

  .max-width-900px\@sm {
    max-width: 900px;
  }

  .height-920px\@sm {
    height: 920px;
  }

  .min-height-920px\@sm {
    min-height: 920px;
  }

  .max-height-920px\@sm {
    max-height: 920px;
  }

  .width-920px\@sm {
    width: 920px;
  }

  .min-width-920px\@sm {
    min-width: 920px;
  }

  .max-width-920px\@sm {
    max-width: 920px;
  }

  .height-940px\@sm {
    height: 940px;
  }

  .min-height-940px\@sm {
    min-height: 940px;
  }

  .max-height-940px\@sm {
    max-height: 940px;
  }

  .width-940px\@sm {
    width: 940px;
  }

  .min-width-940px\@sm {
    min-width: 940px;
  }

  .max-width-940px\@sm {
    max-width: 940px;
  }

  .height-960px\@sm {
    height: 960px;
  }

  .min-height-960px\@sm {
    min-height: 960px;
  }

  .max-height-960px\@sm {
    max-height: 960px;
  }

  .width-960px\@sm {
    width: 960px;
  }

  .min-width-960px\@sm {
    min-width: 960px;
  }

  .max-width-960px\@sm {
    max-width: 960px;
  }

  .height-980px\@sm {
    height: 980px;
  }

  .min-height-980px\@sm {
    min-height: 980px;
  }

  .max-height-980px\@sm {
    max-height: 980px;
  }

  .width-980px\@sm {
    width: 980px;
  }

  .min-width-980px\@sm {
    min-width: 980px;
  }

  .max-width-980px\@sm {
    max-width: 980px;
  }

  .height-1000px\@sm {
    height: 1000px;
  }

  .min-height-1000px\@sm {
    min-height: 1000px;
  }

  .max-height-1000px\@sm {
    max-height: 1000px;
  }

  .width-1000px\@sm {
    width: 1000px;
  }

  .min-width-1000px\@sm {
    min-width: 1000px;
  }

  .max-width-1000px\@sm {
    max-width: 1000px;
  }

  .height-1020px\@sm {
    height: 1020px;
  }

  .min-height-1020px\@sm {
    min-height: 1020px;
  }

  .max-height-1020px\@sm {
    max-height: 1020px;
  }

  .width-1020px\@sm {
    width: 1020px;
  }

  .min-width-1020px\@sm {
    min-width: 1020px;
  }

  .max-width-1020px\@sm {
    max-width: 1020px;
  }

  .height-1040px\@sm {
    height: 1040px;
  }

  .min-height-1040px\@sm {
    min-height: 1040px;
  }

  .max-height-1040px\@sm {
    max-height: 1040px;
  }

  .width-1040px\@sm {
    width: 1040px;
  }

  .min-width-1040px\@sm {
    min-width: 1040px;
  }

  .max-width-1040px\@sm {
    max-width: 1040px;
  }

  .height-1060px\@sm {
    height: 1060px;
  }

  .min-height-1060px\@sm {
    min-height: 1060px;
  }

  .max-height-1060px\@sm {
    max-height: 1060px;
  }

  .width-1060px\@sm {
    width: 1060px;
  }

  .min-width-1060px\@sm {
    min-width: 1060px;
  }

  .max-width-1060px\@sm {
    max-width: 1060px;
  }

  .height-1080px\@sm {
    height: 1080px;
  }

  .min-height-1080px\@sm {
    min-height: 1080px;
  }

  .max-height-1080px\@sm {
    max-height: 1080px;
  }

  .width-1080px\@sm {
    width: 1080px;
  }

  .min-width-1080px\@sm {
    min-width: 1080px;
  }

  .max-width-1080px\@sm {
    max-width: 1080px;
  }

  .height-1100px\@sm {
    height: 1100px;
  }

  .min-height-1100px\@sm {
    min-height: 1100px;
  }

  .max-height-1100px\@sm {
    max-height: 1100px;
  }

  .width-1100px\@sm {
    width: 1100px;
  }

  .min-width-1100px\@sm {
    min-width: 1100px;
  }

  .max-width-1100px\@sm {
    max-width: 1100px;
  }

  .height-1120px\@sm {
    height: 1120px;
  }

  .min-height-1120px\@sm {
    min-height: 1120px;
  }

  .max-height-1120px\@sm {
    max-height: 1120px;
  }

  .width-1120px\@sm {
    width: 1120px;
  }

  .min-width-1120px\@sm {
    min-width: 1120px;
  }

  .max-width-1120px\@sm {
    max-width: 1120px;
  }

  .height-1140px\@sm {
    height: 1140px;
  }

  .min-height-1140px\@sm {
    min-height: 1140px;
  }

  .max-height-1140px\@sm {
    max-height: 1140px;
  }

  .width-1140px\@sm {
    width: 1140px;
  }

  .min-width-1140px\@sm {
    min-width: 1140px;
  }

  .max-width-1140px\@sm {
    max-width: 1140px;
  }

  .height-1160px\@sm {
    height: 1160px;
  }

  .min-height-1160px\@sm {
    min-height: 1160px;
  }

  .max-height-1160px\@sm {
    max-height: 1160px;
  }

  .width-1160px\@sm {
    width: 1160px;
  }

  .min-width-1160px\@sm {
    min-width: 1160px;
  }

  .max-width-1160px\@sm {
    max-width: 1160px;
  }

  .height-1180px\@sm {
    height: 1180px;
  }

  .min-height-1180px\@sm {
    min-height: 1180px;
  }

  .max-height-1180px\@sm {
    max-height: 1180px;
  }

  .width-1180px\@sm {
    width: 1180px;
  }

  .min-width-1180px\@sm {
    min-width: 1180px;
  }

  .max-width-1180px\@sm {
    max-width: 1180px;
  }

  .height-1200px\@sm {
    height: 1200px;
  }

  .min-height-1200px\@sm {
    min-height: 1200px;
  }

  .max-height-1200px\@sm {
    max-height: 1200px;
  }

  .width-1200px\@sm {
    width: 1200px;
  }

  .min-width-1200px\@sm {
    min-width: 1200px;
  }

  .max-width-1200px\@sm {
    max-width: 1200px;
  }

  .height-1220px\@sm {
    height: 1220px;
  }

  .min-height-1220px\@sm {
    min-height: 1220px;
  }

  .max-height-1220px\@sm {
    max-height: 1220px;
  }

  .width-1220px\@sm {
    width: 1220px;
  }

  .min-width-1220px\@sm {
    min-width: 1220px;
  }

  .max-width-1220px\@sm {
    max-width: 1220px;
  }

  .height-1240px\@sm {
    height: 1240px;
  }

  .min-height-1240px\@sm {
    min-height: 1240px;
  }

  .max-height-1240px\@sm {
    max-height: 1240px;
  }

  .width-1240px\@sm {
    width: 1240px;
  }

  .min-width-1240px\@sm {
    min-width: 1240px;
  }

  .max-width-1240px\@sm {
    max-width: 1240px;
  }

  .height-1260px\@sm {
    height: 1260px;
  }

  .min-height-1260px\@sm {
    min-height: 1260px;
  }

  .max-height-1260px\@sm {
    max-height: 1260px;
  }

  .width-1260px\@sm {
    width: 1260px;
  }

  .min-width-1260px\@sm {
    min-width: 1260px;
  }

  .max-width-1260px\@sm {
    max-width: 1260px;
  }

  .height-1280px\@sm {
    height: 1280px;
  }

  .min-height-1280px\@sm {
    min-height: 1280px;
  }

  .max-height-1280px\@sm {
    max-height: 1280px;
  }

  .width-1280px\@sm {
    width: 1280px;
  }

  .min-width-1280px\@sm {
    min-width: 1280px;
  }

  .max-width-1280px\@sm {
    max-width: 1280px;
  }

  .height-1300px\@sm {
    height: 1300px;
  }

  .min-height-1300px\@sm {
    min-height: 1300px;
  }

  .max-height-1300px\@sm {
    max-height: 1300px;
  }

  .width-1300px\@sm {
    width: 1300px;
  }

  .min-width-1300px\@sm {
    min-width: 1300px;
  }

  .max-width-1300px\@sm {
    max-width: 1300px;
  }

  .height-1320px\@sm {
    height: 1320px;
  }

  .min-height-1320px\@sm {
    min-height: 1320px;
  }

  .max-height-1320px\@sm {
    max-height: 1320px;
  }

  .width-1320px\@sm {
    width: 1320px;
  }

  .min-width-1320px\@sm {
    min-width: 1320px;
  }

  .max-width-1320px\@sm {
    max-width: 1320px;
  }

  .height-1340px\@sm {
    height: 1340px;
  }

  .min-height-1340px\@sm {
    min-height: 1340px;
  }

  .max-height-1340px\@sm {
    max-height: 1340px;
  }

  .width-1340px\@sm {
    width: 1340px;
  }

  .min-width-1340px\@sm {
    min-width: 1340px;
  }

  .max-width-1340px\@sm {
    max-width: 1340px;
  }

  .height-1360px\@sm {
    height: 1360px;
  }

  .min-height-1360px\@sm {
    min-height: 1360px;
  }

  .max-height-1360px\@sm {
    max-height: 1360px;
  }

  .width-1360px\@sm {
    width: 1360px;
  }

  .min-width-1360px\@sm {
    min-width: 1360px;
  }

  .max-width-1360px\@sm {
    max-width: 1360px;
  }

  .height-1380px\@sm {
    height: 1380px;
  }

  .min-height-1380px\@sm {
    min-height: 1380px;
  }

  .max-height-1380px\@sm {
    max-height: 1380px;
  }

  .width-1380px\@sm {
    width: 1380px;
  }

  .min-width-1380px\@sm {
    min-width: 1380px;
  }

  .max-width-1380px\@sm {
    max-width: 1380px;
  }

  .height-1400px\@sm {
    height: 1400px;
  }

  .min-height-1400px\@sm {
    min-height: 1400px;
  }

  .max-height-1400px\@sm {
    max-height: 1400px;
  }

  .width-1400px\@sm {
    width: 1400px;
  }

  .min-width-1400px\@sm {
    min-width: 1400px;
  }

  .max-width-1400px\@sm {
    max-width: 1400px;
  }

  .height-1420px\@sm {
    height: 1420px;
  }

  .min-height-1420px\@sm {
    min-height: 1420px;
  }

  .max-height-1420px\@sm {
    max-height: 1420px;
  }

  .width-1420px\@sm {
    width: 1420px;
  }

  .min-width-1420px\@sm {
    min-width: 1420px;
  }

  .max-width-1420px\@sm {
    max-width: 1420px;
  }

  .height-1440px\@sm {
    height: 1440px;
  }

  .min-height-1440px\@sm {
    min-height: 1440px;
  }

  .max-height-1440px\@sm {
    max-height: 1440px;
  }

  .width-1440px\@sm {
    width: 1440px;
  }

  .min-width-1440px\@sm {
    min-width: 1440px;
  }

  .max-width-1440px\@sm {
    max-width: 1440px;
  }

  .height-1460px\@sm {
    height: 1460px;
  }

  .min-height-1460px\@sm {
    min-height: 1460px;
  }

  .max-height-1460px\@sm {
    max-height: 1460px;
  }

  .width-1460px\@sm {
    width: 1460px;
  }

  .min-width-1460px\@sm {
    min-width: 1460px;
  }

  .max-width-1460px\@sm {
    max-width: 1460px;
  }

  .height-1480px\@sm {
    height: 1480px;
  }

  .min-height-1480px\@sm {
    min-height: 1480px;
  }

  .max-height-1480px\@sm {
    max-height: 1480px;
  }

  .width-1480px\@sm {
    width: 1480px;
  }

  .min-width-1480px\@sm {
    min-width: 1480px;
  }

  .max-width-1480px\@sm {
    max-width: 1480px;
  }

  .height-1500px\@sm {
    height: 1500px;
  }

  .min-height-1500px\@sm {
    min-height: 1500px;
  }

  .max-height-1500px\@sm {
    max-height: 1500px;
  }

  .width-1500px\@sm {
    width: 1500px;
  }

  .min-width-1500px\@sm {
    min-width: 1500px;
  }

  .max-width-1500px\@sm {
    max-width: 1500px;
  }

  .height-1520px\@sm {
    height: 1520px;
  }

  .min-height-1520px\@sm {
    min-height: 1520px;
  }

  .max-height-1520px\@sm {
    max-height: 1520px;
  }

  .width-1520px\@sm {
    width: 1520px;
  }

  .min-width-1520px\@sm {
    min-width: 1520px;
  }

  .max-width-1520px\@sm {
    max-width: 1520px;
  }

  .height-1540px\@sm {
    height: 1540px;
  }

  .min-height-1540px\@sm {
    min-height: 1540px;
  }

  .max-height-1540px\@sm {
    max-height: 1540px;
  }

  .width-1540px\@sm {
    width: 1540px;
  }

  .min-width-1540px\@sm {
    min-width: 1540px;
  }

  .max-width-1540px\@sm {
    max-width: 1540px;
  }

  .height-1560px\@sm {
    height: 1560px;
  }

  .min-height-1560px\@sm {
    min-height: 1560px;
  }

  .max-height-1560px\@sm {
    max-height: 1560px;
  }

  .width-1560px\@sm {
    width: 1560px;
  }

  .min-width-1560px\@sm {
    min-width: 1560px;
  }

  .max-width-1560px\@sm {
    max-width: 1560px;
  }

  .height-1580px\@sm {
    height: 1580px;
  }

  .min-height-1580px\@sm {
    min-height: 1580px;
  }

  .max-height-1580px\@sm {
    max-height: 1580px;
  }

  .width-1580px\@sm {
    width: 1580px;
  }

  .min-width-1580px\@sm {
    min-width: 1580px;
  }

  .max-width-1580px\@sm {
    max-width: 1580px;
  }

  .height-1600px\@sm {
    height: 1600px;
  }

  .min-height-1600px\@sm {
    min-height: 1600px;
  }

  .max-height-1600px\@sm {
    max-height: 1600px;
  }

  .width-1600px\@sm {
    width: 1600px;
  }

  .min-width-1600px\@sm {
    min-width: 1600px;
  }

  .max-width-1600px\@sm {
    max-width: 1600px;
  }

  .height-1620px\@sm {
    height: 1620px;
  }

  .min-height-1620px\@sm {
    min-height: 1620px;
  }

  .max-height-1620px\@sm {
    max-height: 1620px;
  }

  .width-1620px\@sm {
    width: 1620px;
  }

  .min-width-1620px\@sm {
    min-width: 1620px;
  }

  .max-width-1620px\@sm {
    max-width: 1620px;
  }

  .height-1640px\@sm {
    height: 1640px;
  }

  .min-height-1640px\@sm {
    min-height: 1640px;
  }

  .max-height-1640px\@sm {
    max-height: 1640px;
  }

  .width-1640px\@sm {
    width: 1640px;
  }

  .min-width-1640px\@sm {
    min-width: 1640px;
  }

  .max-width-1640px\@sm {
    max-width: 1640px;
  }

  .height-1660px\@sm {
    height: 1660px;
  }

  .min-height-1660px\@sm {
    min-height: 1660px;
  }

  .max-height-1660px\@sm {
    max-height: 1660px;
  }

  .width-1660px\@sm {
    width: 1660px;
  }

  .min-width-1660px\@sm {
    min-width: 1660px;
  }

  .max-width-1660px\@sm {
    max-width: 1660px;
  }

  .height-1680px\@sm {
    height: 1680px;
  }

  .min-height-1680px\@sm {
    min-height: 1680px;
  }

  .max-height-1680px\@sm {
    max-height: 1680px;
  }

  .width-1680px\@sm {
    width: 1680px;
  }

  .min-width-1680px\@sm {
    min-width: 1680px;
  }

  .max-width-1680px\@sm {
    max-width: 1680px;
  }

  .height-1700px\@sm {
    height: 1700px;
  }

  .min-height-1700px\@sm {
    min-height: 1700px;
  }

  .max-height-1700px\@sm {
    max-height: 1700px;
  }

  .width-1700px\@sm {
    width: 1700px;
  }

  .min-width-1700px\@sm {
    min-width: 1700px;
  }

  .max-width-1700px\@sm {
    max-width: 1700px;
  }

  .height-1720px\@sm {
    height: 1720px;
  }

  .min-height-1720px\@sm {
    min-height: 1720px;
  }

  .max-height-1720px\@sm {
    max-height: 1720px;
  }

  .width-1720px\@sm {
    width: 1720px;
  }

  .min-width-1720px\@sm {
    min-width: 1720px;
  }

  .max-width-1720px\@sm {
    max-width: 1720px;
  }

  .height-1740px\@sm {
    height: 1740px;
  }

  .min-height-1740px\@sm {
    min-height: 1740px;
  }

  .max-height-1740px\@sm {
    max-height: 1740px;
  }

  .width-1740px\@sm {
    width: 1740px;
  }

  .min-width-1740px\@sm {
    min-width: 1740px;
  }

  .max-width-1740px\@sm {
    max-width: 1740px;
  }

  .height-1760px\@sm {
    height: 1760px;
  }

  .min-height-1760px\@sm {
    min-height: 1760px;
  }

  .max-height-1760px\@sm {
    max-height: 1760px;
  }

  .width-1760px\@sm {
    width: 1760px;
  }

  .min-width-1760px\@sm {
    min-width: 1760px;
  }

  .max-width-1760px\@sm {
    max-width: 1760px;
  }

  .height-1780px\@sm {
    height: 1780px;
  }

  .min-height-1780px\@sm {
    min-height: 1780px;
  }

  .max-height-1780px\@sm {
    max-height: 1780px;
  }

  .width-1780px\@sm {
    width: 1780px;
  }

  .min-width-1780px\@sm {
    min-width: 1780px;
  }

  .max-width-1780px\@sm {
    max-width: 1780px;
  }

  .height-1800px\@sm {
    height: 1800px;
  }

  .min-height-1800px\@sm {
    min-height: 1800px;
  }

  .max-height-1800px\@sm {
    max-height: 1800px;
  }

  .width-1800px\@sm {
    width: 1800px;
  }

  .min-width-1800px\@sm {
    min-width: 1800px;
  }

  .max-width-1800px\@sm {
    max-width: 1800px;
  }

  .height-1820px\@sm {
    height: 1820px;
  }

  .min-height-1820px\@sm {
    min-height: 1820px;
  }

  .max-height-1820px\@sm {
    max-height: 1820px;
  }

  .width-1820px\@sm {
    width: 1820px;
  }

  .min-width-1820px\@sm {
    min-width: 1820px;
  }

  .max-width-1820px\@sm {
    max-width: 1820px;
  }

  .height-1840px\@sm {
    height: 1840px;
  }

  .min-height-1840px\@sm {
    min-height: 1840px;
  }

  .max-height-1840px\@sm {
    max-height: 1840px;
  }

  .width-1840px\@sm {
    width: 1840px;
  }

  .min-width-1840px\@sm {
    min-width: 1840px;
  }

  .max-width-1840px\@sm {
    max-width: 1840px;
  }

  .height-1860px\@sm {
    height: 1860px;
  }

  .min-height-1860px\@sm {
    min-height: 1860px;
  }

  .max-height-1860px\@sm {
    max-height: 1860px;
  }

  .width-1860px\@sm {
    width: 1860px;
  }

  .min-width-1860px\@sm {
    min-width: 1860px;
  }

  .max-width-1860px\@sm {
    max-width: 1860px;
  }

  .height-1880px\@sm {
    height: 1880px;
  }

  .min-height-1880px\@sm {
    min-height: 1880px;
  }

  .max-height-1880px\@sm {
    max-height: 1880px;
  }

  .width-1880px\@sm {
    width: 1880px;
  }

  .min-width-1880px\@sm {
    min-width: 1880px;
  }

  .max-width-1880px\@sm {
    max-width: 1880px;
  }

  .height-1900px\@sm {
    height: 1900px;
  }

  .min-height-1900px\@sm {
    min-height: 1900px;
  }

  .max-height-1900px\@sm {
    max-height: 1900px;
  }

  .width-1900px\@sm {
    width: 1900px;
  }

  .min-width-1900px\@sm {
    min-width: 1900px;
  }

  .max-width-1900px\@sm {
    max-width: 1900px;
  }

  .height-1920px\@sm {
    height: 1920px;
  }

  .min-height-1920px\@sm {
    min-height: 1920px;
  }

  .max-height-1920px\@sm {
    max-height: 1920px;
  }

  .width-1920px\@sm {
    width: 1920px;
  }

  .min-width-1920px\@sm {
    min-width: 1920px;
  }

  .max-width-1920px\@sm {
    max-width: 1920px;
  }

  .height-1940px\@sm {
    height: 1940px;
  }

  .min-height-1940px\@sm {
    min-height: 1940px;
  }

  .max-height-1940px\@sm {
    max-height: 1940px;
  }

  .width-1940px\@sm {
    width: 1940px;
  }

  .min-width-1940px\@sm {
    min-width: 1940px;
  }

  .max-width-1940px\@sm {
    max-width: 1940px;
  }

  .height-1960px\@sm {
    height: 1960px;
  }

  .min-height-1960px\@sm {
    min-height: 1960px;
  }

  .max-height-1960px\@sm {
    max-height: 1960px;
  }

  .width-1960px\@sm {
    width: 1960px;
  }

  .min-width-1960px\@sm {
    min-width: 1960px;
  }

  .max-width-1960px\@sm {
    max-width: 1960px;
  }

  .height-1980px\@sm {
    height: 1980px;
  }

  .min-height-1980px\@sm {
    min-height: 1980px;
  }

  .max-height-1980px\@sm {
    max-height: 1980px;
  }

  .width-1980px\@sm {
    width: 1980px;
  }

  .min-width-1980px\@sm {
    min-width: 1980px;
  }

  .max-width-1980px\@sm {
    max-width: 1980px;
  }

  .height-2000px\@sm {
    height: 2000px;
  }

  .min-height-2000px\@sm {
    min-height: 2000px;
  }

  .max-height-2000px\@sm {
    max-height: 2000px;
  }

  .width-2000px\@sm {
    width: 2000px;
  }

  .min-width-2000px\@sm {
    min-width: 2000px;
  }

  .max-width-2000px\@sm {
    max-width: 2000px;
  }

  .height-2020px\@sm {
    height: 2020px;
  }

  .min-height-2020px\@sm {
    min-height: 2020px;
  }

  .max-height-2020px\@sm {
    max-height: 2020px;
  }

  .width-2020px\@sm {
    width: 2020px;
  }

  .min-width-2020px\@sm {
    min-width: 2020px;
  }

  .max-width-2020px\@sm {
    max-width: 2020px;
  }

  .height-2040px\@sm {
    height: 2040px;
  }

  .min-height-2040px\@sm {
    min-height: 2040px;
  }

  .max-height-2040px\@sm {
    max-height: 2040px;
  }

  .width-2040px\@sm {
    width: 2040px;
  }

  .min-width-2040px\@sm {
    min-width: 2040px;
  }

  .max-width-2040px\@sm {
    max-width: 2040px;
  }

  .height-2060px\@sm {
    height: 2060px;
  }

  .min-height-2060px\@sm {
    min-height: 2060px;
  }

  .max-height-2060px\@sm {
    max-height: 2060px;
  }

  .width-2060px\@sm {
    width: 2060px;
  }

  .min-width-2060px\@sm {
    min-width: 2060px;
  }

  .max-width-2060px\@sm {
    max-width: 2060px;
  }

  .height-2080px\@sm {
    height: 2080px;
  }

  .min-height-2080px\@sm {
    min-height: 2080px;
  }

  .max-height-2080px\@sm {
    max-height: 2080px;
  }

  .width-2080px\@sm {
    width: 2080px;
  }

  .min-width-2080px\@sm {
    min-width: 2080px;
  }

  .max-width-2080px\@sm {
    max-width: 2080px;
  }

  .height-2100px\@sm {
    height: 2100px;
  }

  .min-height-2100px\@sm {
    min-height: 2100px;
  }

  .max-height-2100px\@sm {
    max-height: 2100px;
  }

  .width-2100px\@sm {
    width: 2100px;
  }

  .min-width-2100px\@sm {
    min-width: 2100px;
  }

  .max-width-2100px\@sm {
    max-width: 2100px;
  }

  .height-2120px\@sm {
    height: 2120px;
  }

  .min-height-2120px\@sm {
    min-height: 2120px;
  }

  .max-height-2120px\@sm {
    max-height: 2120px;
  }

  .width-2120px\@sm {
    width: 2120px;
  }

  .min-width-2120px\@sm {
    min-width: 2120px;
  }

  .max-width-2120px\@sm {
    max-width: 2120px;
  }

  .height-2140px\@sm {
    height: 2140px;
  }

  .min-height-2140px\@sm {
    min-height: 2140px;
  }

  .max-height-2140px\@sm {
    max-height: 2140px;
  }

  .width-2140px\@sm {
    width: 2140px;
  }

  .min-width-2140px\@sm {
    min-width: 2140px;
  }

  .max-width-2140px\@sm {
    max-width: 2140px;
  }

  .height-2160px\@sm {
    height: 2160px;
  }

  .min-height-2160px\@sm {
    min-height: 2160px;
  }

  .max-height-2160px\@sm {
    max-height: 2160px;
  }

  .width-2160px\@sm {
    width: 2160px;
  }

  .min-width-2160px\@sm {
    min-width: 2160px;
  }

  .max-width-2160px\@sm {
    max-width: 2160px;
  }

  .height-2180px\@sm {
    height: 2180px;
  }

  .min-height-2180px\@sm {
    min-height: 2180px;
  }

  .max-height-2180px\@sm {
    max-height: 2180px;
  }

  .width-2180px\@sm {
    width: 2180px;
  }

  .min-width-2180px\@sm {
    min-width: 2180px;
  }

  .max-width-2180px\@sm {
    max-width: 2180px;
  }

  .height-2200px\@sm {
    height: 2200px;
  }

  .min-height-2200px\@sm {
    min-height: 2200px;
  }

  .max-height-2200px\@sm {
    max-height: 2200px;
  }

  .width-2200px\@sm {
    width: 2200px;
  }

  .min-width-2200px\@sm {
    min-width: 2200px;
  }

  .max-width-2200px\@sm {
    max-width: 2200px;
  }

  .height-2220px\@sm {
    height: 2220px;
  }

  .min-height-2220px\@sm {
    min-height: 2220px;
  }

  .max-height-2220px\@sm {
    max-height: 2220px;
  }

  .width-2220px\@sm {
    width: 2220px;
  }

  .min-width-2220px\@sm {
    min-width: 2220px;
  }

  .max-width-2220px\@sm {
    max-width: 2220px;
  }

  .height-2240px\@sm {
    height: 2240px;
  }

  .min-height-2240px\@sm {
    min-height: 2240px;
  }

  .max-height-2240px\@sm {
    max-height: 2240px;
  }

  .width-2240px\@sm {
    width: 2240px;
  }

  .min-width-2240px\@sm {
    min-width: 2240px;
  }

  .max-width-2240px\@sm {
    max-width: 2240px;
  }

  .height-2260px\@sm {
    height: 2260px;
  }

  .min-height-2260px\@sm {
    min-height: 2260px;
  }

  .max-height-2260px\@sm {
    max-height: 2260px;
  }

  .width-2260px\@sm {
    width: 2260px;
  }

  .min-width-2260px\@sm {
    min-width: 2260px;
  }

  .max-width-2260px\@sm {
    max-width: 2260px;
  }

  .height-2280px\@sm {
    height: 2280px;
  }

  .min-height-2280px\@sm {
    min-height: 2280px;
  }

  .max-height-2280px\@sm {
    max-height: 2280px;
  }

  .width-2280px\@sm {
    width: 2280px;
  }

  .min-width-2280px\@sm {
    min-width: 2280px;
  }

  .max-width-2280px\@sm {
    max-width: 2280px;
  }

  .height-2300px\@sm {
    height: 2300px;
  }

  .min-height-2300px\@sm {
    min-height: 2300px;
  }

  .max-height-2300px\@sm {
    max-height: 2300px;
  }

  .width-2300px\@sm {
    width: 2300px;
  }

  .min-width-2300px\@sm {
    min-width: 2300px;
  }

  .max-width-2300px\@sm {
    max-width: 2300px;
  }

  .height-2320px\@sm {
    height: 2320px;
  }

  .min-height-2320px\@sm {
    min-height: 2320px;
  }

  .max-height-2320px\@sm {
    max-height: 2320px;
  }

  .width-2320px\@sm {
    width: 2320px;
  }

  .min-width-2320px\@sm {
    min-width: 2320px;
  }

  .max-width-2320px\@sm {
    max-width: 2320px;
  }

  .height-2340px\@sm {
    height: 2340px;
  }

  .min-height-2340px\@sm {
    min-height: 2340px;
  }

  .max-height-2340px\@sm {
    max-height: 2340px;
  }

  .width-2340px\@sm {
    width: 2340px;
  }

  .min-width-2340px\@sm {
    min-width: 2340px;
  }

  .max-width-2340px\@sm {
    max-width: 2340px;
  }

  .height-2360px\@sm {
    height: 2360px;
  }

  .min-height-2360px\@sm {
    min-height: 2360px;
  }

  .max-height-2360px\@sm {
    max-height: 2360px;
  }

  .width-2360px\@sm {
    width: 2360px;
  }

  .min-width-2360px\@sm {
    min-width: 2360px;
  }

  .max-width-2360px\@sm {
    max-width: 2360px;
  }

  .height-2380px\@sm {
    height: 2380px;
  }

  .min-height-2380px\@sm {
    min-height: 2380px;
  }

  .max-height-2380px\@sm {
    max-height: 2380px;
  }

  .width-2380px\@sm {
    width: 2380px;
  }

  .min-width-2380px\@sm {
    min-width: 2380px;
  }

  .max-width-2380px\@sm {
    max-width: 2380px;
  }

  .height-2400px\@sm {
    height: 2400px;
  }

  .min-height-2400px\@sm {
    min-height: 2400px;
  }

  .max-height-2400px\@sm {
    max-height: 2400px;
  }

  .width-2400px\@sm {
    width: 2400px;
  }

  .min-width-2400px\@sm {
    min-width: 2400px;
  }

  .max-width-2400px\@sm {
    max-width: 2400px;
  }

  .height-2420px\@sm {
    height: 2420px;
  }

  .min-height-2420px\@sm {
    min-height: 2420px;
  }

  .max-height-2420px\@sm {
    max-height: 2420px;
  }

  .width-2420px\@sm {
    width: 2420px;
  }

  .min-width-2420px\@sm {
    min-width: 2420px;
  }

  .max-width-2420px\@sm {
    max-width: 2420px;
  }

  .height-2440px\@sm {
    height: 2440px;
  }

  .min-height-2440px\@sm {
    min-height: 2440px;
  }

  .max-height-2440px\@sm {
    max-height: 2440px;
  }

  .width-2440px\@sm {
    width: 2440px;
  }

  .min-width-2440px\@sm {
    min-width: 2440px;
  }

  .max-width-2440px\@sm {
    max-width: 2440px;
  }

  .height-2460px\@sm {
    height: 2460px;
  }

  .min-height-2460px\@sm {
    min-height: 2460px;
  }

  .max-height-2460px\@sm {
    max-height: 2460px;
  }

  .width-2460px\@sm {
    width: 2460px;
  }

  .min-width-2460px\@sm {
    min-width: 2460px;
  }

  .max-width-2460px\@sm {
    max-width: 2460px;
  }

  .height-2480px\@sm {
    height: 2480px;
  }

  .min-height-2480px\@sm {
    min-height: 2480px;
  }

  .max-height-2480px\@sm {
    max-height: 2480px;
  }

  .width-2480px\@sm {
    width: 2480px;
  }

  .min-width-2480px\@sm {
    min-width: 2480px;
  }

  .max-width-2480px\@sm {
    max-width: 2480px;
  }

  .height-2500px\@sm {
    height: 2500px;
  }

  .min-height-2500px\@sm {
    min-height: 2500px;
  }

  .max-height-2500px\@sm {
    max-height: 2500px;
  }

  .width-2500px\@sm {
    width: 2500px;
  }

  .min-width-2500px\@sm {
    min-width: 2500px;
  }

  .max-width-2500px\@sm {
    max-width: 2500px;
  }

  .height-2520px\@sm {
    height: 2520px;
  }

  .min-height-2520px\@sm {
    min-height: 2520px;
  }

  .max-height-2520px\@sm {
    max-height: 2520px;
  }

  .width-2520px\@sm {
    width: 2520px;
  }

  .min-width-2520px\@sm {
    min-width: 2520px;
  }

  .max-width-2520px\@sm {
    max-width: 2520px;
  }

  .height-2540px\@sm {
    height: 2540px;
  }

  .min-height-2540px\@sm {
    min-height: 2540px;
  }

  .max-height-2540px\@sm {
    max-height: 2540px;
  }

  .width-2540px\@sm {
    width: 2540px;
  }

  .min-width-2540px\@sm {
    min-width: 2540px;
  }

  .max-width-2540px\@sm {
    max-width: 2540px;
  }

  .height-2560px\@sm {
    height: 2560px;
  }

  .min-height-2560px\@sm {
    min-height: 2560px;
  }

  .max-height-2560px\@sm {
    max-height: 2560px;
  }

  .width-2560px\@sm {
    width: 2560px;
  }

  .min-width-2560px\@sm {
    min-width: 2560px;
  }

  .max-width-2560px\@sm {
    max-width: 2560px;
  }

  .height-2580px\@sm {
    height: 2580px;
  }

  .min-height-2580px\@sm {
    min-height: 2580px;
  }

  .max-height-2580px\@sm {
    max-height: 2580px;
  }

  .width-2580px\@sm {
    width: 2580px;
  }

  .min-width-2580px\@sm {
    min-width: 2580px;
  }

  .max-width-2580px\@sm {
    max-width: 2580px;
  }

  .height-2600px\@sm {
    height: 2600px;
  }

  .min-height-2600px\@sm {
    min-height: 2600px;
  }

  .max-height-2600px\@sm {
    max-height: 2600px;
  }

  .width-2600px\@sm {
    width: 2600px;
  }

  .min-width-2600px\@sm {
    min-width: 2600px;
  }

  .max-width-2600px\@sm {
    max-width: 2600px;
  }

  .height-2620px\@sm {
    height: 2620px;
  }

  .min-height-2620px\@sm {
    min-height: 2620px;
  }

  .max-height-2620px\@sm {
    max-height: 2620px;
  }

  .width-2620px\@sm {
    width: 2620px;
  }

  .min-width-2620px\@sm {
    min-width: 2620px;
  }

  .max-width-2620px\@sm {
    max-width: 2620px;
  }

  .height-2640px\@sm {
    height: 2640px;
  }

  .min-height-2640px\@sm {
    min-height: 2640px;
  }

  .max-height-2640px\@sm {
    max-height: 2640px;
  }

  .width-2640px\@sm {
    width: 2640px;
  }

  .min-width-2640px\@sm {
    min-width: 2640px;
  }

  .max-width-2640px\@sm {
    max-width: 2640px;
  }

  .height-2660px\@sm {
    height: 2660px;
  }

  .min-height-2660px\@sm {
    min-height: 2660px;
  }

  .max-height-2660px\@sm {
    max-height: 2660px;
  }

  .width-2660px\@sm {
    width: 2660px;
  }

  .min-width-2660px\@sm {
    min-width: 2660px;
  }

  .max-width-2660px\@sm {
    max-width: 2660px;
  }

  .height-2680px\@sm {
    height: 2680px;
  }

  .min-height-2680px\@sm {
    min-height: 2680px;
  }

  .max-height-2680px\@sm {
    max-height: 2680px;
  }

  .width-2680px\@sm {
    width: 2680px;
  }

  .min-width-2680px\@sm {
    min-width: 2680px;
  }

  .max-width-2680px\@sm {
    max-width: 2680px;
  }

  .height-2700px\@sm {
    height: 2700px;
  }

  .min-height-2700px\@sm {
    min-height: 2700px;
  }

  .max-height-2700px\@sm {
    max-height: 2700px;
  }

  .width-2700px\@sm {
    width: 2700px;
  }

  .min-width-2700px\@sm {
    min-width: 2700px;
  }

  .max-width-2700px\@sm {
    max-width: 2700px;
  }

  .height-2720px\@sm {
    height: 2720px;
  }

  .min-height-2720px\@sm {
    min-height: 2720px;
  }

  .max-height-2720px\@sm {
    max-height: 2720px;
  }

  .width-2720px\@sm {
    width: 2720px;
  }

  .min-width-2720px\@sm {
    min-width: 2720px;
  }

  .max-width-2720px\@sm {
    max-width: 2720px;
  }

  .height-2740px\@sm {
    height: 2740px;
  }

  .min-height-2740px\@sm {
    min-height: 2740px;
  }

  .max-height-2740px\@sm {
    max-height: 2740px;
  }

  .width-2740px\@sm {
    width: 2740px;
  }

  .min-width-2740px\@sm {
    min-width: 2740px;
  }

  .max-width-2740px\@sm {
    max-width: 2740px;
  }

  .height-2760px\@sm {
    height: 2760px;
  }

  .min-height-2760px\@sm {
    min-height: 2760px;
  }

  .max-height-2760px\@sm {
    max-height: 2760px;
  }

  .width-2760px\@sm {
    width: 2760px;
  }

  .min-width-2760px\@sm {
    min-width: 2760px;
  }

  .max-width-2760px\@sm {
    max-width: 2760px;
  }

  .height-2780px\@sm {
    height: 2780px;
  }

  .min-height-2780px\@sm {
    min-height: 2780px;
  }

  .max-height-2780px\@sm {
    max-height: 2780px;
  }

  .width-2780px\@sm {
    width: 2780px;
  }

  .min-width-2780px\@sm {
    min-width: 2780px;
  }

  .max-width-2780px\@sm {
    max-width: 2780px;
  }

  .height-2800px\@sm {
    height: 2800px;
  }

  .min-height-2800px\@sm {
    min-height: 2800px;
  }

  .max-height-2800px\@sm {
    max-height: 2800px;
  }

  .width-2800px\@sm {
    width: 2800px;
  }

  .min-width-2800px\@sm {
    min-width: 2800px;
  }

  .max-width-2800px\@sm {
    max-width: 2800px;
  }

  .height-2820px\@sm {
    height: 2820px;
  }

  .min-height-2820px\@sm {
    min-height: 2820px;
  }

  .max-height-2820px\@sm {
    max-height: 2820px;
  }

  .width-2820px\@sm {
    width: 2820px;
  }

  .min-width-2820px\@sm {
    min-width: 2820px;
  }

  .max-width-2820px\@sm {
    max-width: 2820px;
  }

  .height-2840px\@sm {
    height: 2840px;
  }

  .min-height-2840px\@sm {
    min-height: 2840px;
  }

  .max-height-2840px\@sm {
    max-height: 2840px;
  }

  .width-2840px\@sm {
    width: 2840px;
  }

  .min-width-2840px\@sm {
    min-width: 2840px;
  }

  .max-width-2840px\@sm {
    max-width: 2840px;
  }

  .height-2860px\@sm {
    height: 2860px;
  }

  .min-height-2860px\@sm {
    min-height: 2860px;
  }

  .max-height-2860px\@sm {
    max-height: 2860px;
  }

  .width-2860px\@sm {
    width: 2860px;
  }

  .min-width-2860px\@sm {
    min-width: 2860px;
  }

  .max-width-2860px\@sm {
    max-width: 2860px;
  }

  .height-2880px\@sm {
    height: 2880px;
  }

  .min-height-2880px\@sm {
    min-height: 2880px;
  }

  .max-height-2880px\@sm {
    max-height: 2880px;
  }

  .width-2880px\@sm {
    width: 2880px;
  }

  .min-width-2880px\@sm {
    min-width: 2880px;
  }

  .max-width-2880px\@sm {
    max-width: 2880px;
  }

  .height-2900px\@sm {
    height: 2900px;
  }

  .min-height-2900px\@sm {
    min-height: 2900px;
  }

  .max-height-2900px\@sm {
    max-height: 2900px;
  }

  .width-2900px\@sm {
    width: 2900px;
  }

  .min-width-2900px\@sm {
    min-width: 2900px;
  }

  .max-width-2900px\@sm {
    max-width: 2900px;
  }

  .height-2920px\@sm {
    height: 2920px;
  }

  .min-height-2920px\@sm {
    min-height: 2920px;
  }

  .max-height-2920px\@sm {
    max-height: 2920px;
  }

  .width-2920px\@sm {
    width: 2920px;
  }

  .min-width-2920px\@sm {
    min-width: 2920px;
  }

  .max-width-2920px\@sm {
    max-width: 2920px;
  }

  .height-2940px\@sm {
    height: 2940px;
  }

  .min-height-2940px\@sm {
    min-height: 2940px;
  }

  .max-height-2940px\@sm {
    max-height: 2940px;
  }

  .width-2940px\@sm {
    width: 2940px;
  }

  .min-width-2940px\@sm {
    min-width: 2940px;
  }

  .max-width-2940px\@sm {
    max-width: 2940px;
  }

  .height-2960px\@sm {
    height: 2960px;
  }

  .min-height-2960px\@sm {
    min-height: 2960px;
  }

  .max-height-2960px\@sm {
    max-height: 2960px;
  }

  .width-2960px\@sm {
    width: 2960px;
  }

  .min-width-2960px\@sm {
    min-width: 2960px;
  }

  .max-width-2960px\@sm {
    max-width: 2960px;
  }

  .height-2980px\@sm {
    height: 2980px;
  }

  .min-height-2980px\@sm {
    min-height: 2980px;
  }

  .max-height-2980px\@sm {
    max-height: 2980px;
  }

  .width-2980px\@sm {
    width: 2980px;
  }

  .min-width-2980px\@sm {
    min-width: 2980px;
  }

  .max-width-2980px\@sm {
    max-width: 2980px;
  }

  .height-3000px\@sm {
    height: 3000px;
  }

  .min-height-3000px\@sm {
    min-height: 3000px;
  }

  .max-height-3000px\@sm {
    max-height: 3000px;
  }

  .width-3000px\@sm {
    width: 3000px;
  }

  .min-width-3000px\@sm {
    min-width: 3000px;
  }

  .max-width-3000px\@sm {
    max-width: 3000px;
  }

  .height-3020px\@sm {
    height: 3020px;
  }

  .min-height-3020px\@sm {
    min-height: 3020px;
  }

  .max-height-3020px\@sm {
    max-height: 3020px;
  }

  .width-3020px\@sm {
    width: 3020px;
  }

  .min-width-3020px\@sm {
    min-width: 3020px;
  }

  .max-width-3020px\@sm {
    max-width: 3020px;
  }

  .height-3040px\@sm {
    height: 3040px;
  }

  .min-height-3040px\@sm {
    min-height: 3040px;
  }

  .max-height-3040px\@sm {
    max-height: 3040px;
  }

  .width-3040px\@sm {
    width: 3040px;
  }

  .min-width-3040px\@sm {
    min-width: 3040px;
  }

  .max-width-3040px\@sm {
    max-width: 3040px;
  }

  .height-3060px\@sm {
    height: 3060px;
  }

  .min-height-3060px\@sm {
    min-height: 3060px;
  }

  .max-height-3060px\@sm {
    max-height: 3060px;
  }

  .width-3060px\@sm {
    width: 3060px;
  }

  .min-width-3060px\@sm {
    min-width: 3060px;
  }

  .max-width-3060px\@sm {
    max-width: 3060px;
  }

  .height-3080px\@sm {
    height: 3080px;
  }

  .min-height-3080px\@sm {
    min-height: 3080px;
  }

  .max-height-3080px\@sm {
    max-height: 3080px;
  }

  .width-3080px\@sm {
    width: 3080px;
  }

  .min-width-3080px\@sm {
    min-width: 3080px;
  }

  .max-width-3080px\@sm {
    max-width: 3080px;
  }

  .height-3100px\@sm {
    height: 3100px;
  }

  .min-height-3100px\@sm {
    min-height: 3100px;
  }

  .max-height-3100px\@sm {
    max-height: 3100px;
  }

  .width-3100px\@sm {
    width: 3100px;
  }

  .min-width-3100px\@sm {
    min-width: 3100px;
  }

  .max-width-3100px\@sm {
    max-width: 3100px;
  }

  .height-3120px\@sm {
    height: 3120px;
  }

  .min-height-3120px\@sm {
    min-height: 3120px;
  }

  .max-height-3120px\@sm {
    max-height: 3120px;
  }

  .width-3120px\@sm {
    width: 3120px;
  }

  .min-width-3120px\@sm {
    min-width: 3120px;
  }

  .max-width-3120px\@sm {
    max-width: 3120px;
  }

  .height-3140px\@sm {
    height: 3140px;
  }

  .min-height-3140px\@sm {
    min-height: 3140px;
  }

  .max-height-3140px\@sm {
    max-height: 3140px;
  }

  .width-3140px\@sm {
    width: 3140px;
  }

  .min-width-3140px\@sm {
    min-width: 3140px;
  }

  .max-width-3140px\@sm {
    max-width: 3140px;
  }

  .height-3160px\@sm {
    height: 3160px;
  }

  .min-height-3160px\@sm {
    min-height: 3160px;
  }

  .max-height-3160px\@sm {
    max-height: 3160px;
  }

  .width-3160px\@sm {
    width: 3160px;
  }

  .min-width-3160px\@sm {
    min-width: 3160px;
  }

  .max-width-3160px\@sm {
    max-width: 3160px;
  }

  .height-3180px\@sm {
    height: 3180px;
  }

  .min-height-3180px\@sm {
    min-height: 3180px;
  }

  .max-height-3180px\@sm {
    max-height: 3180px;
  }

  .width-3180px\@sm {
    width: 3180px;
  }

  .min-width-3180px\@sm {
    min-width: 3180px;
  }

  .max-width-3180px\@sm {
    max-width: 3180px;
  }

  .height-3200px\@sm {
    height: 3200px;
  }

  .min-height-3200px\@sm {
    min-height: 3200px;
  }

  .max-height-3200px\@sm {
    max-height: 3200px;
  }

  .width-3200px\@sm {
    width: 3200px;
  }

  .min-width-3200px\@sm {
    min-width: 3200px;
  }

  .max-width-3200px\@sm {
    max-width: 3200px;
  }

  .height-3220px\@sm {
    height: 3220px;
  }

  .min-height-3220px\@sm {
    min-height: 3220px;
  }

  .max-height-3220px\@sm {
    max-height: 3220px;
  }

  .width-3220px\@sm {
    width: 3220px;
  }

  .min-width-3220px\@sm {
    min-width: 3220px;
  }

  .max-width-3220px\@sm {
    max-width: 3220px;
  }

  .height-3240px\@sm {
    height: 3240px;
  }

  .min-height-3240px\@sm {
    min-height: 3240px;
  }

  .max-height-3240px\@sm {
    max-height: 3240px;
  }

  .width-3240px\@sm {
    width: 3240px;
  }

  .min-width-3240px\@sm {
    min-width: 3240px;
  }

  .max-width-3240px\@sm {
    max-width: 3240px;
  }

  .height-3260px\@sm {
    height: 3260px;
  }

  .min-height-3260px\@sm {
    min-height: 3260px;
  }

  .max-height-3260px\@sm {
    max-height: 3260px;
  }

  .width-3260px\@sm {
    width: 3260px;
  }

  .min-width-3260px\@sm {
    min-width: 3260px;
  }

  .max-width-3260px\@sm {
    max-width: 3260px;
  }

  .height-3280px\@sm {
    height: 3280px;
  }

  .min-height-3280px\@sm {
    min-height: 3280px;
  }

  .max-height-3280px\@sm {
    max-height: 3280px;
  }

  .width-3280px\@sm {
    width: 3280px;
  }

  .min-width-3280px\@sm {
    min-width: 3280px;
  }

  .max-width-3280px\@sm {
    max-width: 3280px;
  }

  .height-3300px\@sm {
    height: 3300px;
  }

  .min-height-3300px\@sm {
    min-height: 3300px;
  }

  .max-height-3300px\@sm {
    max-height: 3300px;
  }

  .width-3300px\@sm {
    width: 3300px;
  }

  .min-width-3300px\@sm {
    min-width: 3300px;
  }

  .max-width-3300px\@sm {
    max-width: 3300px;
  }

  .height-3320px\@sm {
    height: 3320px;
  }

  .min-height-3320px\@sm {
    min-height: 3320px;
  }

  .max-height-3320px\@sm {
    max-height: 3320px;
  }

  .width-3320px\@sm {
    width: 3320px;
  }

  .min-width-3320px\@sm {
    min-width: 3320px;
  }

  .max-width-3320px\@sm {
    max-width: 3320px;
  }

  .height-3340px\@sm {
    height: 3340px;
  }

  .min-height-3340px\@sm {
    min-height: 3340px;
  }

  .max-height-3340px\@sm {
    max-height: 3340px;
  }

  .width-3340px\@sm {
    width: 3340px;
  }

  .min-width-3340px\@sm {
    min-width: 3340px;
  }

  .max-width-3340px\@sm {
    max-width: 3340px;
  }

  .height-3360px\@sm {
    height: 3360px;
  }

  .min-height-3360px\@sm {
    min-height: 3360px;
  }

  .max-height-3360px\@sm {
    max-height: 3360px;
  }

  .width-3360px\@sm {
    width: 3360px;
  }

  .min-width-3360px\@sm {
    min-width: 3360px;
  }

  .max-width-3360px\@sm {
    max-width: 3360px;
  }

  .height-3380px\@sm {
    height: 3380px;
  }

  .min-height-3380px\@sm {
    min-height: 3380px;
  }

  .max-height-3380px\@sm {
    max-height: 3380px;
  }

  .width-3380px\@sm {
    width: 3380px;
  }

  .min-width-3380px\@sm {
    min-width: 3380px;
  }

  .max-width-3380px\@sm {
    max-width: 3380px;
  }

  .height-3400px\@sm {
    height: 3400px;
  }

  .min-height-3400px\@sm {
    min-height: 3400px;
  }

  .max-height-3400px\@sm {
    max-height: 3400px;
  }

  .width-3400px\@sm {
    width: 3400px;
  }

  .min-width-3400px\@sm {
    min-width: 3400px;
  }

  .max-width-3400px\@sm {
    max-width: 3400px;
  }

  .height-3420px\@sm {
    height: 3420px;
  }

  .min-height-3420px\@sm {
    min-height: 3420px;
  }

  .max-height-3420px\@sm {
    max-height: 3420px;
  }

  .width-3420px\@sm {
    width: 3420px;
  }

  .min-width-3420px\@sm {
    min-width: 3420px;
  }

  .max-width-3420px\@sm {
    max-width: 3420px;
  }

  .height-3440px\@sm {
    height: 3440px;
  }

  .min-height-3440px\@sm {
    min-height: 3440px;
  }

  .max-height-3440px\@sm {
    max-height: 3440px;
  }

  .width-3440px\@sm {
    width: 3440px;
  }

  .min-width-3440px\@sm {
    min-width: 3440px;
  }

  .max-width-3440px\@sm {
    max-width: 3440px;
  }

  .height-3460px\@sm {
    height: 3460px;
  }

  .min-height-3460px\@sm {
    min-height: 3460px;
  }

  .max-height-3460px\@sm {
    max-height: 3460px;
  }

  .width-3460px\@sm {
    width: 3460px;
  }

  .min-width-3460px\@sm {
    min-width: 3460px;
  }

  .max-width-3460px\@sm {
    max-width: 3460px;
  }

  .height-3480px\@sm {
    height: 3480px;
  }

  .min-height-3480px\@sm {
    min-height: 3480px;
  }

  .max-height-3480px\@sm {
    max-height: 3480px;
  }

  .width-3480px\@sm {
    width: 3480px;
  }

  .min-width-3480px\@sm {
    min-width: 3480px;
  }

  .max-width-3480px\@sm {
    max-width: 3480px;
  }

  .height-3500px\@sm {
    height: 3500px;
  }

  .min-height-3500px\@sm {
    min-height: 3500px;
  }

  .max-height-3500px\@sm {
    max-height: 3500px;
  }

  .width-3500px\@sm {
    width: 3500px;
  }

  .min-width-3500px\@sm {
    min-width: 3500px;
  }

  .max-width-3500px\@sm {
    max-width: 3500px;
  }

  .height-3520px\@sm {
    height: 3520px;
  }

  .min-height-3520px\@sm {
    min-height: 3520px;
  }

  .max-height-3520px\@sm {
    max-height: 3520px;
  }

  .width-3520px\@sm {
    width: 3520px;
  }

  .min-width-3520px\@sm {
    min-width: 3520px;
  }

  .max-width-3520px\@sm {
    max-width: 3520px;
  }

  .height-3540px\@sm {
    height: 3540px;
  }

  .min-height-3540px\@sm {
    min-height: 3540px;
  }

  .max-height-3540px\@sm {
    max-height: 3540px;
  }

  .width-3540px\@sm {
    width: 3540px;
  }

  .min-width-3540px\@sm {
    min-width: 3540px;
  }

  .max-width-3540px\@sm {
    max-width: 3540px;
  }

  .height-3560px\@sm {
    height: 3560px;
  }

  .min-height-3560px\@sm {
    min-height: 3560px;
  }

  .max-height-3560px\@sm {
    max-height: 3560px;
  }

  .width-3560px\@sm {
    width: 3560px;
  }

  .min-width-3560px\@sm {
    min-width: 3560px;
  }

  .max-width-3560px\@sm {
    max-width: 3560px;
  }

  .height-3580px\@sm {
    height: 3580px;
  }

  .min-height-3580px\@sm {
    min-height: 3580px;
  }

  .max-height-3580px\@sm {
    max-height: 3580px;
  }

  .width-3580px\@sm {
    width: 3580px;
  }

  .min-width-3580px\@sm {
    min-width: 3580px;
  }

  .max-width-3580px\@sm {
    max-width: 3580px;
  }

  .height-3600px\@sm {
    height: 3600px;
  }

  .min-height-3600px\@sm {
    min-height: 3600px;
  }

  .max-height-3600px\@sm {
    max-height: 3600px;
  }

  .width-3600px\@sm {
    width: 3600px;
  }

  .min-width-3600px\@sm {
    min-width: 3600px;
  }

  .max-width-3600px\@sm {
    max-width: 3600px;
  }

  .height-3620px\@sm {
    height: 3620px;
  }

  .min-height-3620px\@sm {
    min-height: 3620px;
  }

  .max-height-3620px\@sm {
    max-height: 3620px;
  }

  .width-3620px\@sm {
    width: 3620px;
  }

  .min-width-3620px\@sm {
    min-width: 3620px;
  }

  .max-width-3620px\@sm {
    max-width: 3620px;
  }

  .height-3640px\@sm {
    height: 3640px;
  }

  .min-height-3640px\@sm {
    min-height: 3640px;
  }

  .max-height-3640px\@sm {
    max-height: 3640px;
  }

  .width-3640px\@sm {
    width: 3640px;
  }

  .min-width-3640px\@sm {
    min-width: 3640px;
  }

  .max-width-3640px\@sm {
    max-width: 3640px;
  }

  .height-3660px\@sm {
    height: 3660px;
  }

  .min-height-3660px\@sm {
    min-height: 3660px;
  }

  .max-height-3660px\@sm {
    max-height: 3660px;
  }

  .width-3660px\@sm {
    width: 3660px;
  }

  .min-width-3660px\@sm {
    min-width: 3660px;
  }

  .max-width-3660px\@sm {
    max-width: 3660px;
  }

  .height-3680px\@sm {
    height: 3680px;
  }

  .min-height-3680px\@sm {
    min-height: 3680px;
  }

  .max-height-3680px\@sm {
    max-height: 3680px;
  }

  .width-3680px\@sm {
    width: 3680px;
  }

  .min-width-3680px\@sm {
    min-width: 3680px;
  }

  .max-width-3680px\@sm {
    max-width: 3680px;
  }

  .height-3700px\@sm {
    height: 3700px;
  }

  .min-height-3700px\@sm {
    min-height: 3700px;
  }

  .max-height-3700px\@sm {
    max-height: 3700px;
  }

  .width-3700px\@sm {
    width: 3700px;
  }

  .min-width-3700px\@sm {
    min-width: 3700px;
  }

  .max-width-3700px\@sm {
    max-width: 3700px;
  }

  .height-3720px\@sm {
    height: 3720px;
  }

  .min-height-3720px\@sm {
    min-height: 3720px;
  }

  .max-height-3720px\@sm {
    max-height: 3720px;
  }

  .width-3720px\@sm {
    width: 3720px;
  }

  .min-width-3720px\@sm {
    min-width: 3720px;
  }

  .max-width-3720px\@sm {
    max-width: 3720px;
  }

  .height-3740px\@sm {
    height: 3740px;
  }

  .min-height-3740px\@sm {
    min-height: 3740px;
  }

  .max-height-3740px\@sm {
    max-height: 3740px;
  }

  .width-3740px\@sm {
    width: 3740px;
  }

  .min-width-3740px\@sm {
    min-width: 3740px;
  }

  .max-width-3740px\@sm {
    max-width: 3740px;
  }

  .height-3760px\@sm {
    height: 3760px;
  }

  .min-height-3760px\@sm {
    min-height: 3760px;
  }

  .max-height-3760px\@sm {
    max-height: 3760px;
  }

  .width-3760px\@sm {
    width: 3760px;
  }

  .min-width-3760px\@sm {
    min-width: 3760px;
  }

  .max-width-3760px\@sm {
    max-width: 3760px;
  }

  .height-3780px\@sm {
    height: 3780px;
  }

  .min-height-3780px\@sm {
    min-height: 3780px;
  }

  .max-height-3780px\@sm {
    max-height: 3780px;
  }

  .width-3780px\@sm {
    width: 3780px;
  }

  .min-width-3780px\@sm {
    min-width: 3780px;
  }

  .max-width-3780px\@sm {
    max-width: 3780px;
  }

  .height-3800px\@sm {
    height: 3800px;
  }

  .min-height-3800px\@sm {
    min-height: 3800px;
  }

  .max-height-3800px\@sm {
    max-height: 3800px;
  }

  .width-3800px\@sm {
    width: 3800px;
  }

  .min-width-3800px\@sm {
    min-width: 3800px;
  }

  .max-width-3800px\@sm {
    max-width: 3800px;
  }

  .height-3820px\@sm {
    height: 3820px;
  }

  .min-height-3820px\@sm {
    min-height: 3820px;
  }

  .max-height-3820px\@sm {
    max-height: 3820px;
  }

  .width-3820px\@sm {
    width: 3820px;
  }

  .min-width-3820px\@sm {
    min-width: 3820px;
  }

  .max-width-3820px\@sm {
    max-width: 3820px;
  }

  .height-3840px\@sm {
    height: 3840px;
  }

  .min-height-3840px\@sm {
    min-height: 3840px;
  }

  .max-height-3840px\@sm {
    max-height: 3840px;
  }

  .width-3840px\@sm {
    width: 3840px;
  }

  .min-width-3840px\@sm {
    min-width: 3840px;
  }

  .max-width-3840px\@sm {
    max-width: 3840px;
  }

  .height-3860px\@sm {
    height: 3860px;
  }

  .min-height-3860px\@sm {
    min-height: 3860px;
  }

  .max-height-3860px\@sm {
    max-height: 3860px;
  }

  .width-3860px\@sm {
    width: 3860px;
  }

  .min-width-3860px\@sm {
    min-width: 3860px;
  }

  .max-width-3860px\@sm {
    max-width: 3860px;
  }

  .height-3880px\@sm {
    height: 3880px;
  }

  .min-height-3880px\@sm {
    min-height: 3880px;
  }

  .max-height-3880px\@sm {
    max-height: 3880px;
  }

  .width-3880px\@sm {
    width: 3880px;
  }

  .min-width-3880px\@sm {
    min-width: 3880px;
  }

  .max-width-3880px\@sm {
    max-width: 3880px;
  }

  .height-3900px\@sm {
    height: 3900px;
  }

  .min-height-3900px\@sm {
    min-height: 3900px;
  }

  .max-height-3900px\@sm {
    max-height: 3900px;
  }

  .width-3900px\@sm {
    width: 3900px;
  }

  .min-width-3900px\@sm {
    min-width: 3900px;
  }

  .max-width-3900px\@sm {
    max-width: 3900px;
  }

  .height-3920px\@sm {
    height: 3920px;
  }

  .min-height-3920px\@sm {
    min-height: 3920px;
  }

  .max-height-3920px\@sm {
    max-height: 3920px;
  }

  .width-3920px\@sm {
    width: 3920px;
  }

  .min-width-3920px\@sm {
    min-width: 3920px;
  }

  .max-width-3920px\@sm {
    max-width: 3920px;
  }

  .height-3940px\@sm {
    height: 3940px;
  }

  .min-height-3940px\@sm {
    min-height: 3940px;
  }

  .max-height-3940px\@sm {
    max-height: 3940px;
  }

  .width-3940px\@sm {
    width: 3940px;
  }

  .min-width-3940px\@sm {
    min-width: 3940px;
  }

  .max-width-3940px\@sm {
    max-width: 3940px;
  }

  .height-3960px\@sm {
    height: 3960px;
  }

  .min-height-3960px\@sm {
    min-height: 3960px;
  }

  .max-height-3960px\@sm {
    max-height: 3960px;
  }

  .width-3960px\@sm {
    width: 3960px;
  }

  .min-width-3960px\@sm {
    min-width: 3960px;
  }

  .max-width-3960px\@sm {
    max-width: 3960px;
  }

  .height-3980px\@sm {
    height: 3980px;
  }

  .min-height-3980px\@sm {
    min-height: 3980px;
  }

  .max-height-3980px\@sm {
    max-height: 3980px;
  }

  .width-3980px\@sm {
    width: 3980px;
  }

  .min-width-3980px\@sm {
    min-width: 3980px;
  }

  .max-width-3980px\@sm {
    max-width: 3980px;
  }

  .height-4000px\@sm {
    height: 4000px;
  }

  .min-height-4000px\@sm {
    min-height: 4000px;
  }

  .max-height-4000px\@sm {
    max-height: 4000px;
  }

  .width-4000px\@sm {
    width: 4000px;
  }

  .min-width-4000px\@sm {
    min-width: 4000px;
  }

  .max-width-4000px\@sm {
    max-width: 4000px;
  }

  .text-25\%\@sm {
    font-size: 25%;
  }

  .text-30\%\@sm {
    font-size: 30%;
  }

  .text-35\%\@sm {
    font-size: 35%;
  }

  .text-40\%\@sm {
    font-size: 40%;
  }

  .text-45\%\@sm {
    font-size: 45%;
  }

  .text-50\%\@sm {
    font-size: 50%;
  }

  .text-55\%\@sm {
    font-size: 55%;
  }

  .text-60\%\@sm {
    font-size: 60%;
  }

  .text-65\%\@sm {
    font-size: 65%;
  }

  .text-70\%\@sm {
    font-size: 70%;
  }

  .text-75\%\@sm {
    font-size: 75%;
  }

  .text-80\%\@sm {
    font-size: 80%;
  }

  .text-85\%\@sm {
    font-size: 85%;
  }

  .text-90\%\@sm {
    font-size: 90%;
  }

  .text-95\%\@sm {
    font-size: 95%;
  }

  .text-100\%\@sm {
    font-size: 100%;
  }

  .text-105\%\@sm {
    font-size: 105%;
  }

  .text-110\%\@sm {
    font-size: 110%;
  }

  .text-115\%\@sm {
    font-size: 115%;
  }

  .text-120\%\@sm {
    font-size: 120%;
  }

  .text-125\%\@sm {
    font-size: 125%;
  }

  .text-130\%\@sm {
    font-size: 130%;
  }

  .text-135\%\@sm {
    font-size: 135%;
  }

  .text-140\%\@sm {
    font-size: 140%;
  }

  .text-145\%\@sm {
    font-size: 145%;
  }

  .text-150\%\@sm {
    font-size: 150%;
  }

  .text-155\%\@sm {
    font-size: 155%;
  }

  .text-160\%\@sm {
    font-size: 160%;
  }

  .text-165\%\@sm {
    font-size: 165%;
  }

  .text-170\%\@sm {
    font-size: 170%;
  }

  .text-175\%\@sm {
    font-size: 175%;
  }

  .text-180\%\@sm {
    font-size: 180%;
  }

  .text-185\%\@sm {
    font-size: 185%;
  }

  .text-190\%\@sm {
    font-size: 190%;
  }

  .text-195\%\@sm {
    font-size: 195%;
  }

  .text-200\%\@sm {
    font-size: 200%;
  }

  .text-offset-5\%\@sm {
    width: calc(100% + 5%);
  }

  .text-offset-10\%\@sm {
    width: calc(100% + 10%);
  }

  .text-offset-15\%\@sm {
    width: calc(100% + 15%);
  }

  .text-offset-20\%\@sm {
    width: calc(100% + 20%);
  }

  .text-offset-25\%\@sm {
    width: calc(100% + 25%);
  }

  .text-offset-30\%\@sm {
    width: calc(100% + 30%);
  }

  .text-offset-35\%\@sm {
    width: calc(100% + 35%);
  }

  .text-offset-40\%\@sm {
    width: calc(100% + 40%);
  }

  .text-offset-45\%\@sm {
    width: calc(100% + 45%);
  }

  .text-offset-50\%\@sm {
    width: calc(100% + 50%);
  }

  .text-offset-55\%\@sm {
    width: calc(100% + 55%);
  }

  .text-offset-60\%\@sm {
    width: calc(100% + 60%);
  }

  .text-offset-65\%\@sm {
    width: calc(100% + 65%);
  }

  .text-offset-70\%\@sm {
    width: calc(100% + 70%);
  }

  .text-offset-75\%\@sm {
    width: calc(100% + 75%);
  }

  .text-offset-80\%\@sm {
    width: calc(100% + 80%);
  }

  .text-offset-85\%\@sm {
    width: calc(100% + 85%);
  }

  .text-offset-90\%\@sm {
    width: calc(100% + 90%);
  }

  .text-offset-95\%\@sm {
    width: calc(100% + 95%);
  }

  .text-offset-100\%\@sm {
    width: calc(100% + 100%);
  }
}
@media (min-width: 64rem) {
  .component-padding-0\@md {
    --component-padding: 0px;
  }

  .component-padding-xxxxs\@md {
    --component-padding: var(--space-xxxxs);
  }

  .component-padding-xxxs\@md {
    --component-padding: var(--space-xxxs);
  }

  .component-padding-xxs\@md {
    --component-padding: var(--space-xxs);
  }

  .component-padding-xs\@md {
    --component-padding: var(--space-xs);
  }

  .component-padding-sm\@md {
    --component-padding: var(--space-sm);
  }

  .component-padding-md\@md {
    --component-padding: var(--space-md);
  }

  .component-padding-lg\@md {
    --component-padding: var(--space-lg);
  }

  .component-padding-xl\@md {
    --component-padding: var(--space-xl);
  }

  .component-padding-xxl\@md {
    --component-padding: var(--space-xxl);
  }

  .component-padding-xxxl\@md {
    --component-padding: var(--space-xxxl);
  }

  .component-padding-xxxxl\@md {
    --component-padding: var(--space-xxxxl);
  }

  .justify-around\@md {
    justify-content: space-around;
  }

  .height-0px\@md {
    height: 0px;
  }

  .min-height-0px\@md {
    min-height: 0px;
  }

  .max-height-0px\@md {
    max-height: 0px;
  }

  .width-0px\@md {
    width: 0px;
  }

  .min-width-0px\@md {
    min-width: 0px;
  }

  .max-width-0px\@md {
    max-width: 0px;
  }

  .height-20px\@md {
    height: 20px;
  }

  .min-height-20px\@md {
    min-height: 20px;
  }

  .max-height-20px\@md {
    max-height: 20px;
  }

  .width-20px\@md {
    width: 20px;
  }

  .min-width-20px\@md {
    min-width: 20px;
  }

  .max-width-20px\@md {
    max-width: 20px;
  }

  .height-40px\@md {
    height: 40px;
  }

  .min-height-40px\@md {
    min-height: 40px;
  }

  .max-height-40px\@md {
    max-height: 40px;
  }

  .width-40px\@md {
    width: 40px;
  }

  .min-width-40px\@md {
    min-width: 40px;
  }

  .max-width-40px\@md {
    max-width: 40px;
  }

  .height-60px\@md {
    height: 60px;
  }

  .min-height-60px\@md {
    min-height: 60px;
  }

  .max-height-60px\@md {
    max-height: 60px;
  }

  .width-60px\@md {
    width: 60px;
  }

  .min-width-60px\@md {
    min-width: 60px;
  }

  .max-width-60px\@md {
    max-width: 60px;
  }

  .height-80px\@md {
    height: 80px;
  }

  .min-height-80px\@md {
    min-height: 80px;
  }

  .max-height-80px\@md {
    max-height: 80px;
  }

  .width-80px\@md {
    width: 80px;
  }

  .min-width-80px\@md {
    min-width: 80px;
  }

  .max-width-80px\@md {
    max-width: 80px;
  }

  .height-100px\@md {
    height: 100px;
  }

  .min-height-100px\@md {
    min-height: 100px;
  }

  .max-height-100px\@md {
    max-height: 100px;
  }

  .width-100px\@md {
    width: 100px;
  }

  .min-width-100px\@md {
    min-width: 100px;
  }

  .max-width-100px\@md {
    max-width: 100px;
  }

  .height-120px\@md {
    height: 120px;
  }

  .min-height-120px\@md {
    min-height: 120px;
  }

  .max-height-120px\@md {
    max-height: 120px;
  }

  .width-120px\@md {
    width: 120px;
  }

  .min-width-120px\@md {
    min-width: 120px;
  }

  .max-width-120px\@md {
    max-width: 120px;
  }

  .height-140px\@md {
    height: 140px;
  }

  .min-height-140px\@md {
    min-height: 140px;
  }

  .max-height-140px\@md {
    max-height: 140px;
  }

  .width-140px\@md {
    width: 140px;
  }

  .min-width-140px\@md {
    min-width: 140px;
  }

  .max-width-140px\@md {
    max-width: 140px;
  }

  .height-160px\@md {
    height: 160px;
  }

  .min-height-160px\@md {
    min-height: 160px;
  }

  .max-height-160px\@md {
    max-height: 160px;
  }

  .width-160px\@md {
    width: 160px;
  }

  .min-width-160px\@md {
    min-width: 160px;
  }

  .max-width-160px\@md {
    max-width: 160px;
  }

  .height-180px\@md {
    height: 180px;
  }

  .min-height-180px\@md {
    min-height: 180px;
  }

  .max-height-180px\@md {
    max-height: 180px;
  }

  .width-180px\@md {
    width: 180px;
  }

  .min-width-180px\@md {
    min-width: 180px;
  }

  .max-width-180px\@md {
    max-width: 180px;
  }

  .height-200px\@md {
    height: 200px;
  }

  .min-height-200px\@md {
    min-height: 200px;
  }

  .max-height-200px\@md {
    max-height: 200px;
  }

  .width-200px\@md {
    width: 200px;
  }

  .min-width-200px\@md {
    min-width: 200px;
  }

  .max-width-200px\@md {
    max-width: 200px;
  }

  .height-220px\@md {
    height: 220px;
  }

  .min-height-220px\@md {
    min-height: 220px;
  }

  .max-height-220px\@md {
    max-height: 220px;
  }

  .width-220px\@md {
    width: 220px;
  }

  .min-width-220px\@md {
    min-width: 220px;
  }

  .max-width-220px\@md {
    max-width: 220px;
  }

  .height-240px\@md {
    height: 240px;
  }

  .min-height-240px\@md {
    min-height: 240px;
  }

  .max-height-240px\@md {
    max-height: 240px;
  }

  .width-240px\@md {
    width: 240px;
  }

  .min-width-240px\@md {
    min-width: 240px;
  }

  .max-width-240px\@md {
    max-width: 240px;
  }

  .height-260px\@md {
    height: 260px;
  }

  .min-height-260px\@md {
    min-height: 260px;
  }

  .max-height-260px\@md {
    max-height: 260px;
  }

  .width-260px\@md {
    width: 260px;
  }

  .min-width-260px\@md {
    min-width: 260px;
  }

  .max-width-260px\@md {
    max-width: 260px;
  }

  .height-280px\@md {
    height: 280px;
  }

  .min-height-280px\@md {
    min-height: 280px;
  }

  .max-height-280px\@md {
    max-height: 280px;
  }

  .width-280px\@md {
    width: 280px;
  }

  .min-width-280px\@md {
    min-width: 280px;
  }

  .max-width-280px\@md {
    max-width: 280px;
  }

  .height-300px\@md {
    height: 300px;
  }

  .min-height-300px\@md {
    min-height: 300px;
  }

  .max-height-300px\@md {
    max-height: 300px;
  }

  .width-300px\@md {
    width: 300px;
  }

  .min-width-300px\@md {
    min-width: 300px;
  }

  .max-width-300px\@md {
    max-width: 300px;
  }

  .height-320px\@md {
    height: 320px;
  }

  .min-height-320px\@md {
    min-height: 320px;
  }

  .max-height-320px\@md {
    max-height: 320px;
  }

  .width-320px\@md {
    width: 320px;
  }

  .min-width-320px\@md {
    min-width: 320px;
  }

  .max-width-320px\@md {
    max-width: 320px;
  }

  .height-340px\@md {
    height: 340px;
  }

  .min-height-340px\@md {
    min-height: 340px;
  }

  .max-height-340px\@md {
    max-height: 340px;
  }

  .width-340px\@md {
    width: 340px;
  }

  .min-width-340px\@md {
    min-width: 340px;
  }

  .max-width-340px\@md {
    max-width: 340px;
  }

  .height-360px\@md {
    height: 360px;
  }

  .min-height-360px\@md {
    min-height: 360px;
  }

  .max-height-360px\@md {
    max-height: 360px;
  }

  .width-360px\@md {
    width: 360px;
  }

  .min-width-360px\@md {
    min-width: 360px;
  }

  .max-width-360px\@md {
    max-width: 360px;
  }

  .height-380px\@md {
    height: 380px;
  }

  .min-height-380px\@md {
    min-height: 380px;
  }

  .max-height-380px\@md {
    max-height: 380px;
  }

  .width-380px\@md {
    width: 380px;
  }

  .min-width-380px\@md {
    min-width: 380px;
  }

  .max-width-380px\@md {
    max-width: 380px;
  }

  .height-400px\@md {
    height: 400px;
  }

  .min-height-400px\@md {
    min-height: 400px;
  }

  .max-height-400px\@md {
    max-height: 400px;
  }

  .width-400px\@md {
    width: 400px;
  }

  .min-width-400px\@md {
    min-width: 400px;
  }

  .max-width-400px\@md {
    max-width: 400px;
  }

  .height-420px\@md {
    height: 420px;
  }

  .min-height-420px\@md {
    min-height: 420px;
  }

  .max-height-420px\@md {
    max-height: 420px;
  }

  .width-420px\@md {
    width: 420px;
  }

  .min-width-420px\@md {
    min-width: 420px;
  }

  .max-width-420px\@md {
    max-width: 420px;
  }

  .height-440px\@md {
    height: 440px;
  }

  .min-height-440px\@md {
    min-height: 440px;
  }

  .max-height-440px\@md {
    max-height: 440px;
  }

  .width-440px\@md {
    width: 440px;
  }

  .min-width-440px\@md {
    min-width: 440px;
  }

  .max-width-440px\@md {
    max-width: 440px;
  }

  .height-460px\@md {
    height: 460px;
  }

  .min-height-460px\@md {
    min-height: 460px;
  }

  .max-height-460px\@md {
    max-height: 460px;
  }

  .width-460px\@md {
    width: 460px;
  }

  .min-width-460px\@md {
    min-width: 460px;
  }

  .max-width-460px\@md {
    max-width: 460px;
  }

  .height-480px\@md {
    height: 480px;
  }

  .min-height-480px\@md {
    min-height: 480px;
  }

  .max-height-480px\@md {
    max-height: 480px;
  }

  .width-480px\@md {
    width: 480px;
  }

  .min-width-480px\@md {
    min-width: 480px;
  }

  .max-width-480px\@md {
    max-width: 480px;
  }

  .height-500px\@md {
    height: 500px;
  }

  .min-height-500px\@md {
    min-height: 500px;
  }

  .max-height-500px\@md {
    max-height: 500px;
  }

  .width-500px\@md {
    width: 500px;
  }

  .min-width-500px\@md {
    min-width: 500px;
  }

  .max-width-500px\@md {
    max-width: 500px;
  }

  .height-520px\@md {
    height: 520px;
  }

  .min-height-520px\@md {
    min-height: 520px;
  }

  .max-height-520px\@md {
    max-height: 520px;
  }

  .width-520px\@md {
    width: 520px;
  }

  .min-width-520px\@md {
    min-width: 520px;
  }

  .max-width-520px\@md {
    max-width: 520px;
  }

  .height-540px\@md {
    height: 540px;
  }

  .min-height-540px\@md {
    min-height: 540px;
  }

  .max-height-540px\@md {
    max-height: 540px;
  }

  .width-540px\@md {
    width: 540px;
  }

  .min-width-540px\@md {
    min-width: 540px;
  }

  .max-width-540px\@md {
    max-width: 540px;
  }

  .height-560px\@md {
    height: 560px;
  }

  .min-height-560px\@md {
    min-height: 560px;
  }

  .max-height-560px\@md {
    max-height: 560px;
  }

  .width-560px\@md {
    width: 560px;
  }

  .min-width-560px\@md {
    min-width: 560px;
  }

  .max-width-560px\@md {
    max-width: 560px;
  }

  .height-580px\@md {
    height: 580px;
  }

  .min-height-580px\@md {
    min-height: 580px;
  }

  .max-height-580px\@md {
    max-height: 580px;
  }

  .width-580px\@md {
    width: 580px;
  }

  .min-width-580px\@md {
    min-width: 580px;
  }

  .max-width-580px\@md {
    max-width: 580px;
  }

  .height-600px\@md {
    height: 600px;
  }

  .min-height-600px\@md {
    min-height: 600px;
  }

  .max-height-600px\@md {
    max-height: 600px;
  }

  .width-600px\@md {
    width: 600px;
  }

  .min-width-600px\@md {
    min-width: 600px;
  }

  .max-width-600px\@md {
    max-width: 600px;
  }

  .height-620px\@md {
    height: 620px;
  }

  .min-height-620px\@md {
    min-height: 620px;
  }

  .max-height-620px\@md {
    max-height: 620px;
  }

  .width-620px\@md {
    width: 620px;
  }

  .min-width-620px\@md {
    min-width: 620px;
  }

  .max-width-620px\@md {
    max-width: 620px;
  }

  .height-640px\@md {
    height: 640px;
  }

  .min-height-640px\@md {
    min-height: 640px;
  }

  .max-height-640px\@md {
    max-height: 640px;
  }

  .width-640px\@md {
    width: 640px;
  }

  .min-width-640px\@md {
    min-width: 640px;
  }

  .max-width-640px\@md {
    max-width: 640px;
  }

  .height-660px\@md {
    height: 660px;
  }

  .min-height-660px\@md {
    min-height: 660px;
  }

  .max-height-660px\@md {
    max-height: 660px;
  }

  .width-660px\@md {
    width: 660px;
  }

  .min-width-660px\@md {
    min-width: 660px;
  }

  .max-width-660px\@md {
    max-width: 660px;
  }

  .height-680px\@md {
    height: 680px;
  }

  .min-height-680px\@md {
    min-height: 680px;
  }

  .max-height-680px\@md {
    max-height: 680px;
  }

  .width-680px\@md {
    width: 680px;
  }

  .min-width-680px\@md {
    min-width: 680px;
  }

  .max-width-680px\@md {
    max-width: 680px;
  }

  .height-700px\@md {
    height: 700px;
  }

  .min-height-700px\@md {
    min-height: 700px;
  }

  .max-height-700px\@md {
    max-height: 700px;
  }

  .width-700px\@md {
    width: 700px;
  }

  .min-width-700px\@md {
    min-width: 700px;
  }

  .max-width-700px\@md {
    max-width: 700px;
  }

  .height-720px\@md {
    height: 720px;
  }

  .min-height-720px\@md {
    min-height: 720px;
  }

  .max-height-720px\@md {
    max-height: 720px;
  }

  .width-720px\@md {
    width: 720px;
  }

  .min-width-720px\@md {
    min-width: 720px;
  }

  .max-width-720px\@md {
    max-width: 720px;
  }

  .height-740px\@md {
    height: 740px;
  }

  .min-height-740px\@md {
    min-height: 740px;
  }

  .max-height-740px\@md {
    max-height: 740px;
  }

  .width-740px\@md {
    width: 740px;
  }

  .min-width-740px\@md {
    min-width: 740px;
  }

  .max-width-740px\@md {
    max-width: 740px;
  }

  .height-760px\@md {
    height: 760px;
  }

  .min-height-760px\@md {
    min-height: 760px;
  }

  .max-height-760px\@md {
    max-height: 760px;
  }

  .width-760px\@md {
    width: 760px;
  }

  .min-width-760px\@md {
    min-width: 760px;
  }

  .max-width-760px\@md {
    max-width: 760px;
  }

  .height-780px\@md {
    height: 780px;
  }

  .min-height-780px\@md {
    min-height: 780px;
  }

  .max-height-780px\@md {
    max-height: 780px;
  }

  .width-780px\@md {
    width: 780px;
  }

  .min-width-780px\@md {
    min-width: 780px;
  }

  .max-width-780px\@md {
    max-width: 780px;
  }

  .height-800px\@md {
    height: 800px;
  }

  .min-height-800px\@md {
    min-height: 800px;
  }

  .max-height-800px\@md {
    max-height: 800px;
  }

  .width-800px\@md {
    width: 800px;
  }

  .min-width-800px\@md {
    min-width: 800px;
  }

  .max-width-800px\@md {
    max-width: 800px;
  }

  .height-820px\@md {
    height: 820px;
  }

  .min-height-820px\@md {
    min-height: 820px;
  }

  .max-height-820px\@md {
    max-height: 820px;
  }

  .width-820px\@md {
    width: 820px;
  }

  .min-width-820px\@md {
    min-width: 820px;
  }

  .max-width-820px\@md {
    max-width: 820px;
  }

  .height-840px\@md {
    height: 840px;
  }

  .min-height-840px\@md {
    min-height: 840px;
  }

  .max-height-840px\@md {
    max-height: 840px;
  }

  .width-840px\@md {
    width: 840px;
  }

  .min-width-840px\@md {
    min-width: 840px;
  }

  .max-width-840px\@md {
    max-width: 840px;
  }

  .height-860px\@md {
    height: 860px;
  }

  .min-height-860px\@md {
    min-height: 860px;
  }

  .max-height-860px\@md {
    max-height: 860px;
  }

  .width-860px\@md {
    width: 860px;
  }

  .min-width-860px\@md {
    min-width: 860px;
  }

  .max-width-860px\@md {
    max-width: 860px;
  }

  .height-880px\@md {
    height: 880px;
  }

  .min-height-880px\@md {
    min-height: 880px;
  }

  .max-height-880px\@md {
    max-height: 880px;
  }

  .width-880px\@md {
    width: 880px;
  }

  .min-width-880px\@md {
    min-width: 880px;
  }

  .max-width-880px\@md {
    max-width: 880px;
  }

  .height-900px\@md {
    height: 900px;
  }

  .min-height-900px\@md {
    min-height: 900px;
  }

  .max-height-900px\@md {
    max-height: 900px;
  }

  .width-900px\@md {
    width: 900px;
  }

  .min-width-900px\@md {
    min-width: 900px;
  }

  .max-width-900px\@md {
    max-width: 900px;
  }

  .height-920px\@md {
    height: 920px;
  }

  .min-height-920px\@md {
    min-height: 920px;
  }

  .max-height-920px\@md {
    max-height: 920px;
  }

  .width-920px\@md {
    width: 920px;
  }

  .min-width-920px\@md {
    min-width: 920px;
  }

  .max-width-920px\@md {
    max-width: 920px;
  }

  .height-940px\@md {
    height: 940px;
  }

  .min-height-940px\@md {
    min-height: 940px;
  }

  .max-height-940px\@md {
    max-height: 940px;
  }

  .width-940px\@md {
    width: 940px;
  }

  .min-width-940px\@md {
    min-width: 940px;
  }

  .max-width-940px\@md {
    max-width: 940px;
  }

  .height-960px\@md {
    height: 960px;
  }

  .min-height-960px\@md {
    min-height: 960px;
  }

  .max-height-960px\@md {
    max-height: 960px;
  }

  .width-960px\@md {
    width: 960px;
  }

  .min-width-960px\@md {
    min-width: 960px;
  }

  .max-width-960px\@md {
    max-width: 960px;
  }

  .height-980px\@md {
    height: 980px;
  }

  .min-height-980px\@md {
    min-height: 980px;
  }

  .max-height-980px\@md {
    max-height: 980px;
  }

  .width-980px\@md {
    width: 980px;
  }

  .min-width-980px\@md {
    min-width: 980px;
  }

  .max-width-980px\@md {
    max-width: 980px;
  }

  .height-1000px\@md {
    height: 1000px;
  }

  .min-height-1000px\@md {
    min-height: 1000px;
  }

  .max-height-1000px\@md {
    max-height: 1000px;
  }

  .width-1000px\@md {
    width: 1000px;
  }

  .min-width-1000px\@md {
    min-width: 1000px;
  }

  .max-width-1000px\@md {
    max-width: 1000px;
  }

  .height-1020px\@md {
    height: 1020px;
  }

  .min-height-1020px\@md {
    min-height: 1020px;
  }

  .max-height-1020px\@md {
    max-height: 1020px;
  }

  .width-1020px\@md {
    width: 1020px;
  }

  .min-width-1020px\@md {
    min-width: 1020px;
  }

  .max-width-1020px\@md {
    max-width: 1020px;
  }

  .height-1040px\@md {
    height: 1040px;
  }

  .min-height-1040px\@md {
    min-height: 1040px;
  }

  .max-height-1040px\@md {
    max-height: 1040px;
  }

  .width-1040px\@md {
    width: 1040px;
  }

  .min-width-1040px\@md {
    min-width: 1040px;
  }

  .max-width-1040px\@md {
    max-width: 1040px;
  }

  .height-1060px\@md {
    height: 1060px;
  }

  .min-height-1060px\@md {
    min-height: 1060px;
  }

  .max-height-1060px\@md {
    max-height: 1060px;
  }

  .width-1060px\@md {
    width: 1060px;
  }

  .min-width-1060px\@md {
    min-width: 1060px;
  }

  .max-width-1060px\@md {
    max-width: 1060px;
  }

  .height-1080px\@md {
    height: 1080px;
  }

  .min-height-1080px\@md {
    min-height: 1080px;
  }

  .max-height-1080px\@md {
    max-height: 1080px;
  }

  .width-1080px\@md {
    width: 1080px;
  }

  .min-width-1080px\@md {
    min-width: 1080px;
  }

  .max-width-1080px\@md {
    max-width: 1080px;
  }

  .height-1100px\@md {
    height: 1100px;
  }

  .min-height-1100px\@md {
    min-height: 1100px;
  }

  .max-height-1100px\@md {
    max-height: 1100px;
  }

  .width-1100px\@md {
    width: 1100px;
  }

  .min-width-1100px\@md {
    min-width: 1100px;
  }

  .max-width-1100px\@md {
    max-width: 1100px;
  }

  .height-1120px\@md {
    height: 1120px;
  }

  .min-height-1120px\@md {
    min-height: 1120px;
  }

  .max-height-1120px\@md {
    max-height: 1120px;
  }

  .width-1120px\@md {
    width: 1120px;
  }

  .min-width-1120px\@md {
    min-width: 1120px;
  }

  .max-width-1120px\@md {
    max-width: 1120px;
  }

  .height-1140px\@md {
    height: 1140px;
  }

  .min-height-1140px\@md {
    min-height: 1140px;
  }

  .max-height-1140px\@md {
    max-height: 1140px;
  }

  .width-1140px\@md {
    width: 1140px;
  }

  .min-width-1140px\@md {
    min-width: 1140px;
  }

  .max-width-1140px\@md {
    max-width: 1140px;
  }

  .height-1160px\@md {
    height: 1160px;
  }

  .min-height-1160px\@md {
    min-height: 1160px;
  }

  .max-height-1160px\@md {
    max-height: 1160px;
  }

  .width-1160px\@md {
    width: 1160px;
  }

  .min-width-1160px\@md {
    min-width: 1160px;
  }

  .max-width-1160px\@md {
    max-width: 1160px;
  }

  .height-1180px\@md {
    height: 1180px;
  }

  .min-height-1180px\@md {
    min-height: 1180px;
  }

  .max-height-1180px\@md {
    max-height: 1180px;
  }

  .width-1180px\@md {
    width: 1180px;
  }

  .min-width-1180px\@md {
    min-width: 1180px;
  }

  .max-width-1180px\@md {
    max-width: 1180px;
  }

  .height-1200px\@md {
    height: 1200px;
  }

  .min-height-1200px\@md {
    min-height: 1200px;
  }

  .max-height-1200px\@md {
    max-height: 1200px;
  }

  .width-1200px\@md {
    width: 1200px;
  }

  .min-width-1200px\@md {
    min-width: 1200px;
  }

  .max-width-1200px\@md {
    max-width: 1200px;
  }

  .height-1220px\@md {
    height: 1220px;
  }

  .min-height-1220px\@md {
    min-height: 1220px;
  }

  .max-height-1220px\@md {
    max-height: 1220px;
  }

  .width-1220px\@md {
    width: 1220px;
  }

  .min-width-1220px\@md {
    min-width: 1220px;
  }

  .max-width-1220px\@md {
    max-width: 1220px;
  }

  .height-1240px\@md {
    height: 1240px;
  }

  .min-height-1240px\@md {
    min-height: 1240px;
  }

  .max-height-1240px\@md {
    max-height: 1240px;
  }

  .width-1240px\@md {
    width: 1240px;
  }

  .min-width-1240px\@md {
    min-width: 1240px;
  }

  .max-width-1240px\@md {
    max-width: 1240px;
  }

  .height-1260px\@md {
    height: 1260px;
  }

  .min-height-1260px\@md {
    min-height: 1260px;
  }

  .max-height-1260px\@md {
    max-height: 1260px;
  }

  .width-1260px\@md {
    width: 1260px;
  }

  .min-width-1260px\@md {
    min-width: 1260px;
  }

  .max-width-1260px\@md {
    max-width: 1260px;
  }

  .height-1280px\@md {
    height: 1280px;
  }

  .min-height-1280px\@md {
    min-height: 1280px;
  }

  .max-height-1280px\@md {
    max-height: 1280px;
  }

  .width-1280px\@md {
    width: 1280px;
  }

  .min-width-1280px\@md {
    min-width: 1280px;
  }

  .max-width-1280px\@md {
    max-width: 1280px;
  }

  .height-1300px\@md {
    height: 1300px;
  }

  .min-height-1300px\@md {
    min-height: 1300px;
  }

  .max-height-1300px\@md {
    max-height: 1300px;
  }

  .width-1300px\@md {
    width: 1300px;
  }

  .min-width-1300px\@md {
    min-width: 1300px;
  }

  .max-width-1300px\@md {
    max-width: 1300px;
  }

  .height-1320px\@md {
    height: 1320px;
  }

  .min-height-1320px\@md {
    min-height: 1320px;
  }

  .max-height-1320px\@md {
    max-height: 1320px;
  }

  .width-1320px\@md {
    width: 1320px;
  }

  .min-width-1320px\@md {
    min-width: 1320px;
  }

  .max-width-1320px\@md {
    max-width: 1320px;
  }

  .height-1340px\@md {
    height: 1340px;
  }

  .min-height-1340px\@md {
    min-height: 1340px;
  }

  .max-height-1340px\@md {
    max-height: 1340px;
  }

  .width-1340px\@md {
    width: 1340px;
  }

  .min-width-1340px\@md {
    min-width: 1340px;
  }

  .max-width-1340px\@md {
    max-width: 1340px;
  }

  .height-1360px\@md {
    height: 1360px;
  }

  .min-height-1360px\@md {
    min-height: 1360px;
  }

  .max-height-1360px\@md {
    max-height: 1360px;
  }

  .width-1360px\@md {
    width: 1360px;
  }

  .min-width-1360px\@md {
    min-width: 1360px;
  }

  .max-width-1360px\@md {
    max-width: 1360px;
  }

  .height-1380px\@md {
    height: 1380px;
  }

  .min-height-1380px\@md {
    min-height: 1380px;
  }

  .max-height-1380px\@md {
    max-height: 1380px;
  }

  .width-1380px\@md {
    width: 1380px;
  }

  .min-width-1380px\@md {
    min-width: 1380px;
  }

  .max-width-1380px\@md {
    max-width: 1380px;
  }

  .height-1400px\@md {
    height: 1400px;
  }

  .min-height-1400px\@md {
    min-height: 1400px;
  }

  .max-height-1400px\@md {
    max-height: 1400px;
  }

  .width-1400px\@md {
    width: 1400px;
  }

  .min-width-1400px\@md {
    min-width: 1400px;
  }

  .max-width-1400px\@md {
    max-width: 1400px;
  }

  .height-1420px\@md {
    height: 1420px;
  }

  .min-height-1420px\@md {
    min-height: 1420px;
  }

  .max-height-1420px\@md {
    max-height: 1420px;
  }

  .width-1420px\@md {
    width: 1420px;
  }

  .min-width-1420px\@md {
    min-width: 1420px;
  }

  .max-width-1420px\@md {
    max-width: 1420px;
  }

  .height-1440px\@md {
    height: 1440px;
  }

  .min-height-1440px\@md {
    min-height: 1440px;
  }

  .max-height-1440px\@md {
    max-height: 1440px;
  }

  .width-1440px\@md {
    width: 1440px;
  }

  .min-width-1440px\@md {
    min-width: 1440px;
  }

  .max-width-1440px\@md {
    max-width: 1440px;
  }

  .height-1460px\@md {
    height: 1460px;
  }

  .min-height-1460px\@md {
    min-height: 1460px;
  }

  .max-height-1460px\@md {
    max-height: 1460px;
  }

  .width-1460px\@md {
    width: 1460px;
  }

  .min-width-1460px\@md {
    min-width: 1460px;
  }

  .max-width-1460px\@md {
    max-width: 1460px;
  }

  .height-1480px\@md {
    height: 1480px;
  }

  .min-height-1480px\@md {
    min-height: 1480px;
  }

  .max-height-1480px\@md {
    max-height: 1480px;
  }

  .width-1480px\@md {
    width: 1480px;
  }

  .min-width-1480px\@md {
    min-width: 1480px;
  }

  .max-width-1480px\@md {
    max-width: 1480px;
  }

  .height-1500px\@md {
    height: 1500px;
  }

  .min-height-1500px\@md {
    min-height: 1500px;
  }

  .max-height-1500px\@md {
    max-height: 1500px;
  }

  .width-1500px\@md {
    width: 1500px;
  }

  .min-width-1500px\@md {
    min-width: 1500px;
  }

  .max-width-1500px\@md {
    max-width: 1500px;
  }

  .height-1520px\@md {
    height: 1520px;
  }

  .min-height-1520px\@md {
    min-height: 1520px;
  }

  .max-height-1520px\@md {
    max-height: 1520px;
  }

  .width-1520px\@md {
    width: 1520px;
  }

  .min-width-1520px\@md {
    min-width: 1520px;
  }

  .max-width-1520px\@md {
    max-width: 1520px;
  }

  .height-1540px\@md {
    height: 1540px;
  }

  .min-height-1540px\@md {
    min-height: 1540px;
  }

  .max-height-1540px\@md {
    max-height: 1540px;
  }

  .width-1540px\@md {
    width: 1540px;
  }

  .min-width-1540px\@md {
    min-width: 1540px;
  }

  .max-width-1540px\@md {
    max-width: 1540px;
  }

  .height-1560px\@md {
    height: 1560px;
  }

  .min-height-1560px\@md {
    min-height: 1560px;
  }

  .max-height-1560px\@md {
    max-height: 1560px;
  }

  .width-1560px\@md {
    width: 1560px;
  }

  .min-width-1560px\@md {
    min-width: 1560px;
  }

  .max-width-1560px\@md {
    max-width: 1560px;
  }

  .height-1580px\@md {
    height: 1580px;
  }

  .min-height-1580px\@md {
    min-height: 1580px;
  }

  .max-height-1580px\@md {
    max-height: 1580px;
  }

  .width-1580px\@md {
    width: 1580px;
  }

  .min-width-1580px\@md {
    min-width: 1580px;
  }

  .max-width-1580px\@md {
    max-width: 1580px;
  }

  .height-1600px\@md {
    height: 1600px;
  }

  .min-height-1600px\@md {
    min-height: 1600px;
  }

  .max-height-1600px\@md {
    max-height: 1600px;
  }

  .width-1600px\@md {
    width: 1600px;
  }

  .min-width-1600px\@md {
    min-width: 1600px;
  }

  .max-width-1600px\@md {
    max-width: 1600px;
  }

  .height-1620px\@md {
    height: 1620px;
  }

  .min-height-1620px\@md {
    min-height: 1620px;
  }

  .max-height-1620px\@md {
    max-height: 1620px;
  }

  .width-1620px\@md {
    width: 1620px;
  }

  .min-width-1620px\@md {
    min-width: 1620px;
  }

  .max-width-1620px\@md {
    max-width: 1620px;
  }

  .height-1640px\@md {
    height: 1640px;
  }

  .min-height-1640px\@md {
    min-height: 1640px;
  }

  .max-height-1640px\@md {
    max-height: 1640px;
  }

  .width-1640px\@md {
    width: 1640px;
  }

  .min-width-1640px\@md {
    min-width: 1640px;
  }

  .max-width-1640px\@md {
    max-width: 1640px;
  }

  .height-1660px\@md {
    height: 1660px;
  }

  .min-height-1660px\@md {
    min-height: 1660px;
  }

  .max-height-1660px\@md {
    max-height: 1660px;
  }

  .width-1660px\@md {
    width: 1660px;
  }

  .min-width-1660px\@md {
    min-width: 1660px;
  }

  .max-width-1660px\@md {
    max-width: 1660px;
  }

  .height-1680px\@md {
    height: 1680px;
  }

  .min-height-1680px\@md {
    min-height: 1680px;
  }

  .max-height-1680px\@md {
    max-height: 1680px;
  }

  .width-1680px\@md {
    width: 1680px;
  }

  .min-width-1680px\@md {
    min-width: 1680px;
  }

  .max-width-1680px\@md {
    max-width: 1680px;
  }

  .height-1700px\@md {
    height: 1700px;
  }

  .min-height-1700px\@md {
    min-height: 1700px;
  }

  .max-height-1700px\@md {
    max-height: 1700px;
  }

  .width-1700px\@md {
    width: 1700px;
  }

  .min-width-1700px\@md {
    min-width: 1700px;
  }

  .max-width-1700px\@md {
    max-width: 1700px;
  }

  .height-1720px\@md {
    height: 1720px;
  }

  .min-height-1720px\@md {
    min-height: 1720px;
  }

  .max-height-1720px\@md {
    max-height: 1720px;
  }

  .width-1720px\@md {
    width: 1720px;
  }

  .min-width-1720px\@md {
    min-width: 1720px;
  }

  .max-width-1720px\@md {
    max-width: 1720px;
  }

  .height-1740px\@md {
    height: 1740px;
  }

  .min-height-1740px\@md {
    min-height: 1740px;
  }

  .max-height-1740px\@md {
    max-height: 1740px;
  }

  .width-1740px\@md {
    width: 1740px;
  }

  .min-width-1740px\@md {
    min-width: 1740px;
  }

  .max-width-1740px\@md {
    max-width: 1740px;
  }

  .height-1760px\@md {
    height: 1760px;
  }

  .min-height-1760px\@md {
    min-height: 1760px;
  }

  .max-height-1760px\@md {
    max-height: 1760px;
  }

  .width-1760px\@md {
    width: 1760px;
  }

  .min-width-1760px\@md {
    min-width: 1760px;
  }

  .max-width-1760px\@md {
    max-width: 1760px;
  }

  .height-1780px\@md {
    height: 1780px;
  }

  .min-height-1780px\@md {
    min-height: 1780px;
  }

  .max-height-1780px\@md {
    max-height: 1780px;
  }

  .width-1780px\@md {
    width: 1780px;
  }

  .min-width-1780px\@md {
    min-width: 1780px;
  }

  .max-width-1780px\@md {
    max-width: 1780px;
  }

  .height-1800px\@md {
    height: 1800px;
  }

  .min-height-1800px\@md {
    min-height: 1800px;
  }

  .max-height-1800px\@md {
    max-height: 1800px;
  }

  .width-1800px\@md {
    width: 1800px;
  }

  .min-width-1800px\@md {
    min-width: 1800px;
  }

  .max-width-1800px\@md {
    max-width: 1800px;
  }

  .height-1820px\@md {
    height: 1820px;
  }

  .min-height-1820px\@md {
    min-height: 1820px;
  }

  .max-height-1820px\@md {
    max-height: 1820px;
  }

  .width-1820px\@md {
    width: 1820px;
  }

  .min-width-1820px\@md {
    min-width: 1820px;
  }

  .max-width-1820px\@md {
    max-width: 1820px;
  }

  .height-1840px\@md {
    height: 1840px;
  }

  .min-height-1840px\@md {
    min-height: 1840px;
  }

  .max-height-1840px\@md {
    max-height: 1840px;
  }

  .width-1840px\@md {
    width: 1840px;
  }

  .min-width-1840px\@md {
    min-width: 1840px;
  }

  .max-width-1840px\@md {
    max-width: 1840px;
  }

  .height-1860px\@md {
    height: 1860px;
  }

  .min-height-1860px\@md {
    min-height: 1860px;
  }

  .max-height-1860px\@md {
    max-height: 1860px;
  }

  .width-1860px\@md {
    width: 1860px;
  }

  .min-width-1860px\@md {
    min-width: 1860px;
  }

  .max-width-1860px\@md {
    max-width: 1860px;
  }

  .height-1880px\@md {
    height: 1880px;
  }

  .min-height-1880px\@md {
    min-height: 1880px;
  }

  .max-height-1880px\@md {
    max-height: 1880px;
  }

  .width-1880px\@md {
    width: 1880px;
  }

  .min-width-1880px\@md {
    min-width: 1880px;
  }

  .max-width-1880px\@md {
    max-width: 1880px;
  }

  .height-1900px\@md {
    height: 1900px;
  }

  .min-height-1900px\@md {
    min-height: 1900px;
  }

  .max-height-1900px\@md {
    max-height: 1900px;
  }

  .width-1900px\@md {
    width: 1900px;
  }

  .min-width-1900px\@md {
    min-width: 1900px;
  }

  .max-width-1900px\@md {
    max-width: 1900px;
  }

  .height-1920px\@md {
    height: 1920px;
  }

  .min-height-1920px\@md {
    min-height: 1920px;
  }

  .max-height-1920px\@md {
    max-height: 1920px;
  }

  .width-1920px\@md {
    width: 1920px;
  }

  .min-width-1920px\@md {
    min-width: 1920px;
  }

  .max-width-1920px\@md {
    max-width: 1920px;
  }

  .height-1940px\@md {
    height: 1940px;
  }

  .min-height-1940px\@md {
    min-height: 1940px;
  }

  .max-height-1940px\@md {
    max-height: 1940px;
  }

  .width-1940px\@md {
    width: 1940px;
  }

  .min-width-1940px\@md {
    min-width: 1940px;
  }

  .max-width-1940px\@md {
    max-width: 1940px;
  }

  .height-1960px\@md {
    height: 1960px;
  }

  .min-height-1960px\@md {
    min-height: 1960px;
  }

  .max-height-1960px\@md {
    max-height: 1960px;
  }

  .width-1960px\@md {
    width: 1960px;
  }

  .min-width-1960px\@md {
    min-width: 1960px;
  }

  .max-width-1960px\@md {
    max-width: 1960px;
  }

  .height-1980px\@md {
    height: 1980px;
  }

  .min-height-1980px\@md {
    min-height: 1980px;
  }

  .max-height-1980px\@md {
    max-height: 1980px;
  }

  .width-1980px\@md {
    width: 1980px;
  }

  .min-width-1980px\@md {
    min-width: 1980px;
  }

  .max-width-1980px\@md {
    max-width: 1980px;
  }

  .height-2000px\@md {
    height: 2000px;
  }

  .min-height-2000px\@md {
    min-height: 2000px;
  }

  .max-height-2000px\@md {
    max-height: 2000px;
  }

  .width-2000px\@md {
    width: 2000px;
  }

  .min-width-2000px\@md {
    min-width: 2000px;
  }

  .max-width-2000px\@md {
    max-width: 2000px;
  }

  .height-2020px\@md {
    height: 2020px;
  }

  .min-height-2020px\@md {
    min-height: 2020px;
  }

  .max-height-2020px\@md {
    max-height: 2020px;
  }

  .width-2020px\@md {
    width: 2020px;
  }

  .min-width-2020px\@md {
    min-width: 2020px;
  }

  .max-width-2020px\@md {
    max-width: 2020px;
  }

  .height-2040px\@md {
    height: 2040px;
  }

  .min-height-2040px\@md {
    min-height: 2040px;
  }

  .max-height-2040px\@md {
    max-height: 2040px;
  }

  .width-2040px\@md {
    width: 2040px;
  }

  .min-width-2040px\@md {
    min-width: 2040px;
  }

  .max-width-2040px\@md {
    max-width: 2040px;
  }

  .height-2060px\@md {
    height: 2060px;
  }

  .min-height-2060px\@md {
    min-height: 2060px;
  }

  .max-height-2060px\@md {
    max-height: 2060px;
  }

  .width-2060px\@md {
    width: 2060px;
  }

  .min-width-2060px\@md {
    min-width: 2060px;
  }

  .max-width-2060px\@md {
    max-width: 2060px;
  }

  .height-2080px\@md {
    height: 2080px;
  }

  .min-height-2080px\@md {
    min-height: 2080px;
  }

  .max-height-2080px\@md {
    max-height: 2080px;
  }

  .width-2080px\@md {
    width: 2080px;
  }

  .min-width-2080px\@md {
    min-width: 2080px;
  }

  .max-width-2080px\@md {
    max-width: 2080px;
  }

  .height-2100px\@md {
    height: 2100px;
  }

  .min-height-2100px\@md {
    min-height: 2100px;
  }

  .max-height-2100px\@md {
    max-height: 2100px;
  }

  .width-2100px\@md {
    width: 2100px;
  }

  .min-width-2100px\@md {
    min-width: 2100px;
  }

  .max-width-2100px\@md {
    max-width: 2100px;
  }

  .height-2120px\@md {
    height: 2120px;
  }

  .min-height-2120px\@md {
    min-height: 2120px;
  }

  .max-height-2120px\@md {
    max-height: 2120px;
  }

  .width-2120px\@md {
    width: 2120px;
  }

  .min-width-2120px\@md {
    min-width: 2120px;
  }

  .max-width-2120px\@md {
    max-width: 2120px;
  }

  .height-2140px\@md {
    height: 2140px;
  }

  .min-height-2140px\@md {
    min-height: 2140px;
  }

  .max-height-2140px\@md {
    max-height: 2140px;
  }

  .width-2140px\@md {
    width: 2140px;
  }

  .min-width-2140px\@md {
    min-width: 2140px;
  }

  .max-width-2140px\@md {
    max-width: 2140px;
  }

  .height-2160px\@md {
    height: 2160px;
  }

  .min-height-2160px\@md {
    min-height: 2160px;
  }

  .max-height-2160px\@md {
    max-height: 2160px;
  }

  .width-2160px\@md {
    width: 2160px;
  }

  .min-width-2160px\@md {
    min-width: 2160px;
  }

  .max-width-2160px\@md {
    max-width: 2160px;
  }

  .height-2180px\@md {
    height: 2180px;
  }

  .min-height-2180px\@md {
    min-height: 2180px;
  }

  .max-height-2180px\@md {
    max-height: 2180px;
  }

  .width-2180px\@md {
    width: 2180px;
  }

  .min-width-2180px\@md {
    min-width: 2180px;
  }

  .max-width-2180px\@md {
    max-width: 2180px;
  }

  .height-2200px\@md {
    height: 2200px;
  }

  .min-height-2200px\@md {
    min-height: 2200px;
  }

  .max-height-2200px\@md {
    max-height: 2200px;
  }

  .width-2200px\@md {
    width: 2200px;
  }

  .min-width-2200px\@md {
    min-width: 2200px;
  }

  .max-width-2200px\@md {
    max-width: 2200px;
  }

  .height-2220px\@md {
    height: 2220px;
  }

  .min-height-2220px\@md {
    min-height: 2220px;
  }

  .max-height-2220px\@md {
    max-height: 2220px;
  }

  .width-2220px\@md {
    width: 2220px;
  }

  .min-width-2220px\@md {
    min-width: 2220px;
  }

  .max-width-2220px\@md {
    max-width: 2220px;
  }

  .height-2240px\@md {
    height: 2240px;
  }

  .min-height-2240px\@md {
    min-height: 2240px;
  }

  .max-height-2240px\@md {
    max-height: 2240px;
  }

  .width-2240px\@md {
    width: 2240px;
  }

  .min-width-2240px\@md {
    min-width: 2240px;
  }

  .max-width-2240px\@md {
    max-width: 2240px;
  }

  .height-2260px\@md {
    height: 2260px;
  }

  .min-height-2260px\@md {
    min-height: 2260px;
  }

  .max-height-2260px\@md {
    max-height: 2260px;
  }

  .width-2260px\@md {
    width: 2260px;
  }

  .min-width-2260px\@md {
    min-width: 2260px;
  }

  .max-width-2260px\@md {
    max-width: 2260px;
  }

  .height-2280px\@md {
    height: 2280px;
  }

  .min-height-2280px\@md {
    min-height: 2280px;
  }

  .max-height-2280px\@md {
    max-height: 2280px;
  }

  .width-2280px\@md {
    width: 2280px;
  }

  .min-width-2280px\@md {
    min-width: 2280px;
  }

  .max-width-2280px\@md {
    max-width: 2280px;
  }

  .height-2300px\@md {
    height: 2300px;
  }

  .min-height-2300px\@md {
    min-height: 2300px;
  }

  .max-height-2300px\@md {
    max-height: 2300px;
  }

  .width-2300px\@md {
    width: 2300px;
  }

  .min-width-2300px\@md {
    min-width: 2300px;
  }

  .max-width-2300px\@md {
    max-width: 2300px;
  }

  .height-2320px\@md {
    height: 2320px;
  }

  .min-height-2320px\@md {
    min-height: 2320px;
  }

  .max-height-2320px\@md {
    max-height: 2320px;
  }

  .width-2320px\@md {
    width: 2320px;
  }

  .min-width-2320px\@md {
    min-width: 2320px;
  }

  .max-width-2320px\@md {
    max-width: 2320px;
  }

  .height-2340px\@md {
    height: 2340px;
  }

  .min-height-2340px\@md {
    min-height: 2340px;
  }

  .max-height-2340px\@md {
    max-height: 2340px;
  }

  .width-2340px\@md {
    width: 2340px;
  }

  .min-width-2340px\@md {
    min-width: 2340px;
  }

  .max-width-2340px\@md {
    max-width: 2340px;
  }

  .height-2360px\@md {
    height: 2360px;
  }

  .min-height-2360px\@md {
    min-height: 2360px;
  }

  .max-height-2360px\@md {
    max-height: 2360px;
  }

  .width-2360px\@md {
    width: 2360px;
  }

  .min-width-2360px\@md {
    min-width: 2360px;
  }

  .max-width-2360px\@md {
    max-width: 2360px;
  }

  .height-2380px\@md {
    height: 2380px;
  }

  .min-height-2380px\@md {
    min-height: 2380px;
  }

  .max-height-2380px\@md {
    max-height: 2380px;
  }

  .width-2380px\@md {
    width: 2380px;
  }

  .min-width-2380px\@md {
    min-width: 2380px;
  }

  .max-width-2380px\@md {
    max-width: 2380px;
  }

  .height-2400px\@md {
    height: 2400px;
  }

  .min-height-2400px\@md {
    min-height: 2400px;
  }

  .max-height-2400px\@md {
    max-height: 2400px;
  }

  .width-2400px\@md {
    width: 2400px;
  }

  .min-width-2400px\@md {
    min-width: 2400px;
  }

  .max-width-2400px\@md {
    max-width: 2400px;
  }

  .height-2420px\@md {
    height: 2420px;
  }

  .min-height-2420px\@md {
    min-height: 2420px;
  }

  .max-height-2420px\@md {
    max-height: 2420px;
  }

  .width-2420px\@md {
    width: 2420px;
  }

  .min-width-2420px\@md {
    min-width: 2420px;
  }

  .max-width-2420px\@md {
    max-width: 2420px;
  }

  .height-2440px\@md {
    height: 2440px;
  }

  .min-height-2440px\@md {
    min-height: 2440px;
  }

  .max-height-2440px\@md {
    max-height: 2440px;
  }

  .width-2440px\@md {
    width: 2440px;
  }

  .min-width-2440px\@md {
    min-width: 2440px;
  }

  .max-width-2440px\@md {
    max-width: 2440px;
  }

  .height-2460px\@md {
    height: 2460px;
  }

  .min-height-2460px\@md {
    min-height: 2460px;
  }

  .max-height-2460px\@md {
    max-height: 2460px;
  }

  .width-2460px\@md {
    width: 2460px;
  }

  .min-width-2460px\@md {
    min-width: 2460px;
  }

  .max-width-2460px\@md {
    max-width: 2460px;
  }

  .height-2480px\@md {
    height: 2480px;
  }

  .min-height-2480px\@md {
    min-height: 2480px;
  }

  .max-height-2480px\@md {
    max-height: 2480px;
  }

  .width-2480px\@md {
    width: 2480px;
  }

  .min-width-2480px\@md {
    min-width: 2480px;
  }

  .max-width-2480px\@md {
    max-width: 2480px;
  }

  .height-2500px\@md {
    height: 2500px;
  }

  .min-height-2500px\@md {
    min-height: 2500px;
  }

  .max-height-2500px\@md {
    max-height: 2500px;
  }

  .width-2500px\@md {
    width: 2500px;
  }

  .min-width-2500px\@md {
    min-width: 2500px;
  }

  .max-width-2500px\@md {
    max-width: 2500px;
  }

  .height-2520px\@md {
    height: 2520px;
  }

  .min-height-2520px\@md {
    min-height: 2520px;
  }

  .max-height-2520px\@md {
    max-height: 2520px;
  }

  .width-2520px\@md {
    width: 2520px;
  }

  .min-width-2520px\@md {
    min-width: 2520px;
  }

  .max-width-2520px\@md {
    max-width: 2520px;
  }

  .height-2540px\@md {
    height: 2540px;
  }

  .min-height-2540px\@md {
    min-height: 2540px;
  }

  .max-height-2540px\@md {
    max-height: 2540px;
  }

  .width-2540px\@md {
    width: 2540px;
  }

  .min-width-2540px\@md {
    min-width: 2540px;
  }

  .max-width-2540px\@md {
    max-width: 2540px;
  }

  .height-2560px\@md {
    height: 2560px;
  }

  .min-height-2560px\@md {
    min-height: 2560px;
  }

  .max-height-2560px\@md {
    max-height: 2560px;
  }

  .width-2560px\@md {
    width: 2560px;
  }

  .min-width-2560px\@md {
    min-width: 2560px;
  }

  .max-width-2560px\@md {
    max-width: 2560px;
  }

  .height-2580px\@md {
    height: 2580px;
  }

  .min-height-2580px\@md {
    min-height: 2580px;
  }

  .max-height-2580px\@md {
    max-height: 2580px;
  }

  .width-2580px\@md {
    width: 2580px;
  }

  .min-width-2580px\@md {
    min-width: 2580px;
  }

  .max-width-2580px\@md {
    max-width: 2580px;
  }

  .height-2600px\@md {
    height: 2600px;
  }

  .min-height-2600px\@md {
    min-height: 2600px;
  }

  .max-height-2600px\@md {
    max-height: 2600px;
  }

  .width-2600px\@md {
    width: 2600px;
  }

  .min-width-2600px\@md {
    min-width: 2600px;
  }

  .max-width-2600px\@md {
    max-width: 2600px;
  }

  .height-2620px\@md {
    height: 2620px;
  }

  .min-height-2620px\@md {
    min-height: 2620px;
  }

  .max-height-2620px\@md {
    max-height: 2620px;
  }

  .width-2620px\@md {
    width: 2620px;
  }

  .min-width-2620px\@md {
    min-width: 2620px;
  }

  .max-width-2620px\@md {
    max-width: 2620px;
  }

  .height-2640px\@md {
    height: 2640px;
  }

  .min-height-2640px\@md {
    min-height: 2640px;
  }

  .max-height-2640px\@md {
    max-height: 2640px;
  }

  .width-2640px\@md {
    width: 2640px;
  }

  .min-width-2640px\@md {
    min-width: 2640px;
  }

  .max-width-2640px\@md {
    max-width: 2640px;
  }

  .height-2660px\@md {
    height: 2660px;
  }

  .min-height-2660px\@md {
    min-height: 2660px;
  }

  .max-height-2660px\@md {
    max-height: 2660px;
  }

  .width-2660px\@md {
    width: 2660px;
  }

  .min-width-2660px\@md {
    min-width: 2660px;
  }

  .max-width-2660px\@md {
    max-width: 2660px;
  }

  .height-2680px\@md {
    height: 2680px;
  }

  .min-height-2680px\@md {
    min-height: 2680px;
  }

  .max-height-2680px\@md {
    max-height: 2680px;
  }

  .width-2680px\@md {
    width: 2680px;
  }

  .min-width-2680px\@md {
    min-width: 2680px;
  }

  .max-width-2680px\@md {
    max-width: 2680px;
  }

  .height-2700px\@md {
    height: 2700px;
  }

  .min-height-2700px\@md {
    min-height: 2700px;
  }

  .max-height-2700px\@md {
    max-height: 2700px;
  }

  .width-2700px\@md {
    width: 2700px;
  }

  .min-width-2700px\@md {
    min-width: 2700px;
  }

  .max-width-2700px\@md {
    max-width: 2700px;
  }

  .height-2720px\@md {
    height: 2720px;
  }

  .min-height-2720px\@md {
    min-height: 2720px;
  }

  .max-height-2720px\@md {
    max-height: 2720px;
  }

  .width-2720px\@md {
    width: 2720px;
  }

  .min-width-2720px\@md {
    min-width: 2720px;
  }

  .max-width-2720px\@md {
    max-width: 2720px;
  }

  .height-2740px\@md {
    height: 2740px;
  }

  .min-height-2740px\@md {
    min-height: 2740px;
  }

  .max-height-2740px\@md {
    max-height: 2740px;
  }

  .width-2740px\@md {
    width: 2740px;
  }

  .min-width-2740px\@md {
    min-width: 2740px;
  }

  .max-width-2740px\@md {
    max-width: 2740px;
  }

  .height-2760px\@md {
    height: 2760px;
  }

  .min-height-2760px\@md {
    min-height: 2760px;
  }

  .max-height-2760px\@md {
    max-height: 2760px;
  }

  .width-2760px\@md {
    width: 2760px;
  }

  .min-width-2760px\@md {
    min-width: 2760px;
  }

  .max-width-2760px\@md {
    max-width: 2760px;
  }

  .height-2780px\@md {
    height: 2780px;
  }

  .min-height-2780px\@md {
    min-height: 2780px;
  }

  .max-height-2780px\@md {
    max-height: 2780px;
  }

  .width-2780px\@md {
    width: 2780px;
  }

  .min-width-2780px\@md {
    min-width: 2780px;
  }

  .max-width-2780px\@md {
    max-width: 2780px;
  }

  .height-2800px\@md {
    height: 2800px;
  }

  .min-height-2800px\@md {
    min-height: 2800px;
  }

  .max-height-2800px\@md {
    max-height: 2800px;
  }

  .width-2800px\@md {
    width: 2800px;
  }

  .min-width-2800px\@md {
    min-width: 2800px;
  }

  .max-width-2800px\@md {
    max-width: 2800px;
  }

  .height-2820px\@md {
    height: 2820px;
  }

  .min-height-2820px\@md {
    min-height: 2820px;
  }

  .max-height-2820px\@md {
    max-height: 2820px;
  }

  .width-2820px\@md {
    width: 2820px;
  }

  .min-width-2820px\@md {
    min-width: 2820px;
  }

  .max-width-2820px\@md {
    max-width: 2820px;
  }

  .height-2840px\@md {
    height: 2840px;
  }

  .min-height-2840px\@md {
    min-height: 2840px;
  }

  .max-height-2840px\@md {
    max-height: 2840px;
  }

  .width-2840px\@md {
    width: 2840px;
  }

  .min-width-2840px\@md {
    min-width: 2840px;
  }

  .max-width-2840px\@md {
    max-width: 2840px;
  }

  .height-2860px\@md {
    height: 2860px;
  }

  .min-height-2860px\@md {
    min-height: 2860px;
  }

  .max-height-2860px\@md {
    max-height: 2860px;
  }

  .width-2860px\@md {
    width: 2860px;
  }

  .min-width-2860px\@md {
    min-width: 2860px;
  }

  .max-width-2860px\@md {
    max-width: 2860px;
  }

  .height-2880px\@md {
    height: 2880px;
  }

  .min-height-2880px\@md {
    min-height: 2880px;
  }

  .max-height-2880px\@md {
    max-height: 2880px;
  }

  .width-2880px\@md {
    width: 2880px;
  }

  .min-width-2880px\@md {
    min-width: 2880px;
  }

  .max-width-2880px\@md {
    max-width: 2880px;
  }

  .height-2900px\@md {
    height: 2900px;
  }

  .min-height-2900px\@md {
    min-height: 2900px;
  }

  .max-height-2900px\@md {
    max-height: 2900px;
  }

  .width-2900px\@md {
    width: 2900px;
  }

  .min-width-2900px\@md {
    min-width: 2900px;
  }

  .max-width-2900px\@md {
    max-width: 2900px;
  }

  .height-2920px\@md {
    height: 2920px;
  }

  .min-height-2920px\@md {
    min-height: 2920px;
  }

  .max-height-2920px\@md {
    max-height: 2920px;
  }

  .width-2920px\@md {
    width: 2920px;
  }

  .min-width-2920px\@md {
    min-width: 2920px;
  }

  .max-width-2920px\@md {
    max-width: 2920px;
  }

  .height-2940px\@md {
    height: 2940px;
  }

  .min-height-2940px\@md {
    min-height: 2940px;
  }

  .max-height-2940px\@md {
    max-height: 2940px;
  }

  .width-2940px\@md {
    width: 2940px;
  }

  .min-width-2940px\@md {
    min-width: 2940px;
  }

  .max-width-2940px\@md {
    max-width: 2940px;
  }

  .height-2960px\@md {
    height: 2960px;
  }

  .min-height-2960px\@md {
    min-height: 2960px;
  }

  .max-height-2960px\@md {
    max-height: 2960px;
  }

  .width-2960px\@md {
    width: 2960px;
  }

  .min-width-2960px\@md {
    min-width: 2960px;
  }

  .max-width-2960px\@md {
    max-width: 2960px;
  }

  .height-2980px\@md {
    height: 2980px;
  }

  .min-height-2980px\@md {
    min-height: 2980px;
  }

  .max-height-2980px\@md {
    max-height: 2980px;
  }

  .width-2980px\@md {
    width: 2980px;
  }

  .min-width-2980px\@md {
    min-width: 2980px;
  }

  .max-width-2980px\@md {
    max-width: 2980px;
  }

  .height-3000px\@md {
    height: 3000px;
  }

  .min-height-3000px\@md {
    min-height: 3000px;
  }

  .max-height-3000px\@md {
    max-height: 3000px;
  }

  .width-3000px\@md {
    width: 3000px;
  }

  .min-width-3000px\@md {
    min-width: 3000px;
  }

  .max-width-3000px\@md {
    max-width: 3000px;
  }

  .height-3020px\@md {
    height: 3020px;
  }

  .min-height-3020px\@md {
    min-height: 3020px;
  }

  .max-height-3020px\@md {
    max-height: 3020px;
  }

  .width-3020px\@md {
    width: 3020px;
  }

  .min-width-3020px\@md {
    min-width: 3020px;
  }

  .max-width-3020px\@md {
    max-width: 3020px;
  }

  .height-3040px\@md {
    height: 3040px;
  }

  .min-height-3040px\@md {
    min-height: 3040px;
  }

  .max-height-3040px\@md {
    max-height: 3040px;
  }

  .width-3040px\@md {
    width: 3040px;
  }

  .min-width-3040px\@md {
    min-width: 3040px;
  }

  .max-width-3040px\@md {
    max-width: 3040px;
  }

  .height-3060px\@md {
    height: 3060px;
  }

  .min-height-3060px\@md {
    min-height: 3060px;
  }

  .max-height-3060px\@md {
    max-height: 3060px;
  }

  .width-3060px\@md {
    width: 3060px;
  }

  .min-width-3060px\@md {
    min-width: 3060px;
  }

  .max-width-3060px\@md {
    max-width: 3060px;
  }

  .height-3080px\@md {
    height: 3080px;
  }

  .min-height-3080px\@md {
    min-height: 3080px;
  }

  .max-height-3080px\@md {
    max-height: 3080px;
  }

  .width-3080px\@md {
    width: 3080px;
  }

  .min-width-3080px\@md {
    min-width: 3080px;
  }

  .max-width-3080px\@md {
    max-width: 3080px;
  }

  .height-3100px\@md {
    height: 3100px;
  }

  .min-height-3100px\@md {
    min-height: 3100px;
  }

  .max-height-3100px\@md {
    max-height: 3100px;
  }

  .width-3100px\@md {
    width: 3100px;
  }

  .min-width-3100px\@md {
    min-width: 3100px;
  }

  .max-width-3100px\@md {
    max-width: 3100px;
  }

  .height-3120px\@md {
    height: 3120px;
  }

  .min-height-3120px\@md {
    min-height: 3120px;
  }

  .max-height-3120px\@md {
    max-height: 3120px;
  }

  .width-3120px\@md {
    width: 3120px;
  }

  .min-width-3120px\@md {
    min-width: 3120px;
  }

  .max-width-3120px\@md {
    max-width: 3120px;
  }

  .height-3140px\@md {
    height: 3140px;
  }

  .min-height-3140px\@md {
    min-height: 3140px;
  }

  .max-height-3140px\@md {
    max-height: 3140px;
  }

  .width-3140px\@md {
    width: 3140px;
  }

  .min-width-3140px\@md {
    min-width: 3140px;
  }

  .max-width-3140px\@md {
    max-width: 3140px;
  }

  .height-3160px\@md {
    height: 3160px;
  }

  .min-height-3160px\@md {
    min-height: 3160px;
  }

  .max-height-3160px\@md {
    max-height: 3160px;
  }

  .width-3160px\@md {
    width: 3160px;
  }

  .min-width-3160px\@md {
    min-width: 3160px;
  }

  .max-width-3160px\@md {
    max-width: 3160px;
  }

  .height-3180px\@md {
    height: 3180px;
  }

  .min-height-3180px\@md {
    min-height: 3180px;
  }

  .max-height-3180px\@md {
    max-height: 3180px;
  }

  .width-3180px\@md {
    width: 3180px;
  }

  .min-width-3180px\@md {
    min-width: 3180px;
  }

  .max-width-3180px\@md {
    max-width: 3180px;
  }

  .height-3200px\@md {
    height: 3200px;
  }

  .min-height-3200px\@md {
    min-height: 3200px;
  }

  .max-height-3200px\@md {
    max-height: 3200px;
  }

  .width-3200px\@md {
    width: 3200px;
  }

  .min-width-3200px\@md {
    min-width: 3200px;
  }

  .max-width-3200px\@md {
    max-width: 3200px;
  }

  .height-3220px\@md {
    height: 3220px;
  }

  .min-height-3220px\@md {
    min-height: 3220px;
  }

  .max-height-3220px\@md {
    max-height: 3220px;
  }

  .width-3220px\@md {
    width: 3220px;
  }

  .min-width-3220px\@md {
    min-width: 3220px;
  }

  .max-width-3220px\@md {
    max-width: 3220px;
  }

  .height-3240px\@md {
    height: 3240px;
  }

  .min-height-3240px\@md {
    min-height: 3240px;
  }

  .max-height-3240px\@md {
    max-height: 3240px;
  }

  .width-3240px\@md {
    width: 3240px;
  }

  .min-width-3240px\@md {
    min-width: 3240px;
  }

  .max-width-3240px\@md {
    max-width: 3240px;
  }

  .height-3260px\@md {
    height: 3260px;
  }

  .min-height-3260px\@md {
    min-height: 3260px;
  }

  .max-height-3260px\@md {
    max-height: 3260px;
  }

  .width-3260px\@md {
    width: 3260px;
  }

  .min-width-3260px\@md {
    min-width: 3260px;
  }

  .max-width-3260px\@md {
    max-width: 3260px;
  }

  .height-3280px\@md {
    height: 3280px;
  }

  .min-height-3280px\@md {
    min-height: 3280px;
  }

  .max-height-3280px\@md {
    max-height: 3280px;
  }

  .width-3280px\@md {
    width: 3280px;
  }

  .min-width-3280px\@md {
    min-width: 3280px;
  }

  .max-width-3280px\@md {
    max-width: 3280px;
  }

  .height-3300px\@md {
    height: 3300px;
  }

  .min-height-3300px\@md {
    min-height: 3300px;
  }

  .max-height-3300px\@md {
    max-height: 3300px;
  }

  .width-3300px\@md {
    width: 3300px;
  }

  .min-width-3300px\@md {
    min-width: 3300px;
  }

  .max-width-3300px\@md {
    max-width: 3300px;
  }

  .height-3320px\@md {
    height: 3320px;
  }

  .min-height-3320px\@md {
    min-height: 3320px;
  }

  .max-height-3320px\@md {
    max-height: 3320px;
  }

  .width-3320px\@md {
    width: 3320px;
  }

  .min-width-3320px\@md {
    min-width: 3320px;
  }

  .max-width-3320px\@md {
    max-width: 3320px;
  }

  .height-3340px\@md {
    height: 3340px;
  }

  .min-height-3340px\@md {
    min-height: 3340px;
  }

  .max-height-3340px\@md {
    max-height: 3340px;
  }

  .width-3340px\@md {
    width: 3340px;
  }

  .min-width-3340px\@md {
    min-width: 3340px;
  }

  .max-width-3340px\@md {
    max-width: 3340px;
  }

  .height-3360px\@md {
    height: 3360px;
  }

  .min-height-3360px\@md {
    min-height: 3360px;
  }

  .max-height-3360px\@md {
    max-height: 3360px;
  }

  .width-3360px\@md {
    width: 3360px;
  }

  .min-width-3360px\@md {
    min-width: 3360px;
  }

  .max-width-3360px\@md {
    max-width: 3360px;
  }

  .height-3380px\@md {
    height: 3380px;
  }

  .min-height-3380px\@md {
    min-height: 3380px;
  }

  .max-height-3380px\@md {
    max-height: 3380px;
  }

  .width-3380px\@md {
    width: 3380px;
  }

  .min-width-3380px\@md {
    min-width: 3380px;
  }

  .max-width-3380px\@md {
    max-width: 3380px;
  }

  .height-3400px\@md {
    height: 3400px;
  }

  .min-height-3400px\@md {
    min-height: 3400px;
  }

  .max-height-3400px\@md {
    max-height: 3400px;
  }

  .width-3400px\@md {
    width: 3400px;
  }

  .min-width-3400px\@md {
    min-width: 3400px;
  }

  .max-width-3400px\@md {
    max-width: 3400px;
  }

  .height-3420px\@md {
    height: 3420px;
  }

  .min-height-3420px\@md {
    min-height: 3420px;
  }

  .max-height-3420px\@md {
    max-height: 3420px;
  }

  .width-3420px\@md {
    width: 3420px;
  }

  .min-width-3420px\@md {
    min-width: 3420px;
  }

  .max-width-3420px\@md {
    max-width: 3420px;
  }

  .height-3440px\@md {
    height: 3440px;
  }

  .min-height-3440px\@md {
    min-height: 3440px;
  }

  .max-height-3440px\@md {
    max-height: 3440px;
  }

  .width-3440px\@md {
    width: 3440px;
  }

  .min-width-3440px\@md {
    min-width: 3440px;
  }

  .max-width-3440px\@md {
    max-width: 3440px;
  }

  .height-3460px\@md {
    height: 3460px;
  }

  .min-height-3460px\@md {
    min-height: 3460px;
  }

  .max-height-3460px\@md {
    max-height: 3460px;
  }

  .width-3460px\@md {
    width: 3460px;
  }

  .min-width-3460px\@md {
    min-width: 3460px;
  }

  .max-width-3460px\@md {
    max-width: 3460px;
  }

  .height-3480px\@md {
    height: 3480px;
  }

  .min-height-3480px\@md {
    min-height: 3480px;
  }

  .max-height-3480px\@md {
    max-height: 3480px;
  }

  .width-3480px\@md {
    width: 3480px;
  }

  .min-width-3480px\@md {
    min-width: 3480px;
  }

  .max-width-3480px\@md {
    max-width: 3480px;
  }

  .height-3500px\@md {
    height: 3500px;
  }

  .min-height-3500px\@md {
    min-height: 3500px;
  }

  .max-height-3500px\@md {
    max-height: 3500px;
  }

  .width-3500px\@md {
    width: 3500px;
  }

  .min-width-3500px\@md {
    min-width: 3500px;
  }

  .max-width-3500px\@md {
    max-width: 3500px;
  }

  .height-3520px\@md {
    height: 3520px;
  }

  .min-height-3520px\@md {
    min-height: 3520px;
  }

  .max-height-3520px\@md {
    max-height: 3520px;
  }

  .width-3520px\@md {
    width: 3520px;
  }

  .min-width-3520px\@md {
    min-width: 3520px;
  }

  .max-width-3520px\@md {
    max-width: 3520px;
  }

  .height-3540px\@md {
    height: 3540px;
  }

  .min-height-3540px\@md {
    min-height: 3540px;
  }

  .max-height-3540px\@md {
    max-height: 3540px;
  }

  .width-3540px\@md {
    width: 3540px;
  }

  .min-width-3540px\@md {
    min-width: 3540px;
  }

  .max-width-3540px\@md {
    max-width: 3540px;
  }

  .height-3560px\@md {
    height: 3560px;
  }

  .min-height-3560px\@md {
    min-height: 3560px;
  }

  .max-height-3560px\@md {
    max-height: 3560px;
  }

  .width-3560px\@md {
    width: 3560px;
  }

  .min-width-3560px\@md {
    min-width: 3560px;
  }

  .max-width-3560px\@md {
    max-width: 3560px;
  }

  .height-3580px\@md {
    height: 3580px;
  }

  .min-height-3580px\@md {
    min-height: 3580px;
  }

  .max-height-3580px\@md {
    max-height: 3580px;
  }

  .width-3580px\@md {
    width: 3580px;
  }

  .min-width-3580px\@md {
    min-width: 3580px;
  }

  .max-width-3580px\@md {
    max-width: 3580px;
  }

  .height-3600px\@md {
    height: 3600px;
  }

  .min-height-3600px\@md {
    min-height: 3600px;
  }

  .max-height-3600px\@md {
    max-height: 3600px;
  }

  .width-3600px\@md {
    width: 3600px;
  }

  .min-width-3600px\@md {
    min-width: 3600px;
  }

  .max-width-3600px\@md {
    max-width: 3600px;
  }

  .height-3620px\@md {
    height: 3620px;
  }

  .min-height-3620px\@md {
    min-height: 3620px;
  }

  .max-height-3620px\@md {
    max-height: 3620px;
  }

  .width-3620px\@md {
    width: 3620px;
  }

  .min-width-3620px\@md {
    min-width: 3620px;
  }

  .max-width-3620px\@md {
    max-width: 3620px;
  }

  .height-3640px\@md {
    height: 3640px;
  }

  .min-height-3640px\@md {
    min-height: 3640px;
  }

  .max-height-3640px\@md {
    max-height: 3640px;
  }

  .width-3640px\@md {
    width: 3640px;
  }

  .min-width-3640px\@md {
    min-width: 3640px;
  }

  .max-width-3640px\@md {
    max-width: 3640px;
  }

  .height-3660px\@md {
    height: 3660px;
  }

  .min-height-3660px\@md {
    min-height: 3660px;
  }

  .max-height-3660px\@md {
    max-height: 3660px;
  }

  .width-3660px\@md {
    width: 3660px;
  }

  .min-width-3660px\@md {
    min-width: 3660px;
  }

  .max-width-3660px\@md {
    max-width: 3660px;
  }

  .height-3680px\@md {
    height: 3680px;
  }

  .min-height-3680px\@md {
    min-height: 3680px;
  }

  .max-height-3680px\@md {
    max-height: 3680px;
  }

  .width-3680px\@md {
    width: 3680px;
  }

  .min-width-3680px\@md {
    min-width: 3680px;
  }

  .max-width-3680px\@md {
    max-width: 3680px;
  }

  .height-3700px\@md {
    height: 3700px;
  }

  .min-height-3700px\@md {
    min-height: 3700px;
  }

  .max-height-3700px\@md {
    max-height: 3700px;
  }

  .width-3700px\@md {
    width: 3700px;
  }

  .min-width-3700px\@md {
    min-width: 3700px;
  }

  .max-width-3700px\@md {
    max-width: 3700px;
  }

  .height-3720px\@md {
    height: 3720px;
  }

  .min-height-3720px\@md {
    min-height: 3720px;
  }

  .max-height-3720px\@md {
    max-height: 3720px;
  }

  .width-3720px\@md {
    width: 3720px;
  }

  .min-width-3720px\@md {
    min-width: 3720px;
  }

  .max-width-3720px\@md {
    max-width: 3720px;
  }

  .height-3740px\@md {
    height: 3740px;
  }

  .min-height-3740px\@md {
    min-height: 3740px;
  }

  .max-height-3740px\@md {
    max-height: 3740px;
  }

  .width-3740px\@md {
    width: 3740px;
  }

  .min-width-3740px\@md {
    min-width: 3740px;
  }

  .max-width-3740px\@md {
    max-width: 3740px;
  }

  .height-3760px\@md {
    height: 3760px;
  }

  .min-height-3760px\@md {
    min-height: 3760px;
  }

  .max-height-3760px\@md {
    max-height: 3760px;
  }

  .width-3760px\@md {
    width: 3760px;
  }

  .min-width-3760px\@md {
    min-width: 3760px;
  }

  .max-width-3760px\@md {
    max-width: 3760px;
  }

  .height-3780px\@md {
    height: 3780px;
  }

  .min-height-3780px\@md {
    min-height: 3780px;
  }

  .max-height-3780px\@md {
    max-height: 3780px;
  }

  .width-3780px\@md {
    width: 3780px;
  }

  .min-width-3780px\@md {
    min-width: 3780px;
  }

  .max-width-3780px\@md {
    max-width: 3780px;
  }

  .height-3800px\@md {
    height: 3800px;
  }

  .min-height-3800px\@md {
    min-height: 3800px;
  }

  .max-height-3800px\@md {
    max-height: 3800px;
  }

  .width-3800px\@md {
    width: 3800px;
  }

  .min-width-3800px\@md {
    min-width: 3800px;
  }

  .max-width-3800px\@md {
    max-width: 3800px;
  }

  .height-3820px\@md {
    height: 3820px;
  }

  .min-height-3820px\@md {
    min-height: 3820px;
  }

  .max-height-3820px\@md {
    max-height: 3820px;
  }

  .width-3820px\@md {
    width: 3820px;
  }

  .min-width-3820px\@md {
    min-width: 3820px;
  }

  .max-width-3820px\@md {
    max-width: 3820px;
  }

  .height-3840px\@md {
    height: 3840px;
  }

  .min-height-3840px\@md {
    min-height: 3840px;
  }

  .max-height-3840px\@md {
    max-height: 3840px;
  }

  .width-3840px\@md {
    width: 3840px;
  }

  .min-width-3840px\@md {
    min-width: 3840px;
  }

  .max-width-3840px\@md {
    max-width: 3840px;
  }

  .height-3860px\@md {
    height: 3860px;
  }

  .min-height-3860px\@md {
    min-height: 3860px;
  }

  .max-height-3860px\@md {
    max-height: 3860px;
  }

  .width-3860px\@md {
    width: 3860px;
  }

  .min-width-3860px\@md {
    min-width: 3860px;
  }

  .max-width-3860px\@md {
    max-width: 3860px;
  }

  .height-3880px\@md {
    height: 3880px;
  }

  .min-height-3880px\@md {
    min-height: 3880px;
  }

  .max-height-3880px\@md {
    max-height: 3880px;
  }

  .width-3880px\@md {
    width: 3880px;
  }

  .min-width-3880px\@md {
    min-width: 3880px;
  }

  .max-width-3880px\@md {
    max-width: 3880px;
  }

  .height-3900px\@md {
    height: 3900px;
  }

  .min-height-3900px\@md {
    min-height: 3900px;
  }

  .max-height-3900px\@md {
    max-height: 3900px;
  }

  .width-3900px\@md {
    width: 3900px;
  }

  .min-width-3900px\@md {
    min-width: 3900px;
  }

  .max-width-3900px\@md {
    max-width: 3900px;
  }

  .height-3920px\@md {
    height: 3920px;
  }

  .min-height-3920px\@md {
    min-height: 3920px;
  }

  .max-height-3920px\@md {
    max-height: 3920px;
  }

  .width-3920px\@md {
    width: 3920px;
  }

  .min-width-3920px\@md {
    min-width: 3920px;
  }

  .max-width-3920px\@md {
    max-width: 3920px;
  }

  .height-3940px\@md {
    height: 3940px;
  }

  .min-height-3940px\@md {
    min-height: 3940px;
  }

  .max-height-3940px\@md {
    max-height: 3940px;
  }

  .width-3940px\@md {
    width: 3940px;
  }

  .min-width-3940px\@md {
    min-width: 3940px;
  }

  .max-width-3940px\@md {
    max-width: 3940px;
  }

  .height-3960px\@md {
    height: 3960px;
  }

  .min-height-3960px\@md {
    min-height: 3960px;
  }

  .max-height-3960px\@md {
    max-height: 3960px;
  }

  .width-3960px\@md {
    width: 3960px;
  }

  .min-width-3960px\@md {
    min-width: 3960px;
  }

  .max-width-3960px\@md {
    max-width: 3960px;
  }

  .height-3980px\@md {
    height: 3980px;
  }

  .min-height-3980px\@md {
    min-height: 3980px;
  }

  .max-height-3980px\@md {
    max-height: 3980px;
  }

  .width-3980px\@md {
    width: 3980px;
  }

  .min-width-3980px\@md {
    min-width: 3980px;
  }

  .max-width-3980px\@md {
    max-width: 3980px;
  }

  .height-4000px\@md {
    height: 4000px;
  }

  .min-height-4000px\@md {
    min-height: 4000px;
  }

  .max-height-4000px\@md {
    max-height: 4000px;
  }

  .width-4000px\@md {
    width: 4000px;
  }

  .min-width-4000px\@md {
    min-width: 4000px;
  }

  .max-width-4000px\@md {
    max-width: 4000px;
  }

  .text-25\%\@md {
    font-size: 25%;
  }

  .text-30\%\@md {
    font-size: 30%;
  }

  .text-35\%\@md {
    font-size: 35%;
  }

  .text-40\%\@md {
    font-size: 40%;
  }

  .text-45\%\@md {
    font-size: 45%;
  }

  .text-50\%\@md {
    font-size: 50%;
  }

  .text-55\%\@md {
    font-size: 55%;
  }

  .text-60\%\@md {
    font-size: 60%;
  }

  .text-65\%\@md {
    font-size: 65%;
  }

  .text-70\%\@md {
    font-size: 70%;
  }

  .text-75\%\@md {
    font-size: 75%;
  }

  .text-80\%\@md {
    font-size: 80%;
  }

  .text-85\%\@md {
    font-size: 85%;
  }

  .text-90\%\@md {
    font-size: 90%;
  }

  .text-95\%\@md {
    font-size: 95%;
  }

  .text-100\%\@md {
    font-size: 100%;
  }

  .text-105\%\@md {
    font-size: 105%;
  }

  .text-110\%\@md {
    font-size: 110%;
  }

  .text-115\%\@md {
    font-size: 115%;
  }

  .text-120\%\@md {
    font-size: 120%;
  }

  .text-125\%\@md {
    font-size: 125%;
  }

  .text-130\%\@md {
    font-size: 130%;
  }

  .text-135\%\@md {
    font-size: 135%;
  }

  .text-140\%\@md {
    font-size: 140%;
  }

  .text-145\%\@md {
    font-size: 145%;
  }

  .text-150\%\@md {
    font-size: 150%;
  }

  .text-155\%\@md {
    font-size: 155%;
  }

  .text-160\%\@md {
    font-size: 160%;
  }

  .text-165\%\@md {
    font-size: 165%;
  }

  .text-170\%\@md {
    font-size: 170%;
  }

  .text-175\%\@md {
    font-size: 175%;
  }

  .text-180\%\@md {
    font-size: 180%;
  }

  .text-185\%\@md {
    font-size: 185%;
  }

  .text-190\%\@md {
    font-size: 190%;
  }

  .text-195\%\@md {
    font-size: 195%;
  }

  .text-200\%\@md {
    font-size: 200%;
  }

  .text-offset-5\%\@md {
    width: calc(100% + 5%);
  }

  .text-offset-10\%\@md {
    width: calc(100% + 10%);
  }

  .text-offset-15\%\@md {
    width: calc(100% + 15%);
  }

  .text-offset-20\%\@md {
    width: calc(100% + 20%);
  }

  .text-offset-25\%\@md {
    width: calc(100% + 25%);
  }

  .text-offset-30\%\@md {
    width: calc(100% + 30%);
  }

  .text-offset-35\%\@md {
    width: calc(100% + 35%);
  }

  .text-offset-40\%\@md {
    width: calc(100% + 40%);
  }

  .text-offset-45\%\@md {
    width: calc(100% + 45%);
  }

  .text-offset-50\%\@md {
    width: calc(100% + 50%);
  }

  .text-offset-55\%\@md {
    width: calc(100% + 55%);
  }

  .text-offset-60\%\@md {
    width: calc(100% + 60%);
  }

  .text-offset-65\%\@md {
    width: calc(100% + 65%);
  }

  .text-offset-70\%\@md {
    width: calc(100% + 70%);
  }

  .text-offset-75\%\@md {
    width: calc(100% + 75%);
  }

  .text-offset-80\%\@md {
    width: calc(100% + 80%);
  }

  .text-offset-85\%\@md {
    width: calc(100% + 85%);
  }

  .text-offset-90\%\@md {
    width: calc(100% + 90%);
  }

  .text-offset-95\%\@md {
    width: calc(100% + 95%);
  }

  .text-offset-100\%\@md {
    width: calc(100% + 100%);
  }
}
@media (min-width: 80rem) {
  .component-padding-0\@lg {
    --component-padding: 0px;
  }

  .component-padding-xxxxs\@lg {
    --component-padding: var(--space-xxxxs);
  }

  .component-padding-xxxs\@lg {
    --component-padding: var(--space-xxxs);
  }

  .component-padding-xxs\@lg {
    --component-padding: var(--space-xxs);
  }

  .component-padding-xs\@lg {
    --component-padding: var(--space-xs);
  }

  .component-padding-sm\@lg {
    --component-padding: var(--space-sm);
  }

  .component-padding-md\@lg {
    --component-padding: var(--space-md);
  }

  .component-padding-lg\@lg {
    --component-padding: var(--space-lg);
  }

  .component-padding-xl\@lg {
    --component-padding: var(--space-xl);
  }

  .component-padding-xxl\@lg {
    --component-padding: var(--space-xxl);
  }

  .component-padding-xxxl\@lg {
    --component-padding: var(--space-xxxl);
  }

  .component-padding-xxxxl\@lg {
    --component-padding: var(--space-xxxxl);
  }

  .justify-around\@lg {
    justify-content: space-around;
  }

  .height-0px\@lg {
    height: 0px;
  }

  .min-height-0px\@lg {
    min-height: 0px;
  }

  .max-height-0px\@lg {
    max-height: 0px;
  }

  .width-0px\@lg {
    width: 0px;
  }

  .min-width-0px\@lg {
    min-width: 0px;
  }

  .max-width-0px\@lg {
    max-width: 0px;
  }

  .height-20px\@lg {
    height: 20px;
  }

  .min-height-20px\@lg {
    min-height: 20px;
  }

  .max-height-20px\@lg {
    max-height: 20px;
  }

  .width-20px\@lg {
    width: 20px;
  }

  .min-width-20px\@lg {
    min-width: 20px;
  }

  .max-width-20px\@lg {
    max-width: 20px;
  }

  .height-40px\@lg {
    height: 40px;
  }

  .min-height-40px\@lg {
    min-height: 40px;
  }

  .max-height-40px\@lg {
    max-height: 40px;
  }

  .width-40px\@lg {
    width: 40px;
  }

  .min-width-40px\@lg {
    min-width: 40px;
  }

  .max-width-40px\@lg {
    max-width: 40px;
  }

  .height-60px\@lg {
    height: 60px;
  }

  .min-height-60px\@lg {
    min-height: 60px;
  }

  .max-height-60px\@lg {
    max-height: 60px;
  }

  .width-60px\@lg {
    width: 60px;
  }

  .min-width-60px\@lg {
    min-width: 60px;
  }

  .max-width-60px\@lg {
    max-width: 60px;
  }

  .height-80px\@lg {
    height: 80px;
  }

  .min-height-80px\@lg {
    min-height: 80px;
  }

  .max-height-80px\@lg {
    max-height: 80px;
  }

  .width-80px\@lg {
    width: 80px;
  }

  .min-width-80px\@lg {
    min-width: 80px;
  }

  .max-width-80px\@lg {
    max-width: 80px;
  }

  .height-100px\@lg {
    height: 100px;
  }

  .min-height-100px\@lg {
    min-height: 100px;
  }

  .max-height-100px\@lg {
    max-height: 100px;
  }

  .width-100px\@lg {
    width: 100px;
  }

  .min-width-100px\@lg {
    min-width: 100px;
  }

  .max-width-100px\@lg {
    max-width: 100px;
  }

  .height-120px\@lg {
    height: 120px;
  }

  .min-height-120px\@lg {
    min-height: 120px;
  }

  .max-height-120px\@lg {
    max-height: 120px;
  }

  .width-120px\@lg {
    width: 120px;
  }

  .min-width-120px\@lg {
    min-width: 120px;
  }

  .max-width-120px\@lg {
    max-width: 120px;
  }

  .height-140px\@lg {
    height: 140px;
  }

  .min-height-140px\@lg {
    min-height: 140px;
  }

  .max-height-140px\@lg {
    max-height: 140px;
  }

  .width-140px\@lg {
    width: 140px;
  }

  .min-width-140px\@lg {
    min-width: 140px;
  }

  .max-width-140px\@lg {
    max-width: 140px;
  }

  .height-160px\@lg {
    height: 160px;
  }

  .min-height-160px\@lg {
    min-height: 160px;
  }

  .max-height-160px\@lg {
    max-height: 160px;
  }

  .width-160px\@lg {
    width: 160px;
  }

  .min-width-160px\@lg {
    min-width: 160px;
  }

  .max-width-160px\@lg {
    max-width: 160px;
  }

  .height-180px\@lg {
    height: 180px;
  }

  .min-height-180px\@lg {
    min-height: 180px;
  }

  .max-height-180px\@lg {
    max-height: 180px;
  }

  .width-180px\@lg {
    width: 180px;
  }

  .min-width-180px\@lg {
    min-width: 180px;
  }

  .max-width-180px\@lg {
    max-width: 180px;
  }

  .height-200px\@lg {
    height: 200px;
  }

  .min-height-200px\@lg {
    min-height: 200px;
  }

  .max-height-200px\@lg {
    max-height: 200px;
  }

  .width-200px\@lg {
    width: 200px;
  }

  .min-width-200px\@lg {
    min-width: 200px;
  }

  .max-width-200px\@lg {
    max-width: 200px;
  }

  .height-220px\@lg {
    height: 220px;
  }

  .min-height-220px\@lg {
    min-height: 220px;
  }

  .max-height-220px\@lg {
    max-height: 220px;
  }

  .width-220px\@lg {
    width: 220px;
  }

  .min-width-220px\@lg {
    min-width: 220px;
  }

  .max-width-220px\@lg {
    max-width: 220px;
  }

  .height-240px\@lg {
    height: 240px;
  }

  .min-height-240px\@lg {
    min-height: 240px;
  }

  .max-height-240px\@lg {
    max-height: 240px;
  }

  .width-240px\@lg {
    width: 240px;
  }

  .min-width-240px\@lg {
    min-width: 240px;
  }

  .max-width-240px\@lg {
    max-width: 240px;
  }

  .height-260px\@lg {
    height: 260px;
  }

  .min-height-260px\@lg {
    min-height: 260px;
  }

  .max-height-260px\@lg {
    max-height: 260px;
  }

  .width-260px\@lg {
    width: 260px;
  }

  .min-width-260px\@lg {
    min-width: 260px;
  }

  .max-width-260px\@lg {
    max-width: 260px;
  }

  .height-280px\@lg {
    height: 280px;
  }

  .min-height-280px\@lg {
    min-height: 280px;
  }

  .max-height-280px\@lg {
    max-height: 280px;
  }

  .width-280px\@lg {
    width: 280px;
  }

  .min-width-280px\@lg {
    min-width: 280px;
  }

  .max-width-280px\@lg {
    max-width: 280px;
  }

  .height-300px\@lg {
    height: 300px;
  }

  .min-height-300px\@lg {
    min-height: 300px;
  }

  .max-height-300px\@lg {
    max-height: 300px;
  }

  .width-300px\@lg {
    width: 300px;
  }

  .min-width-300px\@lg {
    min-width: 300px;
  }

  .max-width-300px\@lg {
    max-width: 300px;
  }

  .height-320px\@lg {
    height: 320px;
  }

  .min-height-320px\@lg {
    min-height: 320px;
  }

  .max-height-320px\@lg {
    max-height: 320px;
  }

  .width-320px\@lg {
    width: 320px;
  }

  .min-width-320px\@lg {
    min-width: 320px;
  }

  .max-width-320px\@lg {
    max-width: 320px;
  }

  .height-340px\@lg {
    height: 340px;
  }

  .min-height-340px\@lg {
    min-height: 340px;
  }

  .max-height-340px\@lg {
    max-height: 340px;
  }

  .width-340px\@lg {
    width: 340px;
  }

  .min-width-340px\@lg {
    min-width: 340px;
  }

  .max-width-340px\@lg {
    max-width: 340px;
  }

  .height-360px\@lg {
    height: 360px;
  }

  .min-height-360px\@lg {
    min-height: 360px;
  }

  .max-height-360px\@lg {
    max-height: 360px;
  }

  .width-360px\@lg {
    width: 360px;
  }

  .min-width-360px\@lg {
    min-width: 360px;
  }

  .max-width-360px\@lg {
    max-width: 360px;
  }

  .height-380px\@lg {
    height: 380px;
  }

  .min-height-380px\@lg {
    min-height: 380px;
  }

  .max-height-380px\@lg {
    max-height: 380px;
  }

  .width-380px\@lg {
    width: 380px;
  }

  .min-width-380px\@lg {
    min-width: 380px;
  }

  .max-width-380px\@lg {
    max-width: 380px;
  }

  .height-400px\@lg {
    height: 400px;
  }

  .min-height-400px\@lg {
    min-height: 400px;
  }

  .max-height-400px\@lg {
    max-height: 400px;
  }

  .width-400px\@lg {
    width: 400px;
  }

  .min-width-400px\@lg {
    min-width: 400px;
  }

  .max-width-400px\@lg {
    max-width: 400px;
  }

  .height-420px\@lg {
    height: 420px;
  }

  .min-height-420px\@lg {
    min-height: 420px;
  }

  .max-height-420px\@lg {
    max-height: 420px;
  }

  .width-420px\@lg {
    width: 420px;
  }

  .min-width-420px\@lg {
    min-width: 420px;
  }

  .max-width-420px\@lg {
    max-width: 420px;
  }

  .height-440px\@lg {
    height: 440px;
  }

  .min-height-440px\@lg {
    min-height: 440px;
  }

  .max-height-440px\@lg {
    max-height: 440px;
  }

  .width-440px\@lg {
    width: 440px;
  }

  .min-width-440px\@lg {
    min-width: 440px;
  }

  .max-width-440px\@lg {
    max-width: 440px;
  }

  .height-460px\@lg {
    height: 460px;
  }

  .min-height-460px\@lg {
    min-height: 460px;
  }

  .max-height-460px\@lg {
    max-height: 460px;
  }

  .width-460px\@lg {
    width: 460px;
  }

  .min-width-460px\@lg {
    min-width: 460px;
  }

  .max-width-460px\@lg {
    max-width: 460px;
  }

  .height-480px\@lg {
    height: 480px;
  }

  .min-height-480px\@lg {
    min-height: 480px;
  }

  .max-height-480px\@lg {
    max-height: 480px;
  }

  .width-480px\@lg {
    width: 480px;
  }

  .min-width-480px\@lg {
    min-width: 480px;
  }

  .max-width-480px\@lg {
    max-width: 480px;
  }

  .height-500px\@lg {
    height: 500px;
  }

  .min-height-500px\@lg {
    min-height: 500px;
  }

  .max-height-500px\@lg {
    max-height: 500px;
  }

  .width-500px\@lg {
    width: 500px;
  }

  .min-width-500px\@lg {
    min-width: 500px;
  }

  .max-width-500px\@lg {
    max-width: 500px;
  }

  .height-520px\@lg {
    height: 520px;
  }

  .min-height-520px\@lg {
    min-height: 520px;
  }

  .max-height-520px\@lg {
    max-height: 520px;
  }

  .width-520px\@lg {
    width: 520px;
  }

  .min-width-520px\@lg {
    min-width: 520px;
  }

  .max-width-520px\@lg {
    max-width: 520px;
  }

  .height-540px\@lg {
    height: 540px;
  }

  .min-height-540px\@lg {
    min-height: 540px;
  }

  .max-height-540px\@lg {
    max-height: 540px;
  }

  .width-540px\@lg {
    width: 540px;
  }

  .min-width-540px\@lg {
    min-width: 540px;
  }

  .max-width-540px\@lg {
    max-width: 540px;
  }

  .height-560px\@lg {
    height: 560px;
  }

  .min-height-560px\@lg {
    min-height: 560px;
  }

  .max-height-560px\@lg {
    max-height: 560px;
  }

  .width-560px\@lg {
    width: 560px;
  }

  .min-width-560px\@lg {
    min-width: 560px;
  }

  .max-width-560px\@lg {
    max-width: 560px;
  }

  .height-580px\@lg {
    height: 580px;
  }

  .min-height-580px\@lg {
    min-height: 580px;
  }

  .max-height-580px\@lg {
    max-height: 580px;
  }

  .width-580px\@lg {
    width: 580px;
  }

  .min-width-580px\@lg {
    min-width: 580px;
  }

  .max-width-580px\@lg {
    max-width: 580px;
  }

  .height-600px\@lg {
    height: 600px;
  }

  .min-height-600px\@lg {
    min-height: 600px;
  }

  .max-height-600px\@lg {
    max-height: 600px;
  }

  .width-600px\@lg {
    width: 600px;
  }

  .min-width-600px\@lg {
    min-width: 600px;
  }

  .max-width-600px\@lg {
    max-width: 600px;
  }

  .height-620px\@lg {
    height: 620px;
  }

  .min-height-620px\@lg {
    min-height: 620px;
  }

  .max-height-620px\@lg {
    max-height: 620px;
  }

  .width-620px\@lg {
    width: 620px;
  }

  .min-width-620px\@lg {
    min-width: 620px;
  }

  .max-width-620px\@lg {
    max-width: 620px;
  }

  .height-640px\@lg {
    height: 640px;
  }

  .min-height-640px\@lg {
    min-height: 640px;
  }

  .max-height-640px\@lg {
    max-height: 640px;
  }

  .width-640px\@lg {
    width: 640px;
  }

  .min-width-640px\@lg {
    min-width: 640px;
  }

  .max-width-640px\@lg {
    max-width: 640px;
  }

  .height-660px\@lg {
    height: 660px;
  }

  .min-height-660px\@lg {
    min-height: 660px;
  }

  .max-height-660px\@lg {
    max-height: 660px;
  }

  .width-660px\@lg {
    width: 660px;
  }

  .min-width-660px\@lg {
    min-width: 660px;
  }

  .max-width-660px\@lg {
    max-width: 660px;
  }

  .height-680px\@lg {
    height: 680px;
  }

  .min-height-680px\@lg {
    min-height: 680px;
  }

  .max-height-680px\@lg {
    max-height: 680px;
  }

  .width-680px\@lg {
    width: 680px;
  }

  .min-width-680px\@lg {
    min-width: 680px;
  }

  .max-width-680px\@lg {
    max-width: 680px;
  }

  .height-700px\@lg {
    height: 700px;
  }

  .min-height-700px\@lg {
    min-height: 700px;
  }

  .max-height-700px\@lg {
    max-height: 700px;
  }

  .width-700px\@lg {
    width: 700px;
  }

  .min-width-700px\@lg {
    min-width: 700px;
  }

  .max-width-700px\@lg {
    max-width: 700px;
  }

  .height-720px\@lg {
    height: 720px;
  }

  .min-height-720px\@lg {
    min-height: 720px;
  }

  .max-height-720px\@lg {
    max-height: 720px;
  }

  .width-720px\@lg {
    width: 720px;
  }

  .min-width-720px\@lg {
    min-width: 720px;
  }

  .max-width-720px\@lg {
    max-width: 720px;
  }

  .height-740px\@lg {
    height: 740px;
  }

  .min-height-740px\@lg {
    min-height: 740px;
  }

  .max-height-740px\@lg {
    max-height: 740px;
  }

  .width-740px\@lg {
    width: 740px;
  }

  .min-width-740px\@lg {
    min-width: 740px;
  }

  .max-width-740px\@lg {
    max-width: 740px;
  }

  .height-760px\@lg {
    height: 760px;
  }

  .min-height-760px\@lg {
    min-height: 760px;
  }

  .max-height-760px\@lg {
    max-height: 760px;
  }

  .width-760px\@lg {
    width: 760px;
  }

  .min-width-760px\@lg {
    min-width: 760px;
  }

  .max-width-760px\@lg {
    max-width: 760px;
  }

  .height-780px\@lg {
    height: 780px;
  }

  .min-height-780px\@lg {
    min-height: 780px;
  }

  .max-height-780px\@lg {
    max-height: 780px;
  }

  .width-780px\@lg {
    width: 780px;
  }

  .min-width-780px\@lg {
    min-width: 780px;
  }

  .max-width-780px\@lg {
    max-width: 780px;
  }

  .height-800px\@lg {
    height: 800px;
  }

  .min-height-800px\@lg {
    min-height: 800px;
  }

  .max-height-800px\@lg {
    max-height: 800px;
  }

  .width-800px\@lg {
    width: 800px;
  }

  .min-width-800px\@lg {
    min-width: 800px;
  }

  .max-width-800px\@lg {
    max-width: 800px;
  }

  .height-820px\@lg {
    height: 820px;
  }

  .min-height-820px\@lg {
    min-height: 820px;
  }

  .max-height-820px\@lg {
    max-height: 820px;
  }

  .width-820px\@lg {
    width: 820px;
  }

  .min-width-820px\@lg {
    min-width: 820px;
  }

  .max-width-820px\@lg {
    max-width: 820px;
  }

  .height-840px\@lg {
    height: 840px;
  }

  .min-height-840px\@lg {
    min-height: 840px;
  }

  .max-height-840px\@lg {
    max-height: 840px;
  }

  .width-840px\@lg {
    width: 840px;
  }

  .min-width-840px\@lg {
    min-width: 840px;
  }

  .max-width-840px\@lg {
    max-width: 840px;
  }

  .height-860px\@lg {
    height: 860px;
  }

  .min-height-860px\@lg {
    min-height: 860px;
  }

  .max-height-860px\@lg {
    max-height: 860px;
  }

  .width-860px\@lg {
    width: 860px;
  }

  .min-width-860px\@lg {
    min-width: 860px;
  }

  .max-width-860px\@lg {
    max-width: 860px;
  }

  .height-880px\@lg {
    height: 880px;
  }

  .min-height-880px\@lg {
    min-height: 880px;
  }

  .max-height-880px\@lg {
    max-height: 880px;
  }

  .width-880px\@lg {
    width: 880px;
  }

  .min-width-880px\@lg {
    min-width: 880px;
  }

  .max-width-880px\@lg {
    max-width: 880px;
  }

  .height-900px\@lg {
    height: 900px;
  }

  .min-height-900px\@lg {
    min-height: 900px;
  }

  .max-height-900px\@lg {
    max-height: 900px;
  }

  .width-900px\@lg {
    width: 900px;
  }

  .min-width-900px\@lg {
    min-width: 900px;
  }

  .max-width-900px\@lg {
    max-width: 900px;
  }

  .height-920px\@lg {
    height: 920px;
  }

  .min-height-920px\@lg {
    min-height: 920px;
  }

  .max-height-920px\@lg {
    max-height: 920px;
  }

  .width-920px\@lg {
    width: 920px;
  }

  .min-width-920px\@lg {
    min-width: 920px;
  }

  .max-width-920px\@lg {
    max-width: 920px;
  }

  .height-940px\@lg {
    height: 940px;
  }

  .min-height-940px\@lg {
    min-height: 940px;
  }

  .max-height-940px\@lg {
    max-height: 940px;
  }

  .width-940px\@lg {
    width: 940px;
  }

  .min-width-940px\@lg {
    min-width: 940px;
  }

  .max-width-940px\@lg {
    max-width: 940px;
  }

  .height-960px\@lg {
    height: 960px;
  }

  .min-height-960px\@lg {
    min-height: 960px;
  }

  .max-height-960px\@lg {
    max-height: 960px;
  }

  .width-960px\@lg {
    width: 960px;
  }

  .min-width-960px\@lg {
    min-width: 960px;
  }

  .max-width-960px\@lg {
    max-width: 960px;
  }

  .height-980px\@lg {
    height: 980px;
  }

  .min-height-980px\@lg {
    min-height: 980px;
  }

  .max-height-980px\@lg {
    max-height: 980px;
  }

  .width-980px\@lg {
    width: 980px;
  }

  .min-width-980px\@lg {
    min-width: 980px;
  }

  .max-width-980px\@lg {
    max-width: 980px;
  }

  .height-1000px\@lg {
    height: 1000px;
  }

  .min-height-1000px\@lg {
    min-height: 1000px;
  }

  .max-height-1000px\@lg {
    max-height: 1000px;
  }

  .width-1000px\@lg {
    width: 1000px;
  }

  .min-width-1000px\@lg {
    min-width: 1000px;
  }

  .max-width-1000px\@lg {
    max-width: 1000px;
  }

  .height-1020px\@lg {
    height: 1020px;
  }

  .min-height-1020px\@lg {
    min-height: 1020px;
  }

  .max-height-1020px\@lg {
    max-height: 1020px;
  }

  .width-1020px\@lg {
    width: 1020px;
  }

  .min-width-1020px\@lg {
    min-width: 1020px;
  }

  .max-width-1020px\@lg {
    max-width: 1020px;
  }

  .height-1040px\@lg {
    height: 1040px;
  }

  .min-height-1040px\@lg {
    min-height: 1040px;
  }

  .max-height-1040px\@lg {
    max-height: 1040px;
  }

  .width-1040px\@lg {
    width: 1040px;
  }

  .min-width-1040px\@lg {
    min-width: 1040px;
  }

  .max-width-1040px\@lg {
    max-width: 1040px;
  }

  .height-1060px\@lg {
    height: 1060px;
  }

  .min-height-1060px\@lg {
    min-height: 1060px;
  }

  .max-height-1060px\@lg {
    max-height: 1060px;
  }

  .width-1060px\@lg {
    width: 1060px;
  }

  .min-width-1060px\@lg {
    min-width: 1060px;
  }

  .max-width-1060px\@lg {
    max-width: 1060px;
  }

  .height-1080px\@lg {
    height: 1080px;
  }

  .min-height-1080px\@lg {
    min-height: 1080px;
  }

  .max-height-1080px\@lg {
    max-height: 1080px;
  }

  .width-1080px\@lg {
    width: 1080px;
  }

  .min-width-1080px\@lg {
    min-width: 1080px;
  }

  .max-width-1080px\@lg {
    max-width: 1080px;
  }

  .height-1100px\@lg {
    height: 1100px;
  }

  .min-height-1100px\@lg {
    min-height: 1100px;
  }

  .max-height-1100px\@lg {
    max-height: 1100px;
  }

  .width-1100px\@lg {
    width: 1100px;
  }

  .min-width-1100px\@lg {
    min-width: 1100px;
  }

  .max-width-1100px\@lg {
    max-width: 1100px;
  }

  .height-1120px\@lg {
    height: 1120px;
  }

  .min-height-1120px\@lg {
    min-height: 1120px;
  }

  .max-height-1120px\@lg {
    max-height: 1120px;
  }

  .width-1120px\@lg {
    width: 1120px;
  }

  .min-width-1120px\@lg {
    min-width: 1120px;
  }

  .max-width-1120px\@lg {
    max-width: 1120px;
  }

  .height-1140px\@lg {
    height: 1140px;
  }

  .min-height-1140px\@lg {
    min-height: 1140px;
  }

  .max-height-1140px\@lg {
    max-height: 1140px;
  }

  .width-1140px\@lg {
    width: 1140px;
  }

  .min-width-1140px\@lg {
    min-width: 1140px;
  }

  .max-width-1140px\@lg {
    max-width: 1140px;
  }

  .height-1160px\@lg {
    height: 1160px;
  }

  .min-height-1160px\@lg {
    min-height: 1160px;
  }

  .max-height-1160px\@lg {
    max-height: 1160px;
  }

  .width-1160px\@lg {
    width: 1160px;
  }

  .min-width-1160px\@lg {
    min-width: 1160px;
  }

  .max-width-1160px\@lg {
    max-width: 1160px;
  }

  .height-1180px\@lg {
    height: 1180px;
  }

  .min-height-1180px\@lg {
    min-height: 1180px;
  }

  .max-height-1180px\@lg {
    max-height: 1180px;
  }

  .width-1180px\@lg {
    width: 1180px;
  }

  .min-width-1180px\@lg {
    min-width: 1180px;
  }

  .max-width-1180px\@lg {
    max-width: 1180px;
  }

  .height-1200px\@lg {
    height: 1200px;
  }

  .min-height-1200px\@lg {
    min-height: 1200px;
  }

  .max-height-1200px\@lg {
    max-height: 1200px;
  }

  .width-1200px\@lg {
    width: 1200px;
  }

  .min-width-1200px\@lg {
    min-width: 1200px;
  }

  .max-width-1200px\@lg {
    max-width: 1200px;
  }

  .height-1220px\@lg {
    height: 1220px;
  }

  .min-height-1220px\@lg {
    min-height: 1220px;
  }

  .max-height-1220px\@lg {
    max-height: 1220px;
  }

  .width-1220px\@lg {
    width: 1220px;
  }

  .min-width-1220px\@lg {
    min-width: 1220px;
  }

  .max-width-1220px\@lg {
    max-width: 1220px;
  }

  .height-1240px\@lg {
    height: 1240px;
  }

  .min-height-1240px\@lg {
    min-height: 1240px;
  }

  .max-height-1240px\@lg {
    max-height: 1240px;
  }

  .width-1240px\@lg {
    width: 1240px;
  }

  .min-width-1240px\@lg {
    min-width: 1240px;
  }

  .max-width-1240px\@lg {
    max-width: 1240px;
  }

  .height-1260px\@lg {
    height: 1260px;
  }

  .min-height-1260px\@lg {
    min-height: 1260px;
  }

  .max-height-1260px\@lg {
    max-height: 1260px;
  }

  .width-1260px\@lg {
    width: 1260px;
  }

  .min-width-1260px\@lg {
    min-width: 1260px;
  }

  .max-width-1260px\@lg {
    max-width: 1260px;
  }

  .height-1280px\@lg {
    height: 1280px;
  }

  .min-height-1280px\@lg {
    min-height: 1280px;
  }

  .max-height-1280px\@lg {
    max-height: 1280px;
  }

  .width-1280px\@lg {
    width: 1280px;
  }

  .min-width-1280px\@lg {
    min-width: 1280px;
  }

  .max-width-1280px\@lg {
    max-width: 1280px;
  }

  .height-1300px\@lg {
    height: 1300px;
  }

  .min-height-1300px\@lg {
    min-height: 1300px;
  }

  .max-height-1300px\@lg {
    max-height: 1300px;
  }

  .width-1300px\@lg {
    width: 1300px;
  }

  .min-width-1300px\@lg {
    min-width: 1300px;
  }

  .max-width-1300px\@lg {
    max-width: 1300px;
  }

  .height-1320px\@lg {
    height: 1320px;
  }

  .min-height-1320px\@lg {
    min-height: 1320px;
  }

  .max-height-1320px\@lg {
    max-height: 1320px;
  }

  .width-1320px\@lg {
    width: 1320px;
  }

  .min-width-1320px\@lg {
    min-width: 1320px;
  }

  .max-width-1320px\@lg {
    max-width: 1320px;
  }

  .height-1340px\@lg {
    height: 1340px;
  }

  .min-height-1340px\@lg {
    min-height: 1340px;
  }

  .max-height-1340px\@lg {
    max-height: 1340px;
  }

  .width-1340px\@lg {
    width: 1340px;
  }

  .min-width-1340px\@lg {
    min-width: 1340px;
  }

  .max-width-1340px\@lg {
    max-width: 1340px;
  }

  .height-1360px\@lg {
    height: 1360px;
  }

  .min-height-1360px\@lg {
    min-height: 1360px;
  }

  .max-height-1360px\@lg {
    max-height: 1360px;
  }

  .width-1360px\@lg {
    width: 1360px;
  }

  .min-width-1360px\@lg {
    min-width: 1360px;
  }

  .max-width-1360px\@lg {
    max-width: 1360px;
  }

  .height-1380px\@lg {
    height: 1380px;
  }

  .min-height-1380px\@lg {
    min-height: 1380px;
  }

  .max-height-1380px\@lg {
    max-height: 1380px;
  }

  .width-1380px\@lg {
    width: 1380px;
  }

  .min-width-1380px\@lg {
    min-width: 1380px;
  }

  .max-width-1380px\@lg {
    max-width: 1380px;
  }

  .height-1400px\@lg {
    height: 1400px;
  }

  .min-height-1400px\@lg {
    min-height: 1400px;
  }

  .max-height-1400px\@lg {
    max-height: 1400px;
  }

  .width-1400px\@lg {
    width: 1400px;
  }

  .min-width-1400px\@lg {
    min-width: 1400px;
  }

  .max-width-1400px\@lg {
    max-width: 1400px;
  }

  .height-1420px\@lg {
    height: 1420px;
  }

  .min-height-1420px\@lg {
    min-height: 1420px;
  }

  .max-height-1420px\@lg {
    max-height: 1420px;
  }

  .width-1420px\@lg {
    width: 1420px;
  }

  .min-width-1420px\@lg {
    min-width: 1420px;
  }

  .max-width-1420px\@lg {
    max-width: 1420px;
  }

  .height-1440px\@lg {
    height: 1440px;
  }

  .min-height-1440px\@lg {
    min-height: 1440px;
  }

  .max-height-1440px\@lg {
    max-height: 1440px;
  }

  .width-1440px\@lg {
    width: 1440px;
  }

  .min-width-1440px\@lg {
    min-width: 1440px;
  }

  .max-width-1440px\@lg {
    max-width: 1440px;
  }

  .height-1460px\@lg {
    height: 1460px;
  }

  .min-height-1460px\@lg {
    min-height: 1460px;
  }

  .max-height-1460px\@lg {
    max-height: 1460px;
  }

  .width-1460px\@lg {
    width: 1460px;
  }

  .min-width-1460px\@lg {
    min-width: 1460px;
  }

  .max-width-1460px\@lg {
    max-width: 1460px;
  }

  .height-1480px\@lg {
    height: 1480px;
  }

  .min-height-1480px\@lg {
    min-height: 1480px;
  }

  .max-height-1480px\@lg {
    max-height: 1480px;
  }

  .width-1480px\@lg {
    width: 1480px;
  }

  .min-width-1480px\@lg {
    min-width: 1480px;
  }

  .max-width-1480px\@lg {
    max-width: 1480px;
  }

  .height-1500px\@lg {
    height: 1500px;
  }

  .min-height-1500px\@lg {
    min-height: 1500px;
  }

  .max-height-1500px\@lg {
    max-height: 1500px;
  }

  .width-1500px\@lg {
    width: 1500px;
  }

  .min-width-1500px\@lg {
    min-width: 1500px;
  }

  .max-width-1500px\@lg {
    max-width: 1500px;
  }

  .height-1520px\@lg {
    height: 1520px;
  }

  .min-height-1520px\@lg {
    min-height: 1520px;
  }

  .max-height-1520px\@lg {
    max-height: 1520px;
  }

  .width-1520px\@lg {
    width: 1520px;
  }

  .min-width-1520px\@lg {
    min-width: 1520px;
  }

  .max-width-1520px\@lg {
    max-width: 1520px;
  }

  .height-1540px\@lg {
    height: 1540px;
  }

  .min-height-1540px\@lg {
    min-height: 1540px;
  }

  .max-height-1540px\@lg {
    max-height: 1540px;
  }

  .width-1540px\@lg {
    width: 1540px;
  }

  .min-width-1540px\@lg {
    min-width: 1540px;
  }

  .max-width-1540px\@lg {
    max-width: 1540px;
  }

  .height-1560px\@lg {
    height: 1560px;
  }

  .min-height-1560px\@lg {
    min-height: 1560px;
  }

  .max-height-1560px\@lg {
    max-height: 1560px;
  }

  .width-1560px\@lg {
    width: 1560px;
  }

  .min-width-1560px\@lg {
    min-width: 1560px;
  }

  .max-width-1560px\@lg {
    max-width: 1560px;
  }

  .height-1580px\@lg {
    height: 1580px;
  }

  .min-height-1580px\@lg {
    min-height: 1580px;
  }

  .max-height-1580px\@lg {
    max-height: 1580px;
  }

  .width-1580px\@lg {
    width: 1580px;
  }

  .min-width-1580px\@lg {
    min-width: 1580px;
  }

  .max-width-1580px\@lg {
    max-width: 1580px;
  }

  .height-1600px\@lg {
    height: 1600px;
  }

  .min-height-1600px\@lg {
    min-height: 1600px;
  }

  .max-height-1600px\@lg {
    max-height: 1600px;
  }

  .width-1600px\@lg {
    width: 1600px;
  }

  .min-width-1600px\@lg {
    min-width: 1600px;
  }

  .max-width-1600px\@lg {
    max-width: 1600px;
  }

  .height-1620px\@lg {
    height: 1620px;
  }

  .min-height-1620px\@lg {
    min-height: 1620px;
  }

  .max-height-1620px\@lg {
    max-height: 1620px;
  }

  .width-1620px\@lg {
    width: 1620px;
  }

  .min-width-1620px\@lg {
    min-width: 1620px;
  }

  .max-width-1620px\@lg {
    max-width: 1620px;
  }

  .height-1640px\@lg {
    height: 1640px;
  }

  .min-height-1640px\@lg {
    min-height: 1640px;
  }

  .max-height-1640px\@lg {
    max-height: 1640px;
  }

  .width-1640px\@lg {
    width: 1640px;
  }

  .min-width-1640px\@lg {
    min-width: 1640px;
  }

  .max-width-1640px\@lg {
    max-width: 1640px;
  }

  .height-1660px\@lg {
    height: 1660px;
  }

  .min-height-1660px\@lg {
    min-height: 1660px;
  }

  .max-height-1660px\@lg {
    max-height: 1660px;
  }

  .width-1660px\@lg {
    width: 1660px;
  }

  .min-width-1660px\@lg {
    min-width: 1660px;
  }

  .max-width-1660px\@lg {
    max-width: 1660px;
  }

  .height-1680px\@lg {
    height: 1680px;
  }

  .min-height-1680px\@lg {
    min-height: 1680px;
  }

  .max-height-1680px\@lg {
    max-height: 1680px;
  }

  .width-1680px\@lg {
    width: 1680px;
  }

  .min-width-1680px\@lg {
    min-width: 1680px;
  }

  .max-width-1680px\@lg {
    max-width: 1680px;
  }

  .height-1700px\@lg {
    height: 1700px;
  }

  .min-height-1700px\@lg {
    min-height: 1700px;
  }

  .max-height-1700px\@lg {
    max-height: 1700px;
  }

  .width-1700px\@lg {
    width: 1700px;
  }

  .min-width-1700px\@lg {
    min-width: 1700px;
  }

  .max-width-1700px\@lg {
    max-width: 1700px;
  }

  .height-1720px\@lg {
    height: 1720px;
  }

  .min-height-1720px\@lg {
    min-height: 1720px;
  }

  .max-height-1720px\@lg {
    max-height: 1720px;
  }

  .width-1720px\@lg {
    width: 1720px;
  }

  .min-width-1720px\@lg {
    min-width: 1720px;
  }

  .max-width-1720px\@lg {
    max-width: 1720px;
  }

  .height-1740px\@lg {
    height: 1740px;
  }

  .min-height-1740px\@lg {
    min-height: 1740px;
  }

  .max-height-1740px\@lg {
    max-height: 1740px;
  }

  .width-1740px\@lg {
    width: 1740px;
  }

  .min-width-1740px\@lg {
    min-width: 1740px;
  }

  .max-width-1740px\@lg {
    max-width: 1740px;
  }

  .height-1760px\@lg {
    height: 1760px;
  }

  .min-height-1760px\@lg {
    min-height: 1760px;
  }

  .max-height-1760px\@lg {
    max-height: 1760px;
  }

  .width-1760px\@lg {
    width: 1760px;
  }

  .min-width-1760px\@lg {
    min-width: 1760px;
  }

  .max-width-1760px\@lg {
    max-width: 1760px;
  }

  .height-1780px\@lg {
    height: 1780px;
  }

  .min-height-1780px\@lg {
    min-height: 1780px;
  }

  .max-height-1780px\@lg {
    max-height: 1780px;
  }

  .width-1780px\@lg {
    width: 1780px;
  }

  .min-width-1780px\@lg {
    min-width: 1780px;
  }

  .max-width-1780px\@lg {
    max-width: 1780px;
  }

  .height-1800px\@lg {
    height: 1800px;
  }

  .min-height-1800px\@lg {
    min-height: 1800px;
  }

  .max-height-1800px\@lg {
    max-height: 1800px;
  }

  .width-1800px\@lg {
    width: 1800px;
  }

  .min-width-1800px\@lg {
    min-width: 1800px;
  }

  .max-width-1800px\@lg {
    max-width: 1800px;
  }

  .height-1820px\@lg {
    height: 1820px;
  }

  .min-height-1820px\@lg {
    min-height: 1820px;
  }

  .max-height-1820px\@lg {
    max-height: 1820px;
  }

  .width-1820px\@lg {
    width: 1820px;
  }

  .min-width-1820px\@lg {
    min-width: 1820px;
  }

  .max-width-1820px\@lg {
    max-width: 1820px;
  }

  .height-1840px\@lg {
    height: 1840px;
  }

  .min-height-1840px\@lg {
    min-height: 1840px;
  }

  .max-height-1840px\@lg {
    max-height: 1840px;
  }

  .width-1840px\@lg {
    width: 1840px;
  }

  .min-width-1840px\@lg {
    min-width: 1840px;
  }

  .max-width-1840px\@lg {
    max-width: 1840px;
  }

  .height-1860px\@lg {
    height: 1860px;
  }

  .min-height-1860px\@lg {
    min-height: 1860px;
  }

  .max-height-1860px\@lg {
    max-height: 1860px;
  }

  .width-1860px\@lg {
    width: 1860px;
  }

  .min-width-1860px\@lg {
    min-width: 1860px;
  }

  .max-width-1860px\@lg {
    max-width: 1860px;
  }

  .height-1880px\@lg {
    height: 1880px;
  }

  .min-height-1880px\@lg {
    min-height: 1880px;
  }

  .max-height-1880px\@lg {
    max-height: 1880px;
  }

  .width-1880px\@lg {
    width: 1880px;
  }

  .min-width-1880px\@lg {
    min-width: 1880px;
  }

  .max-width-1880px\@lg {
    max-width: 1880px;
  }

  .height-1900px\@lg {
    height: 1900px;
  }

  .min-height-1900px\@lg {
    min-height: 1900px;
  }

  .max-height-1900px\@lg {
    max-height: 1900px;
  }

  .width-1900px\@lg {
    width: 1900px;
  }

  .min-width-1900px\@lg {
    min-width: 1900px;
  }

  .max-width-1900px\@lg {
    max-width: 1900px;
  }

  .height-1920px\@lg {
    height: 1920px;
  }

  .min-height-1920px\@lg {
    min-height: 1920px;
  }

  .max-height-1920px\@lg {
    max-height: 1920px;
  }

  .width-1920px\@lg {
    width: 1920px;
  }

  .min-width-1920px\@lg {
    min-width: 1920px;
  }

  .max-width-1920px\@lg {
    max-width: 1920px;
  }

  .height-1940px\@lg {
    height: 1940px;
  }

  .min-height-1940px\@lg {
    min-height: 1940px;
  }

  .max-height-1940px\@lg {
    max-height: 1940px;
  }

  .width-1940px\@lg {
    width: 1940px;
  }

  .min-width-1940px\@lg {
    min-width: 1940px;
  }

  .max-width-1940px\@lg {
    max-width: 1940px;
  }

  .height-1960px\@lg {
    height: 1960px;
  }

  .min-height-1960px\@lg {
    min-height: 1960px;
  }

  .max-height-1960px\@lg {
    max-height: 1960px;
  }

  .width-1960px\@lg {
    width: 1960px;
  }

  .min-width-1960px\@lg {
    min-width: 1960px;
  }

  .max-width-1960px\@lg {
    max-width: 1960px;
  }

  .height-1980px\@lg {
    height: 1980px;
  }

  .min-height-1980px\@lg {
    min-height: 1980px;
  }

  .max-height-1980px\@lg {
    max-height: 1980px;
  }

  .width-1980px\@lg {
    width: 1980px;
  }

  .min-width-1980px\@lg {
    min-width: 1980px;
  }

  .max-width-1980px\@lg {
    max-width: 1980px;
  }

  .height-2000px\@lg {
    height: 2000px;
  }

  .min-height-2000px\@lg {
    min-height: 2000px;
  }

  .max-height-2000px\@lg {
    max-height: 2000px;
  }

  .width-2000px\@lg {
    width: 2000px;
  }

  .min-width-2000px\@lg {
    min-width: 2000px;
  }

  .max-width-2000px\@lg {
    max-width: 2000px;
  }

  .height-2020px\@lg {
    height: 2020px;
  }

  .min-height-2020px\@lg {
    min-height: 2020px;
  }

  .max-height-2020px\@lg {
    max-height: 2020px;
  }

  .width-2020px\@lg {
    width: 2020px;
  }

  .min-width-2020px\@lg {
    min-width: 2020px;
  }

  .max-width-2020px\@lg {
    max-width: 2020px;
  }

  .height-2040px\@lg {
    height: 2040px;
  }

  .min-height-2040px\@lg {
    min-height: 2040px;
  }

  .max-height-2040px\@lg {
    max-height: 2040px;
  }

  .width-2040px\@lg {
    width: 2040px;
  }

  .min-width-2040px\@lg {
    min-width: 2040px;
  }

  .max-width-2040px\@lg {
    max-width: 2040px;
  }

  .height-2060px\@lg {
    height: 2060px;
  }

  .min-height-2060px\@lg {
    min-height: 2060px;
  }

  .max-height-2060px\@lg {
    max-height: 2060px;
  }

  .width-2060px\@lg {
    width: 2060px;
  }

  .min-width-2060px\@lg {
    min-width: 2060px;
  }

  .max-width-2060px\@lg {
    max-width: 2060px;
  }

  .height-2080px\@lg {
    height: 2080px;
  }

  .min-height-2080px\@lg {
    min-height: 2080px;
  }

  .max-height-2080px\@lg {
    max-height: 2080px;
  }

  .width-2080px\@lg {
    width: 2080px;
  }

  .min-width-2080px\@lg {
    min-width: 2080px;
  }

  .max-width-2080px\@lg {
    max-width: 2080px;
  }

  .height-2100px\@lg {
    height: 2100px;
  }

  .min-height-2100px\@lg {
    min-height: 2100px;
  }

  .max-height-2100px\@lg {
    max-height: 2100px;
  }

  .width-2100px\@lg {
    width: 2100px;
  }

  .min-width-2100px\@lg {
    min-width: 2100px;
  }

  .max-width-2100px\@lg {
    max-width: 2100px;
  }

  .height-2120px\@lg {
    height: 2120px;
  }

  .min-height-2120px\@lg {
    min-height: 2120px;
  }

  .max-height-2120px\@lg {
    max-height: 2120px;
  }

  .width-2120px\@lg {
    width: 2120px;
  }

  .min-width-2120px\@lg {
    min-width: 2120px;
  }

  .max-width-2120px\@lg {
    max-width: 2120px;
  }

  .height-2140px\@lg {
    height: 2140px;
  }

  .min-height-2140px\@lg {
    min-height: 2140px;
  }

  .max-height-2140px\@lg {
    max-height: 2140px;
  }

  .width-2140px\@lg {
    width: 2140px;
  }

  .min-width-2140px\@lg {
    min-width: 2140px;
  }

  .max-width-2140px\@lg {
    max-width: 2140px;
  }

  .height-2160px\@lg {
    height: 2160px;
  }

  .min-height-2160px\@lg {
    min-height: 2160px;
  }

  .max-height-2160px\@lg {
    max-height: 2160px;
  }

  .width-2160px\@lg {
    width: 2160px;
  }

  .min-width-2160px\@lg {
    min-width: 2160px;
  }

  .max-width-2160px\@lg {
    max-width: 2160px;
  }

  .height-2180px\@lg {
    height: 2180px;
  }

  .min-height-2180px\@lg {
    min-height: 2180px;
  }

  .max-height-2180px\@lg {
    max-height: 2180px;
  }

  .width-2180px\@lg {
    width: 2180px;
  }

  .min-width-2180px\@lg {
    min-width: 2180px;
  }

  .max-width-2180px\@lg {
    max-width: 2180px;
  }

  .height-2200px\@lg {
    height: 2200px;
  }

  .min-height-2200px\@lg {
    min-height: 2200px;
  }

  .max-height-2200px\@lg {
    max-height: 2200px;
  }

  .width-2200px\@lg {
    width: 2200px;
  }

  .min-width-2200px\@lg {
    min-width: 2200px;
  }

  .max-width-2200px\@lg {
    max-width: 2200px;
  }

  .height-2220px\@lg {
    height: 2220px;
  }

  .min-height-2220px\@lg {
    min-height: 2220px;
  }

  .max-height-2220px\@lg {
    max-height: 2220px;
  }

  .width-2220px\@lg {
    width: 2220px;
  }

  .min-width-2220px\@lg {
    min-width: 2220px;
  }

  .max-width-2220px\@lg {
    max-width: 2220px;
  }

  .height-2240px\@lg {
    height: 2240px;
  }

  .min-height-2240px\@lg {
    min-height: 2240px;
  }

  .max-height-2240px\@lg {
    max-height: 2240px;
  }

  .width-2240px\@lg {
    width: 2240px;
  }

  .min-width-2240px\@lg {
    min-width: 2240px;
  }

  .max-width-2240px\@lg {
    max-width: 2240px;
  }

  .height-2260px\@lg {
    height: 2260px;
  }

  .min-height-2260px\@lg {
    min-height: 2260px;
  }

  .max-height-2260px\@lg {
    max-height: 2260px;
  }

  .width-2260px\@lg {
    width: 2260px;
  }

  .min-width-2260px\@lg {
    min-width: 2260px;
  }

  .max-width-2260px\@lg {
    max-width: 2260px;
  }

  .height-2280px\@lg {
    height: 2280px;
  }

  .min-height-2280px\@lg {
    min-height: 2280px;
  }

  .max-height-2280px\@lg {
    max-height: 2280px;
  }

  .width-2280px\@lg {
    width: 2280px;
  }

  .min-width-2280px\@lg {
    min-width: 2280px;
  }

  .max-width-2280px\@lg {
    max-width: 2280px;
  }

  .height-2300px\@lg {
    height: 2300px;
  }

  .min-height-2300px\@lg {
    min-height: 2300px;
  }

  .max-height-2300px\@lg {
    max-height: 2300px;
  }

  .width-2300px\@lg {
    width: 2300px;
  }

  .min-width-2300px\@lg {
    min-width: 2300px;
  }

  .max-width-2300px\@lg {
    max-width: 2300px;
  }

  .height-2320px\@lg {
    height: 2320px;
  }

  .min-height-2320px\@lg {
    min-height: 2320px;
  }

  .max-height-2320px\@lg {
    max-height: 2320px;
  }

  .width-2320px\@lg {
    width: 2320px;
  }

  .min-width-2320px\@lg {
    min-width: 2320px;
  }

  .max-width-2320px\@lg {
    max-width: 2320px;
  }

  .height-2340px\@lg {
    height: 2340px;
  }

  .min-height-2340px\@lg {
    min-height: 2340px;
  }

  .max-height-2340px\@lg {
    max-height: 2340px;
  }

  .width-2340px\@lg {
    width: 2340px;
  }

  .min-width-2340px\@lg {
    min-width: 2340px;
  }

  .max-width-2340px\@lg {
    max-width: 2340px;
  }

  .height-2360px\@lg {
    height: 2360px;
  }

  .min-height-2360px\@lg {
    min-height: 2360px;
  }

  .max-height-2360px\@lg {
    max-height: 2360px;
  }

  .width-2360px\@lg {
    width: 2360px;
  }

  .min-width-2360px\@lg {
    min-width: 2360px;
  }

  .max-width-2360px\@lg {
    max-width: 2360px;
  }

  .height-2380px\@lg {
    height: 2380px;
  }

  .min-height-2380px\@lg {
    min-height: 2380px;
  }

  .max-height-2380px\@lg {
    max-height: 2380px;
  }

  .width-2380px\@lg {
    width: 2380px;
  }

  .min-width-2380px\@lg {
    min-width: 2380px;
  }

  .max-width-2380px\@lg {
    max-width: 2380px;
  }

  .height-2400px\@lg {
    height: 2400px;
  }

  .min-height-2400px\@lg {
    min-height: 2400px;
  }

  .max-height-2400px\@lg {
    max-height: 2400px;
  }

  .width-2400px\@lg {
    width: 2400px;
  }

  .min-width-2400px\@lg {
    min-width: 2400px;
  }

  .max-width-2400px\@lg {
    max-width: 2400px;
  }

  .height-2420px\@lg {
    height: 2420px;
  }

  .min-height-2420px\@lg {
    min-height: 2420px;
  }

  .max-height-2420px\@lg {
    max-height: 2420px;
  }

  .width-2420px\@lg {
    width: 2420px;
  }

  .min-width-2420px\@lg {
    min-width: 2420px;
  }

  .max-width-2420px\@lg {
    max-width: 2420px;
  }

  .height-2440px\@lg {
    height: 2440px;
  }

  .min-height-2440px\@lg {
    min-height: 2440px;
  }

  .max-height-2440px\@lg {
    max-height: 2440px;
  }

  .width-2440px\@lg {
    width: 2440px;
  }

  .min-width-2440px\@lg {
    min-width: 2440px;
  }

  .max-width-2440px\@lg {
    max-width: 2440px;
  }

  .height-2460px\@lg {
    height: 2460px;
  }

  .min-height-2460px\@lg {
    min-height: 2460px;
  }

  .max-height-2460px\@lg {
    max-height: 2460px;
  }

  .width-2460px\@lg {
    width: 2460px;
  }

  .min-width-2460px\@lg {
    min-width: 2460px;
  }

  .max-width-2460px\@lg {
    max-width: 2460px;
  }

  .height-2480px\@lg {
    height: 2480px;
  }

  .min-height-2480px\@lg {
    min-height: 2480px;
  }

  .max-height-2480px\@lg {
    max-height: 2480px;
  }

  .width-2480px\@lg {
    width: 2480px;
  }

  .min-width-2480px\@lg {
    min-width: 2480px;
  }

  .max-width-2480px\@lg {
    max-width: 2480px;
  }

  .height-2500px\@lg {
    height: 2500px;
  }

  .min-height-2500px\@lg {
    min-height: 2500px;
  }

  .max-height-2500px\@lg {
    max-height: 2500px;
  }

  .width-2500px\@lg {
    width: 2500px;
  }

  .min-width-2500px\@lg {
    min-width: 2500px;
  }

  .max-width-2500px\@lg {
    max-width: 2500px;
  }

  .height-2520px\@lg {
    height: 2520px;
  }

  .min-height-2520px\@lg {
    min-height: 2520px;
  }

  .max-height-2520px\@lg {
    max-height: 2520px;
  }

  .width-2520px\@lg {
    width: 2520px;
  }

  .min-width-2520px\@lg {
    min-width: 2520px;
  }

  .max-width-2520px\@lg {
    max-width: 2520px;
  }

  .height-2540px\@lg {
    height: 2540px;
  }

  .min-height-2540px\@lg {
    min-height: 2540px;
  }

  .max-height-2540px\@lg {
    max-height: 2540px;
  }

  .width-2540px\@lg {
    width: 2540px;
  }

  .min-width-2540px\@lg {
    min-width: 2540px;
  }

  .max-width-2540px\@lg {
    max-width: 2540px;
  }

  .height-2560px\@lg {
    height: 2560px;
  }

  .min-height-2560px\@lg {
    min-height: 2560px;
  }

  .max-height-2560px\@lg {
    max-height: 2560px;
  }

  .width-2560px\@lg {
    width: 2560px;
  }

  .min-width-2560px\@lg {
    min-width: 2560px;
  }

  .max-width-2560px\@lg {
    max-width: 2560px;
  }

  .height-2580px\@lg {
    height: 2580px;
  }

  .min-height-2580px\@lg {
    min-height: 2580px;
  }

  .max-height-2580px\@lg {
    max-height: 2580px;
  }

  .width-2580px\@lg {
    width: 2580px;
  }

  .min-width-2580px\@lg {
    min-width: 2580px;
  }

  .max-width-2580px\@lg {
    max-width: 2580px;
  }

  .height-2600px\@lg {
    height: 2600px;
  }

  .min-height-2600px\@lg {
    min-height: 2600px;
  }

  .max-height-2600px\@lg {
    max-height: 2600px;
  }

  .width-2600px\@lg {
    width: 2600px;
  }

  .min-width-2600px\@lg {
    min-width: 2600px;
  }

  .max-width-2600px\@lg {
    max-width: 2600px;
  }

  .height-2620px\@lg {
    height: 2620px;
  }

  .min-height-2620px\@lg {
    min-height: 2620px;
  }

  .max-height-2620px\@lg {
    max-height: 2620px;
  }

  .width-2620px\@lg {
    width: 2620px;
  }

  .min-width-2620px\@lg {
    min-width: 2620px;
  }

  .max-width-2620px\@lg {
    max-width: 2620px;
  }

  .height-2640px\@lg {
    height: 2640px;
  }

  .min-height-2640px\@lg {
    min-height: 2640px;
  }

  .max-height-2640px\@lg {
    max-height: 2640px;
  }

  .width-2640px\@lg {
    width: 2640px;
  }

  .min-width-2640px\@lg {
    min-width: 2640px;
  }

  .max-width-2640px\@lg {
    max-width: 2640px;
  }

  .height-2660px\@lg {
    height: 2660px;
  }

  .min-height-2660px\@lg {
    min-height: 2660px;
  }

  .max-height-2660px\@lg {
    max-height: 2660px;
  }

  .width-2660px\@lg {
    width: 2660px;
  }

  .min-width-2660px\@lg {
    min-width: 2660px;
  }

  .max-width-2660px\@lg {
    max-width: 2660px;
  }

  .height-2680px\@lg {
    height: 2680px;
  }

  .min-height-2680px\@lg {
    min-height: 2680px;
  }

  .max-height-2680px\@lg {
    max-height: 2680px;
  }

  .width-2680px\@lg {
    width: 2680px;
  }

  .min-width-2680px\@lg {
    min-width: 2680px;
  }

  .max-width-2680px\@lg {
    max-width: 2680px;
  }

  .height-2700px\@lg {
    height: 2700px;
  }

  .min-height-2700px\@lg {
    min-height: 2700px;
  }

  .max-height-2700px\@lg {
    max-height: 2700px;
  }

  .width-2700px\@lg {
    width: 2700px;
  }

  .min-width-2700px\@lg {
    min-width: 2700px;
  }

  .max-width-2700px\@lg {
    max-width: 2700px;
  }

  .height-2720px\@lg {
    height: 2720px;
  }

  .min-height-2720px\@lg {
    min-height: 2720px;
  }

  .max-height-2720px\@lg {
    max-height: 2720px;
  }

  .width-2720px\@lg {
    width: 2720px;
  }

  .min-width-2720px\@lg {
    min-width: 2720px;
  }

  .max-width-2720px\@lg {
    max-width: 2720px;
  }

  .height-2740px\@lg {
    height: 2740px;
  }

  .min-height-2740px\@lg {
    min-height: 2740px;
  }

  .max-height-2740px\@lg {
    max-height: 2740px;
  }

  .width-2740px\@lg {
    width: 2740px;
  }

  .min-width-2740px\@lg {
    min-width: 2740px;
  }

  .max-width-2740px\@lg {
    max-width: 2740px;
  }

  .height-2760px\@lg {
    height: 2760px;
  }

  .min-height-2760px\@lg {
    min-height: 2760px;
  }

  .max-height-2760px\@lg {
    max-height: 2760px;
  }

  .width-2760px\@lg {
    width: 2760px;
  }

  .min-width-2760px\@lg {
    min-width: 2760px;
  }

  .max-width-2760px\@lg {
    max-width: 2760px;
  }

  .height-2780px\@lg {
    height: 2780px;
  }

  .min-height-2780px\@lg {
    min-height: 2780px;
  }

  .max-height-2780px\@lg {
    max-height: 2780px;
  }

  .width-2780px\@lg {
    width: 2780px;
  }

  .min-width-2780px\@lg {
    min-width: 2780px;
  }

  .max-width-2780px\@lg {
    max-width: 2780px;
  }

  .height-2800px\@lg {
    height: 2800px;
  }

  .min-height-2800px\@lg {
    min-height: 2800px;
  }

  .max-height-2800px\@lg {
    max-height: 2800px;
  }

  .width-2800px\@lg {
    width: 2800px;
  }

  .min-width-2800px\@lg {
    min-width: 2800px;
  }

  .max-width-2800px\@lg {
    max-width: 2800px;
  }

  .height-2820px\@lg {
    height: 2820px;
  }

  .min-height-2820px\@lg {
    min-height: 2820px;
  }

  .max-height-2820px\@lg {
    max-height: 2820px;
  }

  .width-2820px\@lg {
    width: 2820px;
  }

  .min-width-2820px\@lg {
    min-width: 2820px;
  }

  .max-width-2820px\@lg {
    max-width: 2820px;
  }

  .height-2840px\@lg {
    height: 2840px;
  }

  .min-height-2840px\@lg {
    min-height: 2840px;
  }

  .max-height-2840px\@lg {
    max-height: 2840px;
  }

  .width-2840px\@lg {
    width: 2840px;
  }

  .min-width-2840px\@lg {
    min-width: 2840px;
  }

  .max-width-2840px\@lg {
    max-width: 2840px;
  }

  .height-2860px\@lg {
    height: 2860px;
  }

  .min-height-2860px\@lg {
    min-height: 2860px;
  }

  .max-height-2860px\@lg {
    max-height: 2860px;
  }

  .width-2860px\@lg {
    width: 2860px;
  }

  .min-width-2860px\@lg {
    min-width: 2860px;
  }

  .max-width-2860px\@lg {
    max-width: 2860px;
  }

  .height-2880px\@lg {
    height: 2880px;
  }

  .min-height-2880px\@lg {
    min-height: 2880px;
  }

  .max-height-2880px\@lg {
    max-height: 2880px;
  }

  .width-2880px\@lg {
    width: 2880px;
  }

  .min-width-2880px\@lg {
    min-width: 2880px;
  }

  .max-width-2880px\@lg {
    max-width: 2880px;
  }

  .height-2900px\@lg {
    height: 2900px;
  }

  .min-height-2900px\@lg {
    min-height: 2900px;
  }

  .max-height-2900px\@lg {
    max-height: 2900px;
  }

  .width-2900px\@lg {
    width: 2900px;
  }

  .min-width-2900px\@lg {
    min-width: 2900px;
  }

  .max-width-2900px\@lg {
    max-width: 2900px;
  }

  .height-2920px\@lg {
    height: 2920px;
  }

  .min-height-2920px\@lg {
    min-height: 2920px;
  }

  .max-height-2920px\@lg {
    max-height: 2920px;
  }

  .width-2920px\@lg {
    width: 2920px;
  }

  .min-width-2920px\@lg {
    min-width: 2920px;
  }

  .max-width-2920px\@lg {
    max-width: 2920px;
  }

  .height-2940px\@lg {
    height: 2940px;
  }

  .min-height-2940px\@lg {
    min-height: 2940px;
  }

  .max-height-2940px\@lg {
    max-height: 2940px;
  }

  .width-2940px\@lg {
    width: 2940px;
  }

  .min-width-2940px\@lg {
    min-width: 2940px;
  }

  .max-width-2940px\@lg {
    max-width: 2940px;
  }

  .height-2960px\@lg {
    height: 2960px;
  }

  .min-height-2960px\@lg {
    min-height: 2960px;
  }

  .max-height-2960px\@lg {
    max-height: 2960px;
  }

  .width-2960px\@lg {
    width: 2960px;
  }

  .min-width-2960px\@lg {
    min-width: 2960px;
  }

  .max-width-2960px\@lg {
    max-width: 2960px;
  }

  .height-2980px\@lg {
    height: 2980px;
  }

  .min-height-2980px\@lg {
    min-height: 2980px;
  }

  .max-height-2980px\@lg {
    max-height: 2980px;
  }

  .width-2980px\@lg {
    width: 2980px;
  }

  .min-width-2980px\@lg {
    min-width: 2980px;
  }

  .max-width-2980px\@lg {
    max-width: 2980px;
  }

  .height-3000px\@lg {
    height: 3000px;
  }

  .min-height-3000px\@lg {
    min-height: 3000px;
  }

  .max-height-3000px\@lg {
    max-height: 3000px;
  }

  .width-3000px\@lg {
    width: 3000px;
  }

  .min-width-3000px\@lg {
    min-width: 3000px;
  }

  .max-width-3000px\@lg {
    max-width: 3000px;
  }

  .height-3020px\@lg {
    height: 3020px;
  }

  .min-height-3020px\@lg {
    min-height: 3020px;
  }

  .max-height-3020px\@lg {
    max-height: 3020px;
  }

  .width-3020px\@lg {
    width: 3020px;
  }

  .min-width-3020px\@lg {
    min-width: 3020px;
  }

  .max-width-3020px\@lg {
    max-width: 3020px;
  }

  .height-3040px\@lg {
    height: 3040px;
  }

  .min-height-3040px\@lg {
    min-height: 3040px;
  }

  .max-height-3040px\@lg {
    max-height: 3040px;
  }

  .width-3040px\@lg {
    width: 3040px;
  }

  .min-width-3040px\@lg {
    min-width: 3040px;
  }

  .max-width-3040px\@lg {
    max-width: 3040px;
  }

  .height-3060px\@lg {
    height: 3060px;
  }

  .min-height-3060px\@lg {
    min-height: 3060px;
  }

  .max-height-3060px\@lg {
    max-height: 3060px;
  }

  .width-3060px\@lg {
    width: 3060px;
  }

  .min-width-3060px\@lg {
    min-width: 3060px;
  }

  .max-width-3060px\@lg {
    max-width: 3060px;
  }

  .height-3080px\@lg {
    height: 3080px;
  }

  .min-height-3080px\@lg {
    min-height: 3080px;
  }

  .max-height-3080px\@lg {
    max-height: 3080px;
  }

  .width-3080px\@lg {
    width: 3080px;
  }

  .min-width-3080px\@lg {
    min-width: 3080px;
  }

  .max-width-3080px\@lg {
    max-width: 3080px;
  }

  .height-3100px\@lg {
    height: 3100px;
  }

  .min-height-3100px\@lg {
    min-height: 3100px;
  }

  .max-height-3100px\@lg {
    max-height: 3100px;
  }

  .width-3100px\@lg {
    width: 3100px;
  }

  .min-width-3100px\@lg {
    min-width: 3100px;
  }

  .max-width-3100px\@lg {
    max-width: 3100px;
  }

  .height-3120px\@lg {
    height: 3120px;
  }

  .min-height-3120px\@lg {
    min-height: 3120px;
  }

  .max-height-3120px\@lg {
    max-height: 3120px;
  }

  .width-3120px\@lg {
    width: 3120px;
  }

  .min-width-3120px\@lg {
    min-width: 3120px;
  }

  .max-width-3120px\@lg {
    max-width: 3120px;
  }

  .height-3140px\@lg {
    height: 3140px;
  }

  .min-height-3140px\@lg {
    min-height: 3140px;
  }

  .max-height-3140px\@lg {
    max-height: 3140px;
  }

  .width-3140px\@lg {
    width: 3140px;
  }

  .min-width-3140px\@lg {
    min-width: 3140px;
  }

  .max-width-3140px\@lg {
    max-width: 3140px;
  }

  .height-3160px\@lg {
    height: 3160px;
  }

  .min-height-3160px\@lg {
    min-height: 3160px;
  }

  .max-height-3160px\@lg {
    max-height: 3160px;
  }

  .width-3160px\@lg {
    width: 3160px;
  }

  .min-width-3160px\@lg {
    min-width: 3160px;
  }

  .max-width-3160px\@lg {
    max-width: 3160px;
  }

  .height-3180px\@lg {
    height: 3180px;
  }

  .min-height-3180px\@lg {
    min-height: 3180px;
  }

  .max-height-3180px\@lg {
    max-height: 3180px;
  }

  .width-3180px\@lg {
    width: 3180px;
  }

  .min-width-3180px\@lg {
    min-width: 3180px;
  }

  .max-width-3180px\@lg {
    max-width: 3180px;
  }

  .height-3200px\@lg {
    height: 3200px;
  }

  .min-height-3200px\@lg {
    min-height: 3200px;
  }

  .max-height-3200px\@lg {
    max-height: 3200px;
  }

  .width-3200px\@lg {
    width: 3200px;
  }

  .min-width-3200px\@lg {
    min-width: 3200px;
  }

  .max-width-3200px\@lg {
    max-width: 3200px;
  }

  .height-3220px\@lg {
    height: 3220px;
  }

  .min-height-3220px\@lg {
    min-height: 3220px;
  }

  .max-height-3220px\@lg {
    max-height: 3220px;
  }

  .width-3220px\@lg {
    width: 3220px;
  }

  .min-width-3220px\@lg {
    min-width: 3220px;
  }

  .max-width-3220px\@lg {
    max-width: 3220px;
  }

  .height-3240px\@lg {
    height: 3240px;
  }

  .min-height-3240px\@lg {
    min-height: 3240px;
  }

  .max-height-3240px\@lg {
    max-height: 3240px;
  }

  .width-3240px\@lg {
    width: 3240px;
  }

  .min-width-3240px\@lg {
    min-width: 3240px;
  }

  .max-width-3240px\@lg {
    max-width: 3240px;
  }

  .height-3260px\@lg {
    height: 3260px;
  }

  .min-height-3260px\@lg {
    min-height: 3260px;
  }

  .max-height-3260px\@lg {
    max-height: 3260px;
  }

  .width-3260px\@lg {
    width: 3260px;
  }

  .min-width-3260px\@lg {
    min-width: 3260px;
  }

  .max-width-3260px\@lg {
    max-width: 3260px;
  }

  .height-3280px\@lg {
    height: 3280px;
  }

  .min-height-3280px\@lg {
    min-height: 3280px;
  }

  .max-height-3280px\@lg {
    max-height: 3280px;
  }

  .width-3280px\@lg {
    width: 3280px;
  }

  .min-width-3280px\@lg {
    min-width: 3280px;
  }

  .max-width-3280px\@lg {
    max-width: 3280px;
  }

  .height-3300px\@lg {
    height: 3300px;
  }

  .min-height-3300px\@lg {
    min-height: 3300px;
  }

  .max-height-3300px\@lg {
    max-height: 3300px;
  }

  .width-3300px\@lg {
    width: 3300px;
  }

  .min-width-3300px\@lg {
    min-width: 3300px;
  }

  .max-width-3300px\@lg {
    max-width: 3300px;
  }

  .height-3320px\@lg {
    height: 3320px;
  }

  .min-height-3320px\@lg {
    min-height: 3320px;
  }

  .max-height-3320px\@lg {
    max-height: 3320px;
  }

  .width-3320px\@lg {
    width: 3320px;
  }

  .min-width-3320px\@lg {
    min-width: 3320px;
  }

  .max-width-3320px\@lg {
    max-width: 3320px;
  }

  .height-3340px\@lg {
    height: 3340px;
  }

  .min-height-3340px\@lg {
    min-height: 3340px;
  }

  .max-height-3340px\@lg {
    max-height: 3340px;
  }

  .width-3340px\@lg {
    width: 3340px;
  }

  .min-width-3340px\@lg {
    min-width: 3340px;
  }

  .max-width-3340px\@lg {
    max-width: 3340px;
  }

  .height-3360px\@lg {
    height: 3360px;
  }

  .min-height-3360px\@lg {
    min-height: 3360px;
  }

  .max-height-3360px\@lg {
    max-height: 3360px;
  }

  .width-3360px\@lg {
    width: 3360px;
  }

  .min-width-3360px\@lg {
    min-width: 3360px;
  }

  .max-width-3360px\@lg {
    max-width: 3360px;
  }

  .height-3380px\@lg {
    height: 3380px;
  }

  .min-height-3380px\@lg {
    min-height: 3380px;
  }

  .max-height-3380px\@lg {
    max-height: 3380px;
  }

  .width-3380px\@lg {
    width: 3380px;
  }

  .min-width-3380px\@lg {
    min-width: 3380px;
  }

  .max-width-3380px\@lg {
    max-width: 3380px;
  }

  .height-3400px\@lg {
    height: 3400px;
  }

  .min-height-3400px\@lg {
    min-height: 3400px;
  }

  .max-height-3400px\@lg {
    max-height: 3400px;
  }

  .width-3400px\@lg {
    width: 3400px;
  }

  .min-width-3400px\@lg {
    min-width: 3400px;
  }

  .max-width-3400px\@lg {
    max-width: 3400px;
  }

  .height-3420px\@lg {
    height: 3420px;
  }

  .min-height-3420px\@lg {
    min-height: 3420px;
  }

  .max-height-3420px\@lg {
    max-height: 3420px;
  }

  .width-3420px\@lg {
    width: 3420px;
  }

  .min-width-3420px\@lg {
    min-width: 3420px;
  }

  .max-width-3420px\@lg {
    max-width: 3420px;
  }

  .height-3440px\@lg {
    height: 3440px;
  }

  .min-height-3440px\@lg {
    min-height: 3440px;
  }

  .max-height-3440px\@lg {
    max-height: 3440px;
  }

  .width-3440px\@lg {
    width: 3440px;
  }

  .min-width-3440px\@lg {
    min-width: 3440px;
  }

  .max-width-3440px\@lg {
    max-width: 3440px;
  }

  .height-3460px\@lg {
    height: 3460px;
  }

  .min-height-3460px\@lg {
    min-height: 3460px;
  }

  .max-height-3460px\@lg {
    max-height: 3460px;
  }

  .width-3460px\@lg {
    width: 3460px;
  }

  .min-width-3460px\@lg {
    min-width: 3460px;
  }

  .max-width-3460px\@lg {
    max-width: 3460px;
  }

  .height-3480px\@lg {
    height: 3480px;
  }

  .min-height-3480px\@lg {
    min-height: 3480px;
  }

  .max-height-3480px\@lg {
    max-height: 3480px;
  }

  .width-3480px\@lg {
    width: 3480px;
  }

  .min-width-3480px\@lg {
    min-width: 3480px;
  }

  .max-width-3480px\@lg {
    max-width: 3480px;
  }

  .height-3500px\@lg {
    height: 3500px;
  }

  .min-height-3500px\@lg {
    min-height: 3500px;
  }

  .max-height-3500px\@lg {
    max-height: 3500px;
  }

  .width-3500px\@lg {
    width: 3500px;
  }

  .min-width-3500px\@lg {
    min-width: 3500px;
  }

  .max-width-3500px\@lg {
    max-width: 3500px;
  }

  .height-3520px\@lg {
    height: 3520px;
  }

  .min-height-3520px\@lg {
    min-height: 3520px;
  }

  .max-height-3520px\@lg {
    max-height: 3520px;
  }

  .width-3520px\@lg {
    width: 3520px;
  }

  .min-width-3520px\@lg {
    min-width: 3520px;
  }

  .max-width-3520px\@lg {
    max-width: 3520px;
  }

  .height-3540px\@lg {
    height: 3540px;
  }

  .min-height-3540px\@lg {
    min-height: 3540px;
  }

  .max-height-3540px\@lg {
    max-height: 3540px;
  }

  .width-3540px\@lg {
    width: 3540px;
  }

  .min-width-3540px\@lg {
    min-width: 3540px;
  }

  .max-width-3540px\@lg {
    max-width: 3540px;
  }

  .height-3560px\@lg {
    height: 3560px;
  }

  .min-height-3560px\@lg {
    min-height: 3560px;
  }

  .max-height-3560px\@lg {
    max-height: 3560px;
  }

  .width-3560px\@lg {
    width: 3560px;
  }

  .min-width-3560px\@lg {
    min-width: 3560px;
  }

  .max-width-3560px\@lg {
    max-width: 3560px;
  }

  .height-3580px\@lg {
    height: 3580px;
  }

  .min-height-3580px\@lg {
    min-height: 3580px;
  }

  .max-height-3580px\@lg {
    max-height: 3580px;
  }

  .width-3580px\@lg {
    width: 3580px;
  }

  .min-width-3580px\@lg {
    min-width: 3580px;
  }

  .max-width-3580px\@lg {
    max-width: 3580px;
  }

  .height-3600px\@lg {
    height: 3600px;
  }

  .min-height-3600px\@lg {
    min-height: 3600px;
  }

  .max-height-3600px\@lg {
    max-height: 3600px;
  }

  .width-3600px\@lg {
    width: 3600px;
  }

  .min-width-3600px\@lg {
    min-width: 3600px;
  }

  .max-width-3600px\@lg {
    max-width: 3600px;
  }

  .height-3620px\@lg {
    height: 3620px;
  }

  .min-height-3620px\@lg {
    min-height: 3620px;
  }

  .max-height-3620px\@lg {
    max-height: 3620px;
  }

  .width-3620px\@lg {
    width: 3620px;
  }

  .min-width-3620px\@lg {
    min-width: 3620px;
  }

  .max-width-3620px\@lg {
    max-width: 3620px;
  }

  .height-3640px\@lg {
    height: 3640px;
  }

  .min-height-3640px\@lg {
    min-height: 3640px;
  }

  .max-height-3640px\@lg {
    max-height: 3640px;
  }

  .width-3640px\@lg {
    width: 3640px;
  }

  .min-width-3640px\@lg {
    min-width: 3640px;
  }

  .max-width-3640px\@lg {
    max-width: 3640px;
  }

  .height-3660px\@lg {
    height: 3660px;
  }

  .min-height-3660px\@lg {
    min-height: 3660px;
  }

  .max-height-3660px\@lg {
    max-height: 3660px;
  }

  .width-3660px\@lg {
    width: 3660px;
  }

  .min-width-3660px\@lg {
    min-width: 3660px;
  }

  .max-width-3660px\@lg {
    max-width: 3660px;
  }

  .height-3680px\@lg {
    height: 3680px;
  }

  .min-height-3680px\@lg {
    min-height: 3680px;
  }

  .max-height-3680px\@lg {
    max-height: 3680px;
  }

  .width-3680px\@lg {
    width: 3680px;
  }

  .min-width-3680px\@lg {
    min-width: 3680px;
  }

  .max-width-3680px\@lg {
    max-width: 3680px;
  }

  .height-3700px\@lg {
    height: 3700px;
  }

  .min-height-3700px\@lg {
    min-height: 3700px;
  }

  .max-height-3700px\@lg {
    max-height: 3700px;
  }

  .width-3700px\@lg {
    width: 3700px;
  }

  .min-width-3700px\@lg {
    min-width: 3700px;
  }

  .max-width-3700px\@lg {
    max-width: 3700px;
  }

  .height-3720px\@lg {
    height: 3720px;
  }

  .min-height-3720px\@lg {
    min-height: 3720px;
  }

  .max-height-3720px\@lg {
    max-height: 3720px;
  }

  .width-3720px\@lg {
    width: 3720px;
  }

  .min-width-3720px\@lg {
    min-width: 3720px;
  }

  .max-width-3720px\@lg {
    max-width: 3720px;
  }

  .height-3740px\@lg {
    height: 3740px;
  }

  .min-height-3740px\@lg {
    min-height: 3740px;
  }

  .max-height-3740px\@lg {
    max-height: 3740px;
  }

  .width-3740px\@lg {
    width: 3740px;
  }

  .min-width-3740px\@lg {
    min-width: 3740px;
  }

  .max-width-3740px\@lg {
    max-width: 3740px;
  }

  .height-3760px\@lg {
    height: 3760px;
  }

  .min-height-3760px\@lg {
    min-height: 3760px;
  }

  .max-height-3760px\@lg {
    max-height: 3760px;
  }

  .width-3760px\@lg {
    width: 3760px;
  }

  .min-width-3760px\@lg {
    min-width: 3760px;
  }

  .max-width-3760px\@lg {
    max-width: 3760px;
  }

  .height-3780px\@lg {
    height: 3780px;
  }

  .min-height-3780px\@lg {
    min-height: 3780px;
  }

  .max-height-3780px\@lg {
    max-height: 3780px;
  }

  .width-3780px\@lg {
    width: 3780px;
  }

  .min-width-3780px\@lg {
    min-width: 3780px;
  }

  .max-width-3780px\@lg {
    max-width: 3780px;
  }

  .height-3800px\@lg {
    height: 3800px;
  }

  .min-height-3800px\@lg {
    min-height: 3800px;
  }

  .max-height-3800px\@lg {
    max-height: 3800px;
  }

  .width-3800px\@lg {
    width: 3800px;
  }

  .min-width-3800px\@lg {
    min-width: 3800px;
  }

  .max-width-3800px\@lg {
    max-width: 3800px;
  }

  .height-3820px\@lg {
    height: 3820px;
  }

  .min-height-3820px\@lg {
    min-height: 3820px;
  }

  .max-height-3820px\@lg {
    max-height: 3820px;
  }

  .width-3820px\@lg {
    width: 3820px;
  }

  .min-width-3820px\@lg {
    min-width: 3820px;
  }

  .max-width-3820px\@lg {
    max-width: 3820px;
  }

  .height-3840px\@lg {
    height: 3840px;
  }

  .min-height-3840px\@lg {
    min-height: 3840px;
  }

  .max-height-3840px\@lg {
    max-height: 3840px;
  }

  .width-3840px\@lg {
    width: 3840px;
  }

  .min-width-3840px\@lg {
    min-width: 3840px;
  }

  .max-width-3840px\@lg {
    max-width: 3840px;
  }

  .height-3860px\@lg {
    height: 3860px;
  }

  .min-height-3860px\@lg {
    min-height: 3860px;
  }

  .max-height-3860px\@lg {
    max-height: 3860px;
  }

  .width-3860px\@lg {
    width: 3860px;
  }

  .min-width-3860px\@lg {
    min-width: 3860px;
  }

  .max-width-3860px\@lg {
    max-width: 3860px;
  }

  .height-3880px\@lg {
    height: 3880px;
  }

  .min-height-3880px\@lg {
    min-height: 3880px;
  }

  .max-height-3880px\@lg {
    max-height: 3880px;
  }

  .width-3880px\@lg {
    width: 3880px;
  }

  .min-width-3880px\@lg {
    min-width: 3880px;
  }

  .max-width-3880px\@lg {
    max-width: 3880px;
  }

  .height-3900px\@lg {
    height: 3900px;
  }

  .min-height-3900px\@lg {
    min-height: 3900px;
  }

  .max-height-3900px\@lg {
    max-height: 3900px;
  }

  .width-3900px\@lg {
    width: 3900px;
  }

  .min-width-3900px\@lg {
    min-width: 3900px;
  }

  .max-width-3900px\@lg {
    max-width: 3900px;
  }

  .height-3920px\@lg {
    height: 3920px;
  }

  .min-height-3920px\@lg {
    min-height: 3920px;
  }

  .max-height-3920px\@lg {
    max-height: 3920px;
  }

  .width-3920px\@lg {
    width: 3920px;
  }

  .min-width-3920px\@lg {
    min-width: 3920px;
  }

  .max-width-3920px\@lg {
    max-width: 3920px;
  }

  .height-3940px\@lg {
    height: 3940px;
  }

  .min-height-3940px\@lg {
    min-height: 3940px;
  }

  .max-height-3940px\@lg {
    max-height: 3940px;
  }

  .width-3940px\@lg {
    width: 3940px;
  }

  .min-width-3940px\@lg {
    min-width: 3940px;
  }

  .max-width-3940px\@lg {
    max-width: 3940px;
  }

  .height-3960px\@lg {
    height: 3960px;
  }

  .min-height-3960px\@lg {
    min-height: 3960px;
  }

  .max-height-3960px\@lg {
    max-height: 3960px;
  }

  .width-3960px\@lg {
    width: 3960px;
  }

  .min-width-3960px\@lg {
    min-width: 3960px;
  }

  .max-width-3960px\@lg {
    max-width: 3960px;
  }

  .height-3980px\@lg {
    height: 3980px;
  }

  .min-height-3980px\@lg {
    min-height: 3980px;
  }

  .max-height-3980px\@lg {
    max-height: 3980px;
  }

  .width-3980px\@lg {
    width: 3980px;
  }

  .min-width-3980px\@lg {
    min-width: 3980px;
  }

  .max-width-3980px\@lg {
    max-width: 3980px;
  }

  .height-4000px\@lg {
    height: 4000px;
  }

  .min-height-4000px\@lg {
    min-height: 4000px;
  }

  .max-height-4000px\@lg {
    max-height: 4000px;
  }

  .width-4000px\@lg {
    width: 4000px;
  }

  .min-width-4000px\@lg {
    min-width: 4000px;
  }

  .max-width-4000px\@lg {
    max-width: 4000px;
  }

  .text-25\%\@lg {
    font-size: 25%;
  }

  .text-30\%\@lg {
    font-size: 30%;
  }

  .text-35\%\@lg {
    font-size: 35%;
  }

  .text-40\%\@lg {
    font-size: 40%;
  }

  .text-45\%\@lg {
    font-size: 45%;
  }

  .text-50\%\@lg {
    font-size: 50%;
  }

  .text-55\%\@lg {
    font-size: 55%;
  }

  .text-60\%\@lg {
    font-size: 60%;
  }

  .text-65\%\@lg {
    font-size: 65%;
  }

  .text-70\%\@lg {
    font-size: 70%;
  }

  .text-75\%\@lg {
    font-size: 75%;
  }

  .text-80\%\@lg {
    font-size: 80%;
  }

  .text-85\%\@lg {
    font-size: 85%;
  }

  .text-90\%\@lg {
    font-size: 90%;
  }

  .text-95\%\@lg {
    font-size: 95%;
  }

  .text-100\%\@lg {
    font-size: 100%;
  }

  .text-105\%\@lg {
    font-size: 105%;
  }

  .text-110\%\@lg {
    font-size: 110%;
  }

  .text-115\%\@lg {
    font-size: 115%;
  }

  .text-120\%\@lg {
    font-size: 120%;
  }

  .text-125\%\@lg {
    font-size: 125%;
  }

  .text-130\%\@lg {
    font-size: 130%;
  }

  .text-135\%\@lg {
    font-size: 135%;
  }

  .text-140\%\@lg {
    font-size: 140%;
  }

  .text-145\%\@lg {
    font-size: 145%;
  }

  .text-150\%\@lg {
    font-size: 150%;
  }

  .text-155\%\@lg {
    font-size: 155%;
  }

  .text-160\%\@lg {
    font-size: 160%;
  }

  .text-165\%\@lg {
    font-size: 165%;
  }

  .text-170\%\@lg {
    font-size: 170%;
  }

  .text-175\%\@lg {
    font-size: 175%;
  }

  .text-180\%\@lg {
    font-size: 180%;
  }

  .text-185\%\@lg {
    font-size: 185%;
  }

  .text-190\%\@lg {
    font-size: 190%;
  }

  .text-195\%\@lg {
    font-size: 195%;
  }

  .text-200\%\@lg {
    font-size: 200%;
  }

  .text-offset-5\%\@lg {
    width: calc(100% + 5%);
  }

  .text-offset-10\%\@lg {
    width: calc(100% + 10%);
  }

  .text-offset-15\%\@lg {
    width: calc(100% + 15%);
  }

  .text-offset-20\%\@lg {
    width: calc(100% + 20%);
  }

  .text-offset-25\%\@lg {
    width: calc(100% + 25%);
  }

  .text-offset-30\%\@lg {
    width: calc(100% + 30%);
  }

  .text-offset-35\%\@lg {
    width: calc(100% + 35%);
  }

  .text-offset-40\%\@lg {
    width: calc(100% + 40%);
  }

  .text-offset-45\%\@lg {
    width: calc(100% + 45%);
  }

  .text-offset-50\%\@lg {
    width: calc(100% + 50%);
  }

  .text-offset-55\%\@lg {
    width: calc(100% + 55%);
  }

  .text-offset-60\%\@lg {
    width: calc(100% + 60%);
  }

  .text-offset-65\%\@lg {
    width: calc(100% + 65%);
  }

  .text-offset-70\%\@lg {
    width: calc(100% + 70%);
  }

  .text-offset-75\%\@lg {
    width: calc(100% + 75%);
  }

  .text-offset-80\%\@lg {
    width: calc(100% + 80%);
  }

  .text-offset-85\%\@lg {
    width: calc(100% + 85%);
  }

  .text-offset-90\%\@lg {
    width: calc(100% + 90%);
  }

  .text-offset-95\%\@lg {
    width: calc(100% + 95%);
  }

  .text-offset-100\%\@lg {
    width: calc(100% + 100%);
  }
}
@media (min-width: 90rem) {
  .component-padding-0\@xl {
    --component-padding: 0px;
  }

  .component-padding-xxxxs\@xl {
    --component-padding: var(--space-xxxxs);
  }

  .component-padding-xxxs\@xl {
    --component-padding: var(--space-xxxs);
  }

  .component-padding-xxs\@xl {
    --component-padding: var(--space-xxs);
  }

  .component-padding-xs\@xl {
    --component-padding: var(--space-xs);
  }

  .component-padding-sm\@xl {
    --component-padding: var(--space-sm);
  }

  .component-padding-md\@xl {
    --component-padding: var(--space-md);
  }

  .component-padding-lg\@xl {
    --component-padding: var(--space-lg);
  }

  .component-padding-xl\@xl {
    --component-padding: var(--space-xl);
  }

  .component-padding-xxl\@xl {
    --component-padding: var(--space-xxl);
  }

  .component-padding-xxxl\@xl {
    --component-padding: var(--space-xxxl);
  }

  .component-padding-xxxxl\@xl {
    --component-padding: var(--space-xxxxl);
  }

  .justify-around\@xl {
    justify-content: space-around;
  }

  .height-0px\@xl {
    height: 0px;
  }

  .min-height-0px\@xl {
    min-height: 0px;
  }

  .max-height-0px\@xl {
    max-height: 0px;
  }

  .width-0px\@xl {
    width: 0px;
  }

  .min-width-0px\@xl {
    min-width: 0px;
  }

  .max-width-0px\@xl {
    max-width: 0px;
  }

  .height-20px\@xl {
    height: 20px;
  }

  .min-height-20px\@xl {
    min-height: 20px;
  }

  .max-height-20px\@xl {
    max-height: 20px;
  }

  .width-20px\@xl {
    width: 20px;
  }

  .min-width-20px\@xl {
    min-width: 20px;
  }

  .max-width-20px\@xl {
    max-width: 20px;
  }

  .height-40px\@xl {
    height: 40px;
  }

  .min-height-40px\@xl {
    min-height: 40px;
  }

  .max-height-40px\@xl {
    max-height: 40px;
  }

  .width-40px\@xl {
    width: 40px;
  }

  .min-width-40px\@xl {
    min-width: 40px;
  }

  .max-width-40px\@xl {
    max-width: 40px;
  }

  .height-60px\@xl {
    height: 60px;
  }

  .min-height-60px\@xl {
    min-height: 60px;
  }

  .max-height-60px\@xl {
    max-height: 60px;
  }

  .width-60px\@xl {
    width: 60px;
  }

  .min-width-60px\@xl {
    min-width: 60px;
  }

  .max-width-60px\@xl {
    max-width: 60px;
  }

  .height-80px\@xl {
    height: 80px;
  }

  .min-height-80px\@xl {
    min-height: 80px;
  }

  .max-height-80px\@xl {
    max-height: 80px;
  }

  .width-80px\@xl {
    width: 80px;
  }

  .min-width-80px\@xl {
    min-width: 80px;
  }

  .max-width-80px\@xl {
    max-width: 80px;
  }

  .height-100px\@xl {
    height: 100px;
  }

  .min-height-100px\@xl {
    min-height: 100px;
  }

  .max-height-100px\@xl {
    max-height: 100px;
  }

  .width-100px\@xl {
    width: 100px;
  }

  .min-width-100px\@xl {
    min-width: 100px;
  }

  .max-width-100px\@xl {
    max-width: 100px;
  }

  .height-120px\@xl {
    height: 120px;
  }

  .min-height-120px\@xl {
    min-height: 120px;
  }

  .max-height-120px\@xl {
    max-height: 120px;
  }

  .width-120px\@xl {
    width: 120px;
  }

  .min-width-120px\@xl {
    min-width: 120px;
  }

  .max-width-120px\@xl {
    max-width: 120px;
  }

  .height-140px\@xl {
    height: 140px;
  }

  .min-height-140px\@xl {
    min-height: 140px;
  }

  .max-height-140px\@xl {
    max-height: 140px;
  }

  .width-140px\@xl {
    width: 140px;
  }

  .min-width-140px\@xl {
    min-width: 140px;
  }

  .max-width-140px\@xl {
    max-width: 140px;
  }

  .height-160px\@xl {
    height: 160px;
  }

  .min-height-160px\@xl {
    min-height: 160px;
  }

  .max-height-160px\@xl {
    max-height: 160px;
  }

  .width-160px\@xl {
    width: 160px;
  }

  .min-width-160px\@xl {
    min-width: 160px;
  }

  .max-width-160px\@xl {
    max-width: 160px;
  }

  .height-180px\@xl {
    height: 180px;
  }

  .min-height-180px\@xl {
    min-height: 180px;
  }

  .max-height-180px\@xl {
    max-height: 180px;
  }

  .width-180px\@xl {
    width: 180px;
  }

  .min-width-180px\@xl {
    min-width: 180px;
  }

  .max-width-180px\@xl {
    max-width: 180px;
  }

  .height-200px\@xl {
    height: 200px;
  }

  .min-height-200px\@xl {
    min-height: 200px;
  }

  .max-height-200px\@xl {
    max-height: 200px;
  }

  .width-200px\@xl {
    width: 200px;
  }

  .min-width-200px\@xl {
    min-width: 200px;
  }

  .max-width-200px\@xl {
    max-width: 200px;
  }

  .height-220px\@xl {
    height: 220px;
  }

  .min-height-220px\@xl {
    min-height: 220px;
  }

  .max-height-220px\@xl {
    max-height: 220px;
  }

  .width-220px\@xl {
    width: 220px;
  }

  .min-width-220px\@xl {
    min-width: 220px;
  }

  .max-width-220px\@xl {
    max-width: 220px;
  }

  .height-240px\@xl {
    height: 240px;
  }

  .min-height-240px\@xl {
    min-height: 240px;
  }

  .max-height-240px\@xl {
    max-height: 240px;
  }

  .width-240px\@xl {
    width: 240px;
  }

  .min-width-240px\@xl {
    min-width: 240px;
  }

  .max-width-240px\@xl {
    max-width: 240px;
  }

  .height-260px\@xl {
    height: 260px;
  }

  .min-height-260px\@xl {
    min-height: 260px;
  }

  .max-height-260px\@xl {
    max-height: 260px;
  }

  .width-260px\@xl {
    width: 260px;
  }

  .min-width-260px\@xl {
    min-width: 260px;
  }

  .max-width-260px\@xl {
    max-width: 260px;
  }

  .height-280px\@xl {
    height: 280px;
  }

  .min-height-280px\@xl {
    min-height: 280px;
  }

  .max-height-280px\@xl {
    max-height: 280px;
  }

  .width-280px\@xl {
    width: 280px;
  }

  .min-width-280px\@xl {
    min-width: 280px;
  }

  .max-width-280px\@xl {
    max-width: 280px;
  }

  .height-300px\@xl {
    height: 300px;
  }

  .min-height-300px\@xl {
    min-height: 300px;
  }

  .max-height-300px\@xl {
    max-height: 300px;
  }

  .width-300px\@xl {
    width: 300px;
  }

  .min-width-300px\@xl {
    min-width: 300px;
  }

  .max-width-300px\@xl {
    max-width: 300px;
  }

  .height-320px\@xl {
    height: 320px;
  }

  .min-height-320px\@xl {
    min-height: 320px;
  }

  .max-height-320px\@xl {
    max-height: 320px;
  }

  .width-320px\@xl {
    width: 320px;
  }

  .min-width-320px\@xl {
    min-width: 320px;
  }

  .max-width-320px\@xl {
    max-width: 320px;
  }

  .height-340px\@xl {
    height: 340px;
  }

  .min-height-340px\@xl {
    min-height: 340px;
  }

  .max-height-340px\@xl {
    max-height: 340px;
  }

  .width-340px\@xl {
    width: 340px;
  }

  .min-width-340px\@xl {
    min-width: 340px;
  }

  .max-width-340px\@xl {
    max-width: 340px;
  }

  .height-360px\@xl {
    height: 360px;
  }

  .min-height-360px\@xl {
    min-height: 360px;
  }

  .max-height-360px\@xl {
    max-height: 360px;
  }

  .width-360px\@xl {
    width: 360px;
  }

  .min-width-360px\@xl {
    min-width: 360px;
  }

  .max-width-360px\@xl {
    max-width: 360px;
  }

  .height-380px\@xl {
    height: 380px;
  }

  .min-height-380px\@xl {
    min-height: 380px;
  }

  .max-height-380px\@xl {
    max-height: 380px;
  }

  .width-380px\@xl {
    width: 380px;
  }

  .min-width-380px\@xl {
    min-width: 380px;
  }

  .max-width-380px\@xl {
    max-width: 380px;
  }

  .height-400px\@xl {
    height: 400px;
  }

  .min-height-400px\@xl {
    min-height: 400px;
  }

  .max-height-400px\@xl {
    max-height: 400px;
  }

  .width-400px\@xl {
    width: 400px;
  }

  .min-width-400px\@xl {
    min-width: 400px;
  }

  .max-width-400px\@xl {
    max-width: 400px;
  }

  .height-420px\@xl {
    height: 420px;
  }

  .min-height-420px\@xl {
    min-height: 420px;
  }

  .max-height-420px\@xl {
    max-height: 420px;
  }

  .width-420px\@xl {
    width: 420px;
  }

  .min-width-420px\@xl {
    min-width: 420px;
  }

  .max-width-420px\@xl {
    max-width: 420px;
  }

  .height-440px\@xl {
    height: 440px;
  }

  .min-height-440px\@xl {
    min-height: 440px;
  }

  .max-height-440px\@xl {
    max-height: 440px;
  }

  .width-440px\@xl {
    width: 440px;
  }

  .min-width-440px\@xl {
    min-width: 440px;
  }

  .max-width-440px\@xl {
    max-width: 440px;
  }

  .height-460px\@xl {
    height: 460px;
  }

  .min-height-460px\@xl {
    min-height: 460px;
  }

  .max-height-460px\@xl {
    max-height: 460px;
  }

  .width-460px\@xl {
    width: 460px;
  }

  .min-width-460px\@xl {
    min-width: 460px;
  }

  .max-width-460px\@xl {
    max-width: 460px;
  }

  .height-480px\@xl {
    height: 480px;
  }

  .min-height-480px\@xl {
    min-height: 480px;
  }

  .max-height-480px\@xl {
    max-height: 480px;
  }

  .width-480px\@xl {
    width: 480px;
  }

  .min-width-480px\@xl {
    min-width: 480px;
  }

  .max-width-480px\@xl {
    max-width: 480px;
  }

  .height-500px\@xl {
    height: 500px;
  }

  .min-height-500px\@xl {
    min-height: 500px;
  }

  .max-height-500px\@xl {
    max-height: 500px;
  }

  .width-500px\@xl {
    width: 500px;
  }

  .min-width-500px\@xl {
    min-width: 500px;
  }

  .max-width-500px\@xl {
    max-width: 500px;
  }

  .height-520px\@xl {
    height: 520px;
  }

  .min-height-520px\@xl {
    min-height: 520px;
  }

  .max-height-520px\@xl {
    max-height: 520px;
  }

  .width-520px\@xl {
    width: 520px;
  }

  .min-width-520px\@xl {
    min-width: 520px;
  }

  .max-width-520px\@xl {
    max-width: 520px;
  }

  .height-540px\@xl {
    height: 540px;
  }

  .min-height-540px\@xl {
    min-height: 540px;
  }

  .max-height-540px\@xl {
    max-height: 540px;
  }

  .width-540px\@xl {
    width: 540px;
  }

  .min-width-540px\@xl {
    min-width: 540px;
  }

  .max-width-540px\@xl {
    max-width: 540px;
  }

  .height-560px\@xl {
    height: 560px;
  }

  .min-height-560px\@xl {
    min-height: 560px;
  }

  .max-height-560px\@xl {
    max-height: 560px;
  }

  .width-560px\@xl {
    width: 560px;
  }

  .min-width-560px\@xl {
    min-width: 560px;
  }

  .max-width-560px\@xl {
    max-width: 560px;
  }

  .height-580px\@xl {
    height: 580px;
  }

  .min-height-580px\@xl {
    min-height: 580px;
  }

  .max-height-580px\@xl {
    max-height: 580px;
  }

  .width-580px\@xl {
    width: 580px;
  }

  .min-width-580px\@xl {
    min-width: 580px;
  }

  .max-width-580px\@xl {
    max-width: 580px;
  }

  .height-600px\@xl {
    height: 600px;
  }

  .min-height-600px\@xl {
    min-height: 600px;
  }

  .max-height-600px\@xl {
    max-height: 600px;
  }

  .width-600px\@xl {
    width: 600px;
  }

  .min-width-600px\@xl {
    min-width: 600px;
  }

  .max-width-600px\@xl {
    max-width: 600px;
  }

  .height-620px\@xl {
    height: 620px;
  }

  .min-height-620px\@xl {
    min-height: 620px;
  }

  .max-height-620px\@xl {
    max-height: 620px;
  }

  .width-620px\@xl {
    width: 620px;
  }

  .min-width-620px\@xl {
    min-width: 620px;
  }

  .max-width-620px\@xl {
    max-width: 620px;
  }

  .height-640px\@xl {
    height: 640px;
  }

  .min-height-640px\@xl {
    min-height: 640px;
  }

  .max-height-640px\@xl {
    max-height: 640px;
  }

  .width-640px\@xl {
    width: 640px;
  }

  .min-width-640px\@xl {
    min-width: 640px;
  }

  .max-width-640px\@xl {
    max-width: 640px;
  }

  .height-660px\@xl {
    height: 660px;
  }

  .min-height-660px\@xl {
    min-height: 660px;
  }

  .max-height-660px\@xl {
    max-height: 660px;
  }

  .width-660px\@xl {
    width: 660px;
  }

  .min-width-660px\@xl {
    min-width: 660px;
  }

  .max-width-660px\@xl {
    max-width: 660px;
  }

  .height-680px\@xl {
    height: 680px;
  }

  .min-height-680px\@xl {
    min-height: 680px;
  }

  .max-height-680px\@xl {
    max-height: 680px;
  }

  .width-680px\@xl {
    width: 680px;
  }

  .min-width-680px\@xl {
    min-width: 680px;
  }

  .max-width-680px\@xl {
    max-width: 680px;
  }

  .height-700px\@xl {
    height: 700px;
  }

  .min-height-700px\@xl {
    min-height: 700px;
  }

  .max-height-700px\@xl {
    max-height: 700px;
  }

  .width-700px\@xl {
    width: 700px;
  }

  .min-width-700px\@xl {
    min-width: 700px;
  }

  .max-width-700px\@xl {
    max-width: 700px;
  }

  .height-720px\@xl {
    height: 720px;
  }

  .min-height-720px\@xl {
    min-height: 720px;
  }

  .max-height-720px\@xl {
    max-height: 720px;
  }

  .width-720px\@xl {
    width: 720px;
  }

  .min-width-720px\@xl {
    min-width: 720px;
  }

  .max-width-720px\@xl {
    max-width: 720px;
  }

  .height-740px\@xl {
    height: 740px;
  }

  .min-height-740px\@xl {
    min-height: 740px;
  }

  .max-height-740px\@xl {
    max-height: 740px;
  }

  .width-740px\@xl {
    width: 740px;
  }

  .min-width-740px\@xl {
    min-width: 740px;
  }

  .max-width-740px\@xl {
    max-width: 740px;
  }

  .height-760px\@xl {
    height: 760px;
  }

  .min-height-760px\@xl {
    min-height: 760px;
  }

  .max-height-760px\@xl {
    max-height: 760px;
  }

  .width-760px\@xl {
    width: 760px;
  }

  .min-width-760px\@xl {
    min-width: 760px;
  }

  .max-width-760px\@xl {
    max-width: 760px;
  }

  .height-780px\@xl {
    height: 780px;
  }

  .min-height-780px\@xl {
    min-height: 780px;
  }

  .max-height-780px\@xl {
    max-height: 780px;
  }

  .width-780px\@xl {
    width: 780px;
  }

  .min-width-780px\@xl {
    min-width: 780px;
  }

  .max-width-780px\@xl {
    max-width: 780px;
  }

  .height-800px\@xl {
    height: 800px;
  }

  .min-height-800px\@xl {
    min-height: 800px;
  }

  .max-height-800px\@xl {
    max-height: 800px;
  }

  .width-800px\@xl {
    width: 800px;
  }

  .min-width-800px\@xl {
    min-width: 800px;
  }

  .max-width-800px\@xl {
    max-width: 800px;
  }

  .height-820px\@xl {
    height: 820px;
  }

  .min-height-820px\@xl {
    min-height: 820px;
  }

  .max-height-820px\@xl {
    max-height: 820px;
  }

  .width-820px\@xl {
    width: 820px;
  }

  .min-width-820px\@xl {
    min-width: 820px;
  }

  .max-width-820px\@xl {
    max-width: 820px;
  }

  .height-840px\@xl {
    height: 840px;
  }

  .min-height-840px\@xl {
    min-height: 840px;
  }

  .max-height-840px\@xl {
    max-height: 840px;
  }

  .width-840px\@xl {
    width: 840px;
  }

  .min-width-840px\@xl {
    min-width: 840px;
  }

  .max-width-840px\@xl {
    max-width: 840px;
  }

  .height-860px\@xl {
    height: 860px;
  }

  .min-height-860px\@xl {
    min-height: 860px;
  }

  .max-height-860px\@xl {
    max-height: 860px;
  }

  .width-860px\@xl {
    width: 860px;
  }

  .min-width-860px\@xl {
    min-width: 860px;
  }

  .max-width-860px\@xl {
    max-width: 860px;
  }

  .height-880px\@xl {
    height: 880px;
  }

  .min-height-880px\@xl {
    min-height: 880px;
  }

  .max-height-880px\@xl {
    max-height: 880px;
  }

  .width-880px\@xl {
    width: 880px;
  }

  .min-width-880px\@xl {
    min-width: 880px;
  }

  .max-width-880px\@xl {
    max-width: 880px;
  }

  .height-900px\@xl {
    height: 900px;
  }

  .min-height-900px\@xl {
    min-height: 900px;
  }

  .max-height-900px\@xl {
    max-height: 900px;
  }

  .width-900px\@xl {
    width: 900px;
  }

  .min-width-900px\@xl {
    min-width: 900px;
  }

  .max-width-900px\@xl {
    max-width: 900px;
  }

  .height-920px\@xl {
    height: 920px;
  }

  .min-height-920px\@xl {
    min-height: 920px;
  }

  .max-height-920px\@xl {
    max-height: 920px;
  }

  .width-920px\@xl {
    width: 920px;
  }

  .min-width-920px\@xl {
    min-width: 920px;
  }

  .max-width-920px\@xl {
    max-width: 920px;
  }

  .height-940px\@xl {
    height: 940px;
  }

  .min-height-940px\@xl {
    min-height: 940px;
  }

  .max-height-940px\@xl {
    max-height: 940px;
  }

  .width-940px\@xl {
    width: 940px;
  }

  .min-width-940px\@xl {
    min-width: 940px;
  }

  .max-width-940px\@xl {
    max-width: 940px;
  }

  .height-960px\@xl {
    height: 960px;
  }

  .min-height-960px\@xl {
    min-height: 960px;
  }

  .max-height-960px\@xl {
    max-height: 960px;
  }

  .width-960px\@xl {
    width: 960px;
  }

  .min-width-960px\@xl {
    min-width: 960px;
  }

  .max-width-960px\@xl {
    max-width: 960px;
  }

  .height-980px\@xl {
    height: 980px;
  }

  .min-height-980px\@xl {
    min-height: 980px;
  }

  .max-height-980px\@xl {
    max-height: 980px;
  }

  .width-980px\@xl {
    width: 980px;
  }

  .min-width-980px\@xl {
    min-width: 980px;
  }

  .max-width-980px\@xl {
    max-width: 980px;
  }

  .height-1000px\@xl {
    height: 1000px;
  }

  .min-height-1000px\@xl {
    min-height: 1000px;
  }

  .max-height-1000px\@xl {
    max-height: 1000px;
  }

  .width-1000px\@xl {
    width: 1000px;
  }

  .min-width-1000px\@xl {
    min-width: 1000px;
  }

  .max-width-1000px\@xl {
    max-width: 1000px;
  }

  .height-1020px\@xl {
    height: 1020px;
  }

  .min-height-1020px\@xl {
    min-height: 1020px;
  }

  .max-height-1020px\@xl {
    max-height: 1020px;
  }

  .width-1020px\@xl {
    width: 1020px;
  }

  .min-width-1020px\@xl {
    min-width: 1020px;
  }

  .max-width-1020px\@xl {
    max-width: 1020px;
  }

  .height-1040px\@xl {
    height: 1040px;
  }

  .min-height-1040px\@xl {
    min-height: 1040px;
  }

  .max-height-1040px\@xl {
    max-height: 1040px;
  }

  .width-1040px\@xl {
    width: 1040px;
  }

  .min-width-1040px\@xl {
    min-width: 1040px;
  }

  .max-width-1040px\@xl {
    max-width: 1040px;
  }

  .height-1060px\@xl {
    height: 1060px;
  }

  .min-height-1060px\@xl {
    min-height: 1060px;
  }

  .max-height-1060px\@xl {
    max-height: 1060px;
  }

  .width-1060px\@xl {
    width: 1060px;
  }

  .min-width-1060px\@xl {
    min-width: 1060px;
  }

  .max-width-1060px\@xl {
    max-width: 1060px;
  }

  .height-1080px\@xl {
    height: 1080px;
  }

  .min-height-1080px\@xl {
    min-height: 1080px;
  }

  .max-height-1080px\@xl {
    max-height: 1080px;
  }

  .width-1080px\@xl {
    width: 1080px;
  }

  .min-width-1080px\@xl {
    min-width: 1080px;
  }

  .max-width-1080px\@xl {
    max-width: 1080px;
  }

  .height-1100px\@xl {
    height: 1100px;
  }

  .min-height-1100px\@xl {
    min-height: 1100px;
  }

  .max-height-1100px\@xl {
    max-height: 1100px;
  }

  .width-1100px\@xl {
    width: 1100px;
  }

  .min-width-1100px\@xl {
    min-width: 1100px;
  }

  .max-width-1100px\@xl {
    max-width: 1100px;
  }

  .height-1120px\@xl {
    height: 1120px;
  }

  .min-height-1120px\@xl {
    min-height: 1120px;
  }

  .max-height-1120px\@xl {
    max-height: 1120px;
  }

  .width-1120px\@xl {
    width: 1120px;
  }

  .min-width-1120px\@xl {
    min-width: 1120px;
  }

  .max-width-1120px\@xl {
    max-width: 1120px;
  }

  .height-1140px\@xl {
    height: 1140px;
  }

  .min-height-1140px\@xl {
    min-height: 1140px;
  }

  .max-height-1140px\@xl {
    max-height: 1140px;
  }

  .width-1140px\@xl {
    width: 1140px;
  }

  .min-width-1140px\@xl {
    min-width: 1140px;
  }

  .max-width-1140px\@xl {
    max-width: 1140px;
  }

  .height-1160px\@xl {
    height: 1160px;
  }

  .min-height-1160px\@xl {
    min-height: 1160px;
  }

  .max-height-1160px\@xl {
    max-height: 1160px;
  }

  .width-1160px\@xl {
    width: 1160px;
  }

  .min-width-1160px\@xl {
    min-width: 1160px;
  }

  .max-width-1160px\@xl {
    max-width: 1160px;
  }

  .height-1180px\@xl {
    height: 1180px;
  }

  .min-height-1180px\@xl {
    min-height: 1180px;
  }

  .max-height-1180px\@xl {
    max-height: 1180px;
  }

  .width-1180px\@xl {
    width: 1180px;
  }

  .min-width-1180px\@xl {
    min-width: 1180px;
  }

  .max-width-1180px\@xl {
    max-width: 1180px;
  }

  .height-1200px\@xl {
    height: 1200px;
  }

  .min-height-1200px\@xl {
    min-height: 1200px;
  }

  .max-height-1200px\@xl {
    max-height: 1200px;
  }

  .width-1200px\@xl {
    width: 1200px;
  }

  .min-width-1200px\@xl {
    min-width: 1200px;
  }

  .max-width-1200px\@xl {
    max-width: 1200px;
  }

  .height-1220px\@xl {
    height: 1220px;
  }

  .min-height-1220px\@xl {
    min-height: 1220px;
  }

  .max-height-1220px\@xl {
    max-height: 1220px;
  }

  .width-1220px\@xl {
    width: 1220px;
  }

  .min-width-1220px\@xl {
    min-width: 1220px;
  }

  .max-width-1220px\@xl {
    max-width: 1220px;
  }

  .height-1240px\@xl {
    height: 1240px;
  }

  .min-height-1240px\@xl {
    min-height: 1240px;
  }

  .max-height-1240px\@xl {
    max-height: 1240px;
  }

  .width-1240px\@xl {
    width: 1240px;
  }

  .min-width-1240px\@xl {
    min-width: 1240px;
  }

  .max-width-1240px\@xl {
    max-width: 1240px;
  }

  .height-1260px\@xl {
    height: 1260px;
  }

  .min-height-1260px\@xl {
    min-height: 1260px;
  }

  .max-height-1260px\@xl {
    max-height: 1260px;
  }

  .width-1260px\@xl {
    width: 1260px;
  }

  .min-width-1260px\@xl {
    min-width: 1260px;
  }

  .max-width-1260px\@xl {
    max-width: 1260px;
  }

  .height-1280px\@xl {
    height: 1280px;
  }

  .min-height-1280px\@xl {
    min-height: 1280px;
  }

  .max-height-1280px\@xl {
    max-height: 1280px;
  }

  .width-1280px\@xl {
    width: 1280px;
  }

  .min-width-1280px\@xl {
    min-width: 1280px;
  }

  .max-width-1280px\@xl {
    max-width: 1280px;
  }

  .height-1300px\@xl {
    height: 1300px;
  }

  .min-height-1300px\@xl {
    min-height: 1300px;
  }

  .max-height-1300px\@xl {
    max-height: 1300px;
  }

  .width-1300px\@xl {
    width: 1300px;
  }

  .min-width-1300px\@xl {
    min-width: 1300px;
  }

  .max-width-1300px\@xl {
    max-width: 1300px;
  }

  .height-1320px\@xl {
    height: 1320px;
  }

  .min-height-1320px\@xl {
    min-height: 1320px;
  }

  .max-height-1320px\@xl {
    max-height: 1320px;
  }

  .width-1320px\@xl {
    width: 1320px;
  }

  .min-width-1320px\@xl {
    min-width: 1320px;
  }

  .max-width-1320px\@xl {
    max-width: 1320px;
  }

  .height-1340px\@xl {
    height: 1340px;
  }

  .min-height-1340px\@xl {
    min-height: 1340px;
  }

  .max-height-1340px\@xl {
    max-height: 1340px;
  }

  .width-1340px\@xl {
    width: 1340px;
  }

  .min-width-1340px\@xl {
    min-width: 1340px;
  }

  .max-width-1340px\@xl {
    max-width: 1340px;
  }

  .height-1360px\@xl {
    height: 1360px;
  }

  .min-height-1360px\@xl {
    min-height: 1360px;
  }

  .max-height-1360px\@xl {
    max-height: 1360px;
  }

  .width-1360px\@xl {
    width: 1360px;
  }

  .min-width-1360px\@xl {
    min-width: 1360px;
  }

  .max-width-1360px\@xl {
    max-width: 1360px;
  }

  .height-1380px\@xl {
    height: 1380px;
  }

  .min-height-1380px\@xl {
    min-height: 1380px;
  }

  .max-height-1380px\@xl {
    max-height: 1380px;
  }

  .width-1380px\@xl {
    width: 1380px;
  }

  .min-width-1380px\@xl {
    min-width: 1380px;
  }

  .max-width-1380px\@xl {
    max-width: 1380px;
  }

  .height-1400px\@xl {
    height: 1400px;
  }

  .min-height-1400px\@xl {
    min-height: 1400px;
  }

  .max-height-1400px\@xl {
    max-height: 1400px;
  }

  .width-1400px\@xl {
    width: 1400px;
  }

  .min-width-1400px\@xl {
    min-width: 1400px;
  }

  .max-width-1400px\@xl {
    max-width: 1400px;
  }

  .height-1420px\@xl {
    height: 1420px;
  }

  .min-height-1420px\@xl {
    min-height: 1420px;
  }

  .max-height-1420px\@xl {
    max-height: 1420px;
  }

  .width-1420px\@xl {
    width: 1420px;
  }

  .min-width-1420px\@xl {
    min-width: 1420px;
  }

  .max-width-1420px\@xl {
    max-width: 1420px;
  }

  .height-1440px\@xl {
    height: 1440px;
  }

  .min-height-1440px\@xl {
    min-height: 1440px;
  }

  .max-height-1440px\@xl {
    max-height: 1440px;
  }

  .width-1440px\@xl {
    width: 1440px;
  }

  .min-width-1440px\@xl {
    min-width: 1440px;
  }

  .max-width-1440px\@xl {
    max-width: 1440px;
  }

  .height-1460px\@xl {
    height: 1460px;
  }

  .min-height-1460px\@xl {
    min-height: 1460px;
  }

  .max-height-1460px\@xl {
    max-height: 1460px;
  }

  .width-1460px\@xl {
    width: 1460px;
  }

  .min-width-1460px\@xl {
    min-width: 1460px;
  }

  .max-width-1460px\@xl {
    max-width: 1460px;
  }

  .height-1480px\@xl {
    height: 1480px;
  }

  .min-height-1480px\@xl {
    min-height: 1480px;
  }

  .max-height-1480px\@xl {
    max-height: 1480px;
  }

  .width-1480px\@xl {
    width: 1480px;
  }

  .min-width-1480px\@xl {
    min-width: 1480px;
  }

  .max-width-1480px\@xl {
    max-width: 1480px;
  }

  .height-1500px\@xl {
    height: 1500px;
  }

  .min-height-1500px\@xl {
    min-height: 1500px;
  }

  .max-height-1500px\@xl {
    max-height: 1500px;
  }

  .width-1500px\@xl {
    width: 1500px;
  }

  .min-width-1500px\@xl {
    min-width: 1500px;
  }

  .max-width-1500px\@xl {
    max-width: 1500px;
  }

  .height-1520px\@xl {
    height: 1520px;
  }

  .min-height-1520px\@xl {
    min-height: 1520px;
  }

  .max-height-1520px\@xl {
    max-height: 1520px;
  }

  .width-1520px\@xl {
    width: 1520px;
  }

  .min-width-1520px\@xl {
    min-width: 1520px;
  }

  .max-width-1520px\@xl {
    max-width: 1520px;
  }

  .height-1540px\@xl {
    height: 1540px;
  }

  .min-height-1540px\@xl {
    min-height: 1540px;
  }

  .max-height-1540px\@xl {
    max-height: 1540px;
  }

  .width-1540px\@xl {
    width: 1540px;
  }

  .min-width-1540px\@xl {
    min-width: 1540px;
  }

  .max-width-1540px\@xl {
    max-width: 1540px;
  }

  .height-1560px\@xl {
    height: 1560px;
  }

  .min-height-1560px\@xl {
    min-height: 1560px;
  }

  .max-height-1560px\@xl {
    max-height: 1560px;
  }

  .width-1560px\@xl {
    width: 1560px;
  }

  .min-width-1560px\@xl {
    min-width: 1560px;
  }

  .max-width-1560px\@xl {
    max-width: 1560px;
  }

  .height-1580px\@xl {
    height: 1580px;
  }

  .min-height-1580px\@xl {
    min-height: 1580px;
  }

  .max-height-1580px\@xl {
    max-height: 1580px;
  }

  .width-1580px\@xl {
    width: 1580px;
  }

  .min-width-1580px\@xl {
    min-width: 1580px;
  }

  .max-width-1580px\@xl {
    max-width: 1580px;
  }

  .height-1600px\@xl {
    height: 1600px;
  }

  .min-height-1600px\@xl {
    min-height: 1600px;
  }

  .max-height-1600px\@xl {
    max-height: 1600px;
  }

  .width-1600px\@xl {
    width: 1600px;
  }

  .min-width-1600px\@xl {
    min-width: 1600px;
  }

  .max-width-1600px\@xl {
    max-width: 1600px;
  }

  .height-1620px\@xl {
    height: 1620px;
  }

  .min-height-1620px\@xl {
    min-height: 1620px;
  }

  .max-height-1620px\@xl {
    max-height: 1620px;
  }

  .width-1620px\@xl {
    width: 1620px;
  }

  .min-width-1620px\@xl {
    min-width: 1620px;
  }

  .max-width-1620px\@xl {
    max-width: 1620px;
  }

  .height-1640px\@xl {
    height: 1640px;
  }

  .min-height-1640px\@xl {
    min-height: 1640px;
  }

  .max-height-1640px\@xl {
    max-height: 1640px;
  }

  .width-1640px\@xl {
    width: 1640px;
  }

  .min-width-1640px\@xl {
    min-width: 1640px;
  }

  .max-width-1640px\@xl {
    max-width: 1640px;
  }

  .height-1660px\@xl {
    height: 1660px;
  }

  .min-height-1660px\@xl {
    min-height: 1660px;
  }

  .max-height-1660px\@xl {
    max-height: 1660px;
  }

  .width-1660px\@xl {
    width: 1660px;
  }

  .min-width-1660px\@xl {
    min-width: 1660px;
  }

  .max-width-1660px\@xl {
    max-width: 1660px;
  }

  .height-1680px\@xl {
    height: 1680px;
  }

  .min-height-1680px\@xl {
    min-height: 1680px;
  }

  .max-height-1680px\@xl {
    max-height: 1680px;
  }

  .width-1680px\@xl {
    width: 1680px;
  }

  .min-width-1680px\@xl {
    min-width: 1680px;
  }

  .max-width-1680px\@xl {
    max-width: 1680px;
  }

  .height-1700px\@xl {
    height: 1700px;
  }

  .min-height-1700px\@xl {
    min-height: 1700px;
  }

  .max-height-1700px\@xl {
    max-height: 1700px;
  }

  .width-1700px\@xl {
    width: 1700px;
  }

  .min-width-1700px\@xl {
    min-width: 1700px;
  }

  .max-width-1700px\@xl {
    max-width: 1700px;
  }

  .height-1720px\@xl {
    height: 1720px;
  }

  .min-height-1720px\@xl {
    min-height: 1720px;
  }

  .max-height-1720px\@xl {
    max-height: 1720px;
  }

  .width-1720px\@xl {
    width: 1720px;
  }

  .min-width-1720px\@xl {
    min-width: 1720px;
  }

  .max-width-1720px\@xl {
    max-width: 1720px;
  }

  .height-1740px\@xl {
    height: 1740px;
  }

  .min-height-1740px\@xl {
    min-height: 1740px;
  }

  .max-height-1740px\@xl {
    max-height: 1740px;
  }

  .width-1740px\@xl {
    width: 1740px;
  }

  .min-width-1740px\@xl {
    min-width: 1740px;
  }

  .max-width-1740px\@xl {
    max-width: 1740px;
  }

  .height-1760px\@xl {
    height: 1760px;
  }

  .min-height-1760px\@xl {
    min-height: 1760px;
  }

  .max-height-1760px\@xl {
    max-height: 1760px;
  }

  .width-1760px\@xl {
    width: 1760px;
  }

  .min-width-1760px\@xl {
    min-width: 1760px;
  }

  .max-width-1760px\@xl {
    max-width: 1760px;
  }

  .height-1780px\@xl {
    height: 1780px;
  }

  .min-height-1780px\@xl {
    min-height: 1780px;
  }

  .max-height-1780px\@xl {
    max-height: 1780px;
  }

  .width-1780px\@xl {
    width: 1780px;
  }

  .min-width-1780px\@xl {
    min-width: 1780px;
  }

  .max-width-1780px\@xl {
    max-width: 1780px;
  }

  .height-1800px\@xl {
    height: 1800px;
  }

  .min-height-1800px\@xl {
    min-height: 1800px;
  }

  .max-height-1800px\@xl {
    max-height: 1800px;
  }

  .width-1800px\@xl {
    width: 1800px;
  }

  .min-width-1800px\@xl {
    min-width: 1800px;
  }

  .max-width-1800px\@xl {
    max-width: 1800px;
  }

  .height-1820px\@xl {
    height: 1820px;
  }

  .min-height-1820px\@xl {
    min-height: 1820px;
  }

  .max-height-1820px\@xl {
    max-height: 1820px;
  }

  .width-1820px\@xl {
    width: 1820px;
  }

  .min-width-1820px\@xl {
    min-width: 1820px;
  }

  .max-width-1820px\@xl {
    max-width: 1820px;
  }

  .height-1840px\@xl {
    height: 1840px;
  }

  .min-height-1840px\@xl {
    min-height: 1840px;
  }

  .max-height-1840px\@xl {
    max-height: 1840px;
  }

  .width-1840px\@xl {
    width: 1840px;
  }

  .min-width-1840px\@xl {
    min-width: 1840px;
  }

  .max-width-1840px\@xl {
    max-width: 1840px;
  }

  .height-1860px\@xl {
    height: 1860px;
  }

  .min-height-1860px\@xl {
    min-height: 1860px;
  }

  .max-height-1860px\@xl {
    max-height: 1860px;
  }

  .width-1860px\@xl {
    width: 1860px;
  }

  .min-width-1860px\@xl {
    min-width: 1860px;
  }

  .max-width-1860px\@xl {
    max-width: 1860px;
  }

  .height-1880px\@xl {
    height: 1880px;
  }

  .min-height-1880px\@xl {
    min-height: 1880px;
  }

  .max-height-1880px\@xl {
    max-height: 1880px;
  }

  .width-1880px\@xl {
    width: 1880px;
  }

  .min-width-1880px\@xl {
    min-width: 1880px;
  }

  .max-width-1880px\@xl {
    max-width: 1880px;
  }

  .height-1900px\@xl {
    height: 1900px;
  }

  .min-height-1900px\@xl {
    min-height: 1900px;
  }

  .max-height-1900px\@xl {
    max-height: 1900px;
  }

  .width-1900px\@xl {
    width: 1900px;
  }

  .min-width-1900px\@xl {
    min-width: 1900px;
  }

  .max-width-1900px\@xl {
    max-width: 1900px;
  }

  .height-1920px\@xl {
    height: 1920px;
  }

  .min-height-1920px\@xl {
    min-height: 1920px;
  }

  .max-height-1920px\@xl {
    max-height: 1920px;
  }

  .width-1920px\@xl {
    width: 1920px;
  }

  .min-width-1920px\@xl {
    min-width: 1920px;
  }

  .max-width-1920px\@xl {
    max-width: 1920px;
  }

  .height-1940px\@xl {
    height: 1940px;
  }

  .min-height-1940px\@xl {
    min-height: 1940px;
  }

  .max-height-1940px\@xl {
    max-height: 1940px;
  }

  .width-1940px\@xl {
    width: 1940px;
  }

  .min-width-1940px\@xl {
    min-width: 1940px;
  }

  .max-width-1940px\@xl {
    max-width: 1940px;
  }

  .height-1960px\@xl {
    height: 1960px;
  }

  .min-height-1960px\@xl {
    min-height: 1960px;
  }

  .max-height-1960px\@xl {
    max-height: 1960px;
  }

  .width-1960px\@xl {
    width: 1960px;
  }

  .min-width-1960px\@xl {
    min-width: 1960px;
  }

  .max-width-1960px\@xl {
    max-width: 1960px;
  }

  .height-1980px\@xl {
    height: 1980px;
  }

  .min-height-1980px\@xl {
    min-height: 1980px;
  }

  .max-height-1980px\@xl {
    max-height: 1980px;
  }

  .width-1980px\@xl {
    width: 1980px;
  }

  .min-width-1980px\@xl {
    min-width: 1980px;
  }

  .max-width-1980px\@xl {
    max-width: 1980px;
  }

  .height-2000px\@xl {
    height: 2000px;
  }

  .min-height-2000px\@xl {
    min-height: 2000px;
  }

  .max-height-2000px\@xl {
    max-height: 2000px;
  }

  .width-2000px\@xl {
    width: 2000px;
  }

  .min-width-2000px\@xl {
    min-width: 2000px;
  }

  .max-width-2000px\@xl {
    max-width: 2000px;
  }

  .height-2020px\@xl {
    height: 2020px;
  }

  .min-height-2020px\@xl {
    min-height: 2020px;
  }

  .max-height-2020px\@xl {
    max-height: 2020px;
  }

  .width-2020px\@xl {
    width: 2020px;
  }

  .min-width-2020px\@xl {
    min-width: 2020px;
  }

  .max-width-2020px\@xl {
    max-width: 2020px;
  }

  .height-2040px\@xl {
    height: 2040px;
  }

  .min-height-2040px\@xl {
    min-height: 2040px;
  }

  .max-height-2040px\@xl {
    max-height: 2040px;
  }

  .width-2040px\@xl {
    width: 2040px;
  }

  .min-width-2040px\@xl {
    min-width: 2040px;
  }

  .max-width-2040px\@xl {
    max-width: 2040px;
  }

  .height-2060px\@xl {
    height: 2060px;
  }

  .min-height-2060px\@xl {
    min-height: 2060px;
  }

  .max-height-2060px\@xl {
    max-height: 2060px;
  }

  .width-2060px\@xl {
    width: 2060px;
  }

  .min-width-2060px\@xl {
    min-width: 2060px;
  }

  .max-width-2060px\@xl {
    max-width: 2060px;
  }

  .height-2080px\@xl {
    height: 2080px;
  }

  .min-height-2080px\@xl {
    min-height: 2080px;
  }

  .max-height-2080px\@xl {
    max-height: 2080px;
  }

  .width-2080px\@xl {
    width: 2080px;
  }

  .min-width-2080px\@xl {
    min-width: 2080px;
  }

  .max-width-2080px\@xl {
    max-width: 2080px;
  }

  .height-2100px\@xl {
    height: 2100px;
  }

  .min-height-2100px\@xl {
    min-height: 2100px;
  }

  .max-height-2100px\@xl {
    max-height: 2100px;
  }

  .width-2100px\@xl {
    width: 2100px;
  }

  .min-width-2100px\@xl {
    min-width: 2100px;
  }

  .max-width-2100px\@xl {
    max-width: 2100px;
  }

  .height-2120px\@xl {
    height: 2120px;
  }

  .min-height-2120px\@xl {
    min-height: 2120px;
  }

  .max-height-2120px\@xl {
    max-height: 2120px;
  }

  .width-2120px\@xl {
    width: 2120px;
  }

  .min-width-2120px\@xl {
    min-width: 2120px;
  }

  .max-width-2120px\@xl {
    max-width: 2120px;
  }

  .height-2140px\@xl {
    height: 2140px;
  }

  .min-height-2140px\@xl {
    min-height: 2140px;
  }

  .max-height-2140px\@xl {
    max-height: 2140px;
  }

  .width-2140px\@xl {
    width: 2140px;
  }

  .min-width-2140px\@xl {
    min-width: 2140px;
  }

  .max-width-2140px\@xl {
    max-width: 2140px;
  }

  .height-2160px\@xl {
    height: 2160px;
  }

  .min-height-2160px\@xl {
    min-height: 2160px;
  }

  .max-height-2160px\@xl {
    max-height: 2160px;
  }

  .width-2160px\@xl {
    width: 2160px;
  }

  .min-width-2160px\@xl {
    min-width: 2160px;
  }

  .max-width-2160px\@xl {
    max-width: 2160px;
  }

  .height-2180px\@xl {
    height: 2180px;
  }

  .min-height-2180px\@xl {
    min-height: 2180px;
  }

  .max-height-2180px\@xl {
    max-height: 2180px;
  }

  .width-2180px\@xl {
    width: 2180px;
  }

  .min-width-2180px\@xl {
    min-width: 2180px;
  }

  .max-width-2180px\@xl {
    max-width: 2180px;
  }

  .height-2200px\@xl {
    height: 2200px;
  }

  .min-height-2200px\@xl {
    min-height: 2200px;
  }

  .max-height-2200px\@xl {
    max-height: 2200px;
  }

  .width-2200px\@xl {
    width: 2200px;
  }

  .min-width-2200px\@xl {
    min-width: 2200px;
  }

  .max-width-2200px\@xl {
    max-width: 2200px;
  }

  .height-2220px\@xl {
    height: 2220px;
  }

  .min-height-2220px\@xl {
    min-height: 2220px;
  }

  .max-height-2220px\@xl {
    max-height: 2220px;
  }

  .width-2220px\@xl {
    width: 2220px;
  }

  .min-width-2220px\@xl {
    min-width: 2220px;
  }

  .max-width-2220px\@xl {
    max-width: 2220px;
  }

  .height-2240px\@xl {
    height: 2240px;
  }

  .min-height-2240px\@xl {
    min-height: 2240px;
  }

  .max-height-2240px\@xl {
    max-height: 2240px;
  }

  .width-2240px\@xl {
    width: 2240px;
  }

  .min-width-2240px\@xl {
    min-width: 2240px;
  }

  .max-width-2240px\@xl {
    max-width: 2240px;
  }

  .height-2260px\@xl {
    height: 2260px;
  }

  .min-height-2260px\@xl {
    min-height: 2260px;
  }

  .max-height-2260px\@xl {
    max-height: 2260px;
  }

  .width-2260px\@xl {
    width: 2260px;
  }

  .min-width-2260px\@xl {
    min-width: 2260px;
  }

  .max-width-2260px\@xl {
    max-width: 2260px;
  }

  .height-2280px\@xl {
    height: 2280px;
  }

  .min-height-2280px\@xl {
    min-height: 2280px;
  }

  .max-height-2280px\@xl {
    max-height: 2280px;
  }

  .width-2280px\@xl {
    width: 2280px;
  }

  .min-width-2280px\@xl {
    min-width: 2280px;
  }

  .max-width-2280px\@xl {
    max-width: 2280px;
  }

  .height-2300px\@xl {
    height: 2300px;
  }

  .min-height-2300px\@xl {
    min-height: 2300px;
  }

  .max-height-2300px\@xl {
    max-height: 2300px;
  }

  .width-2300px\@xl {
    width: 2300px;
  }

  .min-width-2300px\@xl {
    min-width: 2300px;
  }

  .max-width-2300px\@xl {
    max-width: 2300px;
  }

  .height-2320px\@xl {
    height: 2320px;
  }

  .min-height-2320px\@xl {
    min-height: 2320px;
  }

  .max-height-2320px\@xl {
    max-height: 2320px;
  }

  .width-2320px\@xl {
    width: 2320px;
  }

  .min-width-2320px\@xl {
    min-width: 2320px;
  }

  .max-width-2320px\@xl {
    max-width: 2320px;
  }

  .height-2340px\@xl {
    height: 2340px;
  }

  .min-height-2340px\@xl {
    min-height: 2340px;
  }

  .max-height-2340px\@xl {
    max-height: 2340px;
  }

  .width-2340px\@xl {
    width: 2340px;
  }

  .min-width-2340px\@xl {
    min-width: 2340px;
  }

  .max-width-2340px\@xl {
    max-width: 2340px;
  }

  .height-2360px\@xl {
    height: 2360px;
  }

  .min-height-2360px\@xl {
    min-height: 2360px;
  }

  .max-height-2360px\@xl {
    max-height: 2360px;
  }

  .width-2360px\@xl {
    width: 2360px;
  }

  .min-width-2360px\@xl {
    min-width: 2360px;
  }

  .max-width-2360px\@xl {
    max-width: 2360px;
  }

  .height-2380px\@xl {
    height: 2380px;
  }

  .min-height-2380px\@xl {
    min-height: 2380px;
  }

  .max-height-2380px\@xl {
    max-height: 2380px;
  }

  .width-2380px\@xl {
    width: 2380px;
  }

  .min-width-2380px\@xl {
    min-width: 2380px;
  }

  .max-width-2380px\@xl {
    max-width: 2380px;
  }

  .height-2400px\@xl {
    height: 2400px;
  }

  .min-height-2400px\@xl {
    min-height: 2400px;
  }

  .max-height-2400px\@xl {
    max-height: 2400px;
  }

  .width-2400px\@xl {
    width: 2400px;
  }

  .min-width-2400px\@xl {
    min-width: 2400px;
  }

  .max-width-2400px\@xl {
    max-width: 2400px;
  }

  .height-2420px\@xl {
    height: 2420px;
  }

  .min-height-2420px\@xl {
    min-height: 2420px;
  }

  .max-height-2420px\@xl {
    max-height: 2420px;
  }

  .width-2420px\@xl {
    width: 2420px;
  }

  .min-width-2420px\@xl {
    min-width: 2420px;
  }

  .max-width-2420px\@xl {
    max-width: 2420px;
  }

  .height-2440px\@xl {
    height: 2440px;
  }

  .min-height-2440px\@xl {
    min-height: 2440px;
  }

  .max-height-2440px\@xl {
    max-height: 2440px;
  }

  .width-2440px\@xl {
    width: 2440px;
  }

  .min-width-2440px\@xl {
    min-width: 2440px;
  }

  .max-width-2440px\@xl {
    max-width: 2440px;
  }

  .height-2460px\@xl {
    height: 2460px;
  }

  .min-height-2460px\@xl {
    min-height: 2460px;
  }

  .max-height-2460px\@xl {
    max-height: 2460px;
  }

  .width-2460px\@xl {
    width: 2460px;
  }

  .min-width-2460px\@xl {
    min-width: 2460px;
  }

  .max-width-2460px\@xl {
    max-width: 2460px;
  }

  .height-2480px\@xl {
    height: 2480px;
  }

  .min-height-2480px\@xl {
    min-height: 2480px;
  }

  .max-height-2480px\@xl {
    max-height: 2480px;
  }

  .width-2480px\@xl {
    width: 2480px;
  }

  .min-width-2480px\@xl {
    min-width: 2480px;
  }

  .max-width-2480px\@xl {
    max-width: 2480px;
  }

  .height-2500px\@xl {
    height: 2500px;
  }

  .min-height-2500px\@xl {
    min-height: 2500px;
  }

  .max-height-2500px\@xl {
    max-height: 2500px;
  }

  .width-2500px\@xl {
    width: 2500px;
  }

  .min-width-2500px\@xl {
    min-width: 2500px;
  }

  .max-width-2500px\@xl {
    max-width: 2500px;
  }

  .height-2520px\@xl {
    height: 2520px;
  }

  .min-height-2520px\@xl {
    min-height: 2520px;
  }

  .max-height-2520px\@xl {
    max-height: 2520px;
  }

  .width-2520px\@xl {
    width: 2520px;
  }

  .min-width-2520px\@xl {
    min-width: 2520px;
  }

  .max-width-2520px\@xl {
    max-width: 2520px;
  }

  .height-2540px\@xl {
    height: 2540px;
  }

  .min-height-2540px\@xl {
    min-height: 2540px;
  }

  .max-height-2540px\@xl {
    max-height: 2540px;
  }

  .width-2540px\@xl {
    width: 2540px;
  }

  .min-width-2540px\@xl {
    min-width: 2540px;
  }

  .max-width-2540px\@xl {
    max-width: 2540px;
  }

  .height-2560px\@xl {
    height: 2560px;
  }

  .min-height-2560px\@xl {
    min-height: 2560px;
  }

  .max-height-2560px\@xl {
    max-height: 2560px;
  }

  .width-2560px\@xl {
    width: 2560px;
  }

  .min-width-2560px\@xl {
    min-width: 2560px;
  }

  .max-width-2560px\@xl {
    max-width: 2560px;
  }

  .height-2580px\@xl {
    height: 2580px;
  }

  .min-height-2580px\@xl {
    min-height: 2580px;
  }

  .max-height-2580px\@xl {
    max-height: 2580px;
  }

  .width-2580px\@xl {
    width: 2580px;
  }

  .min-width-2580px\@xl {
    min-width: 2580px;
  }

  .max-width-2580px\@xl {
    max-width: 2580px;
  }

  .height-2600px\@xl {
    height: 2600px;
  }

  .min-height-2600px\@xl {
    min-height: 2600px;
  }

  .max-height-2600px\@xl {
    max-height: 2600px;
  }

  .width-2600px\@xl {
    width: 2600px;
  }

  .min-width-2600px\@xl {
    min-width: 2600px;
  }

  .max-width-2600px\@xl {
    max-width: 2600px;
  }

  .height-2620px\@xl {
    height: 2620px;
  }

  .min-height-2620px\@xl {
    min-height: 2620px;
  }

  .max-height-2620px\@xl {
    max-height: 2620px;
  }

  .width-2620px\@xl {
    width: 2620px;
  }

  .min-width-2620px\@xl {
    min-width: 2620px;
  }

  .max-width-2620px\@xl {
    max-width: 2620px;
  }

  .height-2640px\@xl {
    height: 2640px;
  }

  .min-height-2640px\@xl {
    min-height: 2640px;
  }

  .max-height-2640px\@xl {
    max-height: 2640px;
  }

  .width-2640px\@xl {
    width: 2640px;
  }

  .min-width-2640px\@xl {
    min-width: 2640px;
  }

  .max-width-2640px\@xl {
    max-width: 2640px;
  }

  .height-2660px\@xl {
    height: 2660px;
  }

  .min-height-2660px\@xl {
    min-height: 2660px;
  }

  .max-height-2660px\@xl {
    max-height: 2660px;
  }

  .width-2660px\@xl {
    width: 2660px;
  }

  .min-width-2660px\@xl {
    min-width: 2660px;
  }

  .max-width-2660px\@xl {
    max-width: 2660px;
  }

  .height-2680px\@xl {
    height: 2680px;
  }

  .min-height-2680px\@xl {
    min-height: 2680px;
  }

  .max-height-2680px\@xl {
    max-height: 2680px;
  }

  .width-2680px\@xl {
    width: 2680px;
  }

  .min-width-2680px\@xl {
    min-width: 2680px;
  }

  .max-width-2680px\@xl {
    max-width: 2680px;
  }

  .height-2700px\@xl {
    height: 2700px;
  }

  .min-height-2700px\@xl {
    min-height: 2700px;
  }

  .max-height-2700px\@xl {
    max-height: 2700px;
  }

  .width-2700px\@xl {
    width: 2700px;
  }

  .min-width-2700px\@xl {
    min-width: 2700px;
  }

  .max-width-2700px\@xl {
    max-width: 2700px;
  }

  .height-2720px\@xl {
    height: 2720px;
  }

  .min-height-2720px\@xl {
    min-height: 2720px;
  }

  .max-height-2720px\@xl {
    max-height: 2720px;
  }

  .width-2720px\@xl {
    width: 2720px;
  }

  .min-width-2720px\@xl {
    min-width: 2720px;
  }

  .max-width-2720px\@xl {
    max-width: 2720px;
  }

  .height-2740px\@xl {
    height: 2740px;
  }

  .min-height-2740px\@xl {
    min-height: 2740px;
  }

  .max-height-2740px\@xl {
    max-height: 2740px;
  }

  .width-2740px\@xl {
    width: 2740px;
  }

  .min-width-2740px\@xl {
    min-width: 2740px;
  }

  .max-width-2740px\@xl {
    max-width: 2740px;
  }

  .height-2760px\@xl {
    height: 2760px;
  }

  .min-height-2760px\@xl {
    min-height: 2760px;
  }

  .max-height-2760px\@xl {
    max-height: 2760px;
  }

  .width-2760px\@xl {
    width: 2760px;
  }

  .min-width-2760px\@xl {
    min-width: 2760px;
  }

  .max-width-2760px\@xl {
    max-width: 2760px;
  }

  .height-2780px\@xl {
    height: 2780px;
  }

  .min-height-2780px\@xl {
    min-height: 2780px;
  }

  .max-height-2780px\@xl {
    max-height: 2780px;
  }

  .width-2780px\@xl {
    width: 2780px;
  }

  .min-width-2780px\@xl {
    min-width: 2780px;
  }

  .max-width-2780px\@xl {
    max-width: 2780px;
  }

  .height-2800px\@xl {
    height: 2800px;
  }

  .min-height-2800px\@xl {
    min-height: 2800px;
  }

  .max-height-2800px\@xl {
    max-height: 2800px;
  }

  .width-2800px\@xl {
    width: 2800px;
  }

  .min-width-2800px\@xl {
    min-width: 2800px;
  }

  .max-width-2800px\@xl {
    max-width: 2800px;
  }

  .height-2820px\@xl {
    height: 2820px;
  }

  .min-height-2820px\@xl {
    min-height: 2820px;
  }

  .max-height-2820px\@xl {
    max-height: 2820px;
  }

  .width-2820px\@xl {
    width: 2820px;
  }

  .min-width-2820px\@xl {
    min-width: 2820px;
  }

  .max-width-2820px\@xl {
    max-width: 2820px;
  }

  .height-2840px\@xl {
    height: 2840px;
  }

  .min-height-2840px\@xl {
    min-height: 2840px;
  }

  .max-height-2840px\@xl {
    max-height: 2840px;
  }

  .width-2840px\@xl {
    width: 2840px;
  }

  .min-width-2840px\@xl {
    min-width: 2840px;
  }

  .max-width-2840px\@xl {
    max-width: 2840px;
  }

  .height-2860px\@xl {
    height: 2860px;
  }

  .min-height-2860px\@xl {
    min-height: 2860px;
  }

  .max-height-2860px\@xl {
    max-height: 2860px;
  }

  .width-2860px\@xl {
    width: 2860px;
  }

  .min-width-2860px\@xl {
    min-width: 2860px;
  }

  .max-width-2860px\@xl {
    max-width: 2860px;
  }

  .height-2880px\@xl {
    height: 2880px;
  }

  .min-height-2880px\@xl {
    min-height: 2880px;
  }

  .max-height-2880px\@xl {
    max-height: 2880px;
  }

  .width-2880px\@xl {
    width: 2880px;
  }

  .min-width-2880px\@xl {
    min-width: 2880px;
  }

  .max-width-2880px\@xl {
    max-width: 2880px;
  }

  .height-2900px\@xl {
    height: 2900px;
  }

  .min-height-2900px\@xl {
    min-height: 2900px;
  }

  .max-height-2900px\@xl {
    max-height: 2900px;
  }

  .width-2900px\@xl {
    width: 2900px;
  }

  .min-width-2900px\@xl {
    min-width: 2900px;
  }

  .max-width-2900px\@xl {
    max-width: 2900px;
  }

  .height-2920px\@xl {
    height: 2920px;
  }

  .min-height-2920px\@xl {
    min-height: 2920px;
  }

  .max-height-2920px\@xl {
    max-height: 2920px;
  }

  .width-2920px\@xl {
    width: 2920px;
  }

  .min-width-2920px\@xl {
    min-width: 2920px;
  }

  .max-width-2920px\@xl {
    max-width: 2920px;
  }

  .height-2940px\@xl {
    height: 2940px;
  }

  .min-height-2940px\@xl {
    min-height: 2940px;
  }

  .max-height-2940px\@xl {
    max-height: 2940px;
  }

  .width-2940px\@xl {
    width: 2940px;
  }

  .min-width-2940px\@xl {
    min-width: 2940px;
  }

  .max-width-2940px\@xl {
    max-width: 2940px;
  }

  .height-2960px\@xl {
    height: 2960px;
  }

  .min-height-2960px\@xl {
    min-height: 2960px;
  }

  .max-height-2960px\@xl {
    max-height: 2960px;
  }

  .width-2960px\@xl {
    width: 2960px;
  }

  .min-width-2960px\@xl {
    min-width: 2960px;
  }

  .max-width-2960px\@xl {
    max-width: 2960px;
  }

  .height-2980px\@xl {
    height: 2980px;
  }

  .min-height-2980px\@xl {
    min-height: 2980px;
  }

  .max-height-2980px\@xl {
    max-height: 2980px;
  }

  .width-2980px\@xl {
    width: 2980px;
  }

  .min-width-2980px\@xl {
    min-width: 2980px;
  }

  .max-width-2980px\@xl {
    max-width: 2980px;
  }

  .height-3000px\@xl {
    height: 3000px;
  }

  .min-height-3000px\@xl {
    min-height: 3000px;
  }

  .max-height-3000px\@xl {
    max-height: 3000px;
  }

  .width-3000px\@xl {
    width: 3000px;
  }

  .min-width-3000px\@xl {
    min-width: 3000px;
  }

  .max-width-3000px\@xl {
    max-width: 3000px;
  }

  .height-3020px\@xl {
    height: 3020px;
  }

  .min-height-3020px\@xl {
    min-height: 3020px;
  }

  .max-height-3020px\@xl {
    max-height: 3020px;
  }

  .width-3020px\@xl {
    width: 3020px;
  }

  .min-width-3020px\@xl {
    min-width: 3020px;
  }

  .max-width-3020px\@xl {
    max-width: 3020px;
  }

  .height-3040px\@xl {
    height: 3040px;
  }

  .min-height-3040px\@xl {
    min-height: 3040px;
  }

  .max-height-3040px\@xl {
    max-height: 3040px;
  }

  .width-3040px\@xl {
    width: 3040px;
  }

  .min-width-3040px\@xl {
    min-width: 3040px;
  }

  .max-width-3040px\@xl {
    max-width: 3040px;
  }

  .height-3060px\@xl {
    height: 3060px;
  }

  .min-height-3060px\@xl {
    min-height: 3060px;
  }

  .max-height-3060px\@xl {
    max-height: 3060px;
  }

  .width-3060px\@xl {
    width: 3060px;
  }

  .min-width-3060px\@xl {
    min-width: 3060px;
  }

  .max-width-3060px\@xl {
    max-width: 3060px;
  }

  .height-3080px\@xl {
    height: 3080px;
  }

  .min-height-3080px\@xl {
    min-height: 3080px;
  }

  .max-height-3080px\@xl {
    max-height: 3080px;
  }

  .width-3080px\@xl {
    width: 3080px;
  }

  .min-width-3080px\@xl {
    min-width: 3080px;
  }

  .max-width-3080px\@xl {
    max-width: 3080px;
  }

  .height-3100px\@xl {
    height: 3100px;
  }

  .min-height-3100px\@xl {
    min-height: 3100px;
  }

  .max-height-3100px\@xl {
    max-height: 3100px;
  }

  .width-3100px\@xl {
    width: 3100px;
  }

  .min-width-3100px\@xl {
    min-width: 3100px;
  }

  .max-width-3100px\@xl {
    max-width: 3100px;
  }

  .height-3120px\@xl {
    height: 3120px;
  }

  .min-height-3120px\@xl {
    min-height: 3120px;
  }

  .max-height-3120px\@xl {
    max-height: 3120px;
  }

  .width-3120px\@xl {
    width: 3120px;
  }

  .min-width-3120px\@xl {
    min-width: 3120px;
  }

  .max-width-3120px\@xl {
    max-width: 3120px;
  }

  .height-3140px\@xl {
    height: 3140px;
  }

  .min-height-3140px\@xl {
    min-height: 3140px;
  }

  .max-height-3140px\@xl {
    max-height: 3140px;
  }

  .width-3140px\@xl {
    width: 3140px;
  }

  .min-width-3140px\@xl {
    min-width: 3140px;
  }

  .max-width-3140px\@xl {
    max-width: 3140px;
  }

  .height-3160px\@xl {
    height: 3160px;
  }

  .min-height-3160px\@xl {
    min-height: 3160px;
  }

  .max-height-3160px\@xl {
    max-height: 3160px;
  }

  .width-3160px\@xl {
    width: 3160px;
  }

  .min-width-3160px\@xl {
    min-width: 3160px;
  }

  .max-width-3160px\@xl {
    max-width: 3160px;
  }

  .height-3180px\@xl {
    height: 3180px;
  }

  .min-height-3180px\@xl {
    min-height: 3180px;
  }

  .max-height-3180px\@xl {
    max-height: 3180px;
  }

  .width-3180px\@xl {
    width: 3180px;
  }

  .min-width-3180px\@xl {
    min-width: 3180px;
  }

  .max-width-3180px\@xl {
    max-width: 3180px;
  }

  .height-3200px\@xl {
    height: 3200px;
  }

  .min-height-3200px\@xl {
    min-height: 3200px;
  }

  .max-height-3200px\@xl {
    max-height: 3200px;
  }

  .width-3200px\@xl {
    width: 3200px;
  }

  .min-width-3200px\@xl {
    min-width: 3200px;
  }

  .max-width-3200px\@xl {
    max-width: 3200px;
  }

  .height-3220px\@xl {
    height: 3220px;
  }

  .min-height-3220px\@xl {
    min-height: 3220px;
  }

  .max-height-3220px\@xl {
    max-height: 3220px;
  }

  .width-3220px\@xl {
    width: 3220px;
  }

  .min-width-3220px\@xl {
    min-width: 3220px;
  }

  .max-width-3220px\@xl {
    max-width: 3220px;
  }

  .height-3240px\@xl {
    height: 3240px;
  }

  .min-height-3240px\@xl {
    min-height: 3240px;
  }

  .max-height-3240px\@xl {
    max-height: 3240px;
  }

  .width-3240px\@xl {
    width: 3240px;
  }

  .min-width-3240px\@xl {
    min-width: 3240px;
  }

  .max-width-3240px\@xl {
    max-width: 3240px;
  }

  .height-3260px\@xl {
    height: 3260px;
  }

  .min-height-3260px\@xl {
    min-height: 3260px;
  }

  .max-height-3260px\@xl {
    max-height: 3260px;
  }

  .width-3260px\@xl {
    width: 3260px;
  }

  .min-width-3260px\@xl {
    min-width: 3260px;
  }

  .max-width-3260px\@xl {
    max-width: 3260px;
  }

  .height-3280px\@xl {
    height: 3280px;
  }

  .min-height-3280px\@xl {
    min-height: 3280px;
  }

  .max-height-3280px\@xl {
    max-height: 3280px;
  }

  .width-3280px\@xl {
    width: 3280px;
  }

  .min-width-3280px\@xl {
    min-width: 3280px;
  }

  .max-width-3280px\@xl {
    max-width: 3280px;
  }

  .height-3300px\@xl {
    height: 3300px;
  }

  .min-height-3300px\@xl {
    min-height: 3300px;
  }

  .max-height-3300px\@xl {
    max-height: 3300px;
  }

  .width-3300px\@xl {
    width: 3300px;
  }

  .min-width-3300px\@xl {
    min-width: 3300px;
  }

  .max-width-3300px\@xl {
    max-width: 3300px;
  }

  .height-3320px\@xl {
    height: 3320px;
  }

  .min-height-3320px\@xl {
    min-height: 3320px;
  }

  .max-height-3320px\@xl {
    max-height: 3320px;
  }

  .width-3320px\@xl {
    width: 3320px;
  }

  .min-width-3320px\@xl {
    min-width: 3320px;
  }

  .max-width-3320px\@xl {
    max-width: 3320px;
  }

  .height-3340px\@xl {
    height: 3340px;
  }

  .min-height-3340px\@xl {
    min-height: 3340px;
  }

  .max-height-3340px\@xl {
    max-height: 3340px;
  }

  .width-3340px\@xl {
    width: 3340px;
  }

  .min-width-3340px\@xl {
    min-width: 3340px;
  }

  .max-width-3340px\@xl {
    max-width: 3340px;
  }

  .height-3360px\@xl {
    height: 3360px;
  }

  .min-height-3360px\@xl {
    min-height: 3360px;
  }

  .max-height-3360px\@xl {
    max-height: 3360px;
  }

  .width-3360px\@xl {
    width: 3360px;
  }

  .min-width-3360px\@xl {
    min-width: 3360px;
  }

  .max-width-3360px\@xl {
    max-width: 3360px;
  }

  .height-3380px\@xl {
    height: 3380px;
  }

  .min-height-3380px\@xl {
    min-height: 3380px;
  }

  .max-height-3380px\@xl {
    max-height: 3380px;
  }

  .width-3380px\@xl {
    width: 3380px;
  }

  .min-width-3380px\@xl {
    min-width: 3380px;
  }

  .max-width-3380px\@xl {
    max-width: 3380px;
  }

  .height-3400px\@xl {
    height: 3400px;
  }

  .min-height-3400px\@xl {
    min-height: 3400px;
  }

  .max-height-3400px\@xl {
    max-height: 3400px;
  }

  .width-3400px\@xl {
    width: 3400px;
  }

  .min-width-3400px\@xl {
    min-width: 3400px;
  }

  .max-width-3400px\@xl {
    max-width: 3400px;
  }

  .height-3420px\@xl {
    height: 3420px;
  }

  .min-height-3420px\@xl {
    min-height: 3420px;
  }

  .max-height-3420px\@xl {
    max-height: 3420px;
  }

  .width-3420px\@xl {
    width: 3420px;
  }

  .min-width-3420px\@xl {
    min-width: 3420px;
  }

  .max-width-3420px\@xl {
    max-width: 3420px;
  }

  .height-3440px\@xl {
    height: 3440px;
  }

  .min-height-3440px\@xl {
    min-height: 3440px;
  }

  .max-height-3440px\@xl {
    max-height: 3440px;
  }

  .width-3440px\@xl {
    width: 3440px;
  }

  .min-width-3440px\@xl {
    min-width: 3440px;
  }

  .max-width-3440px\@xl {
    max-width: 3440px;
  }

  .height-3460px\@xl {
    height: 3460px;
  }

  .min-height-3460px\@xl {
    min-height: 3460px;
  }

  .max-height-3460px\@xl {
    max-height: 3460px;
  }

  .width-3460px\@xl {
    width: 3460px;
  }

  .min-width-3460px\@xl {
    min-width: 3460px;
  }

  .max-width-3460px\@xl {
    max-width: 3460px;
  }

  .height-3480px\@xl {
    height: 3480px;
  }

  .min-height-3480px\@xl {
    min-height: 3480px;
  }

  .max-height-3480px\@xl {
    max-height: 3480px;
  }

  .width-3480px\@xl {
    width: 3480px;
  }

  .min-width-3480px\@xl {
    min-width: 3480px;
  }

  .max-width-3480px\@xl {
    max-width: 3480px;
  }

  .height-3500px\@xl {
    height: 3500px;
  }

  .min-height-3500px\@xl {
    min-height: 3500px;
  }

  .max-height-3500px\@xl {
    max-height: 3500px;
  }

  .width-3500px\@xl {
    width: 3500px;
  }

  .min-width-3500px\@xl {
    min-width: 3500px;
  }

  .max-width-3500px\@xl {
    max-width: 3500px;
  }

  .height-3520px\@xl {
    height: 3520px;
  }

  .min-height-3520px\@xl {
    min-height: 3520px;
  }

  .max-height-3520px\@xl {
    max-height: 3520px;
  }

  .width-3520px\@xl {
    width: 3520px;
  }

  .min-width-3520px\@xl {
    min-width: 3520px;
  }

  .max-width-3520px\@xl {
    max-width: 3520px;
  }

  .height-3540px\@xl {
    height: 3540px;
  }

  .min-height-3540px\@xl {
    min-height: 3540px;
  }

  .max-height-3540px\@xl {
    max-height: 3540px;
  }

  .width-3540px\@xl {
    width: 3540px;
  }

  .min-width-3540px\@xl {
    min-width: 3540px;
  }

  .max-width-3540px\@xl {
    max-width: 3540px;
  }

  .height-3560px\@xl {
    height: 3560px;
  }

  .min-height-3560px\@xl {
    min-height: 3560px;
  }

  .max-height-3560px\@xl {
    max-height: 3560px;
  }

  .width-3560px\@xl {
    width: 3560px;
  }

  .min-width-3560px\@xl {
    min-width: 3560px;
  }

  .max-width-3560px\@xl {
    max-width: 3560px;
  }

  .height-3580px\@xl {
    height: 3580px;
  }

  .min-height-3580px\@xl {
    min-height: 3580px;
  }

  .max-height-3580px\@xl {
    max-height: 3580px;
  }

  .width-3580px\@xl {
    width: 3580px;
  }

  .min-width-3580px\@xl {
    min-width: 3580px;
  }

  .max-width-3580px\@xl {
    max-width: 3580px;
  }

  .height-3600px\@xl {
    height: 3600px;
  }

  .min-height-3600px\@xl {
    min-height: 3600px;
  }

  .max-height-3600px\@xl {
    max-height: 3600px;
  }

  .width-3600px\@xl {
    width: 3600px;
  }

  .min-width-3600px\@xl {
    min-width: 3600px;
  }

  .max-width-3600px\@xl {
    max-width: 3600px;
  }

  .height-3620px\@xl {
    height: 3620px;
  }

  .min-height-3620px\@xl {
    min-height: 3620px;
  }

  .max-height-3620px\@xl {
    max-height: 3620px;
  }

  .width-3620px\@xl {
    width: 3620px;
  }

  .min-width-3620px\@xl {
    min-width: 3620px;
  }

  .max-width-3620px\@xl {
    max-width: 3620px;
  }

  .height-3640px\@xl {
    height: 3640px;
  }

  .min-height-3640px\@xl {
    min-height: 3640px;
  }

  .max-height-3640px\@xl {
    max-height: 3640px;
  }

  .width-3640px\@xl {
    width: 3640px;
  }

  .min-width-3640px\@xl {
    min-width: 3640px;
  }

  .max-width-3640px\@xl {
    max-width: 3640px;
  }

  .height-3660px\@xl {
    height: 3660px;
  }

  .min-height-3660px\@xl {
    min-height: 3660px;
  }

  .max-height-3660px\@xl {
    max-height: 3660px;
  }

  .width-3660px\@xl {
    width: 3660px;
  }

  .min-width-3660px\@xl {
    min-width: 3660px;
  }

  .max-width-3660px\@xl {
    max-width: 3660px;
  }

  .height-3680px\@xl {
    height: 3680px;
  }

  .min-height-3680px\@xl {
    min-height: 3680px;
  }

  .max-height-3680px\@xl {
    max-height: 3680px;
  }

  .width-3680px\@xl {
    width: 3680px;
  }

  .min-width-3680px\@xl {
    min-width: 3680px;
  }

  .max-width-3680px\@xl {
    max-width: 3680px;
  }

  .height-3700px\@xl {
    height: 3700px;
  }

  .min-height-3700px\@xl {
    min-height: 3700px;
  }

  .max-height-3700px\@xl {
    max-height: 3700px;
  }

  .width-3700px\@xl {
    width: 3700px;
  }

  .min-width-3700px\@xl {
    min-width: 3700px;
  }

  .max-width-3700px\@xl {
    max-width: 3700px;
  }

  .height-3720px\@xl {
    height: 3720px;
  }

  .min-height-3720px\@xl {
    min-height: 3720px;
  }

  .max-height-3720px\@xl {
    max-height: 3720px;
  }

  .width-3720px\@xl {
    width: 3720px;
  }

  .min-width-3720px\@xl {
    min-width: 3720px;
  }

  .max-width-3720px\@xl {
    max-width: 3720px;
  }

  .height-3740px\@xl {
    height: 3740px;
  }

  .min-height-3740px\@xl {
    min-height: 3740px;
  }

  .max-height-3740px\@xl {
    max-height: 3740px;
  }

  .width-3740px\@xl {
    width: 3740px;
  }

  .min-width-3740px\@xl {
    min-width: 3740px;
  }

  .max-width-3740px\@xl {
    max-width: 3740px;
  }

  .height-3760px\@xl {
    height: 3760px;
  }

  .min-height-3760px\@xl {
    min-height: 3760px;
  }

  .max-height-3760px\@xl {
    max-height: 3760px;
  }

  .width-3760px\@xl {
    width: 3760px;
  }

  .min-width-3760px\@xl {
    min-width: 3760px;
  }

  .max-width-3760px\@xl {
    max-width: 3760px;
  }

  .height-3780px\@xl {
    height: 3780px;
  }

  .min-height-3780px\@xl {
    min-height: 3780px;
  }

  .max-height-3780px\@xl {
    max-height: 3780px;
  }

  .width-3780px\@xl {
    width: 3780px;
  }

  .min-width-3780px\@xl {
    min-width: 3780px;
  }

  .max-width-3780px\@xl {
    max-width: 3780px;
  }

  .height-3800px\@xl {
    height: 3800px;
  }

  .min-height-3800px\@xl {
    min-height: 3800px;
  }

  .max-height-3800px\@xl {
    max-height: 3800px;
  }

  .width-3800px\@xl {
    width: 3800px;
  }

  .min-width-3800px\@xl {
    min-width: 3800px;
  }

  .max-width-3800px\@xl {
    max-width: 3800px;
  }

  .height-3820px\@xl {
    height: 3820px;
  }

  .min-height-3820px\@xl {
    min-height: 3820px;
  }

  .max-height-3820px\@xl {
    max-height: 3820px;
  }

  .width-3820px\@xl {
    width: 3820px;
  }

  .min-width-3820px\@xl {
    min-width: 3820px;
  }

  .max-width-3820px\@xl {
    max-width: 3820px;
  }

  .height-3840px\@xl {
    height: 3840px;
  }

  .min-height-3840px\@xl {
    min-height: 3840px;
  }

  .max-height-3840px\@xl {
    max-height: 3840px;
  }

  .width-3840px\@xl {
    width: 3840px;
  }

  .min-width-3840px\@xl {
    min-width: 3840px;
  }

  .max-width-3840px\@xl {
    max-width: 3840px;
  }

  .height-3860px\@xl {
    height: 3860px;
  }

  .min-height-3860px\@xl {
    min-height: 3860px;
  }

  .max-height-3860px\@xl {
    max-height: 3860px;
  }

  .width-3860px\@xl {
    width: 3860px;
  }

  .min-width-3860px\@xl {
    min-width: 3860px;
  }

  .max-width-3860px\@xl {
    max-width: 3860px;
  }

  .height-3880px\@xl {
    height: 3880px;
  }

  .min-height-3880px\@xl {
    min-height: 3880px;
  }

  .max-height-3880px\@xl {
    max-height: 3880px;
  }

  .width-3880px\@xl {
    width: 3880px;
  }

  .min-width-3880px\@xl {
    min-width: 3880px;
  }

  .max-width-3880px\@xl {
    max-width: 3880px;
  }

  .height-3900px\@xl {
    height: 3900px;
  }

  .min-height-3900px\@xl {
    min-height: 3900px;
  }

  .max-height-3900px\@xl {
    max-height: 3900px;
  }

  .width-3900px\@xl {
    width: 3900px;
  }

  .min-width-3900px\@xl {
    min-width: 3900px;
  }

  .max-width-3900px\@xl {
    max-width: 3900px;
  }

  .height-3920px\@xl {
    height: 3920px;
  }

  .min-height-3920px\@xl {
    min-height: 3920px;
  }

  .max-height-3920px\@xl {
    max-height: 3920px;
  }

  .width-3920px\@xl {
    width: 3920px;
  }

  .min-width-3920px\@xl {
    min-width: 3920px;
  }

  .max-width-3920px\@xl {
    max-width: 3920px;
  }

  .height-3940px\@xl {
    height: 3940px;
  }

  .min-height-3940px\@xl {
    min-height: 3940px;
  }

  .max-height-3940px\@xl {
    max-height: 3940px;
  }

  .width-3940px\@xl {
    width: 3940px;
  }

  .min-width-3940px\@xl {
    min-width: 3940px;
  }

  .max-width-3940px\@xl {
    max-width: 3940px;
  }

  .height-3960px\@xl {
    height: 3960px;
  }

  .min-height-3960px\@xl {
    min-height: 3960px;
  }

  .max-height-3960px\@xl {
    max-height: 3960px;
  }

  .width-3960px\@xl {
    width: 3960px;
  }

  .min-width-3960px\@xl {
    min-width: 3960px;
  }

  .max-width-3960px\@xl {
    max-width: 3960px;
  }

  .height-3980px\@xl {
    height: 3980px;
  }

  .min-height-3980px\@xl {
    min-height: 3980px;
  }

  .max-height-3980px\@xl {
    max-height: 3980px;
  }

  .width-3980px\@xl {
    width: 3980px;
  }

  .min-width-3980px\@xl {
    min-width: 3980px;
  }

  .max-width-3980px\@xl {
    max-width: 3980px;
  }

  .height-4000px\@xl {
    height: 4000px;
  }

  .min-height-4000px\@xl {
    min-height: 4000px;
  }

  .max-height-4000px\@xl {
    max-height: 4000px;
  }

  .width-4000px\@xl {
    width: 4000px;
  }

  .min-width-4000px\@xl {
    min-width: 4000px;
  }

  .max-width-4000px\@xl {
    max-width: 4000px;
  }

  .text-25\%\@xl {
    font-size: 25%;
  }

  .text-30\%\@xl {
    font-size: 30%;
  }

  .text-35\%\@xl {
    font-size: 35%;
  }

  .text-40\%\@xl {
    font-size: 40%;
  }

  .text-45\%\@xl {
    font-size: 45%;
  }

  .text-50\%\@xl {
    font-size: 50%;
  }

  .text-55\%\@xl {
    font-size: 55%;
  }

  .text-60\%\@xl {
    font-size: 60%;
  }

  .text-65\%\@xl {
    font-size: 65%;
  }

  .text-70\%\@xl {
    font-size: 70%;
  }

  .text-75\%\@xl {
    font-size: 75%;
  }

  .text-80\%\@xl {
    font-size: 80%;
  }

  .text-85\%\@xl {
    font-size: 85%;
  }

  .text-90\%\@xl {
    font-size: 90%;
  }

  .text-95\%\@xl {
    font-size: 95%;
  }

  .text-100\%\@xl {
    font-size: 100%;
  }

  .text-105\%\@xl {
    font-size: 105%;
  }

  .text-110\%\@xl {
    font-size: 110%;
  }

  .text-115\%\@xl {
    font-size: 115%;
  }

  .text-120\%\@xl {
    font-size: 120%;
  }

  .text-125\%\@xl {
    font-size: 125%;
  }

  .text-130\%\@xl {
    font-size: 130%;
  }

  .text-135\%\@xl {
    font-size: 135%;
  }

  .text-140\%\@xl {
    font-size: 140%;
  }

  .text-145\%\@xl {
    font-size: 145%;
  }

  .text-150\%\@xl {
    font-size: 150%;
  }

  .text-155\%\@xl {
    font-size: 155%;
  }

  .text-160\%\@xl {
    font-size: 160%;
  }

  .text-165\%\@xl {
    font-size: 165%;
  }

  .text-170\%\@xl {
    font-size: 170%;
  }

  .text-175\%\@xl {
    font-size: 175%;
  }

  .text-180\%\@xl {
    font-size: 180%;
  }

  .text-185\%\@xl {
    font-size: 185%;
  }

  .text-190\%\@xl {
    font-size: 190%;
  }

  .text-195\%\@xl {
    font-size: 195%;
  }

  .text-200\%\@xl {
    font-size: 200%;
  }

  .text-offset-5\%\@xl {
    width: calc(100% + 5%);
  }

  .text-offset-10\%\@xl {
    width: calc(100% + 10%);
  }

  .text-offset-15\%\@xl {
    width: calc(100% + 15%);
  }

  .text-offset-20\%\@xl {
    width: calc(100% + 20%);
  }

  .text-offset-25\%\@xl {
    width: calc(100% + 25%);
  }

  .text-offset-30\%\@xl {
    width: calc(100% + 30%);
  }

  .text-offset-35\%\@xl {
    width: calc(100% + 35%);
  }

  .text-offset-40\%\@xl {
    width: calc(100% + 40%);
  }

  .text-offset-45\%\@xl {
    width: calc(100% + 45%);
  }

  .text-offset-50\%\@xl {
    width: calc(100% + 50%);
  }

  .text-offset-55\%\@xl {
    width: calc(100% + 55%);
  }

  .text-offset-60\%\@xl {
    width: calc(100% + 60%);
  }

  .text-offset-65\%\@xl {
    width: calc(100% + 65%);
  }

  .text-offset-70\%\@xl {
    width: calc(100% + 70%);
  }

  .text-offset-75\%\@xl {
    width: calc(100% + 75%);
  }

  .text-offset-80\%\@xl {
    width: calc(100% + 80%);
  }

  .text-offset-85\%\@xl {
    width: calc(100% + 85%);
  }

  .text-offset-90\%\@xl {
    width: calc(100% + 90%);
  }

  .text-offset-95\%\@xl {
    width: calc(100% + 95%);
  }

  .text-offset-100\%\@xl {
    width: calc(100% + 100%);
  }
}
/*! purgecss start ignore */
/* -------------------------------- 

File#: _1_3d-text-block
Title: 3D Text Block
Descr: A text block that rotates on hover
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --td-text-block-padding-x: var(--space-xxs);
  --td-text-block-padding-y: var(--space-xxs);
  --td-text-block-transition-duration: .5s;
}

.td-text-block {
  position: relative;
  z-index: 1;
  display: inline-flex;
  line-height: 1;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  perspective: 1000px;
}
.td-text-block:focus {
  outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  outline-offset: 2px;
}

.td-text-block__wrapper {
  pointer-events: none;
  display: inline-block;
  width: 100%;
  transform-origin: 50% 50% calc(-0.5em - var(--td-text-block-padding-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform var(--td-text-block-transition-duration) var(--ease-in-out);
}
.td-text-block:hover .td-text-block__wrapper {
  transform: rotateX(90deg);
}

.td-text-block__front-text,
.td-text-block__final-text {
  display: inline-flex;
  white-space: nowrap;
  width: 100%;
  padding: var(--td-text-block-padding-y) var(--td-text-block-padding-x);
  backface-visibility: hidden;
}

.td-text-block__front-text {
  position: relative;
  z-index: 2;
  color: var(--color-bg);
  background-color: var(--color-contrast-higher);
}

.td-text-block__final-text {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  color: var(--color-white);
  background-color: var(--color-primary);
  transform-origin: center top;
  transform: rotateX(-90deg);
}

.td-text-block--split-2 .td-text-block__wrapper:nth-child(1) .td-text-block__front-text,
.td-text-block--split-2 .td-text-block__wrapper:nth-child(1) .td-text-block__final-text {
  clip-path: inset(0% 50% 0% 0%);
}
.td-text-block--split-2 .td-text-block__wrapper:nth-child(2) {
  position: absolute;
  left: 0;
  transition-delay: 0.1s;
}
.td-text-block--split-2 .td-text-block__wrapper:nth-child(2) .td-text-block__front-text,
.td-text-block--split-2 .td-text-block__wrapper:nth-child(2) .td-text-block__final-text {
  clip-path: inset(0% 0% 0% 50%);
}

.td-text-block--split-3 .td-text-block__wrapper:nth-child(1) .td-text-block__front-text,
.td-text-block--split-3 .td-text-block__wrapper:nth-child(1) .td-text-block__final-text {
  clip-path: inset(0% calc(100%/3*2) 0% 0%);
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(2),
.td-text-block--split-3 .td-text-block__wrapper:nth-child(3) {
  position: absolute;
  left: 0;
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(2) {
  transition-delay: 0.1s;
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(2) .td-text-block__front-text,
.td-text-block--split-3 .td-text-block__wrapper:nth-child(2) .td-text-block__final-text {
  clip-path: inset(0% calc(100%/3) 0% calc(100%/3));
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(3) {
  transition-delay: 0.2s;
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(3) .td-text-block__front-text,
.td-text-block--split-3 .td-text-block__wrapper:nth-child(3) .td-text-block__final-text {
  clip-path: inset(0% 0% 0% calc(100%/3*2));
}

.td-text-block--split-4 .td-text-block__wrapper:nth-child(1) .td-text-block__front-text,
.td-text-block--split-4 .td-text-block__wrapper:nth-child(1) .td-text-block__final-text {
  clip-path: inset(0% calc(100%/4*3) 0% 0%);
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(2),
.td-text-block--split-4 .td-text-block__wrapper:nth-child(3),
.td-text-block--split-4 .td-text-block__wrapper:nth-child(4) {
  position: absolute;
  left: 0;
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(2) {
  transition-delay: 0.1s;
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(2) .td-text-block__front-text,
.td-text-block--split-4 .td-text-block__wrapper:nth-child(2) .td-text-block__final-text {
  clip-path: inset(0% calc(100%/4*2) 0% calc(100%/4));
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(3) {
  transition-delay: 0.2s;
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(3) .td-text-block__front-text,
.td-text-block--split-4 .td-text-block__wrapper:nth-child(3) .td-text-block__final-text {
  clip-path: inset(0% calc(100%/4) 0% calc(100%/4*2));
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(4) {
  transition-delay: 0.3s;
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(4) .td-text-block__front-text,
.td-text-block--split-4 .td-text-block__wrapper:nth-child(4) .td-text-block__final-text {
  clip-path: inset(0% 0% 0% calc(100%/4*3));
}

/* -------------------------------- 

File#: _1_accordion
Title: Accordion
Descr: Create stacked sections of content and allow the user to expand/collapse them
Usage: codyhouse.co/license

-------------------------------- */
:root {
  /* general */
  --accordion-border-width: 1px;
  /* icon */
  --accordion-icon-size: 20px;
  --accordion-icon-stroke-width: 2px;
}

.accordion__item {
  border-style: solid;
  border-color: var(--color-contrast-lower);
  border-bottom-width: var(--accordion-border-width);
}
.accordion__item:first-child {
  border-top-width: var(--accordion-border-width);
}

.accordion__header {
  /* button */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.accordion__header .icon {
  --size: var(--accordion-icon-size);
}
.accordion__header .icon .icon__group {
  stroke-width: var(--accordion-icon-stroke-width);
}

.accordion__icon-arrow .icon__group,
.accordion__icon-arrow-v2 .icon__group,
.accordion__icon-plus .icon__group {
  will-change: transform;
  transform-origin: 50% 50%;
}

.accordion__icon-arrow .icon__group > * {
  transform-origin: 10px 14px;
}

.accordion__icon-arrow-v2 .icon__group > * {
  transform-origin: 50% 50%;
  stroke-dasharray: 20;
  transform: translateY(4px);
}
.accordion__icon-arrow-v2 .icon__group > *:first-child {
  stroke-dashoffset: 10.15;
}
.accordion__icon-arrow-v2 .icon__group > *:last-child {
  stroke-dashoffset: 10.15;
}

.accordion__icon-plus .icon__group {
  transform: rotate(-90deg);
}
.accordion__icon-plus .icon__group > * {
  transform-origin: 50% 50%;
}
.accordion__icon-plus .icon__group > *:first-child {
  transform: rotate(-90deg);
}

.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group {
  /* animated arrow icon */
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group > *:first-child {
  transform: translateY(-8px) rotate(-90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group > *:last-child {
  transform: translateY(-8px) rotate(90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow-v2 .icon__group {
  /* animated arrow icon v2 */
  transform: rotate(-90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow-v2 .icon__group > *:first-child, .accordion__item--is-open > .accordion__header > .accordion__icon-arrow-v2 .icon__group *:last-child {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-plus .icon__group {
  /* animated plus icon */
  transform: rotate(0);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-plus .icon__group > *:first-child {
  transform: rotate(0);
}

.accordion__panel {
  display: none;
  will-change: height;
  transform: translateZ(0px);
}

.accordion__item--is-open > .accordion__panel {
  display: block;
}

/* animations */
.accordion[data-animation=on] .accordion__item--is-open .accordion__panel > * {
  animation: accordion-entry-animation 0.4s var(--ease-out);
}
.accordion[data-animation=on] .accordion__icon-arrow .icon__group,
.accordion[data-animation=on] .accordion__icon-arrow-v2 .icon__group,
.accordion[data-animation=on] .accordion__icon-plus .icon__group {
  transition: transform 0.3s var(--ease-out);
}
.accordion[data-animation=on] .accordion__icon-arrow .icon__group > *,
.accordion[data-animation=on] .accordion__icon-arrow-v2 .icon__group > *,
.accordion[data-animation=on] .accordion__icon-plus .icon__group > * {
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: var(--ease-out);
}

@keyframes accordion-entry-animation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* -------------------------------- 

File#: _1_anim-menu-btn
Title: Animated Menu Button
Descr: A menu button w/ a morphing icon
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --anim-menu-btn-size: 48px;
  --anim-menu-btn-transition-duration: .2s;
  --anim-menu-btn-icon-size: 32px;
  --anim-menu-btn-icon-stroke: 2px;
}

.anim-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--anim-menu-btn-size);
  height: var(--anim-menu-btn-size);
}

.anim-menu-btn__icon {
  position: relative;
  display: block;
  font-size: var(--anim-menu-btn-icon-size);
  width: 1em;
  height: var(--anim-menu-btn-icon-stroke);
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  transform: scale(1);
}
.anim-menu-btn__icon::before, .anim-menu-btn__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: inherit;
  border-radius: inherit;
}

.anim-menu-btn__icon--close {
  background-size: 100% 100%;
  will-change: transform, background-size;
  transition-property: transform, background-size;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn:active .anim-menu-btn__icon--close {
  transform: scale(0.9);
}
.anim-menu-btn__icon--close::before, .anim-menu-btn__icon--close::after {
  will-change: inherit;
  transition: inherit;
}
.anim-menu-btn__icon--close::before {
  transform: translateY(-0.25em) rotate(0);
}
.anim-menu-btn__icon--close::after {
  transform: translateY(0.25em) rotate(0);
}

.anim-menu-btn--state-b .anim-menu-btn__icon--close {
  background-size: 0% 100%;
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::before {
  transform: translateY(0) rotate(45deg);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::after {
  transform: translateY(0) rotate(-45deg);
}

.anim-menu-btn__icon--arrow-left,
.anim-menu-btn__icon--arrow-right,
.anim-menu-btn__icon--arrow-up,
.anim-menu-btn__icon--arrow-down {
  border-radius: 50em;
  will-change: transform;
  transition-property: transform;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn:active .anim-menu-btn__icon--arrow-left,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-right,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-up,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-down {
  transform: scale(0.9);
}
.anim-menu-btn__icon--arrow-left::before, .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn__icon--arrow-down::before,
.anim-menu-btn__icon--arrow-down::after {
  transform-origin: calc(var(--anim-menu-btn-icon-stroke)/2) 50%;
  will-change: transform, width;
  transition-property: transform, width;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn__icon--arrow-left::before,
.anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn__icon--arrow-down::before {
  transform: translateY(-0.25em) rotate(0);
}
.anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn__icon--arrow-down::after {
  transform: translateY(0.25em) rotate(0);
}

.anim-menu-btn__icon--arrow-right {
  transform: rotate(180deg);
}
.anim-menu-btn:active .anim-menu-btn__icon--arrow-right {
  transform: rotate(180deg) scale(0.9);
}

.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::before, .anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::after {
  width: 50%;
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::before {
  transform: translateY(0) rotate(-45deg);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::after {
  transform: translateY(0) rotate(45deg);
}
.anim-menu-btn--state-b:active .anim-menu-btn__icon--arrow-up {
  transform: rotate(90deg) scale(0.9);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up {
  transform: rotate(90deg);
}
.anim-menu-btn--state-b:active .anim-menu-btn__icon--arrow-down {
  transform: rotate(-90deg) scale(0.9);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down {
  transform: rotate(-90deg);
}

/* -------------------------------- 

File#: _1_animated-headline
Title: Animated Headline
Descr: A collection of word replacement effects
Usage: codyhouse.co/license

-------------------------------- */
.text-anim__wrapper {
  position: relative;
  display: inline-block;
}

.text-anim__word {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}

.text-anim__word--in {
  position: relative;
  z-index: 2;
}

.text-anim--rotate {
  --text-anim-duration: 0.85s;
  --text-anim-pause: 2.5s;
}
.text-anim--rotate .text-anim__wrapper {
  perspective: 300px;
}
.text-anim--rotate .text-anim__word {
  opacity: 0;
  backface-visibility: hidden;
  transform-origin: 50% 100%;
  transform: rotateX(-180deg);
  transition: opacity calc(var(--text-anim-duration) / 3) var(--ease-out), transform var(--text-anim-duration) var(--ease-out-back);
}
.text-anim--rotate .text-anim__word--in {
  opacity: 1;
  transform: rotateX(0deg);
}
.text-anim--rotate .text-anim__word--out {
  opacity: 0;
  transform: rotateX(180deg);
  transition: opacity calc(var(--text-anim-duration) / 6) var(--ease-out), transform var(--text-anim-duration) var(--ease-out-back);
}

.text-anim--loader {
  --text-anim-duration: 2.5s;
  --text-anim-pause: 0s;
}
.text-anim--loader .text-anim__word {
  color: transparent;
  transition: color 0.2s;
}
.text-anim--loader .text-anim__word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transform-origin: left center;
  transform: translateY(100%) scaleX(0);
  transition: transform var(--text-anim-duration) var(--ease-out);
}
.text-anim--loader .text-anim__word--in {
  color: currentColor;
}
.text-anim--loader .text-anim__word--in::after {
  transform: translateY(100%) scaleX(1);
}
.text-anim--loader .text-anim__word--out {
  color: transparent;
}
.text-anim--loader .text-anim__word--out::after {
  transition: none;
  transform: translateY(100%) scaleX(0);
}

.text-anim--slide {
  --text-anim-duration: 0.5s;
  --text-anim-pause: 2.5s;
}
.text-anim--slide .text-anim__wrapper {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 0.1em 0;
}
.text-anim--slide .text-anim__word {
  height: 100%;
  transform: translateY(-100%);
}
.text-anim--slide .text-anim__word--in,
.text-anim--slide .text-anim__word--out {
  animation-duration: var(--text-anim-duration);
  animation-timing-function: var(--ease-out-back);
}
.text-anim--slide .text-anim__word--in {
  animation-name: text-anim-slide-in;
  animation-fill-mode: forwards;
}
.text-anim--slide .text-anim__word--out {
  animation-name: text-anim-slide-out;
}

@keyframes text-anim-slide-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes text-anim-slide-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
.text-anim--zoom {
  --text-anim-duration: 0.85s;
  --text-anim-pause: 2.5s;
}
.text-anim--zoom .text-anim__wrapper {
  perspective: 300px;
}
.text-anim--zoom .text-anim__word {
  opacity: 0;
  transform: translateZ(100px);
  transition: opacity var(--text-anim-duration), transform var(--text-anim-duration) var(--ease-out);
}
.text-anim--zoom .text-anim__word--in {
  opacity: 1;
  transform: translateZ(0);
}
.text-anim--zoom .text-anim__word--out {
  opacity: 0;
  transform: translateZ(-100px);
}

.text-anim--push {
  --text-anim-duration: 0.65s;
  --text-anim-pause: 2.5s;
}
.text-anim--push .text-anim__word {
  opacity: 0;
  transform: translateX(-100px);
  transition: none;
}
.text-anim--push .text-anim__word--in,
.text-anim--push .text-anim__word--out {
  transition: opacity var(--text-anim-duration), transform var(--text-anim-duration) var(--ease-out-back);
}
.text-anim--push .text-anim__word--in {
  opacity: 1;
  transform: translateX(0);
}
.text-anim--push .text-anim__word--out {
  opacity: 0;
  transform: translateX(100px);
}

.text-anim--clip {
  --text-anim-duration: 0.7s;
  --text-anim-pause: 2s;
  --text-anim-border-width: 2px;
}
.text-anim--clip .text-anim__wrapper {
  overflow: hidden;
  vertical-align: top;
}
.text-anim--clip .text-anim__wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 0.7em);
  height: 1.4em;
  width: var(--text-anim-border-width);
  background-color: var(--color-accent);
}
.text-anim--clip .text-anim__wrapper--pulse::after {
  animation: text-anim-pulse 0.8s infinite;
}
.text-anim--clip .text-anim__word {
  opacity: 0;
  padding-right: var(--text-anim-border-width);
}
.text-anim--clip .text-anim__word--in {
  opacity: 1;
}

@keyframes text-anim-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* -------------------------------- 

File#: _1_author
Title: Author
Descr: Author introduction card
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --author-img-size: 4em;
}

.author {
  display: grid;
  grid-template-columns: var(--author-img-size) 1fr;
  grid-gap: var(--space-sm);
}

.author__img-wrapper {
  display: inline-block;
  border-radius: 50%;
  width: var(--author-img-size);
  height: var(--author-img-size);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-back);
}
.author__img-wrapper:hover {
  transform: scale(1.1);
}
.author__img-wrapper img {
  display: block;
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.author__content a {
  color: inherit;
}
.author__content a:hover {
  color: var(--color-primary);
}

.author--meta {
  --author-img-size: 3em;
  align-items: center;
  grid-gap: var(--space-xs);
}

.author--minimal {
  --author-img-size: 2.4em;
  align-items: center;
  grid-gap: var(--space-xxs);
}

.author--featured {
  --author-img-size: 6em;
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
}
.author--featured .author__img-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.author__social {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  display: flex;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  border-radius: 50%;
  transition: 0.2s;
}
.author__social .icon {
  --size: 16px;
  display: block;
  margin: auto;
  color: var(--color-contrast-higher);
  transition: color 0.2s;
}
.author__social:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}
.author__social:hover .icon {
  color: var(--color-primary);
}

/* -------------------------------- 

File#: _1_back-to-top
Title: Back to top
Descr: Component that triggers scroll-y to the top of the page
Usage: codyhouse.co/license

-------------------------------- */
.back-to-top {
  --size: 50px;
  width: var(--size);
  height: var(--size);
  display: flex;
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: var(--z-index-fixed-element, 10);
  border-radius: 50%;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.9);
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}
.back-to-top:hover {
  background-color: var(--color-contrast-higher);
}
.back-to-top .icon {
  --size: 20px;
  display: block;
  margin: auto;
  color: var(--color-bg);
}

.back-to-top--is-visible {
  visibility: visible;
  opacity: 1;
}

/* -------------------------------- 

File#: _1_background-decoration-v2
Title: Background Decoration v2
Descr: A collection of background effects
Usage: codyhouse.co/license

-------------------------------- */
.bg-decoration-v2 {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-decoration-v2__svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 134%;
  min-width: 1280px;
  max-width: 1920px;
  height: auto;
}

/* -------------------------------- 

File#: _1_badge
Title: Badge
Descr: A small label containing a text string
Usage: codyhouse.co/license

-------------------------------- */
.badge {
  /* reset - in case the class is applied to a <button> */
  border: 0;
  color: inherit;
  line-height: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-md);
  background-color: var(--color-contrast-lower);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 👇 you can ovveride this padding using the padding utility classes */
}
.badge:not([class^=padding-]):not([class*=" padding-"]) {
  padding: var(--space-xxxs) var(--space-xxs);
}

.badge--outline {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px var(--color-contrast-lower);
}

.badge--contrast-higher {
  background-color: var(--color-contrast-higher);
  color: var(--color-bg);
}

.badge--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.badge--primary-light {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  color: var(--color-contrast-higher);
}

.badge--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.badge--accent-light {
  background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2);
  color: var(--color-contrast-higher);
}

.badge--error {
  background-color: var(--color-error);
  color: var(--color-white);
}

.badge--error-light {
  background-color: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.2);
  color: var(--color-contrast-higher);
}

.badge--success {
  background-color: var(--color-success);
  color: var(--color-white);
}

.badge--success-light {
  background-color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), 0.2);
  color: var(--color-contrast-higher);
}

.badge--warning {
  background-color: var(--color-warning);
  color: var(--color-white);
}

.badge--warning-light {
  background-color: hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), 0.2);
  color: var(--color-contrast-higher);
}

/* -------------------------------- 

File#: _1_banner
Title: Banner
Descr: A CTA banner containing text + media
Usage: codyhouse.co/license

-------------------------------- */
.banner {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px rgba(0, 0, 0, 0.05)), var(--shadow-sm);
  border-radius: var(--radius-md);
  transition: 0.3s;
}
.banner:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px rgba(0, 0, 0, 0.05)), var(--shadow-md);
}
.banner:hover .banner__link {
  transform: scale(1.3);
}
.banner:hover .banner__link i {
  transform: scale(0.7);
}
.banner:hover .banner__link::after {
  height: 100%;
}
.banner:hover .banner__figure {
  transform: scale(1.05);
}

.banner__link {
  position: relative;
  text-decoration: none;
  color: var(--color-primary-dark);
  display: inline-block;
  transition: 0.3s var(--ease-out);
  transform-origin: left bottom;
}
.banner__link i {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: 0.3s var(--ease-out);
}
.banner__link::after {
  content: "";
  background-color: currentColor;
  height: 2px;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  clip-path: inset(0% round var(--radius-sm));
  transition: 0.3s var(--ease-out);
  opacity: 0.15;
}

.banner__figure {
  height: 0;
  width: 100%;
  padding-bottom: 50%;
  transition: 0.3s var(--ease-out);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 64rem) {
  .banner:not(.banner--invert) .banner__grid {
    flex-direction: row-reverse;
  }

  .banner__figure {
    height: 100%;
    padding-bottom: 0;
    clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 50px 100%);
  }

  .banner--invert .banner__figure {
    clip-path: polygon(0% 0%, calc(100% - 100px) 0%, calc(100% - 50px) 100%, 0% 100%);
  }
  .banner--invert .banner__link {
    transform-origin: right bottom;
  }
  .banner--invert .banner__text {
    text-align: right;
  }

  .banner:hover .banner__figure {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* -------------------------------- 

File#: _1_bg-gradients
Title: Background Gradients
Descr: Customizable background gradients
Usage: codyhouse.co/license

-------------------------------- */
.bg-gradient-1, .bg-gradient-2, .bg-gradient-3, .bg-gradient-4, .bg-gradient-5 {
  background-repeat: no-repeat;
  background-position: center;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-1[data-bg-animate=on], .bg-gradient-2[data-bg-animate=on], .bg-gradient-3[data-bg-animate=on], .bg-gradient-4[data-bg-animate=on], .bg-gradient-5[data-bg-animate=on] {
    will-change: background-position;
  }
}

.bg-gradient-1 {
  background-color: #0E131F;
  background-image: radial-gradient(ellipse at 90% 30%, #0E131F 20%, rgba(14, 19, 31, 0) 50%), radial-gradient(ellipse at 70% 0%, #FF0035 0%, rgba(255, 0, 53, 0) 50%), radial-gradient(ellipse at 20% 10%, #38405F 10%, rgba(56, 64, 95, 0) 70%), radial-gradient(ellipse at 50% 100%, #FF0035 0%, rgba(255, 0, 53, 0) 50%);
  background-size: 200% 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-1[data-bg-animate=on] {
    background-size: 400% 200%;
    background-position: 0% 0%;
    animation: bg-gradient-anim-1 30s linear infinite;
  }
}

@keyframes bg-gradient-anim-1 {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 0% 100%;
  }
}
.bg-gradient-2 {
  background-color: #FFFCF2;
  background-image: radial-gradient(ellipse at 10% 20%, #E980FC 0%, rgba(233, 128, 252, 0) 40%), radial-gradient(ellipse at 50% 0%, #FFFCF2 25%, rgba(255, 252, 242, 0) 75%), radial-gradient(ellipse at 100% 100%, #BCB6FF 35%, rgba(188, 182, 255, 0) 70%), radial-gradient(ellipse at 50% 100%, #FFFCF2 20%, rgba(255, 252, 242, 0) 70%);
  background-size: 120% 200%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-2[data-bg-animate=on] {
    background-size: 240% 400%;
    background-position: 0% 0%;
    animation: bg-gradient-anim-2 30s linear infinite;
  }
}

@keyframes bg-gradient-anim-2 {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 0% 100%;
  }
}
.bg-gradient-3 {
  background-color: #30C5FF;
  background-image: radial-gradient(ellipse at 25% 90%, #5C946E 10%, rgba(92, 148, 110, 0) 70%), radial-gradient(ellipse at 55% 90%, #FFFCF2 0%, rgba(255, 252, 242, 0) 70%), radial-gradient(ellipse at 100% 100%, #EB5E28 5%, rgba(235, 94, 40, 0) 60%), radial-gradient(ellipse at 0% 0%, #5C946E 15%, rgba(92, 148, 110, 0) 50%), radial-gradient(ellipse at 100% 0%, #FFFCF2 30%, rgba(255, 252, 242, 0) 70%);
  background-size: 100% 140%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-3[data-bg-animate=on] {
    background-size: 200% 280%;
    background-position: 50% 0%;
    animation: bg-gradient-anim-3 30s linear infinite;
  }
}

@keyframes bg-gradient-anim-3 {
  0%, 100% {
    background-position: 0% 0%;
  }
  33% {
    background-position: 100% 0%;
  }
  66% {
    background-position: 100% 100%;
  }
}
.bg-gradient-4 {
  background-color: #1f7a72;
  background-image: radial-gradient(ellipse at 70% 0%, rgba(31, 90, 132, 0.6) 0%, rgba(31, 90, 132, 0) 30%), radial-gradient(circle at 90% 0%, rgba(68, 238, 133, 0.5) 0%, rgba(68, 238, 133, 0) 30%), radial-gradient(ellipse at 0% 0%, rgba(122, 185, 60, 0.4) 0%, rgba(122, 185, 60, 0) 40%), radial-gradient(circle at 30% 100%, rgba(31, 90, 132, 0.6) 0%, rgba(31, 90, 132, 0) 40%), radial-gradient(ellipse at 10% 100%, rgba(68, 238, 133, 0.5) 0%, rgba(68, 238, 133, 0) 40%), radial-gradient(ellipse at 100% 100%, rgba(122, 185, 60, 0.4) 0%, rgba(122, 185, 60, 0) 40%);
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-4[data-bg-animate=on] {
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: bg-gradient-anim-4 10s linear infinite;
  }
}

@keyframes bg-gradient-anim-4 {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}
.bg-gradient-5 {
  background-color: #e6e5f7;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(225, 91, 151, 0.35) 0%, rgba(225, 91, 151, 0) 30%), radial-gradient(ellipse at 100% 0%, rgba(132, 19, 134, 0.32) 0%, rgba(132, 19, 134, 0) 60%);
  background-size: 200% 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-5[data-bg-animate=on] {
    background-size: 400% 200%;
    background-position: 0% 0%;
    animation: bg-gradient-anim-5 20s linear infinite;
  }
}

@keyframes bg-gradient-anim-5 {
  0%, 100% {
    background-position: 0% 0%;
  }
  40%, 60% {
    background-position: 100% 0%;
  }
}
/* -------------------------------- 

File#: _1_btn-states
Title: Buttons states
Descr: Multi-state button elements
Usage: codyhouse.co/license

-------------------------------- */
.btn-states {
  position: relative;
}

.btn-states--state-b:not(.btn-states--preserve-width) .btn-states__content-a {
  display: none;
}

.btn-states:not(.btn-states--state-b) .btn-states__content-b {
  display: none;
}

/* preserve button width when switching from state A to state B */
.btn-states--preserve-width .btn-states__content-b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-states--preserve-width.btn-states--state-b .btn-states__content-a {
  visibility: hidden;
}

/* -------------------------------- 

File#: _1_btns
Title: Buttons (Group)
Descr: Group of connected buttons
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --btns-button-radius: var(--radius-md);
  --btns-button-padding-x: var(--space-sm);
  --btns-button-padding-y: var(--space-xxs);
}

.btns {
  /* button group */
}
.btns > *:first-child, .btns *:first-child .btns__btn {
  border-radius: var(--btns-button-radius) 0 0 var(--btns-button-radius);
}
.btns > *:last-child, .btns *:last-child .btns__btn {
  border-radius: 0 var(--btns-button-radius) var(--btns-button-radius) 0;
}

.btns[class*=gap-xxxxs] .btns__btn, .btns[class*=gap-xxxs] .btns__btn, .btns[class*=gap-xxs] .btns__btn, .btns[class*=gap-xs] .btns__btn, .btns[class*=gap-sm] .btns__btn, .btns[class*=gap-md] .btns__btn, .btns[class*=gap-lg] .btns__btn, .btns[class*=gap-xl] .btns__btn, .btns[class*=gap-xxl] .btns__btn, .btns[class*=gap-xxxl] .btns__btn, .btns[class*=gap-xxxxl] .btns__btn {
  border-radius: var(--btns-button-radius) !important;
}

/* single button */
.btns__btn {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: var(--btns-button-padding-y) var(--btns-button-padding-x);
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  transition: 0.2s;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btns__btn:hover:not(.btns__btn--selected) {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}
.btns__btn:focus {
  z-index: 1;
  outline: none;
  box-shadow: 0 0 0 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
}

.btns__btn--selected, .btns--radio input[type=radio]:checked + label,
.btns--radio input[type=checkbox]:checked + label, .btns--checkbox input[type=radio]:checked + label,
.btns--checkbox input[type=checkbox]:checked + label {
  /* selected style */
  background-color: var(--color-contrast-higher);
  color: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.btns__btn--disabled {
  opacity: 0.7;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* --radio, --checkbox */
.btns--radio > *, .btns--checkbox > * {
  position: relative;
}
.btns--radio input[type=radio],
.btns--radio input[type=checkbox], .btns--checkbox input[type=radio],
.btns--checkbox input[type=checkbox] {
  /* hide native buttons */
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}
.btns--radio input[type=radio] + label,
.btns--radio input[type=checkbox] + label, .btns--checkbox input[type=radio] + label,
.btns--checkbox input[type=checkbox] + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btns--radio input[type=radio]:focus + label,
.btns--radio input[type=checkbox]:focus + label, .btns--checkbox input[type=radio]:focus + label,
.btns--checkbox input[type=checkbox]:focus + label {
  z-index: 1;
  box-shadow: 0 0 0 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
}
.btns--radio input[type=radio]:checked + label,
.btns--radio input[type=checkbox]:checked + label, .btns--checkbox input[type=radio]:checked + label,
.btns--checkbox input[type=checkbox]:checked + label {
  /* checked state */
}

.btns__btn--icon {
  padding: var(--btns-button-padding-y);
}
.btns__btn--icon .icon {
  display: block;
}

/* -------------------------------- 

File#: _1_button-effects
Title: Button Effects
Descr: A collection of button effects
Usage: codyhouse.co/license

-------------------------------- */
.btn-fx-1 {
  --border-radius: 0.25em;
  --transition-duration: .3s;
  position: relative;
  display: inline-block;
  border-radius: var(--border-radius);
  line-height: 1;
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition-duration);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
}
.btn-fx-1 span, .btn-fx-1 .btn-fx-1__icon-wrapper {
  position: relative;
  z-index: 2;
}
.btn-fx-1 .icon {
  display: block;
  will-change: transform;
  transition: var(--transition-duration);
}
.btn-fx-1 .icon:first-child {
  color: var(--color-primary);
}
.btn-fx-1 .icon:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: var(--color-white);
  transform: translateY(100%);
}
.btn-fx-1:hover {
  color: var(--color-white);
}
.btn-fx-1:hover .icon:first-child {
  opacity: 0;
  transform: translateY(-100%);
}
.btn-fx-1:hover .icon:last-child {
  opacity: 1;
  transform: translateY(0);
}
.btn-fx-1:hover .btn-fx-1__inner::after {
  transform: skewY(0deg) scaleY(2);
}
.btn-fx-1:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--color-bg), 0 0 0 3px var(--color-primary);
}

.btn-fx-1__inner {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0% round var(--border-radius));
}
.btn-fx-1__inner::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 100%;
  background-color: var(--color-primary);
  transform-origin: center bottom;
  transform: skewY(10deg) scaleY(0);
  transition: transform var(--transition-duration);
}

.btn-fx-2 {
  position: relative;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-fx-2 span {
  position: relative;
  display: inline-flex;
  clip-path: inset(0%);
}
.btn-fx-2 em {
  display: inline-flex;
}
.btn-fx-2 em * {
  color: var(--color-primary);
  padding: 0.25em 0;
  will-change: transform;
  transition: transform 0.3s;
}
.btn-fx-2 em:last-child {
  position: absolute;
  top: 0;
  left: 0;
}
.btn-fx-2 em:last-child * {
  transform: translateY(100%);
}
.btn-fx-2::before, .btn-fx-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  left: 0;
  width: 100%;
}
.btn-fx-2::before {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.btn-fx-2::after {
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: right center;
}
.btn-fx-2:hover em *:nth-child(2) {
  transition-delay: 0.05s;
}
.btn-fx-2:hover em *:nth-child(3) {
  transition-delay: 0.1s;
}
.btn-fx-2:hover em *:nth-child(4) {
  transition-delay: 0.15s;
}
.btn-fx-2:hover em *:nth-child(5) {
  transition-delay: 0.2s;
}
.btn-fx-2:hover em *:nth-child(6) {
  transition-delay: 0.25s;
}
.btn-fx-2:hover em *:nth-child(7) {
  transition-delay: 0.3s;
}
.btn-fx-2:hover em *:nth-child(8) {
  transition-delay: 0.35s;
}
.btn-fx-2:hover em *:nth-child(9) {
  transition-delay: 0.4s;
}
.btn-fx-2:hover em *:nth-child(10) {
  transition-delay: 0.45s;
}
.btn-fx-2:hover em:first-child * {
  transform: translateY(-100%);
}
.btn-fx-2:hover em:last-child * {
  transform: translateY(0);
}
.btn-fx-2:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.btn-fx-3 {
  --transition-duration: 0.3s;
  position: relative;
  display: inline-block;
  color: var(--color-bg);
  line-height: 1;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  will-change: transform;
  transition: transform var(--transition-duration);
}
.btn-fx-3 span {
  will-change: transform;
  transition: opacity var(--transition-duration), transform var(--transition-duration) var(--ease-out);
}
.btn-fx-3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-contrast-higher);
  border-radius: inherit;
  will-change: transform;
  transition: transform var(--transition-duration) var(--ease-out-back), box-shadow var(--transition-duration);
}
.btn-fx-3:active {
  transform: scale(0.9);
}
.btn-fx-3:hover span {
  opacity: 0;
  transform: scale(0.5);
}
.btn-fx-3:hover::before {
  transform: scale(1.1);
}
.btn-fx-3:hover .btn-fx-3__icon-wrapper {
  transform: translateY(0);
}
.btn-fx-3:focus {
  outline: none;
}
.btn-fx-3:focus::before {
  box-shadow: var(--shadow-sm), 0 0 0 3px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
}

.btn-fx-3__inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  clip-path: inset(0%);
}

.btn-fx-3__icon-wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  will-change: transform;
  transform: translateY(100%);
  transition: transform var(--transition-duration) var(--ease-out);
}
.btn-fx-3__icon-wrapper .icon {
  margin: auto;
}

.btn-fx-4 {
  --transition-duration: .3s;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-contrast-higher);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  line-height: 1;
  text-decoration: none;
  color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: var(--transition-duration);
}
.btn-fx-4 span {
  position: relative;
  z-index: 2;
}
.btn-fx-4::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.25);
  will-change: transform;
  transform: skewX(-15deg) translate(calc(-100% - 0.5em));
  pointer-events: none;
}
.btn-fx-4:hover::before {
  transform: skewX(-15deg) translate(calc(100% + 0.5em));
  transition: transform var(--transition-duration);
}
.btn-fx-4:focus {
  outline: none;
  box-shadow: var(--shadow-sm), 0 0 0 3px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
}

/* -------------------------------- 

File#: _1_card-v2
Title: Card v2
Descr: Container of information used as teasers for further content, often displayed in a gallery of related items
Usage: codyhouse.co/license

-------------------------------- */
.card-v2 {
  position: relative;
  overflow: hidden;
}
.card-v2 img {
  display: block;
  width: 100%;
}

.card-v2__caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0), hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 1));
  background-blend-mode: multiply;
  color: var(--color-white);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card-v2--blur-fx .card-v2__caption {
  background: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8);
  backdrop-filter: blur(10px);
}

a.card-v2 {
  display: block;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
a.card-v2:hover {
  box-shadow: var(--shadow-md);
}

/* -------------------------------- 

File#: _1_custom-cursor
Title: Custom Cursor
Descr: A JavaScript plugin to create animated custom cursors
Usage: codyhouse.co/license

-------------------------------- */
.c-cursor {
  position: fixed;
  z-index: 9999;
  /* use highest z-index value */
  top: 0;
  left: 0;
  pointer-events: none;
}

.c-cursor__img {
  display: block;
  position: relative;
  margin: -50% 0 0 -50%;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  opacity: 0;
  --translate: 0;
  --rotate: 0;
  --skew: 0;
  --scale: 0;
  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)));
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}
.c-cursor--in .c-cursor__img {
  /* enter animation */
  --scale: 1;
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  [data-custom-cursor],
[data-custom-cursor] * {
    cursor: none;
  }
}
/* -------------------------------- 

File#: _1_details-list
Title: Details List
Descr: Pairs of related information displayed in a list
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --details-list-border-width: 1px;
  --details-list-border-opacity: 0.15;
}

.details-list--rows .details-list__item {
  border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
}
.details-list--rows .details-list__item:last-child {
  border-bottom: none;
}

.details-list--cols .details-list__item {
  border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
}
.details-list--cols .details-list__item:last-child {
  border-right: none;
}

@media (min-width: 32rem) {
  .details-list--rows\@xs .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@xs .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@xs .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@xs .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 48rem) {
  .details-list--rows\@sm .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@sm .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@sm .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@sm .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 64rem) {
  .details-list--rows\@md .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@md .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@md .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@md .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 80rem) {
  .details-list--rows\@lg .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@lg .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@lg .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@lg .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 90rem) {
  .details-list--rows\@xl .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@xl .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@xl .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@xl .details-list__item:last-child {
    border-right: none;
  }
}
/* -------------------------------- 

File#: _1_diagonal-section
Title: Diagonal Section
Descr: Section with diagonal edges
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --diagonal-section-offset: 50px;
}

.diagonal-section,
.diagonal-section-top,
.diagonal-section-bottom {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@supports (clip-path: inset(50%)) {
  .diagonal-section, .diagonal-section-top.diagonal-section-bottom {
    padding-top: calc(var(--diagonal-section-offset)/2);
    padding-bottom: calc(var(--diagonal-section-offset)/2);
    clip-path: polygon(0% 0%, 100% var(--diagonal-section-offset), 100% 100%, 0% calc(100% - var(--diagonal-section-offset)));
  }

  .diagonal-section--flip-x {
    clip-path: polygon(0% var(--diagonal-section-offset), 100% 0%, 100% calc(100% - var(--diagonal-section-offset)), 0% 100%);
  }

  .diagonal-section-top {
    padding-top: calc(var(--diagonal-section-offset)/2);
    clip-path: polygon(0% 0%, 100% var(--diagonal-section-offset), 100% 100%, 0% 100%);
  }

  .diagonal-section-top--flip-x {
    clip-path: polygon(0% var(--diagonal-section-offset), 100% 0%, 100% 100%, 0% 100%);
  }
  .diagonal-section-top--flip-x.diagonal-section-bottom {
    clip-path: polygon(0% var(--diagonal-section-offset), 100% 0%, 100% 100%, 0% calc(100% - var(--diagonal-section-offset)));
  }

  .diagonal-section-bottom {
    padding-bottom: calc(var(--diagonal-section-offset)/2);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% calc(100% - var(--diagonal-section-offset)));
  }

  .diagonal-section-bottom--flip-x {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - var(--diagonal-section-offset)), 0% 100%);
  }
  .diagonal-section-bottom--flip-x.diagonal-section-top {
    clip-path: polygon(0% 0%, 100% var(--diagonal-section-offset), 100% calc(100% - var(--diagonal-section-offset)), 0% 100%);
  }

  .diagonal-section-top--flip-x.diagonal-section-bottom--flip-x {
    clip-path: polygon(0% var(--diagonal-section-offset), 100% 0%, 100% calc(100% - var(--diagonal-section-offset)), 0% 100%);
  }
}
/* -------------------------------- 

File#: _1_expandable-side-navigation
Title: Expandable Side Navigation
Descr: A side navigation with expandable sub-lists and popular links
Usage: codyhouse.co/license

-------------------------------- */
.exsidenav__pop-link,
.exsidenav__link,
.exsidenav__control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: var(--color-contrast-high);
  text-decoration: none;
  line-height: 1;
  padding: var(--space-xxs);
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: 0.2s;
}
.exsidenav__pop-link:hover,
.exsidenav__link:hover,
.exsidenav__control:hover {
  color: var(--color-primary);
}

/* popular links */
.exsidenav__pop-link .icon {
  --size: 16px;
  margin-right: var(--space-xxs);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.exsidenav__pop-link:hover .icon {
  opacity: 1;
}
.exsidenav__pop-link[aria-current=page] {
  color: var(--color-primary);
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
  border-radius: var(--radius-md);
}
.exsidenav__pop-link[aria-current=page] .icon {
  opacity: 1;
}

/* main links */
.exsidenav__link {
  position: relative;
}
.exsidenav__list .exsidenav__list .exsidenav__link::before {
  /* left mark */
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  height: 100%;
  width: 1px;
}
.exsidenav__link[aria-current=page] {
  color: var(--color-primary);
}
.exsidenav__link[aria-current=page]::before {
  background-color: var(--color-primary);
}

/* list label */
.exsidenav__list .exsidenav__list .exsidenav__label-wrapper {
  margin: 0 0 var(--space-xxxs) var(--space-xxs);
}

.exsidenav__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: var(--space-xxs);
}

/* button controlling sub navigations */
.exsidenav__control .icon {
  --size: 16px;
  display: block;
  margin-left: auto;
}
.exsidenav__control .icon__group {
  will-change: transform;
  transform-origin: 8px 8px;
  transition: transform 0.3s var(--ease-out);
}
.exsidenav__control .icon__group > * {
  transform-origin: 8px 8px;
  stroke-dasharray: 17;
  transform: translateY(3px);
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: var(--ease-out);
}
.exsidenav__control .icon__group > *:first-child {
  stroke-dashoffset: 10;
}
.exsidenav__control .icon__group > *:last-child {
  stroke-dashoffset: 10;
}
.exsidenav__control[aria-expanded=true] + .exsidenav__list {
  display: block;
  /* show the subnavigation */
}
.exsidenav__control[aria-expanded=true] + .exsidenav__list > * {
  animation: exsidenav-entry-animation 0.4s var(--ease-out);
  /* animate list items */
}
.exsidenav__control[aria-expanded=true] .icon__group {
  transform: rotate(-90deg);
}
.exsidenav__control[aria-expanded=true] .icon__group > *:first-child, .exsidenav__control[aria-expanded=true] .icon__group *:last-child {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}

.exsidenav__list .exsidenav__list {
  display: none;
  border-left: 1px solid var(--color-contrast-lower);
  margin: var(--space-xxxxs) 0 0 var(--space-xxs);
}

@keyframes exsidenav-entry-animation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media (min-width: 64rem) {
  .exsidenav__pop-nav {
    padding-right: 0;
  }
}
/* -------------------------------- 

File#: _1_floating-action-button
Title: Floating Action Button
Descr: A floating button representing the primary page action
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --fab-transition-duration: .2s;
  /* transition duration */
  --fab-gap-y: var(--space-md);
  /* top/bottom gap between button and viewport - horizontal gap depends on the max-width utility class */
  --fab-btn-size: 48px;
  /* button size */
  --fab-btn-radius: calc(var(--fab-btn-size)/2);
  /* button border-radius - use px units */
  --fab-btn-icon-size: 24px;
  /* icon size */
  --fab-popover-radius: 8px;
  /* popover border-radius - use px units */
  --fab-popover-width: 250px;
  /* popover width - from the @xs breakpoint ↓ */
  --fab-popover-gap: 6px;
  /* gap between popover and button */
}
@media (min-width: 64rem) {
  :root {
    --fab-btn-size: 54px;
  }
}

.fab {
  position: fixed;
  z-index: var(--z-index-overlay, 15);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: background var(--fab-transition-duration), opacity var(--fab-transition-duration), visibility 0s var(--fab-transition-duration);
}

.fab--in {
  opacity: 1;
  visibility: visible;
  transition: background var(--fab-transition-duration), opacity var(--fab-transition-duration);
}

.fab--bottom-right .fab__btn, .fab--bottom-right .fab__popover,
.fab--bottom-left .fab__btn,
.fab--bottom-left .fab__popover {
  bottom: var(--fab-gap-y);
  bottom: calc(var(--fab-gap-y) + env(safe-area-inset-bottom));
  /* fixes issue on iOS */
}

.fab--bottom-right .fab__popover-inner {
  clip-path: inset(calc(var(--fab-popover-height) - var(--fab-btn-size)) 0 0 calc(100% - var(--fab-btn-size)) round var(--fab-btn-radius));
}
@media (min-width: 32rem) {
  .fab--bottom-right .fab__popover-inner {
    clip-path: inset(calc(var(--fab-popover-height) - var(--fab-btn-size)) 0 0 calc(var(--fab-popover-width) - var(--fab-btn-size)) round var(--fab-btn-radius));
  }
}

.fab--bottom-left .fab__popover-inner {
  clip-path: inset(calc(var(--fab-popover-height) - var(--fab-btn-size)) calc(100% - var(--fab-btn-size)) 0 0 round var(--fab-btn-radius));
}
@media (min-width: 32rem) {
  .fab--bottom-left .fab__popover-inner {
    clip-path: inset(calc(var(--fab-popover-height) - var(--fab-btn-size)) calc(var(--fab-popover-width) - var(--fab-btn-size)) 0 0 round var(--fab-btn-radius));
  }
}

.fab--bottom-right .fab__btn, .fab--bottom-right .fab__popover,
.fab--top-right .fab__btn,
.fab--top-right .fab__popover {
  right: 0;
}

.fab--bottom-left .fab__btn, .fab--bottom-left .fab__popover,
.fab--top-left .fab__btn,
.fab--top-left .fab__popover {
  left: 0;
}

.fab--top-right .fab__btn, .fab--top-right .fab__popover,
.fab--top-left .fab__btn,
.fab--top-left .fab__popover {
  top: var(--fab-gap-y);
}

.fab--top-right .fab__popover-inner {
  clip-path: inset(0 0 calc(var(--fab-popover-height) - var(--fab-btn-size)) calc(100% - var(--fab-btn-size)) round var(--fab-btn-radius));
}
@media (min-width: 32rem) {
  .fab--top-right .fab__popover-inner {
    clip-path: inset(0 0 calc(var(--fab-popover-height) - var(--fab-btn-size)) calc(var(--fab-popover-width) - var(--fab-btn-size)) round var(--fab-btn-radius));
  }
}

.fab--top-left .fab__popover-inner {
  clip-path: inset(0 calc(100% - var(--fab-btn-size)) calc(var(--fab-popover-height) - var(--fab-btn-size)) 0 round var(--fab-btn-radius));
}
@media (min-width: 32rem) {
  .fab--top-left .fab__popover-inner {
    clip-path: inset(0 calc(var(--fab-popover-width) - var(--fab-btn-size)) calc(var(--fab-popover-height) - var(--fab-btn-size)) 0 round var(--fab-btn-radius));
  }
}

/* button */
.fab__btn {
  display: block;
  position: relative;
  pointer-events: auto;
  width: var(--fab-btn-size);
  height: var(--fab-btn-size);
  background-color: var(--color-primary);
  box-shadow: var(--inner-glow-top), var(--shadow-sm);
  border-radius: var(--fab-btn-radius);
  overflow: hidden;
  touch-action: manipulation;
  position: absolute;
  z-index: 2;
  transform: translateY(20px);
  transition: box-shadow var(--fab-transition-duration), background var(--fab-transition-duration), transform var(--fab-transition-duration);
}
.fab__btn:hover {
  background-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}
.fab__btn:active {
  transform: translateY(2px);
}
.fab--in .fab__btn {
  transform: translateY(0);
}

.fab__icon-wrapper {
  display: flex;
  height: inherit;
  width: inherit;
  justify-content: center;
  align-items: center;
  transition: transform var(--fab-transition-duration) var(--ease-out);
}
.fab__icon-wrapper:last-child {
  position: absolute;
  top: 0;
  transform: translateY(100%);
}
.fab__icon-wrapper:last-child .fab__icon {
  transform: rotate(-45deg);
  opacity: 0;
}
.fab--active .fab__icon-wrapper {
  transform: translateY(-100%);
}
.fab--active .fab__icon-wrapper .fab__icon {
  opacity: 0;
}
.fab--active .fab__icon-wrapper:last-child {
  transform: translateY(0);
}
.fab--active .fab__icon-wrapper:last-child .fab__icon {
  transform: rotate(0);
  opacity: 1;
}

.fab__icon {
  display: block;
  height: var(--fab-btn-icon-size);
  width: var(--fab-btn-icon-size);
  margin: auto;
  color: var(--color-white);
  /* icon color */
  transition: transform var(--fab-transition-duration) var(--ease-in-out), opacity var(--fab-transition-duration);
}

/* popover */
.fab__popover {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
  width: 100%;
  /* full-width on smaller devices */
}
@media (min-width: 32rem) {
  .fab__popover {
    width: var(--fab-popover-width);
  }
}

.fab__popover-inner {
  max-height: calc(100vh - var(--fab-gap-y)*2 - var(--fab-btn-size));
  overflow: auto;
  background-color: var(--color-bg);
  visibility: hidden;
  transform: translateY(0);
  transition: clip-path var(--fab-transition-duration) var(--ease-out), transform var(--fab-transition-duration) var(--ease-out), visibility 0s var(--fab-transition-duration);
}

.fab__content {
  opacity: 0;
  transition: opacity var(--fab-transition-duration), transform var(--fab-transition-duration);
}

/* --active */
.fab--active {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
  pointer-events: auto;
}
.fab--active .fab__popover-inner {
  visibility: visible;
  transform: translateY(calc( -1 * var(--fab-btn-size) - var(--fab-popover-gap)));
  clip-path: inset(0 0 0 0 round var(--fab-popover-radius));
  transition: clip-path var(--fab-transition-duration) var(--ease-out), transform var(--fab-transition-duration) var(--ease-out), visibility 0s;
}
.fab--active.fab--top-left .fab__popover-inner, .fab--active.fab--top-right .fab__popover-inner {
  transform: translateY(calc( var(--fab-btn-size) + var(--fab-popover-gap)));
}
.fab--active .fab__content {
  opacity: 1;
}

/* menu example */
.fab--has-demo-menu {
  --fab-popover-width: 300px;
}

.fab__menu {
  list-style: none;
  padding: var(--space-xxxs);
}

.fab__menu-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--space-xxs);
  border-radius: var(--radius-md);
  cursor: pointer;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}
.fab__menu-btn::before, .fab__menu-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.fab__menu-btn::before {
  inset: 0;
  border-radius: inherit;
  background-color: var(--color-bg-dark);
  opacity: 0;
  transform: scale(0.75);
  transition: 0.1s;
}
.fab__menu-btn::after {
  width: calc(100% - var(--space-xxs) * 2);
  height: 1px;
  left: var(--space-xxs);
  top: 100%;
  background: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}
.fab__menu-btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.fab__menu-btn:hover::after {
  display: none;
}
.fab__menu-item:nth-last-child(2) .fab__menu-btn::after {
  display: none;
}

.fab__menu-img {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
}

.fab__menu-title {
  font-weight: 600;
  color: var(--color-contrast-higher);
  font-size: var(--text-sm);
}

.fab__menu-time, .fab__menu-preview, .fab__menu-unread-counter {
  font-size: var(--text-xs);
}

.fab__menu-time, .fab__menu-preview {
  color: var(--color-contrast-medium);
}

.fab__menu-time {
  text-align: right;
}

.fab__menu-unread-counter {
  width: 18px;
  height: 18px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--inner-glow), 0 1px 3px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.35);
}

.fab__menu-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xxs);
  justify-content: center;
  font-size: var(--text-sm);
  background: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  padding: var(--space-sm) 0;
  border-radius: var(--radius-md);
  line-height: 1;
}
.fab__menu-cta:hover {
  background: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}

.fab__menu-item:last-child {
  margin-top: var(--space-xxxs);
}

/* -------------------------------- 

File#: _1_full-width-blockquote
Title: Full-width Blockquote
Descr: Full-width long quotation
Usage: codyhouse.co/license

-------------------------------- */
.fw-blockquote {
  position: relative;
  z-index: 1;
}

.fw-blockquote__text em {
  color: var(--color-primary);
  font-style: italic;
  background: linear-gradient(hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.075), hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2));
}

/* -------------------------------- 

File#: _1_google-maps
Title: Google Maps
Descr: Google Maps component
Usage: codyhouse.co/license

-------------------------------- */
.google-maps {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.google-maps--ratio-4\:1 {
  padding-bottom: 25%;
}

.google-maps--ratio-3\:1 {
  padding-bottom: 33%;
}

/* -------------------------------- 

File#: _1_link-effects
Title: Link Effects
Descr: A collection of link effects
Usage: codyhouse.co/license

-------------------------------- */
.link-fx-1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}
.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}
.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}
.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}
.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}
.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}
.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}
.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}
.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-2 {
  position: relative;
  display: inline-block;
  padding: 4px 6px;
  color: var(--color-contrast-higher);
  text-decoration: none;
  background-image: linear-gradient(var(--color-contrast-higher), var(--color-contrast-higher));
  background-size: 100% 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  will-change: background-size;
  transition: background-size 0.3s var(--ease-out);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-fx-2::after {
  content: attr(data-link-fx-clone);
  color: var(--color-bg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: inherit;
  will-change: clip-path, transform;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transform: translateY(4px);
  transition: clip-path 0.3s, transform 0.3s;
  transition-timing-function: var(--ease-out);
}
.link-fx-2:hover {
  background-size: 100% 100%;
}
.link-fx-2:hover::after {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: translateY(0px);
}

.link-fx-3 {
  position: relative;
  display: inline-flex;
  padding: 4px 6px;
  text-decoration: none;
  align-items: center;
}
.link-fx-3 .icon {
  display: block;
  font-size: 12px;
  margin-left: 8px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), visibility 0s 0.3s;
}
.link-fx-3 .icon line {
  transform-origin: 9px 6px;
  will-change: transform;
  transition: transform 0.3s var(--ease-out);
}
.link-fx-3 .icon line:first-child {
  transform: rotate(20deg);
}
.link-fx-3 .icon line:last-child {
  transform: rotate(-20deg);
}
.link-fx-3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 18px);
  height: 1px;
  background-color: currentColor;
  transition: 0.3s var(--ease-out);
}
.link-fx-3:hover .icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.link-fx-3:hover .icon line:first-child, .link-fx-3:hover .icon line:last-child {
  transform: rotate(0);
}
.link-fx-3:hover::before {
  width: 100%;
}

.link-fx-4 {
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  background-color: var(--color-contrast-lower);
  color: var(--color-contrast-higher);
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-fx-4::before {
  content: attr(data-link-fx-clone);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-contrast-higher);
  color: var(--color-bg);
  will-change: clip-path;
  clip-path: polygon(0% 0%, 1px 0%, 1px 100%, 0% 100%);
  transition: clip-path 0.3s var(--ease-out);
}
.link-fx-4:hover::before {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.link-fx-5 {
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4' viewBox='0 0 16 4'%3E%3Cpath d='M0,3.5c4,0,4-3,8-3s4,3,8,3' fill='none' stroke='%232a6df4' opacity='0.5' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0px 100%;
  background-size: 0;
}
.link-fx-5:hover {
  background-size: 16px 4px;
  animation: link-fx-5-animation 0.4s linear infinite;
}

@keyframes link-fx-5-animation {
  from {
    background-position: 0px 100%;
  }
  to {
    background-position: 16px 100%;
  }
}
/* -------------------------------- 

File#: _1_list-v2
Title: List v2
Descr: Custom list component
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --list-v2-bullet-size: 40px;
  --list-v2-bullet-font-size: 1rem;
  --list-v2-bullet-margin-right: 1rem;
  --list-v2-gap-y: var(--space-lg);
  /* list points gap */
}

.list-v2, .text-component .list-v2 {
  padding-left: 0;
  list-style: none;
}
.list-v2 > li:not(:last-child), .text-component .list-v2 > li:not(:last-child) {
  margin-bottom: var(--list-v2-gap-y);
}

.list-v2__title {
  padding-left: calc(var(--list-v2-bullet-size) + var(--list-v2-bullet-margin-right));
}

.list-v2__bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--list-v2-bullet-size);
  height: var(--list-v2-bullet-size);
  margin-right: var(--list-v2-bullet-margin-right);
  margin-left: calc(-1 * var(--list-v2-bullet-size) - var(--list-v2-bullet-margin-right));
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}

.list-v2__content {
  margin-left: calc(var(--list-v2-bullet-size) + var(--list-v2-bullet-margin-right));
}

/* ordered list */
.list-v2--ol, .text-component .list-v2--ol {
  counter-reset: list-items;
}
.list-v2--ol > li, .text-component .list-v2--ol > li {
  counter-increment: list-items;
}
.list-v2--ol .list-v2__bullet, .text-component .list-v2--ol .list-v2__bullet {
  border-radius: 50%;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  color: var(--color-primary);
  font-size: var(--list-v2-bullet-font-size);
  font-weight: 500;
}
.list-v2--ol .list-v2__bullet::before, .text-component .list-v2--ol .list-v2__bullet::before {
  content: counter(list-items);
}

/* unordered list */
.list-v2--ul, .text-component .list-v2--ul {
  --list-v2-bullet-size: 10px;
}
.list-v2--ul .list-v2__bullet, .text-component .list-v2--ul .list-v2__bullet {
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* icons */
.list-v2--icons, .text-component .list-v2--icons {
  --list-v2-bullet-size: 48px;
}
.list-v2--icons .list-v2__bullet, .text-component .list-v2--icons .list-v2__bullet {
  border-radius: 50%;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.list-v2--icons .list-v2__icon, .text-component .list-v2--icons .list-v2__icon {
  --size: 24px;
  color: var(--color-primary);
  /* icon color */
}

/* -------------------------------- 

File#: _1_list
Title: List
Descr: Custom list component
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --list-space-y: 0.375em;
  --list-offset: 1em;
  --list-line-height-multiplier: 1;
}

.list, .text-component .list {
  padding-left: 0;
  list-style: none;
}
.list ul, .list ol, .text-component .list ul, .text-component .list ol {
  list-style: none;
  margin: 0;
  margin-top: calc((var(--list-space-y) / 2) * var(--text-space-y-multiplier, 1));
  padding-top: calc((var(--list-space-y) / 2) * var(--text-space-y-multiplier, 1));
  padding-left: var(--list-offset);
}
.list li, .text-component .list li {
  padding-bottom: calc((var(--list-space-y) / 2) * var(--text-space-y-multiplier, 1));
  margin-bottom: calc((var(--list-space-y) / 2) * var(--text-space-y-multiplier, 1));
  line-height: calc(var(--body-line-height) * var(--list-line-height-multiplier));
}
.list > li:last-child, .list ul > li:last-child, .list ol > li:last-child, .text-component .list > li:last-child, .text-component .list ul > li:last-child, .text-component .list ol > li:last-child {
  margin-bottom: 0;
}
.list:not(.list--border) > li:last-child, .list ul > li:last-child, .list ol > li:last-child, .text-component .list:not(.list--border) > li:last-child, .text-component .list ul > li:last-child, .text-component .list ol > li:last-child {
  padding-bottom: 0;
}

/* #region (ul + ol) */
.list--ul, .text-component .list--ul,
.list--ol, .text-component .list--ol {
  --list-offset: calc(var(--list-bullet-size) + var(--list-bullet-margin-right));
}
.list--ul ul, .list--ul ol, .text-component .list--ul ul, .text-component .list--ul ol,
.list--ol ul,
.list--ol ol, .text-component .list--ol ul, .text-component .list--ol ol {
  padding-left: 0;
}
@supports (--css: variables) {
  .list--ul li, .text-component .list--ul li,
.list--ol li, .text-component .list--ol li {
    padding-left: var(--list-offset) !important;
  }
}
.list--ul li::before, .text-component .list--ul li::before,
.list--ol li::before, .text-component .list--ol li::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}
@supports (--css: variables) {
  .list--ul li::before, .text-component .list--ul li::before,
.list--ol li::before, .text-component .list--ol li::before {
    width: var(--list-bullet-size) !important;
    height: var(--list-bullet-size) !important;
    margin-left: calc(var(--list-bullet-size) * -1) !important;
    left: calc(var(--list-bullet-margin-right) * -1) !important;
  }
}

.list--ul, .text-component .list--ul {
  --list-bullet-size: 7px;
  --list-bullet-margin-right: 12px;
}
.list--ul > li, .text-component .list--ul > li {
  padding-left: 19px;
}
.list--ul > li::before, .text-component .list--ul > li::before {
  content: "";
  border-radius: 50%;
  color: var(--color-contrast-lower);
  background-color: currentColor;
  width: 7px;
  height: 7px;
  margin-left: -7px;
  left: -12px;
}
.list--ul ul li::before, .text-component .list--ul ul li::before {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px currentColor;
}

.list--ol, .text-component .list--ol {
  --list-bullet-size: 26px;
  --list-bullet-margin-right: 6px;
  --list-bullet-font-size: 14px;
  counter-reset: list-items;
}
.list--ol > li, .text-component .list--ol > li {
  counter-increment: list-items;
  padding-left: 32px;
}
.list--ol ol, .text-component .list--ol ol {
  counter-reset: list-items;
}
.list--ol > li::before, .text-component .list--ol > li::before {
  content: counter(list-items);
  font-size: var(--list-bullet-font-size, 14px);
  background-color: var(--color-contrast-lower);
  color: var(--color-contrast-high);
  line-height: 1;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  margin-left: -26px;
  left: -6px;
}
.list--ol ol > li::before, .text-component .list--ol ol > li::before {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px var(--color-contrast-lower);
}

/* #endregion */
/* #region (border) */
.list--border li:not(:last-child), .text-component .list--border li:not(:last-child) {
  border-bottom: 1px solid var(--color-contrast-lower);
}
.list--border ul, .list--border ol, .text-component .list--border ul, .text-component .list--border ol {
  border-top: 1px solid var(--color-contrast-lower);
}

/* #endregion */
/* #region (icons) */
.list--icons, .text-component .list--icons {
  --list-bullet-size: 24px;
  --list-bullet-margin-right: 8px;
  --list-offset: calc(var(--list-bullet-size) + var(--list-bullet-margin-right));
}
.list--icons ul, .list--icons ol, .text-component .list--icons ul, .text-component .list--icons ol {
  padding-left: 32px;
}
@supports (--css: variables) {
  .list--icons ul, .list--icons ol, .text-component .list--icons ul, .text-component .list--icons ol {
    padding-left: var(--list-offset);
  }
}

.list__icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.list__icon:not(.top-0) {
  top: calc((1em * var(--body-line-height) - 24px) / 2);
}
@supports (--css: variables) {
  .list__icon {
    width: var(--list-bullet-size);
    height: var(--list-bullet-size);
    margin-right: var(--list-bullet-margin-right);
  }
  .list__icon:not(.top-0) {
    top: calc((1em * var(--body-line-height) * var(--list-line-height-multiplier) - var(--list-bullet-size)) / 2);
  }
}

/* #endregion */
/* -------------------------------- 

File#: _1_main-footer-v2
Title: Main Footer v2
Descr: Footer navigation template
Usage: codyhouse.co/license

-------------------------------- */
.footer-v2 {
  position: relative;
  z-index: 1;
}

.footer-v2__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 32rem) {
  .footer-v2__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .footer-v2__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-v2__item {
  display: grid;
  gap: var(--space-sm);
  align-content: start;
}
@media (min-width: 64rem) {
  .footer-v2__item {
    gap: var(--space-xs);
  }
}

.footer-v2__item a {
  color: var(--color-contrast-medium);
}
.footer-v2__item a:hover {
  color: var(--color-contrast-high);
}
@media (min-width: 64rem) {
  .footer-v2__item a {
    font-size: var(--text-sm);
  }
}

.footer-v2__socials {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.footer-v2__socials a {
  text-decoration: none;
  display: inline-block;
  margin: 0 var(--space-xxxs);
  color: var(--color-contrast-medium);
}
.footer-v2__socials a:hover {
  color: var(--color-contrast-high);
}
.footer-v2__socials a svg {
  display: block;
  width: 1em;
  height: 1em;
  color: inherit;
}

.footer-v2__print {
  font-size: var(--text-sm);
  color: var(--color-contrast-medium);
  text-align: center;
}
.footer-v2__print p {
  margin-bottom: var(--space-sm);
}
.footer-v2__print a {
  color: inherit;
}
.footer-v2__print a:hover {
  color: var(--color-contrast-high);
}
@media (min-width: 64rem) {
  .footer-v2__print {
    font-size: var(--text-xs);
  }
}

/* -------------------------------- 

File#: _1_main-footer-v4
Title: Main Footer v4
Descr: Footer navigation template
Usage: codyhouse.co/license

-------------------------------- */
.footer-v4 {
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-v4__nav {
  margin-bottom: var(--space-lg);
}

.footer-v4__nav-item {
  margin-bottom: var(--space-sm);
}
.footer-v4__nav-item a {
  color: var(--color-contrast-high);
  text-decoration: none;
}
.footer-v4__nav-item a:hover {
  color: var(--color-primary);
}

.footer-v4__logo {
  margin-top: var(--space-xxl);
  margin-bottom: var(--space-xxl);
}
.footer-v4__logo a, .footer-v4__logo svg, .footer-v4__logo img {
  width: 100px;
  height: auto;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.footer-v4__print {
  font-family: var(--font-secondary);
  letter-spacing: 0.05em;
  color: var(--color-contrast-higher);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.footer-v4__socials {
  display: flex;
  align-items: center;
}
.footer-v4__socials a {
  text-decoration: none;
  display: inline-block;
  margin-right: var(--space-xs);
  color: var(--color-contrast-medium);
}
.footer-v4__socials a:hover {
  color: var(--color-contrast-high);
}
.footer-v4__socials a svg {
  display: block;
  width: 1.25em;
  height: 1.25em;
  color: inherit;
}

@media (min-width: 64rem) {
  .footer-v4 {
    text-align: center;
  }

  .footer-v4__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-v4__nav-item {
    display: inline-block;
    margin: var(--space-xxxs) var(--space-xs);
  }
  .footer-v4__nav-item:first-child {
    padding-left: 0;
  }
  .footer-v4__nav-item:last-child {
    padding-right: 0;
  }

  .footer-v4__logo {
    display: inline-block;
  }

  .footer-v4__print {
    font-size: var(--text-xs);
  }

  .footer-v4__socials {
    justify-content: center;
  }
  .footer-v4__socials a {
    margin: 0 var(--space-xxxs);
  }
  .footer-v4__socials a svg {
    width: 1em;
    height: 1em;
  }
}
/* -------------------------------- 

File#: _1_main-header
Title: Main Header
Descr: Accessible website navigation
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --header-height: 50px;
}
@media (min-width: 64rem) {
  :root {
    --header-height: 70px;
  }
}

.header {
  height: var(--header-height);
  width: 100%;
  background-color: var(--color-bg);
  z-index: var(--z-index-header, 3);
}

.header__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.header__logo a, .header__logo svg, .header__logo img {
  display: block;
}

.header__nav {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: none;
}
.header__nav::before {
  content: "";
  display: block;
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: inherit;
  border-bottom: 1px solid var(--color-contrast-lower);
}

.header__nav--is-visible {
  display: block;
}

.header__nav-inner {
  padding: var(--space-md);
}

.header__label {
  font-size: var(--text-sm);
  color: var(--color-contrast-medium);
  margin-bottom: var(--space-sm);
}

.header__item {
  margin-bottom: var(--space-sm);
}

.header__link {
  font-size: var(--text-lg);
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.header__link:hover, .header__link[aria-current] {
  color: var(--color-primary);
}

.header__nav-btn {
  font-size: var(--text-lg);
  width: 100%;
}

.header__item--divider {
  height: 1px;
  width: 100%;
  background-color: var(--color-contrast-lower);
}

.header__trigger {
  position: relative;
  z-index: 2;
}

.header__trigger-icon {
  position: relative;
  display: block;
  height: 2px;
  width: 1em;
  background-color: currentColor;
  margin-right: var(--space-xxs);
  transition: 0.2s;
}
.header__trigger-icon::before, .header__trigger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  background-color: currentColor;
  transition: 0.2s;
}
.header__trigger-icon::before {
  transform: translateY(-5px);
}
.header__trigger-icon::after {
  transform: translateY(5px);
}

.header__trigger[aria-expanded=true] .header__trigger-icon {
  background-color: transparent;
}
.header__trigger[aria-expanded=true] .header__trigger-icon::before {
  transform: rotate(45deg);
}
.header__trigger[aria-expanded=true] .header__trigger-icon::after {
  transform: rotate(-45deg);
}

@media (min-width: 64rem) {
  .header__nav {
    position: static;
    background-color: transparent;
    width: auto;
    max-height: none;
    box-shadow: none;
    overflow: visible;
    overscroll-behavior: auto;
    display: block;
  }
  .header__nav::before {
    display: none;
  }

  .header__nav-inner {
    padding: 0;
  }

  .header__label {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
  }

  .header__list {
    display: flex;
    align-items: center;
  }

  .header__item {
    display: inline-block;
    margin-bottom: 0;
    margin-left: var(--space-md);
  }

  .header__link, .header__nav-btn {
    font-size: 1.125rem;
  }

  .header__item--divider {
    height: 1em;
    width: 1px;
  }

  .header__trigger {
    display: none;
  }
}
/* -------------------------------- 

File#: _1_modal-window
Title: Modal Window
Descr: A modal dialog used to display critical information
Usage: codyhouse.co/license

-------------------------------- */
.modal {
  position: fixed;
  z-index: var(--z-index-overlay, 15);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.modal:not(.modal--is-visible) {
  pointer-events: none;
  background-color: transparent;
}

.modal--is-visible {
  opacity: 1;
  visibility: visible;
}

/* close buttons */
.modal__close-btn {
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
  transition: 0.2s;
}
.modal__close-btn .icon {
  display: block;
  margin: auto;
}

.modal__close-btn--outer {
  /* close button - outside the modal__content */
  --size: 48px;
  width: var(--size);
  height: var(--size);
  position: fixed;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: var(--z-index-fixed-element, 10);
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
  transition: 0.2s;
}
.modal__close-btn--outer .icon {
  color: var(--color-white);
  /* icon color */
  transition: transform 0.3s var(--ease-out-back);
}
.modal__close-btn--outer:hover {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 1);
}
.modal__close-btn--outer:hover .icon {
  transform: scale(1.1);
}

.modal__close-btn--inner {
  /* close button - inside the modal__content */
  --size: 32px;
  width: var(--size);
  height: var(--size);
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  transition: 0.2s;
}
.modal__close-btn--inner .icon {
  color: inherit;
  /* icon color */
}
.modal__close-btn--inner:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-md);
}

/* animations */
:root {
  --modal-transition-duration: 0.2s;
  /* fallback (i.e., unless specified differently in the variations 👇) */
}

@media (prefers-reduced-motion: no-preference) {
  .modal--animate-fade {
    --modal-transition-duration: 0.2s;
    transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-fade.modal--is-visible {
    transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s;
  }

  .modal--animate-scale,
.modal--animate-translate-up,
.modal--animate-translate-down,
.modal--animate-translate-right,
.modal--animate-translate-left {
    --modal-transition-duration: 0.2s;
    transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-scale .modal__content,
.modal--animate-translate-up .modal__content,
.modal--animate-translate-down .modal__content,
.modal--animate-translate-right .modal__content,
.modal--animate-translate-left .modal__content {
    will-change: transform;
    transition: transform var(--modal-transition-duration) var(--ease-out);
  }
  .modal--animate-scale.modal--is-visible,
.modal--animate-translate-up.modal--is-visible,
.modal--animate-translate-down.modal--is-visible,
.modal--animate-translate-right.modal--is-visible,
.modal--animate-translate-left.modal--is-visible {
    transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s;
  }
  .modal--animate-scale.modal--is-visible .modal__content,
.modal--animate-translate-up.modal--is-visible .modal__content,
.modal--animate-translate-down.modal--is-visible .modal__content,
.modal--animate-translate-right.modal--is-visible .modal__content,
.modal--animate-translate-left.modal--is-visible .modal__content {
    transform: scale(1);
    /* reset all transformations */
  }

  .modal--animate-slide-up,
.modal--animate-slide-down,
.modal--animate-slide-right,
.modal--animate-slide-left {
    --modal-transition-duration: 0.3s;
    transition: opacity 0s var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-slide-up .modal__content,
.modal--animate-slide-down .modal__content,
.modal--animate-slide-right .modal__content,
.modal--animate-slide-left .modal__content {
    will-change: transform;
    transition: transform var(--modal-transition-duration) var(--ease-out);
  }
  .modal--animate-slide-up.modal--is-visible,
.modal--animate-slide-down.modal--is-visible,
.modal--animate-slide-right.modal--is-visible,
.modal--animate-slide-left.modal--is-visible {
    transition: background-color var(--modal-transition-duration), visibility 0s;
  }
  .modal--animate-slide-up.modal--is-visible .modal__content,
.modal--animate-slide-down.modal--is-visible .modal__content,
.modal--animate-slide-right.modal--is-visible .modal__content,
.modal--animate-slide-left.modal--is-visible .modal__content {
    transform: scale(1);
    /* reset all transformations */
  }

  /* scale */
  .modal--animate-scale .modal__content {
    transform: scale(0.95);
  }

  /* translate */
  .modal--animate-translate-up .modal__content {
    transform: translateY(40px);
  }

  .modal--animate-translate-down .modal__content {
    transform: translateY(-40px);
  }

  .modal--animate-translate-right .modal__content {
    transform: translateX(-40px);
  }

  .modal--animate-translate-left .modal__content {
    transform: translateX(40px);
  }

  /* slide */
  .modal--animate-slide-up .modal__content {
    transform: translateY(100%);
  }

  .modal--animate-slide-down .modal__content {
    transform: translateY(-100%);
  }

  .modal--animate-slide-right .modal__content {
    transform: translateX(-100%);
  }

  .modal--animate-slide-left .modal__content {
    transform: translateX(100%);
  }
}
/* load content - optional */
.modal--is-loading .modal__content {
  visibility: hidden;
}
.modal--is-loading .modal__loader {
  display: flex;
}

.modal__loader {
  /* loader icon */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  pointer-events: none;
}

/* --image */
.modal-img-btn {
  position: relative;
  cursor: pointer;
}
.modal-img-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
  transition: background 0.2s;
}
.modal-img-btn:hover::after {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.7);
}
.modal-img-btn:hover .modal-img-btn__icon-wrapper {
  opacity: 1;
}

.modal-img-btn__icon-wrapper {
  position: absolute;
  z-index: 2;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.7);
  opacity: 0;
  transition: opacity 0.2s;
}
.modal-img-btn__icon-wrapper .icon {
  color: var(--color-white);
}

/* -------------------------------- 

File#: _1_noise-background
Title: Noise Background
Descr: Noise background effect
Usage: codyhouse.co/license

-------------------------------- */
.noise-bg {
  pointer-events: none;
  opacity: 0.35;
  filter: grayscale(100%);
}
.noise-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: url(#noise-bg-fx);
}

/* -------------------------------- 

File#: _1_overscroll-section
Title: Overscroll Section
Descr: Section overlapping visible content on scroll
Usage: codyhouse.co/license

-------------------------------- */
.overscroll-section {
  --overscroll-section-opacity: 0;
}

.overscroll-section__sticky-content {
  position: sticky;
  z-index: 1;
}

.overscroll-section__scroll-content {
  position: relative;
  z-index: 2;
  transform: translateZ(0);
}
.overscroll-section__scroll-content::before, .overscroll-section__scroll-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  pointer-events: none;
}
.overscroll-section__scroll-content::before {
  height: 100vh;
  background: var(--color-black);
  opacity: var(--overscroll-section-opacity, 0);
  z-index: 1;
}
.overscroll-section__scroll-content::after {
  height: 80px;
  background: linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 5%), linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 10%), linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 20%), linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 50%), linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 100%);
}

.overscroll-section--disabled .overscroll-section__sticky-content {
  position: static;
}
.overscroll-section--disabled .overscroll-section__scroll-content::before,
.overscroll-section--disabled .overscroll-section__scroll-content::after {
  display: none;
}

/* -------------------------------- 

File#: _1_previous-next-links
Title: Previous/Next Links
Descr: Links to previous/next articles
Usage: codyhouse.co/license

-------------------------------- */
.pn-links__link {
  display: flex;
  align-items: center;
  height: 100%;
  color: inherit;
  text-decoration: none;
  padding: var(--space-xs);
}
.pn-links__link:hover {
  text-decoration: underline;
}
.pn-links__link:hover .pn-links__icon line:nth-child(1) {
  transform: rotate(180deg);
}
.pn-links__link:hover .pn-links__icon line:nth-child(2) {
  transform: rotate(-180deg);
}
.pn-links__link:hover .pn-links__icon line:nth-child(3) {
  stroke-dashoffset: 14;
}

.pn-links__icon {
  flex-shrink: 0;
}
.pn-links__icon line:nth-child(1),
.pn-links__icon line:nth-child(2) {
  transition: transform 0.3s var(--ease-out);
}
.pn-links__icon line:nth-child(1) {
  transform-origin: 42px 19px;
}
.pn-links__icon line:nth-child(2) {
  transform-origin: 42px 29px;
}
.pn-links__icon line:nth-child(3) {
  stroke-dasharray: 48;
  transition: stroke-dashoffset 0.3s var(--ease-out);
}

@media (min-width: 64rem) {
  .pn-links__item:first-child .pn-links__link {
    border-bottom: none;
  }
}
/* -------------------------------- 

File#: _1_radios-checkboxes
Title: Radios and Checkboxes
Descr: Custom radio and checkbox buttons
Usage: codyhouse.co/license

-------------------------------- */
:root {
  /* radios + checkboxes */
  --checkbox-radio-size: 18px;
  --checkbox-radio-gap: var(--space-xxs);
  /* gap between button and label */
  --checkbox-radio-border-width: 1px;
  --checkbox-radio-line-height: var(--body-line-height);
  /* radios */
  --radio-marker-size: 8px;
  /* checkboxes */
  --checkbox-marker-size: 12px;
  --checkbox-radius: 4px;
}

/* hide native buttons */
.radio,
.checkbox {
  position: absolute;
  padding: 0;
  margin: 0;
  margin-top: calc((1em * var(--checkbox-radio-line-height) - var(--checkbox-radio-size)) / 2);
  opacity: 0;
  height: var(--checkbox-radio-size);
  width: var(--checkbox-radio-size);
  pointer-events: none;
}

/* label */
.radio + label,
.checkbox + label {
  display: inline-block;
  line-height: var(--checkbox-radio-line-height);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap));
}

/* custom inputs - basic style */
.radio + label::before,
.checkbox + label::before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  top: -0.1em;
  margin-left: calc(-1 * (var(--checkbox-radio-size) + var(--checkbox-radio-gap)));
  flex-shrink: 0;
  width: var(--checkbox-radio-size);
  height: var(--checkbox-radio-size);
  background-color: var(--color-bg);
  border-width: var(--checkbox-radio-border-width);
  border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 0.65);
  border-style: solid;
  box-shadow: var(--shadow-xs);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: var(--checkbox-radio-gap);
  transition: transform 0.2s, border 0.2s;
}

/* :hover */
.radio:not(:checked):not(:focus) + label:hover::before,
.checkbox:not(:checked):not(:focus) + label:hover::before {
  border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 1);
}

/* radio only style */
.radio + label::before {
  border-radius: 50%;
}

/* checkbox only style */
.checkbox + label::before {
  border-radius: var(--checkbox-radius);
}

/* :checked */
.radio:checked + label::before,
.checkbox:checked + label::before {
  background-color: var(--color-primary);
  box-shadow: var(--shadow-xs);
  border-color: var(--color-primary);
  transition: transform 0.2s;
}

/* :active */
.radio:active + label::before,
.checkbox:active + label::before {
  transform: scale(0.8);
  transition: transform 0.2s;
}

/* :checked:active */
.radio:checked:active + label::before,
.checkbox:checked:active + label::before {
  transform: none;
  transition: none;
}

/* radio button icon */
.radio:checked + label::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg class='nc-icon-wrapper' fill='%23ffffff'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ffffff'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
  background-size: var(--radio-marker-size);
}

/* checkbox button icon */
.checkbox:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='1 6.5 4 9.5 11 2.5' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-size: var(--checkbox-marker-size);
}

/* :focus */
.radio:checked:active + label::before,
.checkbox:checked:active + label::before,
.radio:focus + label::before,
.checkbox:focus + label::before {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

/* --radio--bg, --checkbox--bg -> variation with background color */
.radio--bg + label, .checkbox--bg + label {
  padding: var(--space-xxxxs) var(--space-xxxs);
  padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap) + var(--space-xxxs));
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.radio--bg + label:hover, .checkbox--bg + label:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}

.radio--bg:active + label,
.checkbox--bg:active + label,
.radio--bg:focus + label,
.checkbox--bg:focus + label {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.1);
}

/* -------------------------------- 

File#: _1_rating
Title: Rating
Descr: A rating plugin that allows users to vote for your products
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --rating-icon-size: 1.75em;
}

.rating__control ul {
  display: inline-block;
  display: inline-flex;
  vertical-align: top;
}
.rating__control li {
  position: relative;
  height: var(--rating-icon-size);
  width: var(--rating-icon-size);
  float: left;
  cursor: pointer;
}
.rating__control li:focus {
  outline: none;
}
.rating__control li:focus::before {
  transform: scale(1);
  opacity: 0.2;
}
.rating__control li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: 0.2s;
}
.rating__control li.rating__item--zero {
  display: none;
}

.rating__control--is-hidden {
  display: none;
}

.rating__icon,
.rating__control li::before,
.rating[data-animation=on] .rating__control ul:hover .rating__icon {
  color: var(--color-primary);
}

.rating__icon--inactive,
.rating[data-animation=on] .rating__control li:hover ~ li .rating__icon,
.rating__item--checked ~ li .rating__icon {
  color: var(--color-contrast-lower);
}

.rating__icon {
  overflow: hidden;
}
.rating__icon svg {
  display: block;
  height: var(--rating-icon-size);
  width: var(--rating-icon-size);
  max-width: var(--rating-icon-size);
  pointer-events: none;
}

.rating--read-only .rating__control li {
  cursor: default;
}

.rating__icon--inactive {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.rating__item--half .rating__icon:not(.rating__icon--inactive) {
  position: relative;
  z-index: 2;
  width: 50%;
}

.rating[data-animation=on] .rating__control li:active .rating__icon {
  transform: scale(0.8);
}
.rating[data-animation=on] .rating__icon {
  transition: 0.2s;
}

.rating__select {
  display: none;
}

.rating__link {
  display: inline-block;
  transition: opacity 0.2s;
}
.rating__link:hover {
  opacity: 0.85;
}

/* -------------------------------- 

File#: _1_responsive-sidebar
Title: Responsive Sidebar
Descr: Responsive sidebar container
Usage: codyhouse.co/license

-------------------------------- */
/* mobile version only (--default) 👇 */
.sidebar:not(.sidebar--static) {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-fixed-element, 10);
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition: visibility 0s 0.3s;
}
.sidebar:not(.sidebar--static)::after {
  /* overlay layer */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
  transition: background-color 0.3s;
  z-index: 1;
}
.sidebar:not(.sidebar--static) .sidebar__panel {
  /* content */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg);
  transform: translateX(-100%);
  transition: box-shadow 0.3s, transform 0.3s;
}
.sidebar:not(.sidebar--static) .sidebar__panel .sidebar__logo {
  display: block;
  width: 120px;
  flex-shrink: 0;
  text-decoration: none;
}
.sidebar:not(.sidebar--static) .sidebar__panel .sidebar__logo svg, .sidebar:not(.sidebar--static) .sidebar__panel .sidebar__logo img {
  display: block;
  width: inherit;
}
.sidebar:not(.sidebar--static).sidebar--right-on-mobile .sidebar__panel {
  left: auto;
  right: 0;
  transform: translateX(100%);
}
.sidebar:not(.sidebar--static).sidebar--is-visible {
  visibility: visible;
  transition: none;
}
.sidebar:not(.sidebar--static).sidebar--is-visible::after {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.85);
}
.sidebar:not(.sidebar--static).sidebar--is-visible .sidebar__panel {
  transform: translateX(0);
  box-shadow: var(--shadow-md);
}

/* end mobile version */
.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: sticky;
  top: 0;
}

.sidebar__close-btn {
  --size: 32px;
  width: var(--size);
  height: var(--size);
  display: flex;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  transition: 0.2s;
  flex-shrink: 0;
}
.sidebar__close-btn .icon {
  display: block;
  margin: auto;
}
.sidebar__close-btn:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-md);
}

/* desktop version only (--static) 👇 */
.sidebar--static {
  flex-shrink: 0;
  position: sticky;
  top: 0;
}
.sidebar--static .sidebar__header {
  display: none;
}

.sidebar--sticky-on-desktop {
  position: sticky;
  top: var(--space-sm);
  max-height: calc(100vh - var(--space-sm));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* end desktop version */
.sidebar, .sidebar-loaded\:show {
  opacity: 0;
  /* hide sidebar - or other elements using the .sidebar-loaded:show class - while it is initialized in JS */
}

.sidebar--loaded {
  opacity: 1;
}

/* detect when the sidebar needs to switch from the mobile layout to a static one - used in JS */
[class*=sidebar--static]::before {
  display: none;
}

.sidebar--static::before {
  content: "static";
}

.sidebar--static\@xs::before {
  content: "mobile";
}
@media (min-width: 32rem) {
  .sidebar--static\@xs::before {
    content: "static";
  }
}

.sidebar--static\@sm::before {
  content: "mobile";
}
@media (min-width: 48rem) {
  .sidebar--static\@sm::before {
    content: "static";
  }
}

.sidebar--static\@md::before {
  content: "mobile";
}
@media (min-width: 64rem) {
  .sidebar--static\@md::before {
    content: "static";
  }
}

.sidebar--static\@lg::before {
  content: "mobile";
}
@media (min-width: 80rem) {
  .sidebar--static\@lg::before {
    content: "static";
  }
}

.sidebar--static\@xl::before {
  content: "mobile";
}
@media (min-width: 90rem) {
  .sidebar--static\@xl::before {
    content: "static";
  }
}

/* -------------------------------- 

File#: _1_reveal-effects
Title: Reveal Effects
Descr: A collection of reveal effects targeting specific elements as they enter the viewport
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --reveal-fx-duration: 0.6s;
  --reveal-fx-timing-function: var(--ease-out);
}

.reveal-fx {
  opacity: 0;
  transition: opacity, transform var(--reveal-fx-timing-function);
  transition-duration: var(--reveal-fx-duration);
}
.reveal-fx::before {
  display: none;
  content: "reveal-fx";
}

.reveal-fx--translate, .reveal-fx--translate-up {
  transform: translateY(50px);
}

.reveal-fx--translate-right {
  transform: translateX(-50px);
}

.reveal-fx--translate-left {
  transform: translateX(50px);
}

.reveal-fx--translate-down {
  transform: translateY(-50px);
}

.reveal-fx--scale {
  transform: scale(0.8);
}

.reveal-fx--scale-up {
  transform: translateY(50px) scale(0.8);
}

.reveal-fx--scale-right {
  transform: translateX(-50px) scale(0.8);
}

.reveal-fx--scale-left {
  transform: translateX(50px) scale(0.8);
}

.reveal-fx--scale-down {
  transform: translateY(-50px) scale(0.8);
}

.reveal-fx--rotate, .reveal-fx--rotate-down, .reveal-fx--rotate-right, .reveal-fx--rotate-left, .reveal-fx--rotate-up {
  perspective: 1000px;
}
.reveal-fx--rotate > *, .reveal-fx--rotate-down > *, .reveal-fx--rotate-right > *, .reveal-fx--rotate-left > *, .reveal-fx--rotate-up > * {
  transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
  backface-visibility: hidden;
}

.reveal-fx--rotate > *, .reveal-fx--rotate-down > * {
  transform-origin: top;
  transform: rotateX(-45deg);
}

.reveal-fx--rotate-right > * {
  transform-origin: left center;
  transform: rotateY(45deg);
}

.reveal-fx--rotate-left > * {
  transform-origin: right center;
  transform: rotateY(-45deg);
}

.reveal-fx--rotate-up > * {
  transform-origin: bottom;
  transform: rotateX(45deg);
}

.reveal-fx--text-mask {
  overflow: hidden;
}
.reveal-fx--text-mask > * {
  display: inline-block;
  transform: translateY(100%);
  transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
  will-change: transform;
}

[class*=reveal-fx--translate], [class*=reveal-fx--scale] {
  will-change: opacity, transform;
}

.reveal-fx--text-mask > *, [class*=reveal-fx--rotate] > * {
  will-change: transform;
}

.reveal-fx--clip-x > *,
.reveal-fx--clip-y > * {
  transition: opacity, clip-path var(--ease-out);
  transition-duration: var(--reveal-fx-duration);
}

.reveal-fx--clip-x > * {
  clip-path: polygon(10% 0%, 90% 0%, 90% 100%, 10% 100%);
}

.reveal-fx--clip-y > * {
  clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
}

.reveal-fx--is-visible {
  opacity: 1;
}
.reveal-fx--is-visible[class*=reveal-fx--translate], .reveal-fx--is-visible[class*=reveal-fx--scale], .reveal-fx--is-visible[class*=reveal-fx--rotate] > *, .reveal-fx--is-visible.reveal-fx--text-mask > * {
  transform: translate(0);
}
.reveal-fx--is-visible.reveal-fx--clip-x > *, .reveal-fx--is-visible.reveal-fx--clip-y > * {
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* -------------------------------- 

File#: _1_scribble-text-decoration
Title: Scribble Text Decoration
Descr: A collection of animated scribble text decorations
Usage: codyhouse.co/license

-------------------------------- */
.scribble-text-fx {
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.scribble-text-fx__label {
  position: relative;
  z-index: 2;
}

.scribble-text-fx__decoration {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
  max-width: none;
}

.scribble-text-fx--v1 .scribble-text-fx__decoration {
  top: -6px;
  left: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 12px);
}
.scribble-text-fx--v1 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  stroke-dashoffset: 367;
  stroke-dasharray: 367;
  transition: stroke-dashoffset 0.5s var(--ease-in-out);
}
.scribble-text-fx--v1:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v2 .scribble-text-fx__decoration {
  bottom: -5px;
  left: -10px;
  width: calc(100% + 20px);
  height: 8px;
}
.scribble-text-fx--v2 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  stroke-dashoffset: 155;
  stroke-dasharray: 155;
  transition: stroke-dashoffset 0.3s var(--ease-in-out);
}
.scribble-text-fx--v2:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v3 .scribble-text-fx__decoration {
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  width: calc(100% + 30px);
  height: 8px;
}
.scribble-text-fx--v3 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  transition: stroke-dashoffset 0.2s var(--ease-in-out);
}
.scribble-text-fx--v3 .scribble-text-fx__decoration > *:first-child {
  stroke-dashoffset: 149;
  stroke-dasharray: 149;
}
.scribble-text-fx--v3 .scribble-text-fx__decoration > *:last-child {
  stroke-dashoffset: 147;
  stroke-dasharray: 147;
  transition-delay: 0.2s;
}
.scribble-text-fx--v3:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v4 .scribble-text-fx__decoration {
  top: 50%;
  transform: translateY(-50%);
  right: -46px;
  width: 40px;
  height: auto;
}
.scribble-text-fx--v4 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  transition: stroke-dashoffset 0.2s;
}
.scribble-text-fx--v4 .scribble-text-fx__decoration > *:first-child {
  stroke-dashoffset: 33;
  stroke-dasharray: 33;
  transition-delay: 0.2s;
}
.scribble-text-fx--v4 .scribble-text-fx__decoration > *:last-child {
  stroke-dashoffset: 28;
  stroke-dasharray: 28;
  transition-delay: 0s;
}
.scribble-text-fx--v4:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}
.scribble-text-fx--v4:hover .scribble-text-fx__decoration > *:first-child {
  transition-delay: 0s;
}
.scribble-text-fx--v4:hover .scribble-text-fx__decoration > *:last-child {
  transition-delay: 0.2s;
}

.scribble-text-fx--v5 .scribble-text-fx__decoration {
  top: 0;
  right: 0;
  width: 22px;
  height: auto;
  transform: translate(50%, -50%);
}
.scribble-text-fx--v5 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  stroke-dashoffset: 16;
  stroke-dasharray: 16;
  transition: stroke-dashoffset 0.3s;
}
.scribble-text-fx--v5:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v6 .scribble-text-fx__decoration {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: auto;
}
.scribble-text-fx--v6 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  transition: stroke-dashoffset 0.2s var(--ease-in-out);
}
.scribble-text-fx--v6 .scribble-text-fx__decoration > *:first-child {
  stroke-dashoffset: 79;
  stroke-dasharray: 79;
  transition-delay: 0.2s;
}
.scribble-text-fx--v6 .scribble-text-fx__decoration > *:last-child {
  stroke-dashoffset: 73;
  stroke-dasharray: 73;
  transition-delay: 0s;
}
.scribble-text-fx--v6:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}
.scribble-text-fx--v6:hover .scribble-text-fx__decoration > *:first-child {
  transition-delay: 0s;
}
.scribble-text-fx--v6:hover .scribble-text-fx__decoration > *:last-child {
  transition-delay: 0.2s;
}

.scribble-text-fx--v7 .scribble-text-fx__decoration {
  bottom: -5px;
  left: -10px;
  width: calc(100% + 20px);
  height: 10px;
}
.scribble-text-fx--v7 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  stroke-dashoffset: 160;
  stroke-dasharray: 160;
  transition: stroke-dashoffset 0.4s var(--ease-in-out);
}
.scribble-text-fx--v7:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v8 .scribble-text-fx__decoration {
  top: 50%;
  transform: translateY(-50%);
  right: -34px;
  width: 29px;
  height: auto;
}
.scribble-text-fx--v8 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  transition: stroke-dashoffset 0.2s;
}
.scribble-text-fx--v8 .scribble-text-fx__decoration > *:first-child {
  stroke-dashoffset: 79;
  stroke-dasharray: 79;
  transition-delay: 0.2s;
}
.scribble-text-fx--v8 .scribble-text-fx__decoration > *:last-child {
  stroke-dashoffset: 18;
  stroke-dasharray: 18;
  transition-delay: 0s;
}
.scribble-text-fx--v8:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}
.scribble-text-fx--v8:hover .scribble-text-fx__decoration > *:first-child {
  transition-delay: 0s;
}
.scribble-text-fx--v8:hover .scribble-text-fx__decoration > *:last-child {
  transition-delay: 0.2s;
}

/* -------------------------------- 

File#: _1_scrolling-animations
Title: Scrolling Animations
Descr: Scrolling animations plugin
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --scroll-fx-translate-x: 0;
  --scroll-fx-translate-y: 0;
  --scroll-fx-translate-z: 0;
  --scroll-fx-rotate-x: 0;
  --scroll-fx-rotate-y: 0;
  --scroll-fx-rotate-z: 0;
  --scroll-fx-skew-x: 0;
  --scroll-fx-skew-y: 0;
  --scroll-fx-scale-x: 1;
  --scroll-fx-scale-y: 1;
  --scroll-fx-opacity: 1;
  --scroll-fx-stroke-dashoffset: 0;
}

.scroll-fx {
  transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
  opacity: var(--scroll-fx-opacity) !important;
  stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
}

.scroll-fx.scroll-fx--theme-transition,
.scroll-fx.scroll-fx--theme-transition > * {
  transition: 0.3s;
}

@media (min-width: 32rem) {
  .scroll-fx\@xs {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }

  .scroll-fx\@xs.scroll-fx--theme-transition,
.scroll-fx\@xs.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@media (min-width: 48rem) {
  .scroll-fx\@sm {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }

  .scroll-fx\@sm.scroll-fx--theme-transition,
.scroll-fx\@sm.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@media (min-width: 64rem) {
  .scroll-fx\@md {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }

  .scroll-fx\@md.scroll-fx--theme-transition,
.scroll-fx\@md.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@media (min-width: 80rem) {
  .scroll-fx\@lg {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }

  .scroll-fx\@lg.scroll-fx--theme-transition,
.scroll-fx\@lg.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@media (min-width: 90rem) {
  .scroll-fx\@xl {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }

  .scroll-fx\@xl.scroll-fx--theme-transition,
.scroll-fx\@xl.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@supports (--css: variables) {
  [data-theme=demo-dark] {
    --color-primary-darker: hsl(319, 78%, 49%);
    --color-primary-darker-h: 319;
    --color-primary-darker-s: 78%;
    --color-primary-darker-l: 49%;
    --color-primary-dark: hsl(319, 78%, 58%);
    --color-primary-dark-h: 319;
    --color-primary-dark-s: 78%;
    --color-primary-dark-l: 58%;
    --color-primary: hsl(319, 78%, 66%);
    --color-primary-h: 319;
    --color-primary-s: 78%;
    --color-primary-l: 66%;
    --color-primary-light: hsl(319, 78%, 72%);
    --color-primary-light-h: 319;
    --color-primary-light-s: 78%;
    --color-primary-light-l: 72%;
    --color-primary-lighter: hsl(319, 78%, 79%);
    --color-primary-lighter-h: 319;
    --color-primary-lighter-s: 78%;
    --color-primary-lighter-l: 79%;
    --color-accent-darker: hsl(250, 79%, 56%);
    --color-accent-darker-h: 250;
    --color-accent-darker-s: 79%;
    --color-accent-darker-l: 56%;
    --color-accent-dark: hsl(250, 79%, 60%);
    --color-accent-dark-h: 250;
    --color-accent-dark-s: 79%;
    --color-accent-dark-l: 60%;
    --color-accent: hsl(250, 79%, 65%);
    --color-accent-h: 250;
    --color-accent-s: 79%;
    --color-accent-l: 65%;
    --color-accent-light: hsl(250, 79%, 71%);
    --color-accent-light-h: 250;
    --color-accent-light-s: 79%;
    --color-accent-light-l: 71%;
    --color-accent-lighter: hsl(250, 79%, 76%);
    --color-accent-lighter-h: 250;
    --color-accent-lighter-s: 79%;
    --color-accent-lighter-l: 76%;
    --color-bg: hsl(240, 8%, 12%);
    --color-bg-h: 240;
    --color-bg-s: 8%;
    --color-bg-l: 12%;
    --color-contrast-lower: hsl(240, 6%, 15%);
    --color-contrast-lower-h: 240;
    --color-contrast-lower-s: 6%;
    --color-contrast-lower-l: 15%;
    --color-contrast-low: hsl(240, 5%, 24%);
    --color-contrast-low-h: 240;
    --color-contrast-low-s: 5%;
    --color-contrast-low-l: 24%;
    --color-contrast-medium: hsl(240, 3%, 55%);
    --color-contrast-medium-h: 240;
    --color-contrast-medium-s: 3%;
    --color-contrast-medium-l: 55%;
    --color-contrast-high: hsl(240, 10%, 86%);
    --color-contrast-high-h: 240;
    --color-contrast-high-s: 10%;
    --color-contrast-high-l: 86%;
    --color-contrast-higher: hsl(240, 47%, 97%);
    --color-contrast-higher-h: 240;
    --color-contrast-higher-s: 47%;
    --color-contrast-higher-l: 97%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.demo-scroll-fx-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
.demo-scroll-fx-grid > *:nth-child(1) {
  grid-column: 1/4;
  grid-row: 1/-1;
}
.demo-scroll-fx-grid > *:nth-child(2) {
  grid-column: 3/7;
  grid-row: 2/5;
}

/* -------------------------------- 

File#: _1_search-input
Title: Search input
Descr: Search input field with custom button
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --search-input-btn-width: 2.2em;
  --search-input-icon-size: 1em;
  --search-input-shortcut-margin: 0.325em;
  /* gap between the shortcut badge and the input edges */
}

.search-input {
  position: relative;
}

.search-input__input {
  width: 100%;
  height: 100%;
}
.search-input__input::-webkit-search-decoration, .search-input__input::-webkit-search-cancel-button, .search-input__input::-webkit-search-results-button, .search-input__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.search-input__input::-ms-clear, .search-input__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.search-input--icon-right .search-input__input {
  padding-right: var(--search-input-btn-width);
}
.search-input--icon-left .search-input__input {
  padding-left: var(--search-input-btn-width);
}

.search-input__btn {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: var(--search-input-btn-width);
}
.search-input__btn:active .icon {
  transform: translateY(2px);
}
.search-input__btn .icon {
  display: block;
  --size: var(--search-input-icon-size);
  margin-left: auto;
  margin-right: auto;
  color: var(--color-contrast-low);
  /* icon color */
  transition: 0.2s;
}
.search-input--icon-left .search-input__btn {
  left: 0;
  right: auto;
  pointer-events: none;
}

.search-input__btn:focus .icon,
.search-input .search-input__input:focus + .search-input__btn .icon {
  color: var(--color-primary);
  /* active icon color */
}

/* --shortcut */
.search-input__shortcut {
  position: absolute;
  right: var(--search-input-shortcut-margin);
  top: var(--search-input-shortcut-margin);
  height: calc(100% - var(--search-input-shortcut-margin)*2);
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  border: 1px solid var(--color-contrast-lower);
  border-radius: var(--radius-sm);
  --space-unit: 1em;
  padding: 0 var(--space-xxxs);
  line-height: 1;
  color: var(--color-contrast-medium);
}

.search-input:focus-within .search-input__shortcut {
  display: none;
}

/* -------------------------------- 

File#: _1_section-divider
Title: Section divider
Descr: A collection of SVG section dividers.
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --section-divider-width: 1920;
  --section-divider-height: 60;
  --section-divider-ratio: calc(100% * var(--section-divider-height) / var(--section-divider-width));
}

[class*=has-section-divider] {
  position: relative;
}

.has-section-dividers {
  padding-top: var(--section-divider-ratio);
  padding-bottom: var(--section-divider-ratio);
}
.has-section-dividers .section-divider + .section-divider {
  bottom: auto;
  top: -1px;
  transform: scaleY(-1);
}

.has-section-divider-top {
  padding-top: var(--section-divider-ratio);
}
.has-section-divider-top .section-divider {
  bottom: auto;
  top: -1px;
  transform: scaleY(-1);
}

.has-section-divider-bottom {
  padding-bottom: var(--section-divider-ratio);
}

.section-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.section-divider svg {
  position: relative;
  display: block;
  height: auto;
  max-width: none;
  width: 102%;
  left: -1%;
}

/* -------------------------------- 

File#: _1_smooth-scrolling
Title: Smooth Scrolling
Descr: Replace the default browser behaviour (jump) with a smooth scrolling transition
Usage: codyhouse.co/license

-------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding: var(--space-xl);
}

/* -------------------------------- 

File#: _1_sticky-banner
Title: Sticky Banner
Descr: A sticky banner that slides in passed a target element or a scrolling offset.
Usage: codyhouse.co/license

-------------------------------- */
.sticky-banner {
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: var(--z-index-fixed-element, 10);
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.sticky-banner--bottom {
  top: auto;
  bottom: -1px;
  transform: translateY(100%);
}

.sticky-banner--visible {
  transform: translateY(0);
}

.sticky-banner:not(.sticky-banner--visible) {
  box-shadow: none;
}

/* --------------------------------

File#: _1_sub-navigation
Title: Sub Navigation
Descr: Secondary navigation template
Usage: codyhouse.co/license

-------------------------------- */
.subnav__nav {
  position: relative;
  display: flex;
}
.subnav__nav::after {
  content: "";
  width: 1em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 0), hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 1));
  pointer-events: none;
}

.subnav__list {
  display: flex;
  overflow: auto;
}

.subnav__item {
  display: inline-block;
  flex-shrink: 0;
}

.subnav__link {
  display: block;
  font-size: var(--text-sm);
  padding: 1.5625em;
  text-decoration: none;
  color: hsla(var(--color-contrast-high-h), var(--color-contrast-high-s), var(--color-contrast-high-l), 0.65);
  border: 3px solid transparent;
  border-right-width: 0;
  border-left-width: 0;
  transition: 0.2s;
}
.subnav__link:hover {
  color: var(--color-contrast-high);
}
.subnav__link[aria-current=page] {
  border-bottom-color: var(--color-primary);
  color: var(--color-contrast-high);
}

.subnav:not(.subnav--collapsed) .subnav__control, .subnav:not(.subnav--collapsed) .subnav__close-btn {
  display: none;
}

.subnav--collapsed {
  display: inline-block;
}
.subnav--collapsed .subnav__wrapper {
  position: fixed;
  display: block;
  z-index: var(--z-index-overlay, 15);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
  visibility: hidden;
  opacity: 0;
}
.subnav--collapsed .subnav__wrapper--is-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}
.subnav--collapsed .subnav__wrapper--is-visible .subnav__nav {
  transform: translateY(0);
  transition: transform 0.3s;
}
.subnav--collapsed .subnav__nav {
  display: block;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  max-height: 100%;
  overflow: auto;
  transform: translateY(-1em);
}
.subnav--collapsed .subnav__nav::after {
  display: none;
}
.subnav--collapsed .subnav__list {
  flex-direction: column;
  overflow: visible;
  padding: 0 var(--space-md) var(--space-md);
}
.subnav--collapsed .subnav__link {
  border-width: 0;
  font-size: var(--text-md);
  padding: var(--space-xs) 0;
}
.subnav--collapsed .subnav__link[aria-current=page] {
  color: var(--color-primary);
}

.subnav__close-btn {
  --size: 2em;
  width: var(--size);
  height: var(--size);
  display: flex;
  margin: var(--space-xs) var(--space-xs) 0 auto;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  transition: 0.2s;
}
.subnav__close-btn:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-md);
}
.subnav__close-btn .icon {
  display: block;
  color: var(--color-contrast-high);
}

[class*=subnav--expanded]::before {
  display: none;
  content: "collapsed";
}

@media (min-width: 32rem) {
  .subnav--expanded\@xs::before {
    content: "expanded";
  }
}
@media (min-width: 48rem) {
  .subnav--expanded\@sm::before {
    content: "expanded";
  }
}
@media (min-width: 64rem) {
  .subnav--expanded\@md::before {
    content: "expanded";
  }
}
@media (min-width: 80rem) {
  .subnav--expanded\@lg::before {
    content: "expanded";
  }
}
@media (min-width: 90rem) {
  .subnav--expanded\@xl::before {
    content: "expanded";
  }
}
/* -------------------------------- 

File#: _1_switch-icon
Title: Switch Icon 
Descr: An icon transition generator that works with any icons
Usage: codyhouse.co/license

-------------------------------- */
.switch-icon {
  /* button */
  position: relative;
}

.switch-icon--disabled {
  /* optional - use in JS to temporary disable click event */
  pointer-events: none;
}

.switch-icon__icon {
  /* icon */
  font-size: 1em;
  /* icon size */
  display: block;
  will-change: transform;
}

.switch-icon__icon--a {
  opacity: 1;
}

.switch-icon__icon--b {
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  opacity: 0;
}

.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--hover:hover .switch-icon__icon--a {
  opacity: 0;
}
.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--hover:hover .switch-icon__icon--b {
  opacity: 1;
}

/* --scale */
.switch-icon--scale .switch-icon__icon {
  transition: opacity 0s 0.2s, transform 0.4s;
}
.switch-icon--scale .switch-icon__icon--a {
  transform: scale(1);
}
.switch-icon--scale .switch-icon__icon--b {
  transform: scale(0.8);
}

.switch-icon--scale.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--scale.switch-icon--hover:hover .switch-icon__icon--a {
  transform: scale(0.8);
}
.switch-icon--scale.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--scale.switch-icon--hover:hover .switch-icon__icon--b {
  transform: scale(1);
}

/* --rotate */
.switch-icon--rotate .switch-icon__icon {
  transition: opacity 0s 0.2s, transform 0.4s;
}
.switch-icon--rotate .switch-icon__icon--a {
  transform: rotate(0);
}
.switch-icon--rotate .switch-icon__icon--b {
  transform: rotate(90deg);
}

.switch-icon--rotate.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--rotate.switch-icon--hover:hover .switch-icon__icon--a {
  transform: rotate(-90deg);
}
.switch-icon--rotate.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--rotate.switch-icon--hover:hover .switch-icon__icon--b {
  transform: rotate(0);
}

/* --flip */
.switch-icon--flip {
  perspective: 10em;
}
.switch-icon--flip .switch-icon__icon {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: opacity 0s 0.2s, transform 0.4s var(--ease-out-back);
}
.switch-icon--flip .switch-icon__icon--a {
  opacity: 1;
  transform: rotateY(0deg);
}
.switch-icon--flip .switch-icon__icon--b {
  opacity: 1;
  transform: rotateY(-180deg);
}

.switch-icon--flip.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--flip.switch-icon--hover:hover .switch-icon__icon--a {
  opacity: 1;
  transform: rotateY(180deg);
}
.switch-icon--flip.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--flip.switch-icon--hover:hover .switch-icon__icon--b {
  opacity: 1;
  transform: rotateY(0deg);
}

/* slide effects */
.switch-icon--slide-up,
.switch-icon--slide-down,
.switch-icon--slide-right,
.switch-icon--slide-left {
  overflow: hidden;
}
.switch-icon--slide-up .switch-icon__icon,
.switch-icon--slide-down .switch-icon__icon,
.switch-icon--slide-right .switch-icon__icon,
.switch-icon--slide-left .switch-icon__icon {
  transition: opacity 0.3s, transform 0.3s;
}

/* slide-up */
.switch-icon--slide-up .switch-icon__icon--a {
  transform: translateY(0);
}
.switch-icon--slide-up .switch-icon__icon--b {
  transform: translateY(100%);
}

.switch-icon--slide-up.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--slide-up.switch-icon--hover:hover .switch-icon__icon--a {
  transform: translateY(-100%);
}
.switch-icon--slide-up.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--slide-up.switch-icon--hover:hover .switch-icon__icon--b {
  transform: translateY(0);
}

/* slide-down */
.switch-icon--slide-down .switch-icon__icon--a {
  transform: translateY(0);
}
.switch-icon--slide-down .switch-icon__icon--b {
  transform: translateY(-100%);
}

.switch-icon--slide-down.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--slide-down.switch-icon--hover:hover .switch-icon__icon--a {
  transform: translateY(100%);
}
.switch-icon--slide-down.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--slide-down.switch-icon--hover:hover .switch-icon__icon--b {
  transform: translateY(0);
}

/* slide-right */
.switch-icon--slide-right .switch-icon__icon--a {
  transform: translateX(0);
}
.switch-icon--slide-right .switch-icon__icon--b {
  transform: translateX(-100%);
}

.switch-icon--slide-right.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--slide-right.switch-icon--hover:hover .switch-icon__icon--a {
  transform: translateX(100%);
}
.switch-icon--slide-right.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--slide-right.switch-icon--hover:hover .switch-icon__icon--b {
  transform: translateX(0);
}

/* slide-left */
.switch-icon--slide-left .switch-icon__icon--a {
  transform: translateX(0);
}
.switch-icon--slide-left .switch-icon__icon--b {
  transform: translateX(100%);
}

.switch-icon--slide-left.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--slide-left.switch-icon--hover:hover .switch-icon__icon--a {
  transform: translateX(-100%);
}
.switch-icon--slide-left.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--slide-left.switch-icon--hover:hover .switch-icon__icon--b {
  transform: translateX(0);
}

/* -------------------------------- 

File#: _1_tabs
Title: Tabs
Descr: A list of content sections (panels), accessible one at a time using control labels
Usage: codyhouse.co/license

-------------------------------- */
.tabs__control {
  text-decoration: none;
  color: var(--color-contrast-medium);
}
.tabs__control:focus {
  outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  outline-offset: 2px;
}
.tabs__control:hover {
  color: var(--color-contrast-high);
}

.tabs__control[aria-selected=true] {
  color: var(--color-contrast-high);
  text-decoration: underline;
}

/* -------------------------------- 

File#: _1_text-background-effects
Title: Text Background Effects
Descr: A collection of text backgrounds animated on hover
Usage: codyhouse.co/license

-------------------------------- */
.text-bg-fx {
  background-repeat: no-repeat;
  will-change: background-size;
  transition: background-size 0.3s var(--ease-in-out);
}
.text-bg-fx:hover {
  background-size: 100% 100%;
}

.text-bg-fx--scale-x {
  padding: var(--space-xxxxs) 0;
  background-image: linear-gradient(hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2), hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2));
  background-size: 0% 100%;
}

.text-bg-fx--scale-y {
  text-decoration: none;
  background-image: linear-gradient(hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2), hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2));
  background-size: 100% 2px;
  background-position: center bottom;
}

.text-bg-fx--underline,
.text-bg-fx--underline-bold {
  text-decoration: none;
  background-size: 0% 100%;
}

.text-bg-fx--underline {
  /* text underline size = 1px */
  background-image: linear-gradient(transparent calc(100% - 3px), currentColor calc(100% - 3px), currentColor calc(100% - 2px), transparent 2px);
}

.text-bg-fx--underline-bold {
  background-image: linear-gradient(transparent 50%, hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2) 50%);
}

.text-bg-fx--text-shadow {
  /* you can use this with the .text-bg-fx--underline effect */
  text-shadow: 1.5px 1px var(--color-bg), -1.5px 1px var(--color-bg), 0px 1px var(--color-bg);
}

/* -------------------------------- 

File#: _1_text-points
Title: Text Points
Descr: A list of text components
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --text-points-bullet-size: 32px;
  --text-points-bullet-font-size: 14px;
  --text-points-bullet-margin-right: var(--space-xs);
}

.text-points--counter .text-points__text,
.text-points--letter .text-points__text,
.text-points--icon .text-points__text {
  padding-left: calc(var(--text-points-bullet-size) + var(--text-points-bullet-margin-right));
}
.text-points--counter .text-points__bullet,
.text-points--letter .text-points__bullet,
.text-points--icon .text-points__bullet {
  position: relative;
  margin-left: calc(-1 * var(--text-points-bullet-size));
  left: calc(-1 * var(--text-points-bullet-margin-right));
}
.text-points--counter .text-points__bullet::before,
.text-points--letter .text-points__bullet::before,
.text-points--icon .text-points__bullet::before {
  content: "X";
  display: inline-flex;
  width: var(--text-points-bullet-size);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.text-points--counter .text-points__bullet::after,
.text-points--letter .text-points__bullet::after,
.text-points--icon .text-points__bullet::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: var(--text-points-bullet-size);
  height: var(--text-points-bullet-size);
  background-color: var(--color-bg-dark);
  border-radius: 50%;
  font-size: var(--text-points-bullet-font-size);
  font-weight: 600;
  color: var(--color-contrast-medium);
}

.text-points--counter .text-points__item {
  counter-increment: text-points;
}
.text-points--counter .text-points__bullet::after {
  content: counter(text-points);
}

.text-points--letter .text-points__bullet::after {
  content: "?";
}

.text-points--icon .text-points__bullet::after {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg fill='%23000000'%3E%3Ccircle cx='16' cy='16' r='16' opacity='.15'%3E%3C/circle%3E%3Cpath d='M16 24a1 1 0 0 1-1-1v-9a1 1 0 0 1 2 0v9a1 1 0 0 1-1 1z'%3E%3C/path%3E%3Ccircle cx='16' cy='9.5' r='1.5'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg fill='%23000000'%3E%3Ccircle cx='16' cy='16' r='16' opacity='.15'%3E%3C/circle%3E%3Cpath d='M16 24a1 1 0 0 1-1-1v-9a1 1 0 0 1 2 0v9a1 1 0 0 1-1 1z'%3E%3C/path%3E%3Ccircle cx='16' cy='9.5' r='1.5'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
  background: var(--color-primary);
}

/* -------------------------------- 

File#: _1_toast
Title: Toast
Descr: Notification message
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --toast-width: 400px;
  --toast-gap: var(--space-xs);
  --toast-transition-duration: .3s;
}

/* element created in JS - used to wrap toasts with same position (e.g., top-right) */
.toast-wrapper {
  width: var(--toast-width);
  max-width: 80%;
  padding: var(--space-sm);
  z-index: var(--z-index-fixed-element);
  pointer-events: none;
}

.toast {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.98);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: fixed;
  pointer-events: auto;
  will-change: transform;
  transition: opacity var(--toast-transition-duration), visibility 0s, transform var(--toast-transition-duration) var(--ease-out);
}

.toast--hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity var(--toast-transition-duration), visibility 0s var(--toast-transition-duration), transform var(--toast-transition-duration) var(--ease-out);
}

.toast--top-right,
.toast--top-center,
.toast--top-left {
  margin-bottom: var(--toast-gap);
}

.toast--bottom-right,
.toast--bottom-center,
.toast--bottom-left {
  margin-top: var(--toast-gap);
}

.toast__title, .toast__p {
  color: var(--color-bg);
}

.toast__p {
  opacity: 0.6;
}

.toast__close-btn {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  display: flex;
  background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toast__close-btn .icon {
  --size: 12px;
  margin: auto;
  color: var(--color-bg);
}
.toast__close-btn:hover {
  background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.1);
}

.toast__icon-wrapper {
  --size: 32px;
  width: var(--size);
  height: var(--size);
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
}
.toast__icon-wrapper .icon {
  --size: 16px;
  margin: auto;
}

.toast__icon-wrapper--warning {
  background-color: hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), 0.2);
}
.toast__icon-wrapper--warning .icon {
  color: var(--color-warning);
}

.toast__icon-wrapper--success {
  background-color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), 0.2);
}
.toast__icon-wrapper--success .icon {
  color: var(--color-success);
}

/* -------------------------------- 

File#: _1_tooltip
Title: Tooltip
Descr: A popup displaying additional text information
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --tooltip-triangle-size: 12px;
}

.tooltip-trigger {
  /* style inline-text tooltip trigger */
  white-space: nowrap;
  border-bottom: 1px dotted var(--color-contrast-high);
  cursor: help;
}

.tooltip {
  /* tooltip element - created using js */
  position: absolute;
  z-index: var(--z-index-popover, 5);
  display: inline-block;
  padding: var(--space-xxs) var(--space-xs);
  border-radius: var(--radius-md);
  max-width: 200px;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.98);
  box-shadow: var(--shadow-md);
  color: var(--color-bg);
  font-size: var(--text-sm);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity 0.2s, visibility 0.2s;
}
.tooltip a {
  color: inherit;
  text-decoration: underline;
}
@supports (clip-path: inset(50%)) {
  .tooltip::before {
    /* tooltip triangle  */
    content: "";
    position: absolute;
    background-color: inherit;
    border: inherit;
    width: var(--tooltip-triangle-size);
    height: var(--tooltip-triangle-size);
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
  }
}

.tootip:not(.tooltip--sticky) {
  pointer-events: none;
}

/* size variations */
.tooltip--sm {
  max-width: 150px;
  font-size: var(--text-xs);
  padding: var(--space-xxxs) var(--space-xxs);
}

.tooltip--md {
  max-width: 300px;
  padding: var(--space-xs) var(--space-sm);
}

.tooltip--lg {
  max-width: 350px;
  font-size: var(--text-base-size);
  padding: var(--space-xs) var(--space-sm);
}

/* tooltip position */
.tooltip {
  /* variable used in JS to proper place tooltip triangle */
  --tooltip-triangle-translate: 0px;
}

.tooltip--top::before, .tooltip--bottom::before {
  left: calc(50% - var(--tooltip-triangle-size) / 2);
}

.tooltip--top::before {
  bottom: calc(var(--tooltip-triangle-size) * -0.5);
  transform: translateX(var(--tooltip-triangle-translate)) rotate(-45deg);
}

.tooltip--bottom::before {
  top: calc(var(--tooltip-triangle-size) * -0.5);
  transform: translateX(var(--tooltip-triangle-translate)) rotate(135deg);
}

.tooltip--left::before, .tooltip--right::before {
  top: calc(50% - var(--tooltip-triangle-size) / 2);
}

.tooltip--left::before {
  right: calc(var(--tooltip-triangle-size) * -0.5);
  transform: translateX(var(--tooltip-triangle-translate)) rotate(-135deg);
}

.tooltip--right::before {
  left: calc(var(--tooltip-triangle-size) * -0.5);
  transform: translateX(var(--tooltip-triangle-translate)) rotate(45deg);
}

.tooltip--is-hidden {
  /* class used in JS to hide the tooltip element before its top/left positions are set */
  visibility: hidden;
  opacity: 0;
}

/* -------------------------------- 

File#: _2_accordion-v2
Title: Accordion v2
Descr: Stacked, expandable content sections
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --accordion-v2-icon-size: 16px;
  --accordion-v2-icon-stroke-width: 3px;
}

.accordion-v2__item {
  background-color: var(--color-bg);
  border: 2px solid var(--color-contrast-higher);
  border-radius: var(--radius-lg);
  transition: 0.3s;
}
.accordion-v2__item:hover {
  box-shadow: 0 0 0 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.accordion-v2__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.accordion-v2__header .icon {
  --size: var(--accordion-v2-icon-size);
}
.accordion-v2__header .icon .icon__group {
  stroke-width: var(--accordion-v2-icon-stroke-width);
}

.accordion-v2__icon-arrow {
  color: var(--color-primary-dark);
}
.accordion-v2__icon-arrow .icon__group {
  will-change: transform;
  transform-origin: 50% 50%;
}
.accordion-v2__icon-arrow .icon__group > * {
  transform-origin: 50% 50%;
  stroke-dasharray: 20;
  transform: translateY(4px);
}
.accordion-v2__icon-arrow .icon__group > *:first-child {
  stroke-dashoffset: 10.15;
}
.accordion-v2__icon-arrow .icon__group > *:last-child {
  stroke-dashoffset: 10.15;
}

.accordion-v2__item--is-open > .accordion-v2__header > .accordion-v2__icon-arrow .icon__group {
  transform: rotate(-90deg);
}
.accordion-v2__item--is-open > .accordion-v2__header > .accordion-v2__icon-arrow .icon__group > *:first-child, .accordion-v2__item--is-open > .accordion-v2__header > .accordion-v2__icon-arrow .icon__group *:last-child {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}

.accordion-v2__panel {
  display: none;
  will-change: height;
  transform: translateZ(0px);
}

.accordion-v2__item--is-open > .accordion-v2__panel {
  display: block;
}

.accordion-v2[data-animation=on] .accordion-v2__item--is-open .accordion-v2__panel > * {
  animation: accordion-v2-entry-animation 0.4s var(--ease-out);
}
.accordion-v2[data-animation=on] .accordion-v2__icon-arrow .icon__group {
  transition: transform 0.3s var(--ease-out);
}
.accordion-v2[data-animation=on] .accordion-v2__icon-arrow .icon__group > * {
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: var(--ease-out);
}

@keyframes accordion-v2-entry-animation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* -------------------------------- 

File#: _2_cards-scrolling-effects
Title: Cards Scrolling Effects
Descr: A gallery of cards/images that animate on scroll
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_copy-to-clipboard
Title: Copy To Clipboard
Descr: A Vanilla JavaScript plugin to copy content to the clipboard
Usage: codyhouse.co/license

-------------------------------- */
.copy-to-clip {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-md);
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  cursor: pointer;
  transition: 0.2s;
}
.copy-to-clip:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
}
.copy-to-clip:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.35);
}

.copy-to-clip__icon-check {
  stroke-dashoffset: 8.49;
  stroke-dasharray: 8.49 8.49;
  transition: stroke-dashoffset 0.3s;
}

.copy-to-clip--copied {
  /* added in JS when content has been copied */
}
.copy-to-clip--copied .copy-to-clip__icon-check {
  stroke-dashoffset: 0;
}

/* -------------------------------- 

File#: _2_diagonal-animated-divider
Title: Diagonal Animated Divider
Descr: A diagonal section divider that animates on scroll
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_dropdown
Title: Dropdown
Descr: A hoverable link that toggles the visibility of a dropdown list
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --dropdown-item-padding: var(--space-xxs) var(--space-sm);
}

.dropdown {
  position: relative;
}

.dropdown__menu {
  width: 200px;
  border-radius: var(--radius-md);
  padding: var(--space-xxxs) 0;
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  z-index: var(--z-index-popover, 5);
  position: absolute;
  left: 0;
  top: 100%;
  --space-unit: 1rem;
  --text-unit: 1rem;
  font-size: var(--text-unit);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s 0.2s;
}

@media (pointer: fine) {
  .dropdown__wrapper:hover > .dropdown__menu,
.dropdown__sub-wrapper:hover > .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s;
  }

  .dropdown__sub-wrapper:hover > .dropdown__menu {
    left: 100%;
  }
}
@media not all and (pointer: fine) {
  .dropdown__trigger-icon {
    display: none;
  }
}
.dropdown__item {
  display: block;
  text-decoration: none;
  color: var(--color-contrast-high);
  padding: var(--dropdown-item-padding);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s;
}
.dropdown__item:hover, .dropdown__item.dropdown__item--hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}

.dropdown__separator {
  height: 1px;
  background-color: var(--color-contrast-lower);
  margin: var(--dropdown-item-padding);
}

.dropdown__sub-wrapper {
  position: relative;
}
.dropdown__sub-wrapper > .dropdown__item {
  position: relative;
  padding-right: calc(var(--space-sm) + 12px);
}
.dropdown__sub-wrapper > .dropdown__item .icon {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  right: var(--space-xxs);
  top: calc(50% - 6px);
}
.dropdown__sub-wrapper > .dropdown__menu {
  top: calc(var(--space-xxs) * -1);
  box-shadow: var(--inner-glow), var(--shadow-md);
}

.dropdown__menu {
  top: calc(100% + 4px);
}

.dropdown__sub-wrapper .dropdown__menu {
  top: calc(var(--space-xxs) * -1);
}

@media (pointer: fine) {
  .dropdown__menu--is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s;
  }
}
.dropdown__menu--is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s 0.2s;
}

.dropdown__sub-wrapper > .dropdown__menu--is-visible,
.dropdown__sub-wrapper > .dropdown__menu--is-hidden {
  left: 100%;
}
.dropdown__sub-wrapper > .dropdown__menu--is-visible.dropdown__menu--left,
.dropdown__sub-wrapper > .dropdown__menu--is-hidden.dropdown__menu--left {
  left: -100%;
}

/* -------------------------------- 

File#: _2_flexi-header
Title: Flexi Header
Descr: Customizable header template
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --f-header-height: 54px;
  --f-header-logo-width: 104px;
}
@media (min-width: 64rem) {
  :root {
    --f-header-height: 80px;
  }
}

.f-header {
  height: var(--f-header-height);
  width: 100%;
  z-index: var(--z-index-header, 3);
}
.f-header::before {
  /* used in JS to detect menu style */
  display: none;
  content: "mobile";
}

.f-header--expanded {
  /* class added when navigation is visible - small devices only */
}

.f-header__mobile-content {
  /* logo + menu button on small devices */
  position: relative;
  display: flex;
  height: 100%;
  justify-content: space-between;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

.f-header__logo {
  display: block;
  width: var(--f-header-logo-width);
  flex-shrink: 0;
  text-decoration: none;
}
.f-header__logo svg, .f-header__logo img {
  display: block;
}

.f-header__nav-control {
  /* menu button */
  --anim-menu-btn-size: 40px;
  /* 🍔 icon */
  --anim-menu-btn-icon-size: 28px;
  --anim-menu-btn-icon-stroke: 2px;
}

.f-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--f-header-offset, 0px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0 0 var(--space-md);
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1em);
}
.f-header__nav::before {
  /* top header bg + border */
  content: "";
  display: block;
  position: sticky;
  top: 0;
  height: var(--f-header-height);
  background-color: inherit;
  border-bottom: 1px solid var(--color-contrast-lower);
}

.f-header__nav--is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: visibility 0s, opacity 0.3s, transform 0.3s;
}

.f-header__nav-logo-wrapper {
  display: none;
  /* hide logo nav on small devices */
}

.f-header__item {
  flex-shrink: 0;
  border-bottom: 1px solid var(--color-contrast-lower);
}

.f-header__dropdown-icon {
  --size: 16px;
  flex-shrink: 0;
  margin: 0 10px 0 auto;
  display: none;
  /* hide on mobile if link */
}
.f-header__dropdown-control .f-header__dropdown-icon {
  display: block;
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link,
.f-header__btn,
.f-header__form-control {
  font-size: var(--text-base);
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link {
  display: flex;
  align-items: center;
  color: var(--color-contrast-higher);
  text-decoration: none;
  padding: var(--space-xxxxs) 0;
}
.f-header__link:hover, .f-header__link[aria-current=page],
.f-header__dropdown-control:hover,
.f-header__dropdown-control[aria-current=page],
.f-header__dropdown-link:hover,
.f-header__dropdown-link[aria-current=page] {
  color: var(--color-primary);
}

.f-header__btn,
.f-header__form-control {
  width: 100%;
  margin: var(--space-xs) 0;
}

.f-header__dropdown-control {
  width: 100%;
}

.f-header__dropdown {
  /* sub navigation */
  padding-left: var(--space-md);
  /* offset sub nav */
}

.f-header__dropdown-control + .f-header__dropdown {
  display: none;
}
.f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
  display: block;
}

@media (min-width: 64rem) {
  .f-header::before {
    content: "desktop";
  }

  .f-header__mobile-content {
    display: none;
    /* hide logo + menu (mobile content) */
  }

  .f-header__nav {
    /* reset */
    position: static;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: none;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    height: var(--f-header-height);
  }
  .f-header__nav::before {
    /* reset */
    display: none;
  }

  .f-header__nav-logo-wrapper {
    display: flex;
  }

  .f-header__nav-grid,
.f-header__list {
    display: flex;
    align-items: center;
  }

  .f-header__nav-grid {
    height: 100%;
  }

  .f-header__item {
    position: relative;
    border-bottom: none;
    margin-right: var(--space-sm);
    /* margin between nav items */
  }
  .f-header__item:last-child {
    margin-right: 0;
  }

  .f-header__dropdown-icon {
    --size: 12px;
    display: block;
    margin: 0 0 0 var(--space-xxxxs);
  }

  .f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link,
.f-header__btn,
.f-header__form-control {
    font-size: 1.125rem;
  }

  .f-header__link {
    padding: var(--space-xxxs) var(--space-xxs);
  }

  .f-header__link--icon span {
    display: none;
    /* hide icon label */
  }

  .f-header__btn,
.f-header__form-control {
    margin: 0;
    /* reset */
  }

  .f-header__dropdown {
    position: absolute;
    top: 100%;
    width: 220px;
    left: calc(50% - 110px);
    padding: var(--space-xxxs) 0;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--inner-glow), var(--shadow-md);
    z-index: var(--z-index-popover, 5);
    /* hide */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s 0.2s, opacity 0.2s 0s;
  }
  .f-header__dropdown-control + .f-header__dropdown {
    display: block;
    /* reset style */
  }
  .f-header__item:hover .f-header__dropdown, .f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: visibility 0.2s 0s, opacity 0.2s 0s;
  }

  .f-header__dropdown-link {
    color: var(--color-contrast-high);
    padding: var(--space-xs) var(--space-sm);
    transition: 0.2s;
  }
  .f-header__dropdown-link:hover {
    background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
    color: var(--color-contrast-higher);
  }
}
/* -------------------------------- 

File#: _2_form-template
Title: Form Template
Descr: Form template example
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_main-header-v3
Title: Main Header v3
Descr: Accessible website navigation
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --header-v3-height: 50px;
  /* header height on small screens */
}
@media (min-width: 64rem) {
  :root {
    --header-v3-height: 70px ;
  }
}

.header-v3 {
  height: var(--header-v3-height);
  width: 100%;
  z-index: var(--z-index-header, 3);
  transition: background 0.3s;
}

.header-v3--expanded {
  /* class added when navigation is visible (small devices) or search input is visible (big devices) */
}

.header-v3__container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.header-v3__logo {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}
.header-v3__logo a, .header-v3__logo svg {
  display: block;
}

.header-v3__nav-control.switch-icon {
  /* menu button - visible only on small screens */
  padding: var(--space-xxs);
  z-index: 2;
}
.header-v3__nav-control.switch-icon .switch-icon__icon {
  font-size: 24px;
  /* icon size */
}

.header-v3__nav {
  /* main navigation */
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  z-index: 1;
  /* hide */
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height 0.5s var(--ease-in-out);
}
.header-v3__nav::before {
  /* top border */
  content: "";
  position: absolute;
  top: var(--header-v3-height);
  width: 100%;
  height: 1px;
  background-color: var(--color-contrast-lower);
  z-index: 10;
}

.header-v3__nav--is-visible {
  /* show nav */
  clip: auto;
  clip-path: none;
  height: 100vh;
  visibility: visible;
}

.header-v3__nav-list {
  position: absolute;
  top: var(--header-v3-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-v3-height));
  padding: var(--space-sm) var(--component-padding) var(--component-padding);
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  overscroll-behavior: contain;
}

.header-v3__nav-item {
  border-bottom: 1px solid var(--color-contrast-lower);
  opacity: 0;
  transform: translateY(-10%);
  transition: opacity 0.4s, transform 0.4s;
}
.header-v3__nav--animate-children .header-v3__nav-item {
  /* class used to trigger list items animation  */
  opacity: 1;
  transform: translateY(0);
}
.header-v3__nav:not(.header-v3__nav--animate-children) .header-v3__nav-item {
  transition-delay: 0s !important;
}

.header-v3__nav-item--logo,
.header-v3__nav-item--search-btn {
  display: none;
  /* hide logo within nav and search btn */
}

.header-v3__nav-item--search-form {
  margin: var(--space-xs) 0;
  border-bottom: none;
}

.header-v3__nav-link {
  display: block;
  padding: var(--space-sm) 0;
  font-size: var(--text-md);
  color: var(--color-contrast-high);
  text-decoration: none;
}
.header-v3__nav-link:hover {
  color: var(--color-primary);
}

.header-v3__nav-link--icon {
  display: flex;
  align-items: center;
}
.header-v3__nav-link--icon .icon {
  flex-shrink: 0;
  color: currentColor;
}
.header-v3__nav-link--icon span {
  /* text */
  margin-left: var(--space-xxs);
}

@media (min-width: 64rem) {
  .header-v3 {
    height: var(--header-v3-height);
  }

  .header-v3__container {
    position: relative;
  }

  .header-v3__nav-control,
.header-v3__logo {
    display: none;
    /* hide search and menu button */
  }

  .header-v3__nav {
    /* reset */
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    position: static;
    clip: auto;
    clip-path: none;
    height: auto;
    overflow: visible;
    visibility: visible;
    overscroll-behavior: auto;
  }
  .header-v3__nav::before {
    display: none;
  }

  .header-v3__nav-list {
    /* reset */
    position: static;
    padding: 0;
    width: auto;
    height: auto;
    overflow: visible;
    overscroll-behavior: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-v3__nav-item {
    /* reset */
    border-bottom: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s, visibility 0.3s;
    transition-delay: 0s !important;
    /* reset inline delay set in JS for the mobile animation */
  }

  .header-v3__nav-item--logo {
    /* make visible logo inside nav */
    display: block;
  }
  .header-v3__nav-item--logo .header-v3__logo {
    display: block;
  }

  .header-v3__nav-item--search-btn {
    /* show search btn */
    display: block;
  }
  .header-v3__nav-item--search-btn .switch-icon {
    padding: var(--space-xxxs);
  }
  .header-v3__nav-item--search-btn .switch-icon__icon {
    display: block;
  }

  .header-v3__nav-link {
    display: inline-flex;
    padding: var(--space-xxxs);
    font-size: 0.9em;
  }

  .header-v3__nav-link--icon span {
    display: none;
    /* hide labels and show only icons */
  }

  .header-v3__nav-link--icon,
.header-v3__nav-item--search-btn .switch-icon__icon {
    font-size: 20px;
    /* icons size */
  }

  .header-v3__nav-item--search-btn {
    z-index: 4;
  }

  .header-v3__nav-item--search-form {
    margin: 0;
    /* reset */
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - var(--space-lg));
    height: 100%;
    z-index: var(--z-index-popover, 5);
    transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header-v3__nav--animate-children .header-v3__nav-item--search-form {
    /* reset mobile style */
    opacity: 0;
  }

  .header-v3__nav-form-control {
    height: 50px;
    position: absolute;
    left: 0;
    padding: var(--space-xs) var(--space-sm);
    top: calc(50% - 25px);
    will-change: transform;
    transition: transform 0.3s;
    transform: translateY(-50%);
  }

  .header-v3--show-search {
    background: var(--color-bg);
  }
  .header-v3--show-search .header-v3__nav-item {
    opacity: 0;
    visibility: hidden;
  }
  .header-v3--show-search .header-v3__nav-item--search-form,
.header-v3--show-search .header-v3__nav-item--search-btn {
    visibility: visible;
    opacity: 1;
  }
  .header-v3--show-search .header-v3__nav-form-control {
    transform: translateY(0);
  }
}
/* --------------------------------

File#: _2_modal-window-full-screen
Title: Full Screen Modal Window
Descr: A full screen modal window
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_side-navigation-v3
Title: Side Navigation v3
Descr: A primary navigation located in the sidebar
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --side-template-mobile-header-height: 60px;
}

@media not all and (min-width: 64rem) {
  .side-template-v3 .sidebar {
    --space-unit: 1.25rem;
    --text-unit: 1rem;
    font-size: var(--text-unit);
  }
}

/* mobile header - hidden on bigger screens */
.side-template-v3__mobile-header {
  height: var(--side-template-mobile-header-height);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}
.side-template-v3__mobile-header .side-template-v3__logo {
  display: block;
  width: 72px;
  flex-shrink: 0;
  text-decoration: none;
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
}
.side-template-v3__mobile-header .side-template-v3__logo svg, .side-template-v3__mobile-header .side-template-v3__logo img {
  display: block;
  width: inherit;
}

/* main */
@media (min-width: 64rem) {
  .side-template-v3__logo {
    display: block;
    width: 128px;
    position: relative;
    left: unset;
    top: unset;
  }

  .side-template-v3__mobile-header {
    display: none;
  }

  .side-template-v3__main {
    min-height: 100vh;
  }
}
/* -------------------------------- 

File#: _2_slideshow
Title: Slideshow
Descr: Show a collection of items one at a time
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --slideshow-height: 280px;
  --slideshow-fade-transition-duration: 0.25s;
  --slideshow-slide-transition-duration: 0.35s;
  --slideshow-prx-transition-duration: 0.5s;
  --slideshow-btn-width: 1.6em;
  --slideshow-btn-height: 3.2em;
  --slideshow-btn-icon-size: 1.6em;
  --slideshow-btn-offset: var(--space-xs);
}
@media (min-width: 48rem) {
  :root {
    --slideshow-height: 380px;
  }
}
@media (min-width: 64rem) {
  :root {
    --slideshow-height: 480px;
  }
}
@media (min-width: 80rem) {
  :root {
    --slideshow-height: 580px;
  }
}

.slideshow__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slideshow-height);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.slideshow__item:focus {
  outline: none;
}

.slideshow--ratio-16\:9 .slideshow__item {
  height: 0;
  padding-bottom: 56.25%;
}

.slideshow--ratio-4\:3 .slideshow__item {
  height: 0;
  padding-bottom: 75%;
}

.slideshow--ratio-1\:1 .slideshow__item {
  height: 0;
  padding-bottom: 100%;
}

.slideshow {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.slideshow__content {
  overflow: hidden;
}

.slideshow__item {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
}

.slideshow__item--selected {
  position: relative;
  z-index: 3;
  visibility: visible;
}

.slideshow--transition-fade .slideshow__item {
  opacity: 0;
  transition: opacity 0s var(--slideshow-fade-transition-duration), visibility 0s var(--slideshow-fade-transition-duration);
}

.slideshow--transition-fade .slideshow__item--selected {
  opacity: 1;
  transition: opacity var(--slideshow-fade-transition-duration);
}

.slideshow--transition-slide .slideshow__item {
  animation-duration: var(--slideshow-slide-transition-duration);
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease-out);
}
.slideshow--transition-slide .slideshow__item > * {
  visibility: hidden;
}

.slideshow--transition-slide .slideshow__item:not(.slideshow__item--selected) * {
  transition: none;
}

.slideshow--transition-slide .slideshow__item--selected > * {
  visibility: visible;
}

.slideshow--transition-slide .slideshow__item--slide-in-left {
  animation-name: slide-in-left;
}

.slideshow--transition-slide .slideshow__item--slide-in-right {
  animation-name: slide-in-right;
}

.slideshow--transition-slide .slideshow__item--slide-out-left {
  animation-name: slide-out-left;
}

.slideshow--transition-slide .slideshow__item--slide-out-right {
  animation-name: slide-out-right;
}

.slideshow--transition-slide .slideshow__item--slide-out-left,
.slideshow--transition-slide .slideshow__item--slide-out-right {
  z-index: 2;
}
.slideshow--transition-slide .slideshow__item--slide-out-left.slideshow__item--selected,
.slideshow--transition-slide .slideshow__item--slide-out-right.slideshow__item--selected {
  z-index: 3;
}
.slideshow--transition-slide .slideshow__item--slide-out-left > *,
.slideshow--transition-slide .slideshow__item--slide-out-right > * {
  visibility: visible;
}

@keyframes slide-in-left {
  0% {
    visibility: visible;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    visibility: visible;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-out-left {
  0% {
    visibility: visible;
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slide-out-right {
  0% {
    visibility: visible;
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slideshow--transition-prx .slideshow__item {
  animation-duration: var(--slideshow-prx-transition-duration);
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease-out);
}
.slideshow--transition-prx .slideshow__item > * {
  visibility: hidden;
}

.slideshow--transition-prx .slideshow__item--selected > * {
  visibility: visible;
}

.slideshow--transition-prx .slideshow__item--prx-in-left {
  animation-name: prx-in-left;
}

.slideshow--transition-prx .slideshow__item--prx-in-right {
  animation-name: prx-in-right;
}

.slideshow--transition-prx .slideshow__item--prx-out-left {
  animation-name: prx-out-left;
}

.slideshow--transition-prx .slideshow__item--prx-out-right {
  animation-name: prx-out-right;
}

.slideshow--transition-prx .slideshow__item--prx-out-left,
.slideshow--transition-prx .slideshow__item--prx-out-right {
  z-index: 2;
}
.slideshow--transition-prx .slideshow__item--prx-out-left.slideshow__item--selected,
.slideshow--transition-prx .slideshow__item--prx-out-right.slideshow__item--selected {
  z-index: 3;
}
.slideshow--transition-prx .slideshow__item--prx-out-left > *,
.slideshow--transition-prx .slideshow__item--prx-out-right > * {
  visibility: visible;
}

@keyframes prx-in-left {
  0% {
    visibility: visible;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes prx-in-right {
  0% {
    visibility: visible;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes prx-out-left {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  100% {
    opacity: 0.3;
    transform: translateX(40%);
  }
}
@keyframes prx-out-right {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  100% {
    opacity: 0.3;
    transform: translateX(-40%);
  }
}
.slideshow[data-swipe=on] .slideshow__content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slideshow[data-swipe=on] .slideshow__content img {
  pointer-events: none;
}

.slideshow__control {
  display: none;
}

.slideshow[data-controls=hover] .slideshow__control {
  opacity: 0;
  transition: opacity 0.3s;
}

.slideshow[data-controls=hover]:hover .slideshow__control {
  opacity: 1;
}

.slideshow[data-swipe=on] .slideshow__control {
  display: none;
}

.slideshow__control {
  display: block;
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
}
.slideshow__control:first-of-type {
  left: var(--slideshow-btn-offset);
}
.slideshow__control:last-of-type {
  right: var(--slideshow-btn-offset);
}

@media (min-width: 64rem) {
  .slideshow[data-swipe=on] .slideshow__control {
    display: block;
  }
}
.slideshow__btn {
  display: block;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.75);
  height: var(--slideshow-btn-height);
  width: var(--slideshow-btn-width);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slideshow__btn:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.85);
}
.slideshow__btn:hover .icon {
  color: var(--color-bg);
}
.slideshow:not(.slideshow--is-animating) .slideshow__btn:active {
  transform: translateY(2px);
}
.slideshow__btn .icon {
  display: block;
  width: var(--slideshow-btn-icon-size);
  height: var(--slideshow-btn-icon-size);
  margin: 0 auto;
  transition: color 0.2s;
  color: var(--color-white);
}
@supports (grid-area: auto) {
  .slideshow__btn {
    background-color: transparent;
  }
  .slideshow__btn .icon {
    color: var(--color-contrast-higher);
  }
}

.slideshow__navigation {
  position: absolute;
  z-index: 4;
  bottom: 0;
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.slideshow__nav-item {
  display: inline-block;
  margin: 0 var(--space-xxxs);
}
.slideshow__nav-item button {
  display: block;
  position: relative;
  font-size: 8px;
  color: var(--color-contrast-high);
  height: 1em;
  width: 1em;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.4;
  cursor: pointer;
  transition: background 0.3s;
}
.slideshow__nav-item button::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  height: 1em;
  width: 1em;
  font-size: 14px;
  border-radius: inherit;
  border: 1px solid var(--color-contrast-high);
  opacity: 0;
  transform: scale(0);
  transition: 0.3s;
}
.slideshow__nav-item button:focus {
  outline: none;
}
.slideshow__nav-item button:focus::before {
  opacity: 1;
  transform: scale(1);
}

.slideshow__nav-item--selected button {
  opacity: 1;
}

@media (min-width: 64rem) {
  .slideshow__navigation {
    height: 40px;
  }

  .slideshow__nav-item button {
    font-size: 10px;
  }
  .slideshow__nav-item button::before {
    font-size: 16px;
  }
}
/* -------------------------------- 

File#: _2_team
Title: Team
Descr: A gallery of team members
Usage: codyhouse.co/license

-------------------------------- */
.team {
  position: relative;
  z-index: 1;
}

/* -------------------------------- 

File#: _2_testimonials
Title: Testimonials
Descr: A gallery of testimonial cards
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_hiding-nav
Title: Auto Hiding Navigation
Descr: A Navigation container that auto-hides when the user scrolls down, and is revealed when they scrolls back up
Usage: codyhouse.co/license

-------------------------------- */
.hide-nav {
  --hide-nav-transition-duration: 0.3s;
  position: sticky !important;
  top: 0;
  will-change: transform;
  transition: transform var(--hide-nav-transition-duration), background-color var(--hide-nav-transition-duration);
}

.hide-nav--fixed {
  background-color: transparent;
}

.hide-nav--has-bg {
  background-color: var(--color-bg);
}

/* -------------------------------- 

File#: _3_looping-slideshow
Title: Looping Slideshow
Descr: Slideshow automatically looping among items with a progress indicator for each item
Usage: codyhouse.co/license

-------------------------------- */
/* optional -> overwrite slideshow height at different breakpoints */
.loop-slideshow {
  --slideshow-slide-transition-duration: 0.3s;
  /* slide effect transition duration */
}
.loop-slideshow .slideshow__content {
  clip-path: inset(0 round var(--radius-lg));
}

/* slideshow navigation - created in JS */
.loop-slideshow__navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.loop-slideshow__nav-item {
  margin: var(--space-sm) calc(var(--space-sm)/2) 0;
  --loop-slideshow-filling: 0;
  /* used in JS to create the filling effect */
}
.loop-slideshow__nav-item button {
  position: relative;
  display: block;
  overflow: hidden;
  height: 4px;
  width: 60px;
  border-radius: 50em;
  background-color: var(--color-contrast-lower);
  cursor: pointer;
  transition: 0.2s;
}
.loop-slideshow__nav-item button::before {
  /* filling effect */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(var(--loop-slideshow-filling));
  transform-origin: left center;
  background-color: var(--color-primary);
}
.loop-slideshow__nav-item button:hover {
  background-color: hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0.7);
}
@media (min-width: 64rem) {
  .loop-slideshow__nav-item button {
    height: 5px;
    width: 90px;
  }
}

/* slideshow custom cursor */
.loop-slideshow-cursor.c-cursor--right .c-cursor__img {
  --rotate: 180deg;
}

/* pause/play button */
.loop-slideshow__pause-btn {
  position: absolute;
  z-index: 3;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.85);
  cursor: pointer;
  color: var(--color-white);
  /* icon color */
  transition: background 0.3s, transform 0.3s var(--ease-out-back);
}
.loop-slideshow__pause-btn:hover {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.95);
  transform: scale(1.1);
}

/* -------------------------------- 

File#: _3_mega-site-navigation
Title: Mega-Site Navigation
Descr: Navigation template for mega-sites
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --mega-nav-height: 50px;
  --mega-nav-content-max-width: var(--max-width-lg);
  /* set max-width for navigation content */
}
@media (min-width: 64rem) {
  :root {
    --mega-nav-height: 70px;
  }
}

.mega-nav {
  height: var(--mega-nav-height);
  width: 100%;
  z-index: var(--z-index-header, 3);
  box-shadow: inset 0px -1px 0px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  /* border bottom */
}

/* change mega-nav style if menu = expanded */
.mega-nav--expanded {
  background-color: var(--color-bg);
}

.mega-nav__container {
  width: calc(100% - 2*var(--component-padding));
  height: 100%;
  max-width: var(--mega-nav-content-max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.mega-nav__logo {
  display: block;
  width: 104px;
  /* logo width */
  height: 30px;
  /* logo height */
}
.mega-nav__logo > * {
  /* logo SVG */
  width: inherit;
  height: inherit;
}

/* mobile buttons */
.mega-nav__icon-btns {
  display: flex;
  align-items: center;
}

.mega-nav__icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 24px;
  /* icon size */
  color: var(--color-contrast-high);
  /* icon color */
  cursor: pointer;
  transition: 0.2s;
}
.mega-nav__icon-btn .icon {
  display: block;
}
.mega-nav__icon-btn .icon__group {
  stroke-width: 1px;
  /* icon stroke width */
}
.mega-nav__icon-btn .icon__group > * {
  transition: transform 0.3s var(--ease-in-out), stroke-dashoffset 0.3s, opacity 0.3s;
}

/* animated menu button */
.mega-nav__icon-btn--menu .icon__group > * {
  stroke-dasharray: 24;
}
.mega-nav__icon-btn--menu .icon__group > *:nth-child(1) {
  transform-origin: 12px 6px;
}
.mega-nav__icon-btn--menu .icon__group > *:nth-child(2) {
  stroke-dashoffset: 0;
}
.mega-nav__icon-btn--menu .icon__group > *:nth-child(3) {
  transform-origin: 12px 18px;
}
.mega-nav__icon-btn--menu.mega-nav__icon-btn--state-b .icon__group > *:nth-child(1) {
  transform: translateY(6px) rotate(-45deg);
}
.mega-nav__icon-btn--menu.mega-nav__icon-btn--state-b .icon__group > *:nth-child(2) {
  stroke-dashoffset: 24;
}
.mega-nav__icon-btn--menu.mega-nav__icon-btn--state-b .icon__group > *:nth-child(3) {
  transform: translateY(-6px) rotate(45deg);
}

/* animated search button */
.mega-nav__icon-btn--search .icon__group {
  transform-origin: 12px 12px;
  transform: rotate(0deg);
  transition: transform 0.3s var(--ease-out);
}
.mega-nav__icon-btn--search .icon__group > *:nth-child(1) {
  stroke-dashoffset: 34;
  stroke-dasharray: 24;
}
.mega-nav__icon-btn--search .icon__group > *:nth-child(2) {
  stroke-dashoffset: 24;
  stroke-dasharray: 24;
}
.mega-nav__icon-btn--search .icon__group > *:nth-child(3) {
  transform-origin: 9.5px 9.5px;
  transform: rotate(45deg);
  stroke-dashoffset: 84;
  stroke-dasharray: 42;
  opacity: 1;
}
.mega-nav__icon-btn--search.mega-nav__icon-btn--state-b .icon__group {
  transform: rotate(-90deg);
}
.mega-nav__icon-btn--search.mega-nav__icon-btn--state-b .icon__group > *:nth-child(1) {
  stroke-dashoffset: 48;
}
.mega-nav__icon-btn--search.mega-nav__icon-btn--state-b .icon__group > *:nth-child(2) {
  stroke-dashoffset: 48;
}
.mega-nav__icon-btn--search.mega-nav__icon-btn--state-b .icon__group > *:nth-child(3) {
  stroke-dashoffset: 42;
  opacity: 0;
}

/* animated arrow icon */
.mega-nav__arrow-icon {
  font-size: 16px;
  /* icon size */
  color: currentColor;
  /* icon color */
  transition: color 0.2s;
}
.mega-nav__arrow-icon .icon {
  display: block;
}
.mega-nav__arrow-icon .icon__group {
  stroke-width: 1px;
  /* icon stroke width */
  will-change: transform;
  transform-origin: 8px 8px;
  transition: transform 0.3s var(--ease-out);
}
.mega-nav__arrow-icon .icon__group > * {
  stroke-dasharray: 17;
  transform-origin: 8px 8px;
  transform: translateY(3px);
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: var(--ease-out);
}
.mega-nav__arrow-icon .icon__group > *:first-child {
  stroke-dashoffset: 8.5;
}
.mega-nav__arrow-icon .icon__group > *:last-child {
  stroke-dashoffset: 8.5;
}

/* label/divider */
.mega-nav__label {
  color: var(--color-contrast-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-xs);
}

/* card */
.mega-nav__card img {
  transition: opacity 0.3s;
}
.mega-nav__card img:hover {
  opacity: 0.85;
}

.mega-nav__card-title {
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.mega-nav__card-title:hover {
  text-decoration: underline;
}

/* -------------------------------- 

--mobile - style affecting only small screens 👇

-------------------------------- */
.mega-nav--mobile {
  /* sub navigation */
}
.mega-nav--mobile .mega-nav__icon-btns--desktop {
  display: none;
  /* hide --desktop icon buttons */
}
.mega-nav--mobile .mega-nav__nav, .mega-nav--mobile .mega-nav__search {
  display: none;
  position: absolute;
  top: var(--mega-nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--mega-nav-height) - var(--mega-nav-offset-y, 0px));
  /* set --mega-nav-offset-y in JS */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-lg);
}
.mega-nav--mobile .mega-nav__nav--is-visible, .mega-nav--mobile .mega-nav__search--is-visible {
  display: block;
}
.mega-nav--mobile .mega-nav__nav--is-visible > *, .mega-nav--mobile .mega-nav__search--is-visible > * {
  animation: mega-nav-entry-animation 0.5s var(--ease-out);
}
.mega-nav--mobile .mega-nav__nav-inner, .mega-nav--mobile .mega-nav__search-inner {
  padding: var(--space-md) 0;
  width: calc(100% - 2*var(--component-padding));
  max-width: var(--mega-nav-content-max-width);
  margin-left: auto;
  margin-right: auto;
}
.mega-nav--mobile .mega-nav__label {
  /* label/divider */
  margin: var(--space-lg) 0 var(--space-xs);
}
.mega-nav--mobile .mega-nav__item {
  /* main navigation items */
  border-bottom: 1px solid var(--color-contrast-lower);
}
.mega-nav--mobile .mega-nav__control {
  /* navigation main controls (buttons/links) */
  display: flex;
  align-items: center;
  width: 100%;
  font-size: var(--text-md);
  text-align: left;
  padding: var(--space-sm) 0;
  color: var(--color-contrast-higher);
  text-decoration: none;
  cursor: pointer;
}
.mega-nav--mobile a[aria-current=page] {
  /* current page */
  color: var(--color-primary);
}
.mega-nav--mobile .mega-nav__arrow-icon {
  margin-left: auto;
  margin-right: 12px;
}
.mega-nav--mobile .mega-nav__btn {
  /* button */
  width: 100%;
  margin: var(--space-sm) 0;
  font-size: var(--text-md);
}
.mega-nav--mobile .mega-nav__sub-nav-wrapper {
  /* sub navigation content */
  display: none;
  padding: 0 var(--space-md) var(--space-lg);
  overflow: hidden;
}
.mega-nav--mobile .mega-nav__sub-items {
  /* list of sub items */
}
.mega-nav--mobile .mega-nav__sub-items:not(:last-child) {
  margin-bottom: var(--space-lg);
}
.mega-nav--mobile .mega-nav__sub-item {
  /* sub item */
  border-bottom: 1px solid var(--color-contrast-lower);
}
.mega-nav--mobile .mega-nav__sub-link {
  /* sub link */
  display: block;
  color: var(--color-contrast-higher);
  text-decoration: none;
  padding: var(--space-xxs) 0;
}
.mega-nav--mobile .mega-nav__quick-link {
  /* search quick links */
  display: block;
  color: var(--color-contrast-higher);
  text-decoration: none;
  border-bottom: 1px solid var(--color-contrast-lower);
  padding: var(--space-xs) 0;
}
.mega-nav--mobile .mega-nav__sub-nav--layout-1 {
  /* layout 1 -> tabbed content */
}
.mega-nav--mobile .mega-nav__sub-nav--layout-1 .mega-nav__sub-items {
  margin-bottom: 0;
}
.mega-nav--mobile .mega-nav__sub-nav--layout-1 .mega-nav__tabs {
  display: none;
  /* hide tabbed content on smaller screens */
}
.mega-nav--mobile .mega-nav__sub-nav--layout-3 {
  /* layout 3 -> gallery */
  padding-top: var(--space-md);
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  /* auto add new cols */
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group {
  /* animated arrow icon */
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group > *:first-child {
  transform: translateY(-3px) rotate(-90deg);
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group > *:last-child {
  transform: translateY(-3px) rotate(90deg);
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__sub-nav-wrapper {
  display: block;
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__sub-nav-wrapper > * {
  animation: mega-nav-entry-animation 0.5s var(--ease-out);
}

/* -------------------------------- 

--desktop - style affecting only big screens 👇

-------------------------------- */
.mega-nav--desktop {
  /* tabs */
  /* icon animation on click */
  /* icon buttons */
}
.mega-nav--desktop .mega-nav__icon-btns--mobile, .mega-nav--desktop .mega-nav__sub-nav-wrapper, .mega-nav--desktop .mega-nav__search, .mega-nav--desktop .mega-nav__label {
  display: none;
}
.mega-nav--desktop .mega-nav__logo {
  flex-shrink: 0;
  margin-right: var(--space-sm);
}
.mega-nav--desktop .mega-nav__nav {
  flex-grow: 1;
  height: 100%;
}
.mega-nav--desktop .mega-nav__nav-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  /* navigation layout - change to "flex-end" to push the navigation to the right */
}
.mega-nav--desktop .mega-nav__items {
  display: flex;
  height: 100%;
}
.mega-nav--desktop .mega-nav__item {
  display: flex;
  align-items: center;
}
.mega-nav--desktop .mega-nav__control {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  height: 100%;
  font-size: var(--text-sm);
  color: var(--color-contrast-higher);
  text-decoration: none;
  transition: 0.2s;
}
.mega-nav--desktop .mega-nav__control::after {
  /* marker */
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-contrast-higher);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.mega-nav--desktop .mega-nav__control .mega-nav__arrow-icon {
  margin-left: var(--space-xxs);
}
.mega-nav--desktop .mega-nav__control:hover {
  cursor: pointer;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.05);
}
.mega-nav--desktop .mega-nav__sub-nav-wrapper, .mega-nav--desktop .mega-nav__search {
  position: absolute;
  top: var(--mega-nav-height);
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--mega-nav-height) - var(--mega-nav-offset-y, 0px));
  /* set --mega-nav-offset-y in JS */
  overflow: auto;
}
.mega-nav--desktop .mega-nav__sub-nav, .mega-nav--desktop .mega-nav__search-inner {
  width: calc(100% - 2*var(--component-padding));
  margin: 0 auto;
  padding: var(--space-xl) 0;
}
.mega-nav--desktop .mega-nav__sub-nav .mega-nav__label, .mega-nav--desktop .mega-nav__search-inner .mega-nav__label {
  display: block;
}
.mega-nav--desktop .mega-nav__sub-nav {
  max-width: var(--mega-nav-content-max-width);
}
.mega-nav--desktop .mega-nav__search-inner {
  max-width: var(--max-width-xs);
  /* reduce max-width for search content */
}
.mega-nav--desktop .mega-nav__label {
  margin-bottom: var(--space-md);
}
.mega-nav--desktop .mega-nav__sub-item:not(:last-child) {
  margin-bottom: var(--space-xxs);
}
.mega-nav--desktop .mega-nav__sub-link {
  font-size: var(--text-sm);
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.mega-nav--desktop .mega-nav__sub-link:hover {
  text-decoration: underline;
}
.mega-nav--desktop .mega-nav__quick-link {
  /* search quick links */
  display: inline-block;
  margin-bottom: var(--space-xxs);
  font-size: var(--text-sm);
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.mega-nav--desktop .mega-nav__quick-link:hover {
  text-decoration: underline;
}
.mega-nav--desktop .mega-nav__btn {
  font-size: var(--text-sm);
  margin-left: var(--space-sm);
}
.mega-nav--desktop .mega-nav__sub-nav--layout-1 {
  /* layout 1 -> tabbed content */
}
.mega-nav--desktop .mega-nav__sub-nav--layout-1 .mega-nav__sub-items {
  display: none;
  /* hide links */
}
.mega-nav--desktop .mega-nav__sub-nav--layout-1 .mega-nav__tabs {
  display: flex;
}
.mega-nav--desktop .mega-nav__sub-nav--layout-2 {
  /* layout 2 -> multi lists */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}
.mega-nav--desktop .mega-nav__sub-nav--layout-3 {
  /* layout 3 -> gallery */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.mega-nav--desktop .mega-nav__sub-nav--layout-4 {
  /* layout 4 -> single list */
  text-align: center;
}
.mega-nav--desktop .mega-nav__sub-nav--layout-4 .mega-nav__sub-link {
  font-size: var(--text-lg);
}
.mega-nav--desktop .mega-nav__tabs-controls > *:not(:last-child) {
  border-bottom: 1px solid var(--color-contrast-lower);
}
.mega-nav--desktop .mega-nav__tabs-control {
  display: block;
  width: 100%;
  padding: var(--space-xs);
  overflow: hidden;
  color: var(--color-contrast-higher);
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.mega-nav--desktop .mega-nav__tabs-control .icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
}
.mega-nav--desktop .mega-nav__tabs-control:hover, .mega-nav--desktop .mega-nav__tabs-control[aria-selected=true] {
  color: var(--color-primary);
}
.mega-nav--desktop .mega-nav__tabs-control[aria-selected=true] .icon {
  opacity: 1;
  transform: translateX(0px);
}
.mega-nav--desktop .mega-nav__tabs-img {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: opacity 0.3s;
}
.mega-nav--desktop .mega-nav__tabs-img:hover {
  opacity: 0.85;
}
.mega-nav--desktop .mega-nav__item--expanded .mega-nav__control {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.05);
}
.mega-nav--desktop .mega-nav__item--expanded .mega-nav__control::after {
  /* marker */
  opacity: 1;
}
.mega-nav--desktop .mega-nav__item--expanded .mega-nav__sub-nav-wrapper {
  display: block;
}
.mega-nav--desktop .mega-nav__item--expanded .mega-nav__sub-nav {
  animation: mega-nav-entry-animation 0.5s var(--ease-out);
}
.mega-nav--desktop:not([data-hover=on]) .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group {
  transform: rotate(-90deg);
}
.mega-nav--desktop:not([data-hover=on]) .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group > *:first-child, .mega-nav--desktop:not([data-hover=on]) .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group *:last-child {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}
.mega-nav--desktop .mega-nav__icon-btn {
  border-radius: 50%;
  margin-left: var(--space-xxxxs);
}
.mega-nav--desktop .mega-nav__icon-btn:hover,
.mega-nav--desktop .mega-nav__icon-btn--state-b {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.05);
}
.mega-nav--desktop .mega-nav__search--is-visible {
  display: block;
}
.mega-nav--desktop .mega-nav__search--is-visible .mega-nav__search-inner {
  animation: mega-nav-entry-animation 0.5s var(--ease-out);
}

/* animations */
@keyframes mega-nav-entry-animation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* used in JS - detect when the menu needs to switch from --mobile to --desktop layout */
[class*=mega-nav--desktop]::before {
  display: none;
  content: "mobile";
}

@media (min-width: 32rem) {
  .mega-nav--desktop\@xs::before {
    content: "desktop";
  }
}
@media (min-width: 48rem) {
  .mega-nav--desktop\@sm::before {
    content: "desktop";
  }
}
@media (min-width: 64rem) {
  .mega-nav--desktop\@md::before {
    content: "desktop";
  }
}
@media (min-width: 80rem) {
  .mega-nav--desktop\@lg::before {
    content: "desktop";
  }
}
@media (min-width: 90rem) {
  .mega-nav--desktop\@xl::before {
    content: "desktop";
  }
}
/* -------------------------------- 

File#: _3_testimonial-banner
Title: Testimonial Banner
Descr: A banner containing a slideshow of testimonials
Usage: codyhouse.co/license

-------------------------------- */
.t-banner {
  --slideshow-fade-transition-duration: 0.4s;
  --slideshow-slide-transition-duration: 0.4s;
  position: relative;
}

/* background images slideshow */
.t-banner__bg-slideshow {
  --slideshow-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  /* inner glow visibile on dark mode */
}
.t-banner__bg-slideshow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: var(--inner-glow);
  pointer-events: none;
  border-radius: inherit;
}
.t-banner__bg-slideshow .slideshow__item {
  background-color: var(--color-bg-light);
}

/* background image slide */
.t-banner__figure {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 70%;
  /* image overlay gradient */
}
.t-banner__figure img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.15;
}
.t-banner__figure::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0), var(--color-bg-light));
}
@media (min-width: 64rem) {
  .t-banner__figure {
    width: 50%;
    height: 100%;
  }
  .t-banner__figure::after {
    height: 100%;
    width: 50%;
    background: linear-gradient(270deg, hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0), var(--color-bg-light));
  }
}

.t-banner__content-slideshow .slideshow__item {
  /* set the slideshow height equal to the height of the first slide element  */
  position: absolute;
  height: 100%;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
.t-banner__content-slideshow .slideshow__item:first-child {
  position: relative;
  height: auto;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
@media (min-width: 32rem) {
  .t-banner__content-slideshow .slideshow__item {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}
@media (min-width: 64rem) {
  .t-banner__content-slideshow .slideshow__item {
    padding-left: 0;
    padding-right: 0;
  }
}

.t-banner__quote {
  text-align: center;
  padding: var(--space-md) 0;
  line-height: 1.58;
  position: relative;
}
.t-banner__quote::before {
  content: '"';
  position: absolute;
  transform: translateX(-1ch);
}
@media (min-width: 64rem) {
  .t-banner__quote {
    text-align: left;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-xl);
  }
}

/* navigation arrows */
.t-banner__control {
  --t-banner-control-gap: 12px;
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
}
.t-banner__control:first-of-type {
  transform: translateY(50%) translateX(calc(-100% - var(--t-banner-control-gap)/2));
}
.t-banner__control:last-of-type {
  transform: translateY(50%) translateX(calc(var(--t-banner-control-gap)/2));
}
@media (min-width: 64rem) {
  .t-banner__control {
    bottom: 50%;
  }
  .t-banner__control:first-of-type {
    left: 0;
    transform: translateY(50%) translateX(-50%);
  }
  .t-banner__control:last-of-type {
    left: auto;
    right: 0;
    transform: translateY(50%) translateX(50%);
  }
}

.t-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.95);
  color: var(--color-white);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  will-change: transform;
}
.t-banner__btn:hover {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 1);
}
.t-banner__btn:active {
  transform: translateY(2px);
}
.t-banner__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* -------------------------------- 

File#: _4_intro
Title: Intro
Descr: Intro section including the main header and a hero component
Usage: codyhouse.co/license

-------------------------------- */
.intro__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.intro__bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* -------------------------------- 

File#: _0_common
Title: Common
Descr: 共通

-------------------------------- */
body {
  background: hsl(var(--color-bg-h), var(--color-bg-s), calc(var(--color-bg-l) * 1));
  color: var(--color-contrast-higher);
}

/* -------------------------------- 

File#: _0_form
Title: Form
Descr: 共通フォーム

-------------------------------- */
/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */
form#mail_form {
  width: unset;
  margin: auto;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.8;
}
form#mail_form > p {
  margin-top: var(--space-lg);
}

form#mail_form dl {
  width: 100%;
  margin: 0 auto;
  border-bottom: none;
}
form#mail_form dl + dl {
  margin-top: var(--space-md);
}

form#mail_form dl:after,
form#mail_form dl dt:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

form#mail_form dl dt {
  width: unset;
  float: unset;
  padding: 0;
  margin-bottom: var(--space-xs);
  text-align: left;
  font-weight: bold;
}

form#mail_form dl dd {
  width: unset;
  float: unset;
  padding: 0;
}

form#mail_form dl dt i {
  float: unset;
  position: relative;
  top: unset;
  margin: 0 var(--space-xxs);
  font-weight: normal;
}

/* -- span.required, span.optional -------------------------------------------------------------------------------- */
form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
  display: inline-block;
  font-size: 85%;
  color: #ffffff;
  padding: var(--space-xxxxs) var(--space-xxxxs);
  border-radius: var(--radius-md);
  line-height: 1;
  text-indent: 0.2em;
}

form#mail_form dl dt span.required {
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent-light);
}

form#mail_form dl dt span.optional {
  background: var(--color-contrast-lower);
  border: 1px solid var(--color-contrast-lower);
}

/* -- error message -------------------------------------------------------------------------------- */
form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 5px;
}

/* -- loading -------------------------------------------------------------------------------- */
div.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
}

span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  transform: translateZ(0);
  animation: load-circle 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
@keyframes load-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* -- input, select, textarea -------------------------------------------------------------------------------- */
/* -- ul, li -------------------------------------------------------------------------------- */
/* -- input design -------------------------------------------------------------------------------- */
form#mail_form input[name=postal] + a {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid #46b8da;
  border-radius: 0;
  background: #5bc0de;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
}

form#mail_form input[name=postal] + a:hover {
  cursor: pointer;
  background: #31b0d5;
  border: 1px solid #269abc;
}

form#mail_form input[name=address] {
  width: calc( 100% - 4% - 2px );
}

/* -- button -------------------------------------------------------------------------------- */
form#mail_form p#form_submit {
  width: unset;
  margin: var(--space-lg) auto 0;
  padding: unset;
  text-align: center;
}

form#mail_form input[type=button]:hover {
  border: none;
}

form#mail_form input[type=button] {
  margin-left: unset;
  margin: auto;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
/* 768pixel start */
@media screen and (max-width: 768px) {
  /* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */
  /* -- span.required, span.optional -------------------------------------------------------------------------------- */
  /* -- input design -------------------------------------------------------------------------------- */
  /* -- button -------------------------------------------------------------------------------- */
}
/* 768pixel end */
/* Hides the reCAPTCHA on every page */
.grecaptcha-badge {
  display: none !important;
}

/* -------------------------------- 

File#: _0_sw
Title: SW
Descr: 共通パーツ用

-------------------------------- */
.sw-mv {
  position: relative;
  width: 100%;
  height: 400svh;
  /* スクロール領域 */
}

.sw-mv__container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8svh 0;
  /* 上下の余白（適宜調整） */
  box-sizing: border-box;
  overflow: hidden;
}
.sw-mv__container::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8svh;
  background: var(--color-bg);
  z-index: 100;
}

.sw-mv__text-wrap {
  width: 2.5svh;
  max-width: 24px;
  /* SVGの幅 */
  transition: transform 0.1s linear;
  /* スムーズな移動用 */
  z-index: 12;
}

.sw-mv path {
  transition: opacity 0.3s ease, filter 0.3s ease;
  fill: #4c4948;
  /* 必要に応じて white に変更 */
}

.is-submerged {
  opacity: 0 !important;
  filter: blur(4px);
}

.sw-mv__visual {
  width: 24svh;
  max-width: 240px;
  margin-top: auto;
}

.sw-mv__water-line {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 影の基本スタイル */
.sw-mv__shadow {
  margin-top: 2%;
  width: 5.4svh;
  max-width: 60px;
  z-index: 11;
  /* 揺れの起点（中心）を固定 */
  transform-origin: center;
}

/* 影用の揺れアニメーション */
@keyframes shadow-shake {
  0% {
    transform: scale(1) translateX(0);
    opacity: 0.9;
  }
  40% {
    transform: scale(1.05) translateX(0.5%);
    opacity: 0.8;
  }
  /* 少し広がって薄くなる */
  60% {
    transform: scale(1.05) translateX(-0.5%);
    opacity: 0.8;
  }
  /* 少し広がって薄くなる */
  100% {
    transform: scale(1) translateX(0);
    opacity: 0.9;
  }
}
/* 影にアニメーションを適用 */
.sw-mv__shadow.is-splashing {
  animation: shadow-shake 0.4s ease-out;
}

.sw-mv__cup {
  position: relative;
  z-index: 1;
}

.sw-mv__wood {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translateX(-50%);
  width: 5.8svh;
  max-width: 56px;
  z-index: 1;
}

/* 揺れアニメーション */
@keyframes splash-shake {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  30% {
    transform: translateX(-50%) rotate(2deg) translateY(-2%);
  }
  60% {
    transform: translateX(-50%) rotate(-2deg) translateX(-2%) translateY(-2%);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}
.is-splashing {
  animation: splash-shake 0.4s ease-out;
}

.sw-mv__cup-img {
  width: 100%;
  z-index: 10;
  position: relative;
}

/* -------------------------------- 

File#: _0_home
Title: Home
Descr: トップページ

-------------------------------- */