@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-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, hsl(0, 0%, 100%));
   color: var(--color-contrast-high, hsl(210, 7%, 21%));
}

[data-theme="dark"] {
   background-color: hsl(0deg 0% 0%);
}

: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, hsl(210, 7%, 21%));
   font-weight: var(--body-font-weight, normal);
}

h1,
h2,
h3,
h4 {
   color: var(--color-contrast-higher, hsl(204, 28%, 7%));
   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, hsl(250, 84%, 54%));
   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 {
   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(--radius-md, 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, hsl(204, 28%, 7%));
   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: 33.3333333333%;
}

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

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

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

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

.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: 33.3333333333%;
}

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

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

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

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

.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: 33.3333333333%;
}

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

.min-width-66\% {
   min-width: 66.6666666667%;
}

.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 {
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
}

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

.isolate {
   isolation: isolate;
}

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

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

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

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

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

.perspective-xs {
   perspective: 250px;
}

.perspective-sm {
   perspective: 500px;
}

.perspective-md {
   perspective: 1000px;
}

.perspective-lg {
   perspective: 1500px;
}

.perspective-xl {
   perspective: 3000px;
}

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

.flip {
   --scale: -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fill-current {
   fill: currentColor;
}

.stroke-current {
   stroke: currentColor;
}

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

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

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

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

.visible {
   visibility: visible;
}

.invisible {
   visibility: hidden;
}

.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: 33.3333333333%;
   }
   .width-40\%\@xs {
      width: 40%;
   }
   .width-50\%\@xs {
      width: 50%;
   }
   .width-60\%\@xs {
      width: 60%;
   }
   .width-66\%\@xs {
      width: 66.6666666667%;
   }
   .width-70\%\@xs {
      width: 70%;
   }
   .width-75\%\@xs {
      width: 75%;
   }
   .width-80\%\@xs {
      width: 80%;
   }
   .width-90\%\@xs {
      width: 90%;
   }
   .width-100\%\@xs {
      width: 100%;
   }
   .width-100vw\@xs {
      width: 100vw;
   }
   .width-auto\@xs {
      width: auto;
   }
   .width-inherit\@xs {
      width: inherit;
   }
   .height-xxxxs\@xs {
      height: var(--size-xxxxs, 0.25rem);
   }
   .height-xxxs\@xs {
      height: var(--size-xxxs, 0.5rem);
   }
   .height-xxs\@xs {
      height: var(--size-xxs, 0.75rem);
   }
   .height-xs\@xs {
      height: var(--size-xs, 1rem);
   }
   .height-sm\@xs {
      height: var(--size-sm, 1.5rem);
   }
   .height-md\@xs {
      height: var(--size-md, 2rem);
   }
   .height-lg\@xs {
      height: var(--size-lg, 3rem);
   }
   .height-xl\@xs {
      height: var(--size-xl, 4rem);
   }
   .height-xxl\@xs {
      height: var(--size-xxl, 6rem);
   }
   .height-xxxl\@xs {
      height: var(--size-xxxl, 8rem);
   }
   .height-xxxxl\@xs {
      height: var(--size-xxxxl, 16rem);
   }
   .height-0\@xs {
      height: 0;
   }
   .height-10\%\@xs {
      height: 10%;
   }
   .height-20\%\@xs {
      height: 20%;
   }
   .height-25\%\@xs {
      height: 25%;
   }
   .height-30\%\@xs {
      height: 30%;
   }
   .height-33\%\@xs {
      height: 33.3333333333%;
   }
   .height-40\%\@xs {
      height: 40%;
   }
   .height-50\%\@xs {
      height: 50%;
   }
   .height-60\%\@xs {
      height: 60%;
   }
   .height-66\%\@xs {
      height: 66.6666666667%;
   }
   .height-70\%\@xs {
      height: 70%;
   }
   .height-75\%\@xs {
      height: 75%;
   }
   .height-80\%\@xs {
      height: 80%;
   }
   .height-90\%\@xs {
      height: 90%;
   }
   .height-100\%\@xs {
      height: 100%;
   }
   .height-100vh\@xs {
      height: 100vh;
   }
   .height-auto\@xs {
      height: auto;
   }
   .height-inherit\@xs {
      height: inherit;
   }
   .max-width-xxxxxs\@xs {
      max-width: var(--max-width-xxxxxs);
   }
   .max-width-xxxxs\@xs {
      max-width: var(--max-width-xxxxs);
   }
   .max-width-xxxs\@xs {
      max-width: var(--max-width-xxxs);
   }
   .max-width-xxs\@xs {
      max-width: var(--max-width-xxs);
   }
   .max-width-xs\@xs {
      max-width: var(--max-width-xs);
   }
   .max-width-sm\@xs {
      max-width: var(--max-width-sm);
   }
   .max-width-md\@xs {
      max-width: var(--max-width-md);
   }
   .max-width-lg\@xs {
      max-width: var(--max-width-lg);
   }
   .max-width-xl\@xs {
      max-width: var(--max-width-xl);
   }
   .max-width-xxl\@xs {
      max-width: var(--max-width-xxl);
   }
   .max-width-xxxl\@xs {
      max-width: var(--max-width-xxxl);
   }
   .max-width-xxxxl\@xs {
      max-width: var(--max-width-xxxxl);
   }
   .max-width-100\%\@xs {
      max-width: 100%;
   }
   .max-width-none\@xs {
      max-width: none;
   }
   .position-relative\@xs {
      position: relative;
   }
   .position-absolute\@xs {
      position: absolute;
   }
   .position-fixed\@xs {
      position: fixed;
   }
   .position-sticky\@xs {
      position: 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: 33.3333333333%;
   }
   .width-40\%\@sm {
      width: 40%;
   }
   .width-50\%\@sm {
      width: 50%;
   }
   .width-60\%\@sm {
      width: 60%;
   }
   .width-66\%\@sm {
      width: 66.6666666667%;
   }
   .width-70\%\@sm {
      width: 70%;
   }
   .width-75\%\@sm {
      width: 75%;
   }
   .width-80\%\@sm {
      width: 80%;
   }
   .width-90\%\@sm {
      width: 90%;
   }
   .width-100\%\@sm {
      width: 100%;
   }
   .width-100vw\@sm {
      width: 100vw;
   }
   .width-auto\@sm {
      width: auto;
   }
   .width-inherit\@sm {
      width: inherit;
   }
   .height-xxxxs\@sm {
      height: var(--size-xxxxs, 0.25rem);
   }
   .height-xxxs\@sm {
      height: var(--size-xxxs, 0.5rem);
   }
   .height-xxs\@sm {
      height: var(--size-xxs, 0.75rem);
   }
   .height-xs\@sm {
      height: var(--size-xs, 1rem);
   }
   .height-sm\@sm {
      height: var(--size-sm, 1.5rem);
   }
   .height-md\@sm {
      height: var(--size-md, 2rem);
   }
   .height-lg\@sm {
      height: var(--size-lg, 3rem);
   }
   .height-xl\@sm {
      height: var(--size-xl, 4rem);
   }
   .height-xxl\@sm {
      height: var(--size-xxl, 6rem);
   }
   .height-xxxl\@sm {
      height: var(--size-xxxl, 8rem);
   }
   .height-xxxxl\@sm {
      height: var(--size-xxxxl, 16rem);
   }
   .height-0\@sm {
      height: 0;
   }
   .height-10\%\@sm {
      height: 10%;
   }
   .height-20\%\@sm {
      height: 20%;
   }
   .height-25\%\@sm {
      height: 25%;
   }
   .height-30\%\@sm {
      height: 30%;
   }
   .height-33\%\@sm {
      height: 33.3333333333%;
   }
   .height-40\%\@sm {
      height: 40%;
   }
   .height-50\%\@sm {
      height: 50%;
   }
   .height-60\%\@sm {
      height: 60%;
   }
   .height-66\%\@sm {
      height: 66.6666666667%;
   }
   .height-70\%\@sm {
      height: 70%;
   }
   .height-75\%\@sm {
      height: 75%;
   }
   .height-80\%\@sm {
      height: 80%;
   }
   .height-90\%\@sm {
      height: 90%;
   }
   .height-100\%\@sm {
      height: 100%;
   }
   .height-100vh\@sm {
      height: 100vh;
   }
   .height-auto\@sm {
      height: auto;
   }
   .height-inherit\@sm {
      height: inherit;
   }
   .max-width-xxxxxs\@sm {
      max-width: var(--max-width-xxxxxs);
   }
   .max-width-xxxxs\@sm {
      max-width: var(--max-width-xxxxs);
   }
   .max-width-xxxs\@sm {
      max-width: var(--max-width-xxxs);
   }
   .max-width-xxs\@sm {
      max-width: var(--max-width-xxs);
   }
   .max-width-xs\@sm {
      max-width: var(--max-width-xs);
   }
   .max-width-sm\@sm {
      max-width: var(--max-width-sm);
   }
   .max-width-md\@sm {
      max-width: var(--max-width-md);
   }
   .max-width-lg\@sm {
      max-width: var(--max-width-lg);
   }
   .max-width-xl\@sm {
      max-width: var(--max-width-xl);
   }
   .max-width-xxl\@sm {
      max-width: var(--max-width-xxl);
   }
   .max-width-xxxl\@sm {
      max-width: var(--max-width-xxxl);
   }
   .max-width-xxxxl\@sm {
      max-width: var(--max-width-xxxxl);
   }
   .max-width-100\%\@sm {
      max-width: 100%;
   }
   .max-width-none\@sm {
      max-width: none;
   }
   .position-relative\@sm {
      position: relative;
   }
   .position-absolute\@sm {
      position: absolute;
   }
   .position-fixed\@sm {
      position: fixed;
   }
   .position-sticky\@sm {
      position: 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: 33.3333333333%;
   }
   .width-40\%\@md {
      width: 40%;
   }
   .width-50\%\@md {
      width: 50%;
   }
   .width-60\%\@md {
      width: 60%;
   }
   .width-66\%\@md {
      width: 66.6666666667%;
   }
   .width-70\%\@md {
      width: 70%;
   }
   .width-75\%\@md {
      width: 75%;
   }
   .width-80\%\@md {
      width: 80%;
   }
   .width-90\%\@md {
      width: 90%;
   }
   .width-100\%\@md {
      width: 100%;
   }
   .width-100vw\@md {
      width: 100vw;
   }
   .width-auto\@md {
      width: auto;
   }
   .width-inherit\@md {
      width: inherit;
   }
   .height-xxxxs\@md {
      height: var(--size-xxxxs, 0.25rem);
   }
   .height-xxxs\@md {
      height: var(--size-xxxs, 0.5rem);
   }
   .height-xxs\@md {
      height: var(--size-xxs, 0.75rem);
   }
   .height-xs\@md {
      height: var(--size-xs, 1rem);
   }
   .height-sm\@md {
      height: var(--size-sm, 1.5rem);
   }
   .height-md\@md {
      height: var(--size-md, 2rem);
   }
   .height-lg\@md {
      height: var(--size-lg, 3rem);
   }
   .height-xl\@md {
      height: var(--size-xl, 4rem);
   }
   .height-xxl\@md {
      height: var(--size-xxl, 6rem);
   }
   .height-xxxl\@md {
      height: var(--size-xxxl, 8rem);
   }
   .height-xxxxl\@md {
      height: var(--size-xxxxl, 16rem);
   }
   .height-0\@md {
      height: 0;
   }
   .height-10\%\@md {
      height: 10%;
   }
   .height-20\%\@md {
      height: 20%;
   }
   .height-25\%\@md {
      height: 25%;
   }
   .height-30\%\@md {
      height: 30%;
   }
   .height-33\%\@md {
      height: 33.3333333333%;
   }
   .height-40\%\@md {
      height: 40%;
   }
   .height-50\%\@md {
      height: 50%;
   }
   .height-60\%\@md {
      height: 60%;
   }
   .height-66\%\@md {
      height: 66.6666666667%;
   }
   .height-70\%\@md {
      height: 70%;
   }
   .height-75\%\@md {
      height: 75%;
   }
   .height-80\%\@md {
      height: 80%;
   }
   .height-90\%\@md {
      height: 90%;
   }
   .height-100\%\@md {
      height: 100%;
   }
   .height-100vh\@md {
      height: 100vh;
   }
   .height-auto\@md {
      height: auto;
   }
   .height-inherit\@md {
      height: inherit;
   }
   .max-width-xxxxxs\@md {
      max-width: var(--max-width-xxxxxs);
   }
   .max-width-xxxxs\@md {
      max-width: var(--max-width-xxxxs);
   }
   .max-width-xxxs\@md {
      max-width: var(--max-width-xxxs);
   }
   .max-width-xxs\@md {
      max-width: var(--max-width-xxs);
   }
   .max-width-xs\@md {
      max-width: var(--max-width-xs);
   }
   .max-width-sm\@md {
      max-width: var(--max-width-sm);
   }
   .max-width-md\@md {
      max-width: var(--max-width-md);
   }
   .max-width-lg\@md {
      max-width: var(--max-width-lg);
   }
   .max-width-xl\@md {
      max-width: var(--max-width-xl);
   }
   .max-width-xxl\@md {
      max-width: var(--max-width-xxl);
   }
   .max-width-xxxl\@md {
      max-width: var(--max-width-xxxl);
   }
   .max-width-xxxxl\@md {
      max-width: var(--max-width-xxxxl);
   }
   .max-width-100\%\@md {
      max-width: 100%;
   }
   .max-width-none\@md {
      max-width: none;
   }
   .position-relative\@md {
      position: relative;
   }
   .position-absolute\@md {
      position: absolute;
   }
   .position-fixed\@md {
      position: fixed;
   }
   .position-sticky\@md {
      position: 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: 33.3333333333%;
   }
   .width-40\%\@lg {
      width: 40%;
   }
   .width-50\%\@lg {
      width: 50%;
   }
   .width-60\%\@lg {
      width: 60%;
   }
   .width-66\%\@lg {
      width: 66.6666666667%;
   }
   .width-70\%\@lg {
      width: 70%;
   }
   .width-75\%\@lg {
      width: 75%;
   }
   .width-80\%\@lg {
      width: 80%;
   }
   .width-90\%\@lg {
      width: 90%;
   }
   .width-100\%\@lg {
      width: 100%;
   }
   .width-100vw\@lg {
      width: 100vw;
   }
   .width-auto\@lg {
      width: auto;
   }
   .width-inherit\@lg {
      width: inherit;
   }
   .height-xxxxs\@lg {
      height: var(--size-xxxxs, 0.25rem);
   }
   .height-xxxs\@lg {
      height: var(--size-xxxs, 0.5rem);
   }
   .height-xxs\@lg {
      height: var(--size-xxs, 0.75rem);
   }
   .height-xs\@lg {
      height: var(--size-xs, 1rem);
   }
   .height-sm\@lg {
      height: var(--size-sm, 1.5rem);
   }
   .height-md\@lg {
      height: var(--size-md, 2rem);
   }
   .height-lg\@lg {
      height: var(--size-lg, 3rem);
   }
   .height-xl\@lg {
      height: var(--size-xl, 4rem);
   }
   .height-xxl\@lg {
      height: var(--size-xxl, 6rem);
   }
   .height-xxxl\@lg {
      height: var(--size-xxxl, 8rem);
   }
   .height-xxxxl\@lg {
      height: var(--size-xxxxl, 16rem);
   }
   .height-0\@lg {
      height: 0;
   }
   .height-10\%\@lg {
      height: 10%;
   }
   .height-20\%\@lg {
      height: 20%;
   }
   .height-25\%\@lg {
      height: 25%;
   }
   .height-30\%\@lg {
      height: 30%;
   }
   .height-33\%\@lg {
      height: 33.3333333333%;
   }
   .height-40\%\@lg {
      height: 40%;
   }
   .height-50\%\@lg {
      height: 50%;
   }
   .height-60\%\@lg {
      height: 60%;
   }
   .height-66\%\@lg {
      height: 66.6666666667%;
   }
   .height-70\%\@lg {
      height: 70%;
   }
   .height-75\%\@lg {
      height: 75%;
   }
   .height-80\%\@lg {
      height: 80%;
   }
   .height-90\%\@lg {
      height: 90%;
   }
   .height-100\%\@lg {
      height: 100%;
   }
   .height-100vh\@lg {
      height: 100vh;
   }
   .height-auto\@lg {
      height: auto;
   }
   .height-inherit\@lg {
      height: inherit;
   }
   .max-width-xxxxxs\@lg {
      max-width: var(--max-width-xxxxxs);
   }
   .max-width-xxxxs\@lg {
      max-width: var(--max-width-xxxxs);
   }
   .max-width-xxxs\@lg {
      max-width: var(--max-width-xxxs);
   }
   .max-width-xxs\@lg {
      max-width: var(--max-width-xxs);
   }
   .max-width-xs\@lg {
      max-width: var(--max-width-xs);
   }
   .max-width-sm\@lg {
      max-width: var(--max-width-sm);
   }
   .max-width-md\@lg {
      max-width: var(--max-width-md);
   }
   .max-width-lg\@lg {
      max-width: var(--max-width-lg);
   }
   .max-width-xl\@lg {
      max-width: var(--max-width-xl);
   }
   .max-width-xxl\@lg {
      max-width: var(--max-width-xxl);
   }
   .max-width-xxxl\@lg {
      max-width: var(--max-width-xxxl);
   }
   .max-width-xxxxl\@lg {
      max-width: var(--max-width-xxxxl);
   }
   .max-width-100\%\@lg {
      max-width: 100%;
   }
   .max-width-none\@lg {
      max-width: none;
   }
   .position-relative\@lg {
      position: relative;
   }
   .position-absolute\@lg {
      position: absolute;
   }
   .position-fixed\@lg {
      position: fixed;
   }
   .position-sticky\@lg {
      position: 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: 33.3333333333%;
   }
   .width-40\%\@xl {
      width: 40%;
   }
   .width-50\%\@xl {
      width: 50%;
   }
   .width-60\%\@xl {
      width: 60%;
   }
   .width-66\%\@xl {
      width: 66.6666666667%;
   }
   .width-70\%\@xl {
      width: 70%;
   }
   .width-75\%\@xl {
      width: 75%;
   }
   .width-80\%\@xl {
      width: 80%;
   }
   .width-90\%\@xl {
      width: 90%;
   }
   .width-100\%\@xl {
      width: 100%;
   }
   .width-100vw\@xl {
      width: 100vw;
   }
   .width-auto\@xl {
      width: auto;
   }
   .width-inherit\@xl {
      width: inherit;
   }
   .height-xxxxs\@xl {
      height: var(--size-xxxxs, 0.25rem);
   }
   .height-xxxs\@xl {
      height: var(--size-xxxs, 0.5rem);
   }
   .height-xxs\@xl {
      height: var(--size-xxs, 0.75rem);
   }
   .height-xs\@xl {
      height: var(--size-xs, 1rem);
   }
   .height-sm\@xl {
      height: var(--size-sm, 1.5rem);
   }
   .height-md\@xl {
      height: var(--size-md, 2rem);
   }
   .height-lg\@xl {
      height: var(--size-lg, 3rem);
   }
   .height-xl\@xl {
      height: var(--size-xl, 4rem);
   }
   .height-xxl\@xl {
      height: var(--size-xxl, 6rem);
   }
   .height-xxxl\@xl {
      height: var(--size-xxxl, 8rem);
   }
   .height-xxxxl\@xl {
      height: var(--size-xxxxl, 16rem);
   }
   .height-0\@xl {
      height: 0;
   }
   .height-10\%\@xl {
      height: 10%;
   }
   .height-20\%\@xl {
      height: 20%;
   }
   .height-25\%\@xl {
      height: 25%;
   }
   .height-30\%\@xl {
      height: 30%;
   }
   .height-33\%\@xl {
      height: 33.3333333333%;
   }
   .height-40\%\@xl {
      height: 40%;
   }
   .height-50\%\@xl {
      height: 50%;
   }
   .height-60\%\@xl {
      height: 60%;
   }
   .height-66\%\@xl {
      height: 66.6666666667%;
   }
   .height-70\%\@xl {
      height: 70%;
   }
   .height-75\%\@xl {
      height: 75%;
   }
   .height-80\%\@xl {
      height: 80%;
   }
   .height-90\%\@xl {
      height: 90%;
   }
   .height-100\%\@xl {
      height: 100%;
   }
   .height-100vh\@xl {
      height: 100vh;
   }
   .height-auto\@xl {
      height: auto;
   }
   .height-inherit\@xl {
      height: inherit;
   }
   .max-width-xxxxxs\@xl {
      max-width: var(--max-width-xxxxxs);
   }
   .max-width-xxxxs\@xl {
      max-width: var(--max-width-xxxxs);
   }
   .max-width-xxxs\@xl {
      max-width: var(--max-width-xxxs);
   }
   .max-width-xxs\@xl {
      max-width: var(--max-width-xxs);
   }
   .max-width-xs\@xl {
      max-width: var(--max-width-xs);
   }
   .max-width-sm\@xl {
      max-width: var(--max-width-sm);
   }
   .max-width-md\@xl {
      max-width: var(--max-width-md);
   }
   .max-width-lg\@xl {
      max-width: var(--max-width-lg);
   }
   .max-width-xl\@xl {
      max-width: var(--max-width-xl);
   }
   .max-width-xxl\@xl {
      max-width: var(--max-width-xxl);
   }
   .max-width-xxxl\@xl {
      max-width: var(--max-width-xxxl);
   }
   .max-width-xxxxl\@xl {
      max-width: var(--max-width-xxxxl);
   }
   .max-width-100\%\@xl {
      max-width: 100%;
   }
   .max-width-none\@xl {
      max-width: none;
   }
   .position-relative\@xl {
      position: relative;
   }
   .position-absolute\@xl {
      position: absolute;
   }
   .position-fixed\@xl {
      position: fixed;
   }
   .position-sticky\@xl {
      position: 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, 50%, 48%);
   --color-primary-darker-h: 35;
   --color-primary-darker-s: 50%;
   --color-primary-darker-l: 48%;
   --color-primary-dark: hsl(35, 50%, 54%);
   --color-primary-dark-h: 35;
   --color-primary-dark-s: 50%;
   --color-primary-dark-l: 54%;
   --color-primary: hsl(35, 50%, 60%);
   --color-primary-h: 35;
   --color-primary-s: 50%;
   --color-primary-l: 60%;
   --color-primary-light: hsl(35, 50%, 66%);
   --color-primary-light-h: 35;
   --color-primary-light-s: 50%;
   --color-primary-light-l: 66%;
   --color-primary-lighter: hsl(35, 50%, 72%);
   --color-primary-lighter-h: 35;
   --color-primary-lighter-s: 50%;
   --color-primary-lighter-l: 72%;
   --color-accent-darker: hsl(204, 9%, 9%);
   --color-accent-darker-h: 204;
   --color-accent-darker-s: 9%;
   --color-accent-darker-l: 9%;
   --color-accent-dark: hsl(204, 9%, 15%);
   --color-accent-dark-h: 204;
   --color-accent-dark-s: 9%;
   --color-accent-dark-l: 15%;
   --color-accent: hsl(204, 9%, 21%);
   --color-accent-h: 204;
   --color-accent-s: 9%;
   --color-accent-l: 21%;
   --color-accent-light: hsl(204, 9%, 27%);
   --color-accent-light-h: 204;
   --color-accent-light-s: 9%;
   --color-accent-light-l: 27%;
   --color-accent-lighter: hsl(204, 9%, 33%);
   --color-accent-lighter-h: 204;
   --color-accent-lighter-s: 9%;
   --color-accent-lighter-l: 33%;
   --color-black: hsl(180, 3%, 14%);
   --color-black-h: 180;
   --color-black-s: 3%;
   --color-black-l: 14%;
   --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(184, 35%, 41%);
   --color-success-darker-h: 174;
   --color-success-darker-s: 35%;
   --color-success-darker-l: 41%;
   --color-success-dark: hsl(184, 35%, 47%);
   --color-success-dark-h: 184;
   --color-success-dark-s: 35%;
   --color-success-dark-l: 47%;
   --color-success: hsl(184, 35%, 53%);
   --color-success-h: 184;
   --color-success-s: 35%;
   --color-success-l: 53%;
   --color-success-light: hsl(184, 35%, 59%);
   --color-success-light-h: 184;
   --color-success-light-s: 35%;
   --color-success-light-l: 59%;
   --color-success-lighter: hsl(184, 35%, 65%);
   --color-success-lighter-h: 184;
   --color-success-lighter-s: 35%;
   --color-success-lighter-l: 65%;
   --color-error-darker: hsl(355, 100%, 33%);
   --color-error-darker-h: 355;
   --color-error-darker-s: 100%;
   --color-error-darker-l: 33%;
   --color-error-dark: hsl(355, 100%, 39%);
   --color-error-dark-h: 355;
   --color-error-dark-s: 100%;
   --color-error-dark-l: 39%;
   --color-error: hsl(355, 100%, 45%);
   --color-error-h: 355;
   --color-error-s: 100%;
   --color-error-l: 45%;
   --color-error-light: hsl(355, 100%, 51%);
   --color-error-light-h: 355;
   --color-error-light-s: 100%;
   --color-error-light-l: 51%;
   --color-error-lighter: hsl(355, 100%, 57%);
   --color-error-lighter-h: 355;
   --color-error-lighter-s: 100%;
   --color-error-lighter-l: 57%;
   --color-bg-darker: hsl(225, 5%, 0%);
   --color-bg-darker-h: 225;
   --color-bg-darker-s: 5%;
   --color-bg-darker-l: 0%;
   --color-bg-dark: hsl(225, 7%, 3%);
   --color-bg-dark-h: 225;
   --color-bg-dark-s: 7%;
   --color-bg-dark-l: 3%;
   --color-bg: hsl(228, 14%, 7%);
   --color-bg-h: 228;
   --color-bg-s: 14%;
   --color-bg-l: 7%;
   --color-bg-light: hsl(225, 7%, 11%);
   --color-bg-light-h: 225;
   --color-bg-light-s: 7%;
   --color-bg-light-l: 11%;
   --color-bg-lighter: hsl(225, 5%, 15%);
   --color-bg-lighter-h: 225;
   --color-bg-lighter-s: 5%;
   --color-bg-lighter-l: 15%;
   --color-contrast-lower: hsl(225, 4%, 18%);
   --color-contrast-lower-h: 225;
   --color-contrast-lower-s: 4%;
   --color-contrast-lower-l: 18%;
   --color-contrast-low: hsl(220, 2%, 35%);
   --color-contrast-low-h: 220;
   --color-contrast-low-s: 2%;
   --color-contrast-low-l: 35%;
   --color-contrast-medium: hsl(220, 1%, 53%);
   --color-contrast-medium-h: 220;
   --color-contrast-medium-s: 1%;
   --color-contrast-medium-l: 53%;
   --color-contrast-high: hsl(240, 1%, 81%);
   --color-contrast-high-h: 240;
   --color-contrast-high-s: 1%;
   --color-contrast-high-l: 81%;
   --color-contrast-higher: hsl(0, 0%, 100%);
   --color-contrast-higher-h: 0;
   --color-contrast-higher-s: 0%;
   --color-contrast-higher-l: 100%;
}

[data-theme="dark"] {
   --color-primary-darker: hsl(35, 50%, 48%);
   --color-primary-darker-h: 35;
   --color-primary-darker-s: 50%;
   --color-primary-darker-l: 48%;
   --color-primary-dark: hsl(35, 50%, 54%);
   --color-primary-dark-h: 35;
   --color-primary-dark-s: 50%;
   --color-primary-dark-l: 54%;
   --color-primary: hsl(35, 50%, 60%);
   --color-primary-h: 35;
   --color-primary-s: 50%;
   --color-primary-l: 60%;
   --color-primary-light: hsl(35, 50%, 66%);
   --color-primary-light-h: 35;
   --color-primary-light-s: 50%;
   --color-primary-light-l: 66%;
   --color-primary-lighter: hsl(35, 50%, 72%);
   --color-primary-lighter-h: 35;
   --color-primary-lighter-s: 50%;
   --color-primary-lighter-l: 72%;
   --color-accent-darker: hsl(0, 0%, 88%);
   --color-accent-darker-h: 0;
   --color-accent-darker-s: 0%;
   --color-accent-darker-l: 88%;
   --color-accent-dark: hsl(0, 0%, 94%);
   --color-accent-dark-h: 0;
   --color-accent-dark-s: 0%;
   --color-accent-dark-l: 94%;
   --color-accent: hsl(0, 0%, 100%);
   --color-accent-h: 0;
   --color-accent-s: 0%;
   --color-accent-l: 100%;
   --color-accent-light: hsl(0, 0%, 100%);
   --color-accent-light-h: 0;
   --color-accent-light-s: 0%;
   --color-accent-light-l: 100%;
   --color-accent-lighter: hsl(0, 0%, 100%);
   --color-accent-lighter-h: 0;
   --color-accent-lighter-s: 0%;
   --color-accent-lighter-l: 100%;
   --color-black-darker: hsl(0, 0%, 0%);
   --color-black-dark: hsl(0, 0%, 0%);
   --color-black: hsl(0, 0%, 0%);
   --color-black-light: hsl(0, 0%, 6%);
   --color-black-lighter: hsl(0, 0%, 12%);
   --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(184, 35%, 41%);
   --color-success-darker-h: 174;
   --color-success-darker-s: 35%;
   --color-success-darker-l: 41%;
   --color-success-dark: hsl(184, 35%, 47%);
   --color-success-dark-h: 184;
   --color-success-dark-s: 35%;
   --color-success-dark-l: 47%;
   --color-success: hsl(184, 35%, 53%);
   --color-success-h: 184;
   --color-success-s: 35%;
   --color-success-l: 53%;
   --color-success-light: hsl(184, 35%, 59%);
   --color-success-light-h: 184;
   --color-success-light-s: 35%;
   --color-success-light-l: 59%;
   --color-success-lighter: hsl(184, 35%, 65%);
   --color-success-lighter-h: 184;
   --color-success-lighter-s: 35%;
   --color-success-lighter-l: 65%;
   --color-error-darker: hsl(355, 100%, 33%);
   --color-error-darker-h: 355;
   --color-error-darker-s: 100%;
   --color-error-darker-l: 33%;
   --color-error-dark: hsl(355, 100%, 39%);
   --color-error-dark-h: 355;
   --color-error-dark-s: 100%;
   --color-error-dark-l: 39%;
   --color-error: hsl(355, 100%, 45%);
   --color-error-h: 355;
   --color-error-s: 100%;
   --color-error-l: 45%;
   --color-error-light: hsl(355, 100%, 51%);
   --color-error-light-h: 355;
   --color-error-light-s: 100%;
   --color-error-light-l: 51%;
   --color-error-lighter: hsl(355, 100%, 57%);
   --color-error-lighter-h: 355;
   --color-error-lighter-s: 100%;
   --color-error-lighter-l: 57%;
   --color-bg-darker: hsl(225, 5%, 0%);
   --color-bg-darker-h: 225;
   --color-bg-darker-s: 5%;
   --color-bg-darker-l: 0%;
   --color-bg-dark: hsl(225, 7%, 3%);
   --color-bg-dark-h: 225;
   --color-bg-dark-s: 7%;
   --color-bg-dark-l: 3%;
   --color-bg: hsl(228, 14%, 7%);
   --color-bg-h: 228;
   --color-bg-s: 14%;
   --color-bg-l: 7%;
   --color-bg-light: hsl(225, 7%, 11%);
   --color-bg-light-h: 225;
   --color-bg-light-s: 7%;
   --color-bg-light-l: 11%;
   --color-bg-lighter: hsl(225, 5%, 15%);
   --color-bg-lighter-h: 225;
   --color-bg-lighter-s: 5%;
   --color-bg-lighter-l: 15%;
   --color-contrast-lower: hsl(225, 4%, 18%);
   --color-contrast-lower-h: 225;
   --color-contrast-lower-s: 4%;
   --color-contrast-lower-l: 18%;
   --color-contrast-low: hsl(220, 2%, 35%);
   --color-contrast-low-h: 220;
   --color-contrast-low-s: 2%;
   --color-contrast-low-l: 35%;
   --color-contrast-medium: hsl(220, 1%, 53%);
   --color-contrast-medium-h: 220;
   --color-contrast-medium-s: 1%;
   --color-contrast-medium-l: 53%;
   --color-contrast-high: hsl(240, 1%, 81%);
   --color-contrast-high-h: 240;
   --color-contrast-high-s: 1%;
   --color-contrast-high-l: 81%;
   --color-contrast-higher: hsl(0, 0%, 100%);
   --color-contrast-higher-h: 0;
   --color-contrast-higher-s: 0%;
   --color-contrast-higher-l: 100%;
}

@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;
   --color-red: #d40221;
}

.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: var(--color-accent);
   cursor: pointer;
   text-decoration: none;
   transition: all 0.2s ease;
}
.link-subtle:hover {
   color: var(--color-primary);
}

:root {
   --font-primary: "Roboto", sans-serif;
   --font-secondary: "Roboto", sans-serif;
   --text-base-size: 1rem;
   --text-scale-ratio: 1.2;
   --body-line-height: 1.7;
   --heading-line-height: 100%;
   --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));
}

@media (min-width: 64rem) {
   :root {
      --text-base-size: 1rem;
      --text-scale-ratio: 1.215;
   }
}
body {
   font-family: var(--font-primary);
   --body-font-weight: 400;
}
@media (min-width: 48rem) {
   body {
      font-family: var(--font-primary);
   }
}

h1,
h2,
h3,
h4 {
   font-family: var(--font-secondary);
   --heading-font-weight: 300;
}

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

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

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

.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 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: 1.58;
   --text-space-y-multiplier: 1.2;
}

:root {
   --btn-font-size: 1em;
   --btn-padding-x: var(--space-md);
   --btn-padding-y: var(--space-xs);
   --btn-radius: 0;
}

.btn {
   background: transparent;
   color: var(--color-black);
   cursor: pointer;
   border: 1px solid var(--color-black);
   font-family: var(--font-primary);
   font-weight: 300;
   text-decoration: none;
   line-height: 1.2;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   outline: none;
   transition: all 0.5s ease;
   will-change: transform;
}
.btn:hover {
   background: transparent;
   color: var(--color-contrast-high);
   border: 1px solid var(--color-contrast-high);
   font-weight: 300;
   outline: none;
   transition: all 0.5s ease;
}
.btn: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 {
   transform: translateY(2px);
}

.btn--primary {


   background: var(--color-success);
   color: var(--color-white);
   border: 1px solid var(--color-success);
   font-weight: bold;
}
.btn--primary:hover {
   background: var(--color-contrast-higher);
   color: var(--color-black);
   border: 1px solid var(--color-black);
   outline: none;
   font-weight: bold;
}
.btn--primary: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: transparent;
   color: var(--color-black);
   border: 1px solid var(--color-black);
   outline: none;
}
.btn--subtle:hover {
   background: transparent;
   color: var(--color-contrast-high);
   border: 1px solid var(--color-contrast-high);
   outline: none;
}
.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: transparent;
   color: var(--color-black);
   border: 1px solid var(--color-black);
   outline: none;
}
.btn--accent:hover {
   background: transparent;
   color: var(--color-contrast-medium);
   border: 1px solid var(--color-contrast-medium);
   outline: none;
}
.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--secondary {
   background: var(--color-black);
   color: var(--color-white);
   font-weight: bold;
   border: 1px solid var(--color-black);
}
.btn--secondary:hover {
   background: var(--color-success);
   color: var(--color-white);
   font-weight: bold;
   border: 1px solid var(--color-success);
}

.btn--disabled,
.btn[disabled],
.btn[readonly] {
   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: 0em;
}

.form-control {
   background: var(--color-bg-dark);
   cursor: auto;
   font-family: var(--font-primary);
   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);
}

/*! purgecss start ignore */
/* -------------------------------- 

File#: _1_3d-card
Title: 3D Card
Descr: Card element floating in a 3D space
Usage: codyhouse.co/license

-------------------------------- */
.td-card__img {
   display: block;
   width: 100%;
}

.td-card-link {
   color: var(--color-contrast-higher);
   text-decoration: none;
   /* filling effect */
   background-repeat: no-repeat;
   background-image: linear-gradient(
      to right,
      var(--color-contrast-higher) 50%,
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1) 50%
   );
   background-size: 200% 1px;
   background-position: 100% calc(100% - 0.05em);
   transition: background-position 0.3s var(--ease-in-out);
}
.td-card-link:hover {
   background-position: 0% calc(100% - 0.05em);
}

/* -------------------------------- 

File#: _1_3d-cards
Title: 3D Cards
Descr: Images in a 3D space
Usage: codyhouse.co/license

-------------------------------- */
.td-cards {
   position: relative;
   z-index: 1;
}

.td-cards__card > img {
   display: block;
   width: 100%;
}

.td-cards--v1 {
   --card-ratio: 585/960;
   width: 100%;
   height: 0;
   padding-bottom: calc(50% / (var(--card-ratio)));
}
.td-cards--v1 .td-cards__inner {
   position: absolute;
   top: 10%;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   pointer-events: none;
   perspective: 1000px;
}
.td-cards--v1 .td-cards__card {
   width: 50%;
   border-radius: var(--radius-lg);
   overflow: hidden;
   pointer-events: auto;
   will-change: transform;
   transform: rotateX(60deg) rotateZ(-60deg);
   transition-property: transform, top;
   transition-duration: 0.4s;
   transition-timing-function: var(--ease-out);
}
.td-cards--v1 .td-cards__card:nth-child(1) {
   position: relative;
   z-index: 1;
   box-shadow:
      0 0px 0.2px rgba(0, 0, 0, 0.02),
      0 0px 0.5px rgba(0, 0, 0, 0.028),
      0 0px 1px rgba(0, 0, 0, 0.035),
      0 0px 1.8px rgba(0, 0, 0, 0.042),
      0 0px 3.3px rgba(0, 0, 0, 0.05),
      0 0px 8px rgba(0, 0, 0, 0.07);
}
.td-cards--v1 .td-cards__card:nth-child(2),
.td-cards--v1 .td-cards__card:nth-child(3) {
   position: absolute;
}
.td-cards--v1 .td-cards__card:nth-child(2) {
   z-index: 2;
   top: calc(-10% - var(--top-offset, 0%));
   box-shadow:
      0 0px 1.1px rgba(0, 0, 0, 0.02),
      0 0px 2.5px rgba(0, 0, 0, 0.028),
      0 0px 4.8px rgba(0, 0, 0, 0.035),
      0 0px 8.5px rgba(0, 0, 0, 0.042),
      0 0px 15.9px rgba(0, 0, 0, 0.05),
      0 0px 38px rgba(0, 0, 0, 0.07);
}
.td-cards--v1 .td-cards__card:nth-child(3) {
   z-index: 3;
   top: calc(-20% - var(--top-offset, 0%));
   box-shadow:
      0 0px 2.4px rgba(0, 0, 0, 0.022),
      0 0px 5.9px rgba(0, 0, 0, 0.032),
      0 0px 11px rgba(0, 0, 0, 0.04),
      0 0px 19.7px rgba(0, 0, 0, 0.048),
      0 0px 36.8px rgba(0, 0, 0, 0.058),
      0 0px 88px rgba(0, 0, 0, 0.08);
}
.td-cards--v1 .td-cards__card:hover ~ * {
   --top-offset: 15%;
}

.td-cards--v2 {
   --card-ratio: 585/960;
   width: 100%;
   height: 0;
   padding-bottom: calc(50% / (var(--card-ratio)) + 10%);
}
.td-cards--v2 .td-cards__inner {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   perspective: 1500px;
   transform-style: preserve-3d;
}
.td-cards--v2 .td-cards__card {
   position: absolute;
   width: 50%;
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: var(--shadow-md);
   backface-visibility: hidden;
   transform: translate3d(0);
   will-change: transform;
   transition: transform 0.4s var(--ease-out);
}
.td-cards--v2 .td-cards__card:nth-child(1) {
   z-index: 1;
   transform: translateX(-30%) rotateY(45deg);
}
.td-cards--v2 .td-cards__card:nth-child(2) {
   z-index: 2;
   transform: translateX(30%) rotateY(45deg);
}
.td-cards--v2:hover .td-cards__card:nth-child(1) {
   transform: translateY(-5%) translateX(-30%) rotateY(0deg);
}
.td-cards--v2:hover .td-cards__card:nth-child(2) {
   transform: translateY(5%) translateX(30%) rotateY(0deg);
}

.td-cards--v3 {
   --card-ratio: 960/640;
   width: 100%;
   height: 0;
   padding-bottom: calc(100% / (var(--card-ratio)));
   perspective: 1500px;
}
.td-cards--v3 .td-cards__inner {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   transform: rotateX(45deg);
   transform-style: preserve-3d;
   will-change: transform;
   transition: transform 0.4s var(--ease-out);
}
.td-cards--v3 .td-cards__card {
   position: absolute;
   top: 5%;
   left: 5%;
   width: 90%;
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: var(--shadow-md);
   will-change: transform;
   transition: transform 0.4s var(--ease-out);
}
.td-cards--v3 .td-cards__card:nth-child(1) {
   transform: translateZ(-50px);
   box-shadow:
      0 0px 0.2px rgba(0, 0, 0, 0.02),
      0 0px 0.5px rgba(0, 0, 0, 0.028),
      0 0px 1px rgba(0, 0, 0, 0.035),
      0 0px 1.8px rgba(0, 0, 0, 0.042),
      0 0px 3.3px rgba(0, 0, 0, 0.05),
      0 0px 8px rgba(0, 0, 0, 0.07);
}
.td-cards--v3 .td-cards__card:nth-child(2) {
   box-shadow:
      0 0px 1.1px rgba(0, 0, 0, 0.02),
      0 0px 2.5px rgba(0, 0, 0, 0.028),
      0 0px 4.8px rgba(0, 0, 0, 0.035),
      0 0px 8.5px rgba(0, 0, 0, 0.042),
      0 0px 15.9px rgba(0, 0, 0, 0.05),
      0 0px 38px rgba(0, 0, 0, 0.07);
}
.td-cards--v3 .td-cards__card:nth-child(3) {
   transform: translateZ(50px);
   box-shadow:
      0 0px 2.4px rgba(0, 0, 0, 0.022),
      0 0px 5.9px rgba(0, 0, 0, 0.032),
      0 0px 11px rgba(0, 0, 0, 0.04),
      0 0px 19.7px rgba(0, 0, 0, 0.048),
      0 0px 36.8px rgba(0, 0, 0, 0.058),
      0 0px 88px rgba(0, 0, 0, 0.08);
}
.td-cards--v3:hover .td-cards__inner {
   transform: rotateX(0deg);
}
.td-cards--v3:hover .td-cards__card:nth-child(1),
.td-cards--v3:hover .td-cards__card:nth-child(3) {
   transform: translateZ(0px);
}

.td-cards--v4,
.td-cards--v5 {
   --card-ratio: 960/640;
   width: 100%;
   height: 0;
   padding-bottom: calc(100% / (var(--card-ratio)) + 10%);
}
.td-cards--v4 .td-cards__inner,
.td-cards--v5 .td-cards__inner {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   perspective: 1500px;
}
.td-cards--v4 .td-cards__card,
.td-cards--v5 .td-cards__card {
   border-radius: var(--radius-lg);
   overflow: hidden;
   transform: var(--rotation);
   animation: td-card-v4-floating-anim 5s infinite;
}
.td-cards--v4 .td-cards__shadow,
.td-cards--v5 .td-cards__shadow {
   position: absolute;
   bottom: -0.1em;
   width: 100%;
   left: 0%;
   height: 0.2em;
   border-radius: 100%;
   background-color: hsla(0, 0%, 0%, 0.25);
   transform: scaleX(0.9);
   filter: blur(5px);
   animation: td-card-shadow-anim 5s infinite;
}
.td-cards--v4 .td-cards__shadow::before,
.td-cards--v5 .td-cards__shadow::before {
   content: "";
   position: absolute;
   border-radius: inherit;
   top: -5%;
   left: -5%;
   width: 110%;
   height: 110%;
   background-color: hsla(0, 0%, 0%, 0.15);
   filter: blur(5px);
}

.td-cards--v4 .td-cards__card {
   --rotation: rotate3d(0.5, 0.9, 0, 20deg);
}

.td-cards--v5 .td-cards__card {
   --rotation: rotate3d(0.5, -0.9, 0, 20deg);
}

@keyframes td-card-v4-floating-anim {
   0%,
   100% {
      transform: translateY(0) var(--rotation);
   }
   50% {
      transform: translateY(5%) var(--rotation);
   }
}
/* -------------------------------- 

File#: _1_3d-drawer
Title: 3D Drawer
Descr: A 3D panel used to display critical content
Usage: codyhouse.co/license

-------------------------------- */
.td-drawer {
   position: fixed;
   z-index: var(--z-index-overlay);
   top: 0;
   right: 0;
   height: 100%;
   width: 100%;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
   transition:
      background-color 0.3s,
      visibility 0s 0.3s;
   visibility: hidden;
}
.td-drawer:focus {
   outline: none;
}

.td-drawer--is-visible {
   visibility: visible;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
   transition:
      background-color 0.3s,
      visibility 0s;
}

.td-drawer__content {
   position: absolute;
   top: 0;
   right: 0;
   width: 90%;
   max-width: 720px;
   height: 100%;
   background-color: var(--color-bg);
   box-shadow: var(--shadow-lg);
   display: flex;
   flex-direction: column;
   transform: translateX(100%);
   transition: transform 0.3s var(--ease-out);
}
.td-drawer--left .td-drawer__content {
   right: auto;
   left: 0;
   transform: translateX(-100%);
}
.td-drawer--bottom .td-drawer__content {
   width: 100%;
   max-width: none;
   height: 70%;
   max-height: 720px;
   transform: translateY(100%);
   top: auto;
   bottom: 0;
}
.td-drawer--is-visible .td-drawer__content {
   transform: translateX(0);
}
.td-drawer--is-visible.td-drawer--bottom .td-drawer__content {
   transform: translateY(0);
}

.td-drawer__header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-shrink: 0;
   background: var(--color-bg);
   border-bottom: 1px solid
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
}

.td-drawer__close-btn {
   display: flex;
   width: 32px;
   height: 32px;
   flex-shrink: 0;
   border-radius: 50%;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-ring), var(--shadow-xs);
   transition: 0.2s;
}
.td-drawer__close-btn:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-ring), var(--shadow-sm);
}
.td-drawer__close-btn .icon {
   --size: 16px;
   display: block;
   margin: auto;
   color: var(--color-contrast-higher);
}

.td-drawer__body {
   height: 100%;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
}

.td-drawer-main {
   background: var(--color-bg);
   box-shadow: var(--shadow-md);
   height: 100vh;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   will-change: transform;
   transition: transform 0.3s var(--ease-out);
}

.td-drawer-main--drawer-is-visible {
   transform: scale(0.9);
   overflow: hidden;
}

/* -------------------------------- 

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: 0.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% 66.6666666667% 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% 33.3333333333% 0% 33.3333333333%);
}
.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% 66.6666666667%);
}

.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% 75% 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% 50% 0% 25%);
}
.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% 25% 0% 50%);
}
.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% 75%);
}

/* -------------------------------- 

File#: _1_404
Title: 404
Descr: 404 error section
Usage: codyhouse.co/license

-------------------------------- */
.fof__animation svg {
   display: block;
   max-width: 520px;
   margin-left: auto;
   margin-right: auto;
}

#i-fof-browser {
   transform-origin: 260px 304px;
   animation: i-fof-browser 4s infinite;
}

#i-fof-shadow {
   transform-origin: 282px 410px;
   animation: i-fof-shadow 4s infinite;
}

@keyframes i-fof-browser {
   0%,
   100% {
      transform: translateY(0) scale(1);
   }
   50% {
      transform: translateY(-10%) scale(0.9);
   }
}
@keyframes i-fof-shadow {
   0%,
   100% {
      transform: scale(1);
   }
   50% {
      transform: scale(0.8);
   }
}
/* -------------------------------- 

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_adaptive-navigation
Title: Adaptive Navigation
Descr: Navigation where the number of visible items changes according to the available space
Usage: codyhouse.co/license

-------------------------------- */
.adapt-nav {
   position: relative;
}

.adapt-nav__list {
   display: flex;
   align-items: center;
}

.adapt-nav__item {
   flex-shrink: 0;
   margin-right: var(--space-xs);
}

.adapt-nav__link {
   display: block;
   color: var(--color-contrast-high);
   text-decoration: none;
   padding: var(--space-xxs) var(--space-xs);
   border-radius: var(--radius-md);
   transition: 0.2s;
}
.adapt-nav__link:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.adapt-nav__link[aria-current="page"] {
   color: var(--color-primary);
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.adapt-nav__item--hidden {
   visibility: hidden;
}

.adapt-nav {
   opacity: 0;
}

.adapt-nav--is-visible {
   opacity: 1;
}

.adapt-nav__item--more {
   position: relative;
   margin-right: 0;
}

.adapt-nav__btn {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   height: 32px;
   border-radius: 50%;
}
.adapt-nav__btn .icon {
   --size: 16px;
   display: block;
}
.adapt-nav__btn:hover,
.adapt-nav__item--more[aria-expanded="true"] .adapt-nav__btn {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.adapt-nav__btn:active {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.25
   );
}

.adapt-nav__dropdown {
   position: absolute;
   right: 0;
   top: calc(100% + 4px);
   width: 180px;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-md);
   padding: var(--space-xxs) 0;
   border-radius: var(--radius-md);
   z-index: var(--z-index-popover);
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0s 0.2s,
      opacity 0.2s;
}

.adapt-nav__dropdown--is-visible {
   visibility: visible;
   opacity: 1;
   transition:
      visibility 0s,
      opacity 0.2s;
}

.adapt-nav__dropdown-link {
   display: block;
   padding: var(--space-xxs) var(--space-sm);
   text-decoration: none;
   color: var(--color-contrast-high);
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   transition: 0.2s;
}
.adapt-nav__dropdown-link:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.adapt-nav__dropdown-link[aria-current="page"] {
   color: var(--color-primary);
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

/* -------------------------------- 

File#: _1_adv-gallery-v2
Title: Advanced Gallery v2
Descr: Advanced image gallery template
Usage: codyhouse.co/license

-------------------------------- */
.adv-gallery-v2__img {
   display: block;
   width: 100%;
}

.adv-gallery-v2__caption {
   font-size: var(--text-sm);
   margin-top: var(--space-xxs);
}

.adv-gallery-v2__img-link {
   position: relative;
   display: block;
   text-decoration: none;
   color: inherit;
}
.adv-gallery-v2__img-link::before,
.adv-gallery-v2__img-link::after {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   width: 48px;
   height: 48px;
}
.adv-gallery-v2__img-link::before {
   clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
   transition: clip-path 0.2s var(--ease-out);
}
.adv-gallery-v2__img-link::after {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpolyline points='4 2 14 2 14 12' fill='none' stroke='%23FFF' stroke-miterlimit='10' stroke-width='2'/%3E%3Cline x1='14' y1='2' x2='2' y2='14' fill='none' stroke='%23FFF' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: center;
   transform: scale(0.5) translateX(-5px) translateY(5px);
   will-change: transform;
   opacity: 0;
   transition:
      opacity 0.2s,
      transform 0.2s var(--ease-out);
}
.adv-gallery-v2__img-link:hover::before {
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.adv-gallery-v2__img-link:hover::after {
   transform: scale(1) translateX(0) translateY(0);
   opacity: 1;
}

/* -------------------------------- 

File#: _1_adv-gallery-v5
Title: Advanced Gallery v5
Descr: Advanced image gallery template
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_adv-gallery
Title: Advanced Gallery
Descr: Advanced image gallery template
Usage: codyhouse.co/license

-------------------------------- */
.adv-gallery {
   position: relative;
   z-index: 1;
}

.adv-gallery__img {
   width: 100%;
   display: block;
   -o-object-fit: cover;
   object-fit: cover;
}

.adv-gallery__grid {
   display: grid;
   grid-gap: var(--space-md);
}

@media (min-width: 64rem) {
   .adv-gallery__grid {
      grid-template-columns: repeat(12, 1fr);
   }
   .adv-gallery__grid > :nth-child(1) {
      grid-column: span 5;
   }
   .adv-gallery__grid > :nth-child(2) {
      grid-column: span 7;
   }
   .adv-gallery__grid > :nth-child(3) {
      grid-column: span 9;
   }
   .adv-gallery__grid > :nth-child(4) {
      grid-column: span 3;
   }
}
@media (min-width: 80rem) {
   .adv-gallery__grid {
      grid-gap: var(--space-sm);
      grid-template-rows: repeat(12, 50px);
   }
   .adv-gallery__grid > :nth-child(1) {
      grid-column: 1/4;
      grid-row: 1/7;
   }
   .adv-gallery__grid > :nth-child(2) {
      grid-column: 1/4;
      grid-row: 7/-1;
   }
   .adv-gallery__grid > :nth-child(3) {
      grid-column: 4/11;
      grid-row: 1/-1;
   }
   .adv-gallery__grid > :nth-child(4) {
      grid-column: 11/13;
      grid-row: 1/-1;
   }
   .adv-gallery__img {
      height: 100%;
   }
}
/* -------------------------------- 

File#: _1_adv-multiple-custom-select
Title: Advanced Multiple Custom Select
Descr: Custom select with advanced structure options and where multiple options can be selected
Usage: codyhouse.co/license

-------------------------------- */
.advm-select {
   overflow: hidden;
   height: 236px;
   border-radius: var(--radius-md);
   box-shadow: 0 0 0 1px
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
   transition: box-shadow 0.2s;
}
.advm-select:focus-within {
   box-shadow: 0 0 0 2px var(--color-primary);
}
.advm-select:focus-within .advm-select__list {
   border-color: var(--color-primary);
}

.advm-select__list {
   height: 100%;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
}
.advm-select__list:focus {
   outline: none;
}

.advm-select__option,
.advm-select__label {
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}

.advm-select__option {
   cursor: pointer;
}
.advm-select__option:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.advm-select__option:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}
.advm-select__option[aria-selected="true"] {
   background-color: var(--color-primary);
   color: var(--color-white);
}
.advm-select__option[aria-selected="true"] .advm-select__check {
   visibility: visible;
}
.advm-select__option[aria-selected="true"]:focus {
   background-color: var(--color-primary-dark);
}

.advm-select__check {
   visibility: hidden;
}

/* -------------------------------- 

File#: _1_alert-card
Title: Alert Card
Descr: Alert card for app UI
Usage: codyhouse.co/license

-------------------------------- */
.alert-card {
   position: relative;
   z-index: 1;
}

.alert-card__close-btn {
   height: 32px;
   width: 32px;
   position: absolute;
   z-index: 1;
   top: var(--space-sm);
   right: var(--space-sm);
   display: flex;
   border-radius: 50%;
   transition: 0.2s;
}
.alert-card__close-btn .icon {
   margin: auto;
   display: block;
}
.alert-card__close-btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}

/* -------------------------------- 

File#: _1_alert
Title: Alert
Descr: Feedback message
Usage: codyhouse.co/license

-------------------------------- */
.alert {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   color: var(--color-contrast-higher);
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

.alert__icon {
   color: var(--color-primary);
}

.alert__close-btn {
   display: inline-flex;
   flex-shrink: 0;
   transition: 0.3s var(--ease-out);
}
.alert__close-btn .icon {
   display: block;
}
.alert__close-btn:hover {
   transform: scale(1.1);
}

.alert--success {
   background-color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), 0.2);
}
.alert--success .alert__icon {
   color: var(--color-success);
}

.alert--error {
   background-color: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.2);
}
.alert--error .alert__icon {
   color: var(--color-error);
}

.alert--warning {
   background-color: hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), 0.2);
}
.alert--warning .alert__icon {
   color: var(--color-warning);
}

.alert--is-visible {
   position: static;
   clip: auto;
   clip-path: none;
}

/* -------------------------------- 

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: 0.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_article-gallery-v3
Title: Article Gallery v3
Descr: A gallery of blog articles
Usage: codyhouse.co/license

-------------------------------- */
.articles-v3__img {
   display: block;
   transition: opacity 0.3s;
   border-radius: var(--radius-md);
   overflow: hidden;
}
.articles-v3__img img {
   display: block;
   width: 100%;
}
.articles-v3__img:hover {
   opacity: 0.85;
}

.articles-v3__headline {
   font-size: var(--text-xl);
}
.articles-v3__headline a {
   color: var(--color-contrast-higher);
   text-decoration: none;
}
.articles-v3__headline a:hover {
   text-decoration: underline;
}

.articles-v3__author {
   display: grid;
   grid-template-columns: 3em 1fr;
   grid-gap: var(--space-xs);
   align-items: center;
   margin-top: var(--space-md);
}

.articles-v3__author-img {
   display: block;
   width: 3em;
   height: 3em;
   border-radius: 50%;
   overflow: hidden;
   transition: transform 0.3s var(--ease-out-back);
}
.articles-v3__author-img img {
   display: block;
   width: inherit;
   height: inherit;
}
.articles-v3__author-img:hover {
   transform: scale(1.1);
}

.articles-v3__author-name {
   font-weight: bold;
   color: var(--color-contrast-higher);
   text-decoration: none;
}
.articles-v3__author-name:hover {
   text-decoration: underline;
}

/* -------------------------------- 

File#: _1_article-preview-v2
Title: Article Preview v2
Descr: Blog post excerpt, containing a link to the article page
Usage: codyhouse.co/license

-------------------------------- */
.story-v2__meta a {
   color: var(--color-contrast-high);
   transition: 0.2s;
}
.story-v2__meta a:hover {
   color: var(--color-primary);
}
.story-v2__meta span[role="separator"] {
   display: inline-block;
   width: 6px;
   height: 6px;
   vertical-align: middle;
   background-color: var(--color-contrast-low);
   border-radius: 50%;
   margin: 0 var(--space-xxxs);
}

.story-v2__headline a {
   color: var(--color-contrast-higher);
   text-decoration: underline;
   background-repeat: no-repeat;
   background-image: linear-gradient(
      transparent 50%,
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2) 50%
   );
   background-size: 0% 100%;
   will-change: background-size;
   transition: background-size 0.3s var(--ease-in-out);
}
.story-v2__headline a:hover {
   background-size: 100% 100%;
}

.story-v2__excerpt {
   color: var(--color-contrast-medium);
}

.story-v2__img {
   display: block;
   transition: opacity 0.2s;
}
.story-v2__img:hover {
   opacity: 0.85;
}
.story-v2__img img {
   display: block;
   width: 100%;
}

@media (min-width: 64rem) {
   .story-v2--featured .story-v2__excerpt {
      max-width: 70%;
      margin-left: auto;
   }
}
/* -------------------------------- 

File#: _1_article-preview-v3
Title: Article Preview v3
Descr: Blog post excerpt, containing a link to the article page and a preview image animated on hover
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --story-v3-image-width: 30%;
}

.story-v3 {
   position: relative;
   display: block;
   color: inherit;
   text-decoration: none;
   border-top: 1px solid var(--color-contrast-lower);
   box-shadow: 0 1px 0 var(--color-contrast-lower);
   transition: 0.3s;
}
.story-v3:hover .story-v3__title {
   text-decoration: underline;
}
.story-v3:hover .story-v3__icon line:nth-child(1) {
   transform: rotate(180deg);
}
.story-v3:hover .story-v3__icon line:nth-child(2) {
   transform: rotate(-180deg);
}
.story-v3:hover .story-v3__icon line:nth-child(3) {
   stroke-dashoffset: 14;
}

.story-v3__icon {
   font-size: 48px;
}
.story-v3__icon line:nth-child(1),
.story-v3__icon line:nth-child(2) {
   transition: transform 0.3s var(--ease-out);
}
.story-v3__icon line:nth-child(1) {
   transform-origin: 42px 19px;
}
.story-v3__icon line:nth-child(2) {
   transform-origin: 42px 29px;
}
.story-v3__icon line:nth-child(3) {
   stroke-dasharray: 48;
   transition: stroke-dashoffset 0.3s var(--ease-out);
}

.story-v3__preview-img {
   position: absolute;
   z-index: 1;
   opacity: 0;
   visibility: hidden;
   top: 50%;
   transform: translateY(-50%) scale(0.9);
   transition:
      opacity 0.2s,
      visibility 0.2s,
      transform 0.2s;
   backface-visibility: hidden;
   will-change: transform;
}

.story-v3__preview-img--is-visible {
   transform: translateY(-50%);
   opacity: 1;
   visibility: visible;
}

/* -------------------------------- 

File#: _1_article-preview
Title: Article Preview
Descr: Blog post excerpt, containing a link to the article page
Usage: codyhouse.co/license

-------------------------------- */
.story__img {
   display: block;
   transition: opacity 0.2s;
   overflow: hidden;
   margin-bottom: var(--space-xs);
}
.story__img:hover {
   opacity: 0.85;
}
.story__img img {
   display: block;
   width: 100%;
}

.story__category {
   display: inline-flex;
   align-items: center;
   color: var(--color-contrast-higher);
   line-height: 1;
   text-decoration: none;
   font-size: var(--text-sm);
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   padding: var(--space-xxs);
   border-radius: var(--radius-md);
   transition: background-color 0.2s;
}
.story__category:hover {
   text-decoration: underline;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.3);
}

.story__title a {
   color: var(--color-contrast-higher);
   text-decoration: none;
}
.story__title a:hover {
   text-decoration: underline;
}

.story__author {
   --author-img-size: 50px;
   display: grid;
   grid-template-columns: var(--author-img-size) 1fr;
   align-items: center;
   gap: var(--space-xs);
}
.story__author img {
   display: block;
   width: var(--author-img-size);
   height: var(--author-img-size);
   -o-object-fit: cover;
   object-fit: cover;
   border-radius: 50%;
}

.story__author-name {
   margin-bottom: var(--space-xxxxs);
}
.story__author-name a {
   text-decoration: none;
   color: var(--color-contrast-higher);
}
.story__author-name a:hover {
   text-decoration: underline;
}

.story__meta {
   font-size: var(--text-sm);
   color: var(--color-contrast-medium);
}

@media (min-width: 64rem) {
   .story--featured {
      display: grid;
      grid-template-columns: 3fr 2fr;
      grid-gap: var(--space-md);
      align-items: center;
   }
   .story--featured .story__img {
      margin: 0;
   }
   .story--featured .story__title {
      font-size: var(--text-xxl);
   }
}
/* -------------------------------- 

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_auto-sized-grid
Title: Auto Sized Grid
Descr: A grid layout based on CSS Grid where the columns are automatically created according to a min-width value
Usage: codyhouse.co/license

-------------------------------- */
/* #region (if CodyFrame >= 3 ������) */
.grid-auto-xs,
.grid-auto-sm,
.grid-auto-md,
.grid-auto-lg,
.grid-auto-xl {
   display: grid;
   gap: var(--gap-y, 0px) var(--gap-x, 0px);
   grid-template-columns: repeat(auto-fit, minmax(var(--col-min-width), 1fr));
}

.grid-auto-xs {
   --col-min-width: 8rem;
}

.grid-auto-sm {
   --col-min-width: 10rem;
}

.grid-auto-md {
   --col-min-width: 15rem;
}

.grid-auto-lg {
   --col-min-width: 20rem;
}

.grid-auto-xl {
   --col-min-width: 25rem;
}

@media (min-width: 32rem) {
   .grid-auto-xs\@xs {
      --col-min-width: 8rem;
   }
   .grid-auto-sm\@xs {
      --col-min-width: 10rem;
   }
   .grid-auto-md\@xs {
      --col-min-width: 15rem;
   }
   .grid-auto-lg\@xs {
      --col-min-width: 20rem;
   }
   .grid-auto-xl\@xs {
      --col-min-width: 25rem;
   }
}
@media (min-width: 48rem) {
   .grid-auto-xs\@sm {
      --col-min-width: 8rem;
   }
   .grid-auto-sm\@sm {
      --col-min-width: 10rem;
   }
   .grid-auto-md\@sm {
      --col-min-width: 15rem;
   }
   .grid-auto-lg\@sm {
      --col-min-width: 20rem;
   }
   .grid-auto-xl\@sm {
      --col-min-width: 25rem;
   }
}
@media (min-width: 64rem) {
   .grid-auto-xs\@md {
      --col-min-width: 8rem;
   }
   .grid-auto-sm\@md {
      --col-min-width: 10rem;
   }
   .grid-auto-md\@md {
      --col-min-width: 15rem;
   }
   .grid-auto-lg\@md {
      --col-min-width: 20rem;
   }
   .grid-auto-xl\@md {
      --col-min-width: 25rem;
   }
}
@media (min-width: 80rem) {
   .grid-auto-xs\@lg {
      --col-min-width: 8rem;
   }
   .grid-auto-sm\@lg {
      --col-min-width: 10rem;
   }
   .grid-auto-md\@lg {
      --col-min-width: 15rem;
   }
   .grid-auto-lg\@lg {
      --col-min-width: 20rem;
   }
   .grid-auto-xl\@lg {
      --col-min-width: 25rem;
   }
}
@media (min-width: 90rem) {
   .grid-auto-xs\@xl {
      --col-min-width: 8rem;
   }
   .grid-auto-sm\@xl {
      --col-min-width: 10rem;
   }
   .grid-auto-md\@xl {
      --col-min-width: 15rem;
   }
   .grid-auto-lg\@xl {
      --col-min-width: 20rem;
   }
   .grid-auto-xl\@xl {
      --col-min-width: 25rem;
   }
}
/* #endregion */
/* #region (if 2.8.1 <= CodyFrame < 3 ������) */
/* #endregion */
/* #region (if CodyFrame < 2.8.1 ������) */
/* #endregion */
/* -------------------------------- 

File#: _1_avatar
Title: Avatar
Descr: A user profile image component
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --avatar-sm: 1em;
   --avatar-md: 2em;
   --avatar-lg: 3em;
}

.avatar {
   position: relative;
   display: block;
   width: 1em;
   height: 1em;
   font-size: 1em;
}

.avatar--sm {
   font-size: var(--avatar-sm);
}

.avatar--md {
   font-size: var(--avatar-md);
}

.avatar--lg {
   font-size: var(--avatar-lg);
}

.avatar__figure {
   width: 1em;
   height: 0;
   padding-bottom: 1em;
   border-radius: 50%;
   overflow: hidden;
}

.avatar__img,
.avatar__placeholder {
   position: absolute;
   display: block;
   top: 0;
   left: 0;
   width: 1em;
   height: 1em;
   border-radius: inherit;
}

.avatar__placeholder {
   background-color: var(--color-bg-dark);
   color: var(--color-contrast-medium);
   fill: transparent;
}

.avatar--btn {
   background-color: transparent;
   padding: 0;
   border: 0;
   border-radius: 0;
   color: inherit;
   line-height: inherit;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   cursor: pointer;
}

.avatar__status {
   position: absolute;
   bottom: 0;
   right: 0;
   display: inline-block;
   width: 0.2em;
   height: 0.2em;
   border-radius: 50%;
   box-shadow: 0 0 0 2px var(--color-bg);
   background-color: var(--color-contrast-medium);
}

.avatar__status--active {
   background-color: var(--color-success);
}

.avatar__status--busy {
   background-color: var(--color-error);
}

.avatar__initials,
.avatar__users-counter {
   position: absolute;
   top: 0;
   left: 0;
   width: 1em;
   height: 1em;
   border-radius: inherit;
   background-color: var(--color-contrast-lower);
   color: var(--color-contrast-higher);
   display: flex;
   justify-content: center;
   align-items: center;
}

.avatar__initials {
   text-align: center;
}
.avatar__initials span {
   font-size: 0.5em;
}

.avatar__users-counter span {
   font-size: 0.42em;
}

.avatar-group {
   display: flex;
}
.avatar-group .avatar {
   margin-left: -0.1em;
}
.avatar-group .avatar__figure {
   box-shadow: 0 0 0 3px var(--color-bg);
}

/* -------------------------------- 

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_background-decoration-v3
Title: Background Decoration v3
Descr: A collection of geometry background decorations
Usage: codyhouse.co/license

-------------------------------- */
.bg-decoration-v3 {
   position: absolute;
   top: 0;
   left: 0;
   pointer-events: none;
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.bg-decoration-v3__svg {
   position: absolute;
   width: 134%;
   min-width: 1280px;
   max-width: 1920px;
   height: auto;
}

/* -------------------------------- 

File#: _1_background-decoration-v4
Title: Background Decoration v4
Descr: A collection of geometry background decorations
Usage: codyhouse.co/license

-------------------------------- */
.bg-decoration-v4 {
   position: absolute;
   top: 0;
   left: 0;
   pointer-events: none;
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.bg-decoration-v4__svg {
   position: absolute;
   width: 114%;
   min-width: 1280px;
   max-width: 1440px;
   height: auto;
}

/* -------------------------------- 

File#: _1_background-decoration
Title: Background Decoration
Descr: A collection of background effects
Usage: codyhouse.co/license

-------------------------------- */
.bg-decoration {
   position: absolute;
   top: 0;
   left: 0;
   pointer-events: none;
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.bg-decoration__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 hsla(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 hsla(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: #1d1128;
   background-image: radial-gradient(ellipse at 70% 0%, hsla(257, 62%, 32%, 0.7) 0%, rgba(60, 31, 132, 0) 30%),
      radial-gradient(circle at 90% 0%, hsla(347, 83%, 60%, 0.5) 0%, rgba(238, 68, 105, 0) 30%),
      radial-gradient(ellipse at 0% 0%, hsla(175, 51%, 48%, 0.15) 0%, rgba(60, 185, 174, 0) 40%),
      radial-gradient(circle at 30% 100%, hsla(257, 62%, 32%, 0.7) 0%, rgba(60, 31, 132, 0) 40%),
      radial-gradient(ellipse at 10% 100%, hsla(347, 83%, 60%, 0.5) 0%, rgba(238, 68, 105, 0) 40%),
      radial-gradient(ellipse at 100% 100%, hsla(175, 51%, 48%, 0.15) 0%, rgba(60, 185, 174, 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 30s 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_boxed-feature
Title: Boxed Feature
Descr: Feature section with a "boxed" layout
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_breadcrumbs
Title: Breadcrumbs
Descr: List of links to help the user move within website structure
Usage: codyhouse.co/license

-------------------------------- */
.breadcrumbs__item {
   display: inline-block;
   display: inline-flex;
   align-items: center;
}

/* -------------------------------- 

File#: _1_btn-slide-fx
Title: Button Slide Effect
Descr: Button w/ animated background that slides-in on :hover
Usage: codyhouse.co/license

-------------------------------- */
.btn--slide-fx {
   position: relative;
   overflow: hidden;
   transition: 0.3s;
}
.btn--slide-fx .btn__label,
.btn--slide-fx .icon {
   position: relative;
   z-index: 2;
}
.btn--slide-fx::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: var(--color-contrast-higher);
   z-index: 1;
   transform: scaleX(0) scaleY(1);
}
.btn--slide-fx:hover {
   color: var(--color-bg);
}

.btn--slide-fx:not(.js-btn--slide-fx)::before,
.btn--slide-fx.btn-slide-fx-animate::before {
   transform-origin: right center;
   transition: transform 0.3s;
}

.btn--slide-fx:not(.js-btn--slide-fx):hover::before,
.btn--slide-fx.btn-slide-fx-hover::before {
   transform: scaleX(1) scaleY(1);
   transform-origin: left center;
}

.btn--slide-fx-from-right:not(.js-btn--slide-fx)::before,
.btn--slide-fx-from-right.btn-slide-fx-animate::before {
   transform-origin: left center;
}

.btn--slide-fx-from-right:not(.js-btn--slide-fx):hover::before,
.btn--slide-fx-from-right.btn-slide-fx-hover::before {
   transform-origin: right center;
}

.btn--slide-fx-from-bottom::before,
.btn--slide-fx-from-top::before {
   transform: scaleX(1) scaleY(0);
}

.btn--slide-fx-from-bottom:not(.js-btn--slide-fx):hover::before,
.btn--slide-fx-from-top:not(.js-btn--slide-fx):hover::before,
.btn--slide-fx-from-bottom.btn-slide-fx-hover .btn--slide-fx-from-top.btn-slide-fx-hover::before {
   transform: scaleX(1) scaleY(1);
}

.btn--slide-fx-from-bottom:not(.js-btn--slide-fx)::before,
.btn--slide-fx-from-bottom.btn-slide-fx-animate::before {
   transform-origin: center top;
}

.btn--slide-fx-from-bottom:not(.js-btn--slide-fx):hover::before,
.btn--slide-fx-from-bottom.btn-slide-fx-hover::before {
   transform-origin: center bottom;
}

.btn--slide-fx-from-top:not(.js-btn--slide-fx)::before,
.btn--slide-fx-from-top.btn-slide-fx-animate::before {
   transform-origin: center bottom;
}

.btn--slide-fx-from-top:not(.js-btn--slide-fx):hover::before,
.btn--slide-fx-from-top.btn-slide-fx-hover::before {
   transform-origin: center top;
}

.btn--slide-fx-to-left::before,
.btn--slide-fx-to-right::before,
.btn--slide-fx-to-top::before,
.btn--slide-fx-to-bottom::before {
   transform: scaleX(1) scaleY(1);
}

.btn--slide-fx-to-left.btn-slide-fx-hover-out::before,
.btn--slide-fx-to-right.btn-slide-fx-hover-out::before {
   transform: scaleX(0) scaleY(1);
}

.btn--slide-fx-to-top.btn-slide-fx-hover-out::before,
.btn--slide-fx-to-bottom.btn-slide-fx-hover-out::before {
   transform: scaleX(1) scaleY(0);
}

.btn--slide-fx-to-left.btn-slide-fx-animate::before {
   transform-origin: left center;
}

.btn--slide-fx-to-right.btn-slide-fx-animate::before {
   transform-origin: right center;
}

.btn--slide-fx-to-top.btn-slide-fx-animate::before {
   transform-origin: center top;
}

.btn--slide-fx-to-bottom.btn-slide-fx-animate::before {
   transform-origin: center bottom;
}

.btn--slide-fx-replace-label .icon {
   position: absolute;
   top: 50%;
   left: 50%;
   opacity: 0;
   transform: translate(-50%, -50%) scale(0);
   transition:
      transform 0.3s 0.1s,
      opacity 0.3s;
}
.btn--slide-fx-replace-label:hover .icon {
   opacity: 1;
   transform: translate(-50%, -50%) scale(1);
}

/* -------------------------------- 

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: 0.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: 0.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-v10
Title: Card v9
Descr: Container of information used as teaser for further content exploration
Usage: codyhouse.co/license

-------------------------------- */
/* #region (--state-1 & --state-2) */
.card-v10 {
   position: relative;
   z-index: 1;
   display: flex;
   flex-direction: column;
}

.card-v10__img-link {
   position: relative;
   z-index: 2;
   display: block;
   overflow: hidden;
   background-color: var(--color-bg);
   text-decoration: none;
   color: inherit;
   transition: 0.3s;
}
.card-v10__img-link:hover {
   box-shadow: var(--shadow-md);
}
.card-v10__img-link img {
   display: block;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.card-v10__content-wrapper {
   padding: 0 var(--space-xxxs);
   position: relative;
   z-index: 1;
   flex-grow: 1;
}

.card-v10__content {
   --card-body-offset: 20px;
   padding-top: var(--card-body-offset);
   margin-top: calc(-1 * var(--card-body-offset));
   height: calc(100% + var(--card-body-offset));
   display: flex;
   flex-direction: column;
   background-color: var(--color-bg);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-xs);
}

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

.card-v10__label {
   font-size: var(--text-xs);
   margin-bottom: var(--space-xs);
}

.card-v10__title {
   font-size: var(--text-md);
}

.card-v10__excerpt {
   font-size: var(--text-sm);
}

.card-v10__footer {
   margin-top: auto;
   padding: var(--space-xxs);
   border-top: 1px solid var(--color-contrast-lower);
}

.card-v10__social-list {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: var(--space-xs);
   align-items: center;
}

.card-v10__social-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   padding: var(--space-xxs);
   border-radius: var(--radius-md);
   font-size: var(--text-xs);
   transition: 0.2s;
}
.card-v10__social-btn .icon {
   font-size: 12px;
   margin-right: var(--space-xxs);
}
.card-v10__social-btn:hover {
   cursor: pointer;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.card-v10__social-btn:active {
   transform: translateY(2px);
}

/* #endregion */
/* #region (--featured) */
@media (min-width: 64rem) {
   .card-v10--featured {
      display: grid;
      grid-template-columns: 0.75fr 1fr;
   }
   .card-v10--featured .card-v10__content-wrapper {
      padding: var(--space-xs) 0;
   }
   .card-v10--featured .card-v10__content {
      padding-top: 0;
      margin-top: 0;
      height: 100%;
      padding-left: var(--card-body-offset);
      margin-left: calc(-1 * var(--card-body-offset));
   }
   .card-v10--featured .card-v10__body {
      padding: var(--space-md);
   }
   .card-v10--featured .card-v10__title {
      font-size: var(--text-xl);
   }
   .card-v10--featured .card-v10__excerpt {
      font-size: 1em;
   }
   .card-v10--featured .card-v10__social-btn {
      padding: var(--space-xs);
   }
}

/* #endregion */
/* -------------------------------- 

File#: _1_card-v11
Title: Card v11
Descr: Container of information over a background image
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --card-v11-height: 320px;
   --card-v11-btn-height: 50px;
}
@media (min-width: 64rem) {
   :root {
      --card-v11-height: 480px;
      --card-v11-btn-height: 70px;
   }
}

.card-v11 {
   display: block;
   position: relative;
   text-decoration: none;
   color: inherit;
   overflow: hidden;
   height: var(--card-v11-height);
   background-color: var(--color-contrast-lower);
   background-size: cover;
   background-repeat: no-repeat;
}
.card-v11:hover .card-v11__btn {
   background-color: var(--color-bg);
   color: var(--color-contrast-higher);
}
.card-v11:hover .card-v11__icon line:nth-child(1),
.card-v11:hover .card-v11__icon line:nth-child(2) {
   opacity: 1;
   transform: rotate(0deg);
   transition:
      opacity 0s 0.2s,
      transform 0.2s 0.2s var(--ease-in-out);
}
.card-v11:hover .card-v11__icon line:nth-child(3) {
   stroke-dashoffset: 96;
   transition: stroke-dashoffset 0.2s var(--ease-in-out);
}

.card-v11__box {
   position: absolute;
   bottom: 0;
   right: 0;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.95
   );
   color: var(--color-bg);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
   .card-v11__box {
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.7
      );
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
   }
}

.card-v11__btn {
   display: flex;
   align-items: center;
   height: var(--card-v11-btn-height);
   transition: 0.4s;
}

.card-v11__icon {
   font-size: 48px;
}
.card-v11__icon line:nth-child(1),
.card-v11__icon line:nth-child(2) {
   transform-origin: 47px 24px;
   opacity: 0;
   transition:
      opacity 0s 0.2s,
      transform 0.2s var(--ease-in-out);
}
.card-v11__icon line:nth-child(1) {
   transform: rotate(-45deg);
}
.card-v11__icon line:nth-child(2) {
   transform: rotate(45deg);
}
.card-v11__icon line:nth-child(3) {
   stroke-dasharray: 48;
   stroke-dashoffset: 72;
   transition: stroke-dashoffset 0.2s 0.2s var(--ease-in-out);
}

/* -------------------------------- 

File#: _1_card-v12
Title: Card v12
Descr: Container of information used as teaser for further content exploration
Usage: codyhouse.co/license

-------------------------------- */
.card-v12 {
   --card-v12-transition-duration: 0.4s;
   position: relative;
   z-index: 1;
   text-decoration: none;
   color: inherit;
   display: block;
   background-color: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0.95);
   will-change: transform;
   transition: box-shadow, transform;
   transition-duration: var(--card-v12-transition-duration);
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
   .card-v12 {
      background-color: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0.8);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
   }
}
.card-v12::after {
   content: "";
   position: absolute;
   z-index: 3;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   border-radius: inherit;
   box-shadow: var(--inner-glow);
}
.card-v12:hover {
   box-shadow: var(--shadow-md);
   transform: translateY(-2px);
}

.card-v12__figure {
   position: relative;
   z-index: 2;
   clip-path: inset(0% var(--space-sm) 0% 0% round 0% var(--radius-md) var(--radius-md) 0%);
   will-change: clip-path;
   transition: clip-path var(--card-v12-transition-duration);
}
.card-v12__figure img {
   will-change: transform;
   transition: transform var(--card-v12-transition-duration);
}
.card-v12:hover .card-v12__figure {
   clip-path: inset(0% calc(var(--space-sm) + 80px) 0% 0% round 0% var(--radius-md) var(--radius-md) 0%);
}
.card-v12:hover .card-v12__figure img {
   transform: translateX(-40px);
}

.card-v12__separator {
   display: block;
   width: 32px;
}

.card-v12__icon {
   --size: 60px;
   position: absolute;
   z-index: 1;
   right: var(--space-sm);
   top: calc(50% - var(--size) / 2);
   height: var(--size);
   width: var(--size);
   opacity: 0;
   transform: translateX(-20px);
   will-change: transform;
   transition: transform, opacity;
   transition-duration: var(--card-v12-transition-duration);
}
.card-v12__icon .icon-group > * {
   transform-origin: 57px 30px;
   will-change: transform;
   transition: transform var(--card-v12-transition-duration);
}
.card-v12__icon .icon-group > *:nth-child(2) {
   transform: rotate(35deg);
}
.card-v12__icon .icon-group > *:nth-child(3) {
   transform: rotate(-35deg);
}
.card-v12:hover .card-v12__icon {
   opacity: 1;
   transform: translateX(0);
}
.card-v12:hover .card-v12__icon .icon-group > *:nth-child(2),
.card-v12:hover .card-v12__icon .icon-group > *:nth-child(3) {
   transform: rotate(0);
}

/* -------------------------------- 

File#: _1_card-v14
Title: Card v14
Descr: Container of information used as teaser for further content exploration
Usage: codyhouse.co/license

-------------------------------- */
.card-v14 {
   display: flex;
   flex-direction: column;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-sm);
   border-radius: var(--radius-md);
   padding: var(--space-sm);
   color: inherit;
   text-decoration: none;
   transition: 0.3s;
}
.card-v14:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-md);
}

.card-v14__icon-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2);
   margin-bottom: var(--space-sm);
}

.card-v14__icon {
   --size: 24px;
   color: var(--color-accent);
}

/* -------------------------------- 

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);
   -webkit-backdrop-filter: blur(10px);
   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_card-v3
Title: Card v3
Descr: Container of information used as teasers for further content, often displayed in a gallery of related items
Usage: codyhouse.co/license

-------------------------------- */
.card-v3 {
   text-decoration: none;
   color: inherit;
   display: flex;
   flex-direction: column;
   background-color: var(--color-bg-dark);
}

.card-v3__img {
   display: block;
   width: 100%;
}

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

.card-v3__label {
   font-size: var(--text-sm);
   margin-bottom: var(--space-xs);
   color: var(--color-contrast-medium);
}

.card-v3__footer {
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: var(--space-sm);
   margin-top: auto;
}
.card-v3__footer span {
   display: inline-block;
   font-size: var(--text-sm);
   color: var(--color-primary);
   will-change: transform;
   transform: translateY(20%);
   opacity: 0;
   transition:
      transform 0.3s,
      opacity 0.3s;
}
.card-v3__footer .icon {
   --size: 16px;
   display: block;
   color: var(--color-contrast-higher);
   transition: 0.3s;
}
.card-v3__footer::before {
   content: "";
   width: 100%;
   height: 3px;
   background-color: var(--color-primary);
   position: absolute;
   bottom: 0;
   left: 0;
   transform-origin: left center;
   transform: scaleX(0);
   transition: transform 0.3s var(--ease-in-out);
}

.card-v3:hover .card-v3__footer span {
   transform: translateY(0);
   opacity: 1;
}
.card-v3:hover .card-v3__footer .icon {
   color: var(--color-primary);
}
.card-v3:hover .card-v3__footer::before {
   transform: scaleX(1);
}

/* -------------------------------- 

File#: _1_card-v4
Title: Card v4
Descr: Container of information used as teasers for further content, often displayed in a gallery of related items
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: 1_card-v5
Title: Card v5
Descr: Container of information used as teasers for further content, often displayed in a gallery of related items
Usage: codyhouse.co/license

-------------------------------- */
.card-v5 {
   background-color: var(--color-bg-dark);
}

.card-v5__img-link {
   display: block;
   text-decoration: none;
   color: inherit;
}
.card-v5__img-link:hover .card-v5__img-wrapper {
   --offset: 10px;
   clip-path: polygon(
      var(--offset) var(--offset),
      calc(100% - var(--offset)) var(--offset),
      calc(100% - var(--offset)) calc(100% - var(--offset)),
      var(--offset) calc(100% - var(--offset))
   );
}

.card-v5__img-wrapper {
   will-change: clip-path;
   transition: 0.2s;
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   overflow: hidden;
}
.card-v5__img-wrapper img {
   display: block;
   width: 100%;
}

.card-v5__btn {
   display: flex;
   align-items: center;
   justify-content: space-between;
   color: var(--color-contrast-higher);
   text-decoration: none;
   font-size: var(--text-sm);
   font-weight: 500;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.05
   );
   transition: 0.3s;
}
.card-v5__btn:hover {
   background-color: var(--color-primary);
   color: var(--color-white);
}
.card-v5__btn:hover .card-v5__btn-icon > * {
   transition: transform 0.3s var(--ease-out);
}
.card-v5__btn:hover .card-v5__btn-icon > *:first-child {
   transform: rotate(-180deg);
}
.card-v5__btn:hover .card-v5__btn-icon > *:last-child {
   transform: rotate(180deg);
}

.card-v5__btn-icon {
   /* animated arrow */
   --size: 12px;
}
.card-v5__btn-icon > * {
   will-change: transform;
}
.card-v5__btn-icon > *:first-child {
   transform-origin: 6.5px 4px;
}
.card-v5__btn-icon > *:last-child {
   transform-origin: 6.5px 8px;
}

/* -------------------------------- 

File#: _1_card-v6
Title: Card v6
Descr: Container of information used as teasers for further content, often displayed in a gallery of related items
Usage: codyhouse.co/license

-------------------------------- */
.card-v6 {
   display: block;
   text-decoration: none;
   color: inherit;
   position: relative;
   background-color: var(--color-bg);
   transition: 0.3s;
}
.card-v6:hover {
   background-color: var(--color-bg-light);
   box-shadow: var(--shadow-md);
}
.card-v6:hover .card-v6__icon-wrapper .icon {
   animation: card-v6-icon 0.3s;
}

.card-v6__icon-wrapper {
   position: absolute;
   top: 0;
   right: 0;
   display: flex;
   width: 40px;
   height: 40px;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.85);
   overflow: hidden;
}
.card-v6__icon-wrapper .icon {
   --size: 16px;
   color: var(--color-white);
   margin: auto;
}

@keyframes card-v6-icon {
   0%,
   100% {
      opacity: 1;
      transform: translateX(0);
   }
   50% {
      opacity: 0;
      transform: translateX(100%);
   }
   51% {
      opacity: 0;
      transform: translateX(-100%);
   }
}
/* -------------------------------- 

File#: _1_card-v7
Title: Card v7
Descr: Container of information used as teasers for further content, often displayed in a gallery of related items
Usage: codyhouse.co/license

-------------------------------- */
.card-v7__img-wrapper {
   text-decoration: none;
   display: block;
   overflow: hidden;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-md);
}
.card-v7__img-wrapper img {
   display: block;
   width: 100%;
   will-change: transform;
   transition: transform 0.3s;
}
.card-v7__img-wrapper:hover img {
   transform: scale(1.15);
}

.card-v7__title {
   color: var(--color-contrast-higher);
   background-repeat: no-repeat;
   will-change: background-size;
   transition: background-size 0.3s var(--ease-in-out);
   text-decoration: none;
   background-image: linear-gradient(
      transparent 50%,
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2) 50%
   );
   background-size: 0% 100%;
}
.card-v7__title:hover {
   background-size: 100% 100%;
}

/* -------------------------------- 

File#: _1_card-v8
Title: Card v8
Descr: Container of information used as teaser for further content exploration
Usage: codyhouse.co/license

-------------------------------- */
.card-v8 {
   display: block;
   overflow: hidden;
   text-decoration: none;
   transition: 0.2s;
}
.card-v8 img {
   display: block;
   width: 100%;
}
.card-v8:hover {
   background-color: var(--color-bg-light);
   box-shadow: var(--shadow-md);
}
.card-v8:hover .card-v8__title {
   background-size: 100% 100%;
}

.card-v8__title {
   background-repeat: no-repeat;
   will-change: background-size;
   transition: background-size 0.3s var(--ease-in-out);
   text-decoration: none;
   background-image: linear-gradient(
      transparent 50%,
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2) 50%
   );
   background-size: 0% 100%;
}

/* -------------------------------- 

File#: _1_card-v9
Title: Card v9
Descr: Container of information used as teaser for further content exploration
Usage: codyhouse.co/license

-------------------------------- */
.card-v9 {
   display: block;
   position: relative;
   z-index: 1;
   text-decoration: none;
   color: inherit;
   background-color: var(--color-contrast-lower);
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   transition: 0.3s;
}
.card-v9:hover {
   box-shadow: var(--shadow-md);
}

.card-v9__content {
   display: flex;
   height: 100%;
   flex-direction: column;
   position: relative;
   z-index: 2;
}

.card-v9__btn {
   position: relative;
   display: inline-block;
   padding: var(--space-xs) var(--space-sm);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
.card-v9__btn i {
   position: relative;
   z-index: 2;
   color: var(--color-bg);
   opacity: 0;
   transition: opacity 0.3s;
}
.card-v9__btn::after {
   content: "";
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: var(--radius-md);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.8
   );
   opacity: 0;
   transform: translateY(25%);
   transition:
      opacity 0.3s,
      transform 0.3s var(--ease-out);
}

.card-v9:hover .card-v9__btn i {
   opacity: 1;
}
.card-v9:hover .card-v9__btn::after {
   opacity: 1;
   transform: translateY(0);
}

.card-v9--overlay-bg::before {
   content: "";
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.5);
   transition: background-color 0.3s;
}
.card-v9--overlay-bg:hover::before {
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.8);
}

/* -------------------------------- 

File#: _1_card
Title: Card
Descr: Container of information used as teaser for further content exploration
Usage: codyhouse.co/license

-------------------------------- */
.card {
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-sm);
   border-radius: var(--radius-md);
   overflow: hidden;
}

.card__img-wrapper img {
   display: block;
   width: 100%;
}

.card--link {
   text-decoration: none;
   display: block;
   color: inherit;
   transition: 0.2s;
}
.card--link:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-md);
}
.card--link:hover .card__img-wrapper::after {
   opacity: 1;
}
.card--link .card__img-wrapper {
   position: relative;
}
.card--link .card__img-wrapper::after {
   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.6);
   opacity: 0;
   transition: opacity 0.2s;
}

.card__link-icon-wrapper {
   position: absolute;
   z-index: 1;
   width: 64px;
   height: 64px;
   top: calc(50% - 32px);
   left: calc(50% - 32px);
   background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.9);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transform: scale(0.8);
   opacity: 0;
   transition: 0.2s;
}
.card__link-icon-wrapper .icon {
   display: block;
   width: 32px;
   height: 32px;
   color: var(--color-black);
}

.card--link:hover .card__link-icon-wrapper {
   opacity: 1;
   transform: scale(1);
}

/* -------------------------------- 

File#: _1_chameleonic-header
Title: Chameleonic Header
Descr: Header component whose theme adapts on scroll to the underneath section
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --cha-header-height: 54px;
}
@media (min-width: 64rem) {
   :root {
      --cha-header-height: 70px;
   }
}

.cha-header-clip {
   position: absolute;
   z-index: var(--z-index-header);
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
   pointer-events: none;
}

.cha-header {
   height: var(--cha-header-height);
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.95);
   pointer-events: auto;
   position: fixed;
   z-index: 1;
   top: 0;
   left: 0;
   width: 100%;
   backface-visibility: hidden;
   transform: translateZ(0);
}

.cha-header__logo {
   display: block;
   width: 40px;
   height: 40px;
}

.cha-header__nav {
   display: none;
}

.cha-header__link {
   color: var(--color-contrast-higher);
   text-decoration: none;
   font-size: var(--text-sm);
   transition: opacity 0.3s;
}
.cha-header__link:hover {
   opacity: 0.5;
}

.cha-header__btn {
   background-color: var(--color-primary);
   padding: var(--space-xxs) var(--space-sm);
   border-radius: var(--radius-md);
   cursor: pointer;
   color: var(--color-white);
   font-size: var(--text-sm);
   transition:
      transform 0.2s,
      background-color 0.2s;
}
.cha-header__btn:hover {
   background-color: hsl(var(--color-primary-h), var(--color-primary-s), calc(var(--color-primary-l) * 0.9));
}
.cha-header__btn:active {
   transform: translateY(2px);
}
.cha-header__btn:focus {
   outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   outline-offset: 2px;
}

.cha-header__trigger,
.cha-modal__close {
   display: block;
}
.cha-header__trigger .icon,
.cha-modal__close .icon {
   --size: 24px;
   display: block;
}

.cha-modal {
   position: fixed;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: var(--color-bg);
   display: none;
   z-index: var(--z-index-fixed-element);
}

.cha-modal__header {
   height: var(--cha-header-height);
   background-color: var(--color-bg);
   box-shadow: 0 3px 5px var(--color-bg);
   position: sticky;
   top: 0;
   z-index: 1;
}

.cha-modal__link {
   font-size: var(--text-lg);
   text-decoration: none;
   color: var(--color-contrast-higher);
   padding: var(--space-xxxs) 0;
}

.demo-theme-dark {
   --color-primary: hsl(349, 75%, 51%);
   --color-primary-h: 349;
   --color-primary-s: 75%;
   --color-primary-l: 51%;
   --color-bg: hsl(240, 8%, 12%);
   --color-bg-h: 240;
   --color-bg-s: 8%;
   --color-bg-l: 12%;
   --color-contrast-high: hsl(0, 0%, 95%);
   --color-contrast-high-h: 0;
   --color-contrast-high-s: 0%;
   --color-contrast-high-l: 95%;
   --color-contrast-higher: hsl(0, 0%, 100%);
   --color-contrast-higher-h: 0;
   --color-contrast-higher-s: 0%;
   --color-contrast-higher-l: 100%;
   background-color: var(--color-bg);
   color: var(--color-contrast-high);
}

@media (min-width: 64rem) {
   .cha-header__nav {
      display: block;
   }
   .cha-header__trigger,
   .cha-modal {
      display: none !important;
   }
}
/* -------------------------------- 

File#: _1_character-count
Title: Character Count
Descr: Show the number of remaining characters while typing
Usage: codyhouse.co/license

-------------------------------- */
.character-count__helper {
   text-align: right;
   font-size: var(--text-xs);
   margin-top: var(--space-xxxs);
}

.character-count__counter {
   font-weight: 600;
}

/* -------------------------------- 

File#: _1_chips
Title: Chips
Descr: A list of compact pieces of information
Usage: codyhouse.co/license

-------------------------------- */
.chip {
   /* reset - in case the class is applied to a <button> or an <a> */
   border: 0;
   color: inherit;
   line-height: 1;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   display: inline-flex;
   align-items: center;
   border-radius: 50em;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   /* ������ you can ovveride this padding by using the padding utility classes */
}
.chip:not([class^="padding-"]):not([class*=" padding-"]) {
   padding: var(--space-xxxs);
}

.chip--outline {
   background-color: transparent;
   box-shadow: inset 0 0 0 1px
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.25);
}

.chip--error {
   background-color: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.2);
   color: var(--color-contrast-higher);
}

.chip--success {
   background-color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), 0.2);
   color: var(--color-contrast-higher);
}

.chip--warning {
   background-color: hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), 0.2);
   color: var(--color-contrast-higher);
}

.chip--interactive {
   cursor: pointer;
   transition: background, box-shadow, transform;
   transition-duration: 0.2s;
}
.chip--interactive:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
}
.chip--interactive:active {
   transform: translateY(1px);
}
.chip--interactive:focus-visible {
   outline: none;
   box-shadow:
      0 0 0 2px var(--color-bg),
      0 0 0 4px
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.95);
}

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

.chip__img {
   display: block;
   width: 1.5em;
   height: 1.5em;
   border-radius: 50%;
   -o-object-fit: cover;
   object-fit: cover;
}

.chip__icon-wrapper {
   display: flex;
   width: 1.5em;
   height: 1.5em;
   border-radius: 50%;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.95
   );
   color: var(--color-bg); /* icon color */
}
.chip__icon-wrapper .icon {
   display: block;
   margin: auto;
}

.chip__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;
   width: 1.5em;
   height: 1.5em;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
   border-radius: 50%;
   will-change: transform;
   transition: background, box-shadow, transform;
   transition-duration: 0.2s;
}
.chip__btn .icon {
   display: block;
   margin: auto;
}
.chip__btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.3
   );
}
.chip__btn:focus-visible {
   outline: none;
   box-shadow:
      0 0 0 2px var(--color-bg),
      0 0 0 4px
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.95);
}
.chip__btn:active {
   transform: translateY(1px);
}

/* -------------------------------- 

File#: _1_choice-accordion
Title: Choice Accordion
Descr: A group of radio/checkbox buttons controlling expandable content
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --choice-accordion-border-width: 1px;
   --choice-accordion-border-radius: var(--radius-md);
   --choice-accordion-input-size: 20px;
   --choice-accordion-input-icon-size: 16px;
   --choice-accordion-input-border-width: 1px;
   --choice-accordion-input-margin-right: var(--space-xxs);
}

.choice-accordion {
   border-width: var(--choice-accordion-border-width);
   border-color: var(--color-contrast-lower);
   border-style: solid;
   border-radius: var(--choice-accordion-border-radius);
   overflow: hidden;
}

.choice-accordion__btn {
   display: grid;
   grid-template-columns: var(--choice-accordion-input-size) 1fr;
   grid-gap: var(--choice-accordion-input-margin-right);
   align-items: center;
   cursor: pointer;
   background-color: var(--color-bg-light);
   border-top-width: var(--choice-accordion-border-width);
   border-style: solid;
   border-color: var(--color-contrast-lower);
}

.choice-accordion__item:first-child .choice-accordion__btn {
   border-top: none;
}

.choice-accordion__panel {
   position: relative;
   background-color: var(--color-bg-dark);
   overflow: hidden;
   will-change: height;
   transform: translateZ(0px);
}
.choice-accordion__panel::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--choice-accordion-border-width);
   background-color: var(--color-contrast-lower);
   pointer-events: none;
}

.choice-accordion__input {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: var(--color-bg-light);
   width: var(--choice-accordion-input-size);
   height: var(--choice-accordion-input-size);
   border-width: var(--choice-accordion-input-border-width);
   border-style: solid;
   border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 0.65);
   box-shadow: var(--shadow-xs);
   transition: 0.2s;
}
.choice-accordion__input .icon {
   color: var(--color-white);
   font-size: var(--choice-accordion-input-icon-size);
}
.choice-accordion__btn:hover .choice-accordion__input {
   border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 1);
}
.choice-accordion__btn--checked .choice-accordion__input,
.choice-accordion__btn--focus .choice-accordion__input,
.choice-accordion__btn--checked:hover .choice-accordion__input,
.choice-accordion__btn--focus:hover .choice-accordion__input {
   border-color: var(--color-primary);
}
.choice-accordion__btn--checked .choice-accordion__input {
   background-color: var(--color-primary);
}
.choice-accordion__btn--focus .choice-accordion__input {
   box-shadow:
      var(--shadow-xs),
      0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.choice-accordion__input--checkbox {
   border-radius: 4px;
}
.choice-accordion__input--checkbox .icon > * {
   transition: stroke-dashoffset 0.3s;
   stroke-dasharray: 18;
   stroke-dashoffset: 18;
}
.choice-accordion__btn--checked .choice-accordion__input--checkbox .icon > * {
   stroke-dasharray: 18;
   stroke-dashoffset: 0;
}

.choice-accordion__input--radio {
   border-radius: 50%;
}
.choice-accordion__input--radio .icon {
   transition: transform 0.3s var(--ease-out-back);
   transform: scale(0);
}
.choice-accordion__btn--checked .choice-accordion__input--radio .icon {
   transform: scale(1);
}

.choice-accordion__fallback {
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

/* -------------------------------- 

File#: _1_choice-buttons
Title: Choice Buttons
Descr: Visually enhanced radio/checkbox buttons
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --choice-btn-border-width: 1px;
   --choice-btn-border-radius: var(--radius-md);
   --choice-btn-align-items: center;
   --choice-btn-input-size: 20px;
   --choice-btn-input-icon-size: 16px;
   --choice-btn-input-border-width: 1px;
   --choice-btn-input-margin-right: var(--space-sm);
   --choice-btn-input-translate-y: 0em;
}

.choice-btn__grid {
   display: none;
}

.choice-btn__fallback {
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

.choice-btn {
   position: relative;
   background-color: var(--color-bg-light);
   border-radius: var(--choice-btn-border-radius);
   box-shadow: 0 0 0 var(--choice-btn-border-width) var(--color-contrast-lower);
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   cursor: pointer;
   transition: 0.2s;
}
.choice-btn.choice-btn--focus,
.choice-btn.choice-btn--checked,
.choice-btn:active {
   box-shadow: 0 0 0 2px var(--color-primary);
}
.choice-btn.choice-btn--focus,
.choice-btn:active {
   box-shadow:
      0 0 0 2px var(--color-primary),
      0 0 0 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.choice-btn__grid {
   display: block;
   display: grid;
   grid-template-columns: var(--choice-btn-input-size) 1fr;
   grid-gap: var(--choice-btn-input-margin-right);
   align-items: var(--choice-btn-align-items);
}

.choice-btn__input {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: var(--color-bg-light);
   width: var(--choice-btn-input-size);
   height: var(--choice-btn-input-size);
   border-width: var(--choice-btn-input-border-width);
   border-style: solid;
   border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 0.65);
   box-shadow: var(--shadow-xs);
   position: relative;
   top: var(--choice-btn-input-translate-y);
   transition: 0.2s;
}
.choice-btn__input .icon {
   color: var(--color-white);
   font-size: var(--choice-btn-input-icon-size);
}
.choice-btn:hover:not(.choice-btn--checked) .choice-btn__input {
   border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 1);
}
.choice-btn--checked .choice-btn__input {
   border-color: var(--color-primary);
   background-color: var(--color-primary);
}

.choice-btn__input--checkbox {
   border-radius: 4px;
}
.choice-btn__input--checkbox .icon > * {
   transition: stroke-dashoffset 0.3s;
   stroke-dasharray: 18;
   stroke-dashoffset: 18;
}
.choice-btn--checked .choice-btn__input--checkbox .icon > * {
   stroke-dasharray: 18;
   stroke-dashoffset: 0;
}

.choice-btn__input--radio {
   border-radius: 50%;
}
.choice-btn__input--radio .icon {
   transition: transform 0.3s var(--ease-out-back);
   transform: scale(0);
}
.choice-btn--checked .choice-btn__input--radio .icon {
   transform: scale(1);
}

/* -------------------------------- 

File#: _1_choice-images
Title: Choice Images
Descr: Selectable images that behave like radio/checkbox buttons
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --choice-img-input-size: 100px;
   --choice-img-input-icon-size: 26px;
}

.choice-img {
   position: relative;
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   transition: 0.3s;
}
.choice-img:hover {
   cursor: pointer;
   box-shadow: var(--shadow-md);
}
.choice-img:active {
   transform: translateY(2px);
}

.choice-img[aria-checked="true"] {
   transition: transform 0.3s;
   box-shadow:
      var(--shadow-sm),
      0 0 0 2px var(--color-primary);
}

.choice-img__input {
   position: absolute;
   top: 0;
   right: 0;
   transform: translate(1px, -1px);
   background-color: var(--color-primary);
   width: var(--choice-img-input-size);
   height: var(--choice-img-input-size);
   clip-path: polygon(15% 0%, 100% 0%, 100% 85%);
   pointer-events: none;
   opacity: 0;
}
.choice-img__input .icon {
   position: absolute;
   top: calc(var(--choice-img-input-size) / 4 - var(--choice-img-input-icon-size) / 2);
   right: calc(var(--choice-img-input-size) / 4 - var(--choice-img-input-icon-size) / 2);
   font-size: var(--choice-img-input-icon-size);
   color: var(--color-white);
}
.choice-img__input .icon > * {
   transition: stroke-dashoffset 0.3s;
   stroke-dasharray: 18;
   stroke-dashoffset: 18;
}

.choice-img[aria-checked="true"] .choice-img__input {
   opacity: 1;
}
.choice-img[aria-checked="true"] .choice-img__input .icon > * {
   stroke-dashoffset: 0;
}

/* -------------------------------- 

File#: _1_choice-tags
Title: Choice tags
Descr: Custom, "tag-looking" radio/checkbox buttons
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --choice-tag-icon-size: 16px;
}

.choice-tag {
   display: inline-flex;
   align-items: center;
   padding: var(--space-xs) var(--space-sm);
   border-radius: 50em;
   box-shadow: 0 0 0 1px var(--color-contrast-lower);
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   transition: 0.2s;
}
.choice-tag:hover {
   box-shadow: 0 0 0 1px
      hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.85));
}
.choice-tag:active,
.choice-tag:focus-within,
.choice-tag.choice-tag--checked {
   box-shadow: 0 0 0 2px var(--color-primary);
}
.choice-tag:active,
.choice-tag:focus-within {
   box-shadow:
      0 0 0 2px var(--color-primary),
      0 0 0 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.choice-tag:focus-within:not(.choice-tag--checked) {
   box-shadow:
      0 0 0 1px var(--color-contrast-higher),
      0 0 0 3px
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
}
.choice-tag.choice-tag--checked {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.08);
}

.choice-tag__icon {
   font-size: var(--choice-tag-icon-size);
}

.choice-tag__icon-group * {
   transform-origin: 8px 8px;
}

.choice-tag--checkbox .choice-tag__icon {
   color: var(--color-contrast-low);
}
.choice-tag--checkbox .choice-tag__icon-group {
   stroke-width: 2px;
}
.choice-tag--checkbox .choice-tag__icon-group * {
   stroke-dasharray: 16;
}
.choice-tag--checkbox .choice-tag__icon-group :nth-child(1),
.choice-tag--checkbox .choice-tag__icon-group :nth-child(2) {
   transition:
      transform 0.3s var(--ease-out-back),
      stroke-dashoffset 0.3s var(--ease-out-back);
}
.choice-tag--checkbox .choice-tag__icon-group :nth-child(1) {
   stroke-dashoffset: 24;
}
.choice-tag--checkbox .choice-tag__icon-group :nth-child(2) {
   stroke-dashoffset: 10;
}
.choice-tag--checkbox .choice-tag__icon-group :nth-child(3) {
   transition: stroke-dashoffset 0.3s;
   stroke-dashoffset: 0;
}
.choice-tag--checkbox input:checked + .choice-tag__icon {
   color: var(--color-primary);
}
.choice-tag--checkbox input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(1) {
   stroke-dashoffset: 23;
   transform: translateX(-2px) translateY(4px) rotate(45deg);
}
.choice-tag--checkbox input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(2) {
   stroke-dashoffset: 5;
   transform: translateX(-2px) translateY(4px) rotate(-45deg);
}
.choice-tag--checkbox input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(3) {
   transition: none;
   stroke-dashoffset: 16;
   opacity: 0;
}

.choice-tag--radio .choice-tag__icon {
   color: var(--color-contrast-low);
}
.choice-tag--radio .choice-tag__icon-group :nth-child(1) {
   fill: none;
   stroke-width: 1px;
}
.choice-tag--radio .choice-tag__icon-group :nth-child(2) {
   fill: var(--color-white);
   transform: scale(0);
   transition: transform 0.3s var(--ease-out-back);
}
.choice-tag--radio input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(1) {
   stroke: var(--color-primary);
   fill: var(--color-primary);
}
.choice-tag--radio input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(2) {
   transform: scale(1);
}

/* -------------------------------- 

File#: _1_circle-loader
Title: Circle Loader
Descr: A collection of animated circle loaders
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --circle-loader-v1-size: 48px;
   --circle-loader-v1-stroke-width: 4px;
   --circle-loader-v2-size: 64px;
   --circle-loader-v2-stroke-width: 2;
   --circle-loader-v3-size: 64px;
   --circle-loader-v4-size: 48px;
   --circle-loader-v5-size: 64px;
   --circle-loader-v6-size: 48px;
}

.circle-loader {
   position: relative;
   display: inline-block;
}

@supports (animation-name: this) {
   .circle-loader__label {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
   }
}
@supports (animation-name: this) {
   .circle-loader--v1 {
      transform: rotate(45deg);
      will-change: transform;
      animation: circle-loader-1 0.75s infinite var(--ease-in-out);
   }
   .circle-loader--v1 .circle-loader__circle {
      width: var(--circle-loader-v1-size);
      height: var(--circle-loader-v1-size);
      border-width: var(--circle-loader-v1-stroke-width);
      border-style: solid;
      border-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
      border-radius: 50%;
   }
   .circle-loader--v1 .circle-loader__circle::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-width: inherit;
      border-style: inherit;
      border-color: transparent;
      border-top-color: var(--color-primary);
      border-radius: inherit;
   }
}
@keyframes circle-loader-1 {
   0% {
      transform: rotate(45deg);
   }
   100% {
      transform: rotate(405deg);
   }
}
@supports (animation-name: this) {
   .circle-loader--v2 {
      will-change: transform;
      animation: circle-loader-spinning-main 1.4s infinite linear;
   }
   .circle-loader--v2 .circle-loader__svg {
      display: block;
      width: var(--circle-loader-v2-size);
      height: var(--circle-loader-v2-size);
      color: var(--color-primary);
   }
   .circle-loader--v2 .circle-loader__svg > * {
      stroke-width: var(--circle-loader-v2-stroke-width);
   }
   .circle-loader--v2 .circle-loader__base {
      opacity: 0.2;
   }
   .circle-loader--v2 .circle-loader__fill {
      stroke-linecap: round;
      stroke-dashoffset: 0;
      stroke-dasharray: 90 120;
      transform-origin: 50% 50%;
      transform: rotate(45deg);
      animation: circle-loader-dash 1.4s infinite;
   }
}
@keyframes circle-loader-dash {
   0%,
   20% {
      stroke-dashoffset: 0;
      transform: rotate(0);
   }
   50%,
   70% {
      stroke-dashoffset: 80;
      transform: rotate(270deg);
   }
   100% {
      stroke-dashoffset: 0;
      transform: rotate(360deg);
   }
}
@keyframes circle-loader-spinning-main {
   to {
      transform: rotate(360deg);
   }
}
@supports (animation-name: this) {
   .circle-loader--v3 {
      width: var(--circle-loader-v3-size);
      height: var(--circle-loader-v3-size);
   }
   .circle-loader--v3 .circle-loader__circle {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-color: var(--color-primary);
      transform: scale(0);
      opacity: 0.8;
      will-change: transform, opacity;
      animation: circle-loader-3 1.2s infinite;
   }
   .circle-loader--v3 .circle-loader__circle--2nd {
      animation-delay: 0.6s;
   }
}
@keyframes circle-loader-3 {
   to {
      transform: scale(1);
      opacity: 0;
   }
}
@supports (animation-name: this) {
   .circle-loader--v4 {
      width: var(--circle-loader-v4-size);
      height: var(--circle-loader-v4-size);
      border-radius: 50%;
      overflow: hidden;
   }
   .circle-loader--v4 .circle-loader__mask,
   .circle-loader--v4 .circle-loader__circle {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: inherit;
   }
   .circle-loader--v4 .circle-loader__mask {
      clip-path: circle(calc(0.5 * var(--circle-loader-v4-size)));
   }
   .circle-loader--v4 .circle-loader__circle--1st {
      background-color: var(--color-contrast-low);
   }
   .circle-loader--v4 .circle-loader__circle--2nd {
      background-color: var(--color-primary);
      will-change: transform;
      transform-origin: 50% 100%;
      animation: circle-loader-4 1.2s infinite cubic-bezier(0.23, 0.9, 0.75, 0.1);
      transform: translateX(-100%);
   }
}
@keyframes circle-loader-4 {
   to {
      transform: translateX(100%);
   }
}
@supports (animation-name: this) {
   .circle-loader--v5 {
      font-size: var(--circle-loader-v5-size);
      width: 1em;
      height: 1em;
   }
   .circle-loader--v5 .circle-loader__label {
      font-size: 1rem;
   }
   .circle-loader--v5 .circle-loader__ball {
      position: absolute;
      top: 0;
      left: calc(50% - 0.140625em);
      width: 0.28125em;
      height: 0.28125em;
      background-color: var(--color-primary);
      border-radius: 50%;
      animation: circle-loader-5-ball 0.8s infinite;
   }
   .circle-loader--v5 .circle-loader__shadow {
      position: absolute;
      bottom: 0;
      left: calc(50% - 0.15625em);
      width: 0.3125em;
      height: 0.3125em;
      background-color: var(--color-contrast-lower);
      border-radius: 50%;
      transform: scaleY(0.4) scaleX(1.2);
      animation: circle-loader-5-shadow 0.8s infinite;
   }
}
@keyframes circle-loader-5-ball {
   0% {
      transform: translateY(0);
      animation-timing-function: cubic-bezier(0.61, 0.12, 0.85, 0.4);
   }
   50% {
      transform: translateY(0.5625em);
      animation-timing-function: cubic-bezier(0.12, 0.59, 0.46, 0.95);
   }
   100% {
      transform: translateY(0);
   }
}
@keyframes circle-loader-5-shadow {
   0% {
      transform: scaleY(0.4) scaleX(1.2);
      background-color: var(--color-contrast-lower);
      animation-timing-function: cubic-bezier(0.61, 0.12, 0.85, 0.4);
   }
   50% {
      transform: scaleY(0.2) scaleX(0.6);
      background-color: var(--color-contrast-low);
      animation-timing-function: cubic-bezier(0.12, 0.59, 0.46, 0.95);
   }
   100% {
      transform: scaleY(0.4) scaleX(1.2);
      background-color: var(--color-contrast-lower);
   }
}
@supports (animation-name: this) {
   .circle-loader--v6 .circle-loader__svg {
      display: block;
      width: var(--circle-loader-v6-size);
      height: var(--circle-loader-v6-size);
      color: var(--color-primary);
   }
   .circle-loader--v6 .circle-loader__fill {
      stroke-width: 8px;
      stroke-dashoffset: 35;
      stroke-dasharray: 36 36;
      animation: circle-loader-6 1.5s infinite;
   }
}
@keyframes circle-loader-6 {
   0%,
   100% {
      stroke-dashoffset: 35;
   }
   50% {
      stroke-dashoffset: -35;
   }
}
/* -------------------------------- 

File#: _1_circular-progress-bar
Title: Circular Progress Bar
Descr: Display the current progress of a task using a circular SVG shape
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --c-progress-bar-size: 140px;
   --c-progress-bar-stroke-width: 6;
}

.c-progress-bar {
   width: var(--c-progress-bar-size);
}

.c-progress-bar__shape {
   width: 100%;
   position: relative;
}
.c-progress-bar__shape svg {
   display: block;
   width: var(--c-progress-bar-size);
   height: var(--c-progress-bar-size);
   stroke-width: var(--c-progress-bar-stroke-width);
}

.c-progress-bar__bg {
   stroke: currentColor;
   opacity: 0.125;
}

.c-progress-bar__fill {
   stroke: currentColor;
}

.c-progress-bar__value {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
}
.c-progress-bar__value i {
   font-size: 0.65em;
}

.c-progress-bar:not(.c-progress-bar--init) .c-progress-bar__fill,
.c-progress-bar:not(.c-progress-bar--init) .c-progress-bar__value {
   visibility: hidden;
}

.c-progress-bar--color-update {
   --c-progress-bar-color-1: 30;
   --c-progress-bar-color-2: 65;
   --c-progress-bar-color-3: 100;
}
.c-progress-bar--color-update.c-progress-bar--init .c-progress-bar__fill {
   transition: stroke 0.2s;
}

.c-progress-bar--fill-color-1 .c-progress-bar__fill {
   stroke: var(--color-error);
}

.c-progress-bar--fill-color-2 .c-progress-bar__fill {
   stroke: var(--color-warning);
}

.c-progress-bar--fill-color-3 .c-progress-bar__fill {
   stroke: var(--color-success);
}

/* -------------------------------- 

File#: _1_code-snippet
Title: Code Snippet
Descr: A block of preformatted text, containing computer code
Usage: codyhouse.co/license

-------------------------------- */
code {
   background-color: var(--color-bg-dark);
   font-family: monospace;
   padding: var(--space-xxxxs) var(--space-xxxs);
   border-radius: var(--radius-md);
}
code::-moz-selection {
   background-color: var(--color-contrast-high);
   color: var(--color-bg);
}
code::selection {
   background-color: var(--color-contrast-high);
   color: var(--color-bg);
}

.code-snippet {
   background-color: var(--color-bg-dark);
   border-radius: var(--radius-md);
}
.code-snippet code {
   background-color: transparent;
   line-height: 1.45;
   font-size: var(--text-sm);
   display: block;
   padding: var(--space-md);
   overflow-x: auto;
}

/* -------------------------------- 

File#: _1_col-table
Title: Column Oriented Table
Descr: Data table for cases where each column is a meaningful unit
Usage: codyhouse.co/license

-------------------------------- */
.cl-table {
   width: 100%;
   position: relative;
   z-index: 1;
}

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

.cl-table__cell--th {
   font-weight: 600;
   color: var(--color-contrast-higher);
}

.cl-table__header .cl-table__cell {
   position: relative;
   z-index: 10;
}

.cl-table__list {
   display: none;
}

@media not all and (min-width: 48rem) {
   .cl-table__body {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      width: 1px;
      height: 1px;
      overflow: hidden;
   }
   .cl-table__cell[aria-hidden="true"] {
      display: none;
   }
   .cl-table__row {
      display: flex;
      flex-direction: column;
   }
   .cl-table__cell {
      position: relative;
      background-color: var(--color-bg-light);
      box-shadow: var(--inner-glow-top), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-sm);
      border-radius: var(--radius-md);
      width: 100%;
      margin-bottom: var(--space-xxs);
   }
   .cl-table__th-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
   }
   .cl-table__th-icon {
      position: relative;
      height: 24px;
      width: 24px;
      --col-table-arrow-width: 2px;
   }
   .cl-table__th-icon::before,
   .cl-table__th-icon::after {
      content: "";
      position: absolute;
      top: calc(50% - 6px);
      width: var(--col-table-arrow-width);
      height: 12px;
      border-radius: 10px;
      background-color: currentColor;
      transform-origin: 50% 100%;
      transition: transform 0.3s;
   }
   .cl-table__th-icon::before {
      right: 50%;
      transform: translateX(50%) rotate(-45deg);
   }
   .cl-table__th-icon::after {
      right: calc(50% + var(--col-table-arrow-width) / 2);
      transform: translateX(50%) rotate(45deg);
   }
   .cl-table__list {
      margin-top: var(--space-sm);
      line-height: var(--body-line-height);
   }
   .cl-table__item {
      display: flex;
      justify-content: space-between;
      font-weight: normal;
      border-top: 1px solid
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
      text-align: right;
      padding: var(--space-sm) 0;
      font-size: var(--text-sm);
      color: var(--color-contrast-medium);
   }
   .cl-table__label {
      color: var(--color-contrast-higher);
      font-weight: 600;
      margin-right: var(--space-md);
      text-align: left;
   }
   .cl-table__cell--show-list .cl-table__th-icon::before {
      transform: translateX(50%) translateY(-80%) rotate(-135deg);
   }
   .cl-table__cell--show-list .cl-table__th-icon::after {
      transform: translateX(50%) translateY(-80%) rotate(135deg);
   }
   .cl-table__cell--show-list .cl-table__list {
      display: block;
   }
   .cl-table__input {
      position: absolute;
      pointer-events: none;
      height: 0;
      width: 0;
      opacity: 0;
      padding: 0;
      border: 0;
   }
   .cl-table__input:focus + .cl-table__th-inner {
      color: var(--color-primary);
   }
}
@media (min-width: 48rem) {
   .cl-table {
      font-size: var(--text-sm);
      border-bottom: 1px solid
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
   }
   .cl-table__header .cl-table__row {
      background-color: var(--color-bg);
   }
   .cl-table__header .cl-table__cell {
      border-bottom: 1px solid
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
      position: relative;
      background-color: inherit;
      z-index: 10;
   }
   .cl-table__body .cl-table__row:nth-child(odd) {
      background-color: hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 0.85);
   }
   .cl-table__input {
      display: none;
   }
   .cl-table--sticky-header {
      border-collapse: separate;
   }
   .cl-table--sticky-header .cl-table__header .cl-table__cell {
      position: sticky;
      top: 0;
   }
}
/* -------------------------------- 

File#: _1_collapse
Title: Collapse
Descr: Control button to toggle the visibility of a panel element
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_color-swatches
Title: Color Swatches
Descr: A list of selectable swatches used to show a product color variants
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --color-swatches-gap: var(--space-xxs);
   --color-swatch-size: 32px;
   --color-swatch-radius: 50%;
}

.color-swatches__list {
   display: grid;
   grid-gap: var(--color-swatches-gap);
   grid-template-columns: repeat(auto-fit, var(--color-swatch-size));
}

.color-swatches__swatch {
   position: relative;
   display: block;
   height: var(--color-swatch-size);
   width: var(--color-swatch-size);
   border-radius: var(--color-swatch-radius);
   cursor: pointer;
}
.color-swatches__swatch::before {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 100%;
   height: 100%;
   border: 1px solid
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
   border-radius: inherit;
   pointer-events: none;
   transition: 0.2s;
}
.color-swatches__swatch:hover::before {
   border-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.3
   );
}

.color-swatches__item--selected .color-swatches__swatch::before {
   border-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.8
   );
   width: calc(100% + 6px);
   height: calc(100% + 6px);
}

/* -------------------------------- 

File#: _1_confetti-button
Title: Confetti Button
Descr: A collection of spark button effects
Usage: codyhouse.co/license

-------------------------------- */
.confetti-btn__icon {
   display: none;
}
@supports (--css: variables) {
   .confetti-btn__icon {
      --size: 16px;
      display: block;
      width: var(--size);
      height: var(--size);
      position: absolute;
      top: calc(var(--conf-btn-click-y, 50%) - var(--size) / 2);
      left: calc(var(--conf-btn-click-x, 50%) - var(--size) / 2);
      pointer-events: none;
      overflow: visible;
   }
   .confetti-btn__icon * {
      transform-origin: calc(var(--size) / 2);
      opacity: 0;
   }
}

.confetti-btn--animate .confetti-btn__icon {
   --confetti-btn-animation-duration: 1s;
}
.confetti-btn--animate .confetti-btn__icon .conf-btn-svg-item-0 {
   animation: confetti-btn-item-0-anim var(--confetti-btn-animation-duration) var(--ease-out);
}
.confetti-btn--animate .confetti-btn__icon .conf-btn-svg-item-1 {
   animation: confetti-btn-item-1-anim var(--confetti-btn-animation-duration) var(--ease-out);
}
.confetti-btn--animate .confetti-btn__icon .conf-btn-svg-item-2 {
   animation: confetti-btn-item-2-anim var(--confetti-btn-animation-duration) var(--ease-out);
}
.confetti-btn--animate .confetti-btn__icon .conf-btn-svg-item-3 {
   animation: confetti-btn-item-3-anim var(--confetti-btn-animation-duration) var(--ease-out);
}
.confetti-btn--animate .confetti-btn__icon .conf-btn-svg-item-4 {
   animation: confetti-btn-item-4-anim var(--confetti-btn-animation-duration) var(--ease-out);
}
.confetti-btn--animate .confetti-btn__icon .conf-btn-svg-item-5 {
   animation: confetti-btn-item-5-anim var(--confetti-btn-animation-duration) var(--ease-out);
}

@keyframes confetti-btn-item-0-anim {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 0.2;
   }
   100% {
      opacity: 0;
      transform: scale(2);
   }
}
@keyframes confetti-btn-item-1-anim {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 1;
   }
   100% {
      opacity: 0;
      transform: translateY(-50px) scale(0.8) rotate(-3deg);
   }
}
@keyframes confetti-btn-item-2-anim {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 1;
   }
   100% {
      opacity: 0;
      transform: translateY(-44px) translateX(20px) scale(0.7) rotate(5deg);
   }
}
@keyframes confetti-btn-item-3-anim {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 1;
   }
   100% {
      opacity: 0;
      transform: translateY(-36px) translateX(-20px) scale(0.6) rotate(-9deg);
   }
}
@keyframes confetti-btn-item-4-anim {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 1;
   }
   100% {
      opacity: 0;
      transform: translateY(-20px) translateX(10px) scale(0.8) rotate(-12deg);
   }
}
@keyframes confetti-btn-item-5-anim {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 1;
   }
   100% {
      opacity: 0;
      transform: translateY(-12px) translateX(-10px) scale(0.9) rotate(7deg);
   }
}
/* -------------------------------- 

File#: _1_countdown
Title: CountDown
Descr: Widget to display a timer
Usage: codyhouse.co/license

-------------------------------- */
.countdown {
   display: flex;
   align-items: baseline;
}

.countdown__timer {
   display: inline-block;
}

.countdown__item {
   display: inline-block;
}
.countdown__item:nth-of-type(2)::after,
.countdown__item:nth-of-type(3)::after {
   content: ":";
}

.countdown__value {
   font-feature-settings: "tnum";
   font-variant-numeric: tabular-nums;
}

.countdown--has-labels .countdown__item {
   margin-right: var(--space-xs);
}
.countdown--has-labels .countdown__item:last-child {
   margin-right: 0;
}
.countdown--has-labels .countdown__item::after {
   content: "";
}
.countdown--has-labels .countdown__label {
   font-size: 0.45em;
}

.countdown--grid .countdown__timer {
   --timer-gap: var(--space-xxxs);
   display: flex;
   margin-left: calc(-1 * var(--timer-gap));
}
.countdown--grid .countdown__item {
   width: 1.6em;
   text-align: center;
   padding: var(--space-xxxxs) 0;
   margin-left: var(--timer-gap);
}
.countdown--grid .countdown__item::after {
   content: "";
}
.countdown--grid .countdown__label {
   display: block;
   text-transform: uppercase;
   font-size: 0.2em;
   letter-spacing: 0.1em;
   color: var(--color-contrast-medium);
}

.countdown__fallback {
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

/* -------------------------------- 

File#: _1_counter
Title: Counter
Descr: A label displaying numeric values, often used to indicate unread notification
Usage: codyhouse.co/license

-------------------------------- */
.counter {
   background-color: var(--color-contrast-lower);
   padding: var(--space-xxxxs) var(--space-xxs);
   border-radius: 50em;
   font-size: var(--text-xs);
   line-height: 1;
}

.counter--primary {
   background-color: var(--color-primary);
   color: var(--color-white);
}

.counter--critical {
   background-color: var(--color-error);
   color: var(--color-white);
}

.counter--light {
   background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.9);
   color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.85);
}

.counter--dark {
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8);
   color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.9);
}

.counter--docked {
   position: absolute;
   top: 0;
   right: 0;
   transform: translate(50%, -50%);
}

.counter-container {
   height: 48px;
   width: 48px;
   background-color: var(--color-contrast-lower);
   border-radius: var(--radius-md);
   position: relative;
}

/* -------------------------------- 

File#: _1_countup
Title: CountUp
Descr: A widget to animate a numerical value by counting to it
Usage: codyhouse.co/license

-------------------------------- */
.countup {
   font-feature-settings: "tnum";
   font-variant-numeric: tabular-nums;
   opacity: 0;
}

.countup--is-visible {
   opacity: 1;
}

/* -------------------------------- 

File#: _1_cross-table
Title: Cross Table
Descr: Two-way data tables used to display correlation between row and column variables
Usage: codyhouse.co/license

-------------------------------- */
.cross-table {
   position: relative;
   z-index: 1;
   width: 100%;
}
.cross-table .btn {
   width: 100%;
}

.cross-table__icon {
   --size: 20px;
}

@media not all and (min-width: 48rem) {
   .cross-table {
      display: block;
      overflow: hidden;
   }
   .cross-table .btn {
      font-size: var(--text-sm);
   }
   .cross-table__header {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      height: 1px;
      width: 1px;
      overflow: hidden;
   }
   .cross-table__body {
      position: relative;
      display: flex;
      max-width: 100%;
      overflow: auto;
      padding: 32px 0 var(--space-sm);
   }
   .cross-table__body::-webkit-scrollbar {
      height: 10px;
   }
   .cross-table__body::-webkit-scrollbar-track {
      background-color: var(--color-bg-dark);
      border-radius: 50em;
   }
   .cross-table__body::-webkit-scrollbar-thumb {
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.2
      );
      border: 2px solid transparent;
      background-clip: content-box;
      border-radius: 50em;
   }
   .cross-table__body::-webkit-scrollbar-thumb:hover {
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.3
      );
   }
   .cross-table__body::after {
      content: "";
      display: block;
      height: 1px;
      padding-left: 1px;
   }
   .cross-table__row {
      display: flex;
      flex-direction: column;
      width: 260px;
      flex-shrink: 0;
      margin-right: var(--space-sm);
   }
   .cross-table__cell {
      --cell-border-width: 1px;
      display: flex;
      padding: var(--space-sm);
      justify-content: space-between;
      align-items: center;
      min-height: 54px;
      text-align: left;
      background-color: var(--color-bg);
      border-top-width: var(--cell-border-width);
      border-left-width: var(--cell-border-width);
      border-right-width: var(--cell-border-width);
      border-style: solid;
      border-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.1
      );
   }
   .cross-table__cell:first-child {
      border-left-width: var(--cell-border-width);
      border-top-width: var(--cell-border-width);
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.075
      );
      font-weight: 600;
      color: var(--color-contrast-higher);
   }
   .cross-table__cell:last-child {
      border-right-width: var(--cell-border-width);
      border-bottom-width: var(--cell-border-width);
      border-radius: 0 0 var(--radius-md) var(--radius-md);
   }
   .cross-table__label {
      display: inline;
      margin-right: var(--space-xs);
   }
   .cross-table__row--w-full {
      position: absolute;
      top: 0;
      left: 0;
      width: auto;
   }
   .cross-table__row--w-full .cross-table__cell {
      border: none;
      background-color: transparent;
      font-weight: normal;
      min-height: 0;
      height: 32px;
      padding: 0 var(--space-sm);
      font-size: var(--text-sm);
      color: var(--color-contrast-medium);
   }
}
@media (min-width: 48rem) {
   .cross-table {
      font-size: var(--text-sm);
   }
   .cross-table__row .cross-table__cell:first-child {
      border-left-width: 0;
   }
   .cross-table__row .cross-table__cell:last-child {
      border-right-width: 0;
   }
   .cross-table__header .cross-table__cell {
      border-top-width: 0;
   }
   .cross-table__row--w-full {
      background-color: var(--color-bg-dark);
   }
   .cross-table__row--w-full .cross-table__cell {
      font-weight: 600;
   }
   .cross-table__cell {
      border: 1px solid var(--color-bg-darker);
      border-bottom-width: 0;
      padding: var(--space-xs);
      width: 25%;
      text-align: center;
   }
   .cross-table__cell:first-child {
      text-align: left;
   }
   .cross-table__label {
      display: none;
   }
}
/* -------------------------------- 

File#: _1_cta-banner
Title: Call to Action Banner
Descr: A banner containing brief info about a subject, plus links/buttons
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_cursor-movement-effects
Title: Cursor Movement Effects
Descr: Animate elements on mouse move
Usage: codyhouse.co/license

-------------------------------- */
.cursor-fx-target {
   position: relative;
   background-color: var(--color-bg-dark);
   width: 280px;
   height: 280px;
   border-radius: var(--radius-lg);
}
.cursor-fx-target:hover .cursor-fx-object {
   transition: transform 0.5s var(--ease-out);
}

.cursor-fx-object {
   position: absolute;
   transition: transform 0.3s var(--ease-out-back);
}

.cursor-fx-object--1 {
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   height: 100px;
   width: 100px;
   top: calc(50% - 50px);
   left: calc(50% - 50px);
}

.cursor-fx-object--2 {
   background-color: var(--color-primary);
   height: 40px;
   width: 40px;
   border-radius: 50%;
   top: calc(50% - 20px);
   left: calc(50% - 20px);
}

/* -------------------------------- 

File#: _1_custom-checkbox
Title: Custom Checkbox
Descr: Replace the native checkbox button with a custom element (e.g., an icon)
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --custom-checkbox-size: 20px;
   --custom-checkbox-radius: 4px;
   --custom-checkbox-border-width: 1px;
   --custom-checkbox-marker-size: 18px;
}

.custom-checkbox {
   position: relative;
   z-index: 1;
   display: inline-block;
   font-size: var(--custom-checkbox-size);
}

.custom-checkbox__input {
   position: relative;
   /* hide native input */
   margin: 0;
   padding: 0;
   opacity: 0;
   height: 1em;
   width: 1em;
   display: block;
   z-index: 1;
}

.custom-checkbox__control {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   z-index: -1;
   pointer-events: none;
   transition: transform 0.2s;
   color: hsla(
      var(--color-contrast-low-h),
      var(--color-contrast-low-s),
      var(--color-contrast-low-l),
      0.65
   ); /* unchecked color */
}
.custom-checkbox__control::before,
.custom-checkbox__control::after {
   content: "";
   position: absolute;
}
.custom-checkbox__control::before {
   /* focus circle */
   width: 160%;
   height: 160%;
   background-color: currentColor;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) scale(0);
   opacity: 0;
   border-radius: 50%;
   will-change: transform;
   transition: transform 0.2s;
}
.custom-checkbox__control::after {
   /* custom checkbox */
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   /* custom checkbox style */
   background-color: var(--color-bg);
   border-radius: var(--custom-checkbox-radius);
   box-shadow:
      inset 0 0 0 var(--custom-checkbox-border-width) currentColor,
      var(--shadow-xs); /* border */
}

.custom-checkbox__input:checked ~ .custom-checkbox__control::after,
.custom-checkbox__input:indeterminate ~ .custom-checkbox__control::after {
   background-color: currentColor;
   background-repeat: no-repeat;
   background-position: center;
   background-size: var(--custom-checkbox-marker-size);
   box-shadow: none;
}

.custom-checkbox__input:checked ~ .custom-checkbox__control {
   color: var(--color-primary); /* checked color */
}
.custom-checkbox__input:checked ~ .custom-checkbox__control::after {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='2.5 8 6.5 12 13.5 3' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/svg%3E");
}

.custom-checkbox__input:indeterminate ~ .custom-checkbox__control::after {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cline x1='2' y1='8' x2='14' y2='8' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
}

.custom-checkbox__input:active ~ .custom-checkbox__control {
   transform: scale(0.9);
}

.custom-checkbox__input:checked:active ~ .custom-checkbox__control,
.custom-checkbox__input:indeterminate:active ~ .custom-checkbox__control {
   transform: scale(1);
}

.custom-checkbox__input:focus ~ .custom-checkbox__control::before {
   opacity: 0.2;
   transform: translate(-50%, -50%) scale(1);
}

/* --icon */
.custom-checkbox--icon {
   --custom-checkbox-size: 32px;
}
.custom-checkbox--icon .custom-checkbox__control::after {
   display: none;
}
.custom-checkbox--icon .icon {
   display: block;
   color: inherit;
   position: relative;
   z-index: 1;
}

/* -------------------------------- 

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 hsla(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_custom-select
Title: Custom Select
Descr: Custom Select Control
Usage: codyhouse.co/license

-------------------------------- */
:root {
   /* --default variation only ������ */
   --select-icon-size: 16px;
   --select-icon-right-margin: var(--space-sm); /* icon margin right */
   --select-text-icon-gap: var(--space-xxxs); /* gap between text and icon */
}

.select {
   position: relative;
}

.select__input {
   width: 100%;
   height: 100%;
   padding-right: calc(
      var(--select-icon-size) + var(--select-icon-right-margin) + var(--select-text-icon-gap)
   ) !important;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}

.select__icon {
   width: var(--select-icon-size);
   height: var(--select-icon-size);
   pointer-events: none;
   position: absolute;
   right: var(--select-icon-right-margin);
   top: 50%;
   transform: translateY(-50%);
}

/* --custom-dropdown */
:root {
   --select-dropdown-gap: 4px; /* distance between select control and custom dropdown */
}

.select__button {
   /* created in JS - custom select control */
   width: 100%;
}

.select__button[aria-expanded="true"] {
   /* custom select control if dropdown = visible */
}

.select__dropdown {
   /* created in JS - custom select dropdown */
   position: absolute;
   left: 0;
   top: 100%;
   min-width: 200px;
   max-height: 1px; /* updated in JS */
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-md);
   padding: var(--space-xxxs) 0;
   border-radius: var(--radius-md);
   z-index: var(--z-index-popover, 5);
   margin-top: var(--select-dropdown-gap);
   margin-bottom: var(--select-dropdown-gap);
   overflow: auto;
   /* use rem units */
   --space-unit: 1rem;
   --text-unit: 1rem;
   font-size: var(--text-unit);
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0s 0.2s,
      opacity 0.2s;
}

.select__dropdown--right {
   /* change dropdown position based on the available space */
   right: 0;
   left: auto;
}

.select__dropdown--up {
   bottom: 100%;
   top: auto;
}

.select__button[aria-expanded="true"] + .select__dropdown {
   visibility: visible;
   opacity: 1;
   transition:
      visibility 0s,
      opacity 0.2s;
}

/* custom <optgroup> list - include all <option>s if no <optgroup> available  */
.select__list {
   list-style: none !important;
}

.select__list:not(:first-of-type) {
   padding-top: var(--space-xxs);
}

.select__list:not(:last-of-type) {
   border-bottom: 1px solid
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
   padding-bottom: var(--space-xxs);
}

.select__item {
   /* single item inside .select__list */
   display: flex;
   align-items: center;
   padding: var(--space-xxs) var(--space-sm);
   color: var(--color-contrast-high);
   width: 100%;
   text-align: left;
   /* truncate text */
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.select__item--optgroup {
   /* custom <optgroup> label */
   font-size: var(--text-sm);
   color: var(--color-contrast-medium);
}

.select__item--option {
   /* custom <option> label */
   cursor: pointer;
   transition: 0.2s;
}
.select__item--option:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.select__item--option:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}
.select__item--option[aria-selected="true"] {
   /* selected option */
   background-color: var(--color-primary);
   color: var(--color-white);
   position: relative;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
.select__item--option[aria-selected="true"]::after {
   /* check icon next to the selected language */
   content: "";
   display: block;
   height: 1em;
   width: 1em;
   margin-left: auto;
   background-color: currentColor;
   -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
   mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
}
.select__item--option[aria-selected="true"]:focus {
   box-shadow: inset 0 0 0 2px var(--color-primary-dark);
}
.select__item--option[disabled] {
   opacity: 0.5;
   cursor: not-allowed;
}

/* -------------------------------- 

File#: _1_customer-logos
Title: Customer Logos
Descr: A gallery of trusted companies
Usage: codyhouse.co/license

-------------------------------- */
.customer-logo {
   display: block;
   fill: var(--color-contrast-low);
}

/* -------------------------------- 

File#: _1_date-picker
Title: Date Picker
Descr: Input element used to select a date
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --date-picker-trigger-width: 2.5em; /* calendar button width */
   --date-picker-icon-size: 1em; /* calendar icon size */
   /* calendar */
   --date-picker-calendar-gap: 4px; /* distance between input and calendar */
   --date-picker-calendar-padding: var(--space-xxs); /* calendar padding */
   --date-picker-calendar-item-size: 2em; /* calendar date size */
   --date-picker-calendar-item-radius: var(--radius-md); /* calendar date border radius */
}

@media (min-width: 48rem) {
   :root {
      --date-picker-calendar-item-size: 2.5em;
   }
}
.date-input,
.date-input__wrapper {
   position: relative;
}

/* calendar button */
.date-input__trigger {
   position: absolute;
   z-index: 1;
   top: 0;
   right: 0;
   height: 100%;
   width: var(--date-picker-trigger-width);
   display: none; /* hide button if JS is not enabled */
   transition: 0.2s;
}
.date-input__trigger .icon {
   display: block;
   width: var(--date-picker-icon-size);
   height: var(--date-picker-icon-size);
   margin: auto;
}
.date-input__trigger:hover {
   color: var(--color-primary);
}
.date-input__trigger:active {
   transform: translateY(2px);
}

.date-input__trigger {
   display: flex;
}

.date-input__text {
   padding-right: calc(var(--date-picker-trigger-width) + var(--space-xxxs));
}

.date-input--hide-calendar .date-input__trigger {
   /* hide calendar trigger when flexbox is not supported */
   display: none;
}

.date-picker {
   display: inline-block;
   position: absolute;
   left: 0;
   top: calc(var(--date-picker-calendar-gap) + 100%);
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   box-shadow: var(--inner-glow), var(--shadow-md);
   padding: var(--date-picker-calendar-padding);
   z-index: var(--z-index-popover, 5);
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   overflow: hidden;
   /* use rem units */
   --space-unit: 1rem;
   --text-unit: 1rem;
   font-size: var(--text-unit);
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0s 0.2s,
      opacity 0.2s;
}

.date-picker--is-visible {
   visibility: visible;
   opacity: 1;
   transition: opacity 0.2s;
}

/* month navigation */
.date-picker__month {
   /* wrapper */
   position: relative;
}

.date-picker__month-label {
   /* month name */
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-weight: 600;
   color: var(--color-contrast-higher);
}

.date-picker__month-nav,
.date-picker__week,
.date-picker__dates {
   display: flex;
   flex-wrap: wrap;
}
.date-picker__month-nav li,
.date-picker__week li,
.date-picker__dates li {
   width: var(--date-picker-calendar-item-size);
   height: var(--date-picker-calendar-item-size);
}

.date-picker__month-nav {
   position: relative;
   z-index: 1;
   justify-content: space-between;
}

.date-picker__month-nav-btn {
   width: 100%;
   height: 100%;
   border-radius: var(--date-picker-calendar-item-radius);
   color: var(--color-contrast-low); /* icon color */
   transition: transform 0.2s;
}
.date-picker__month-nav-btn .icon {
   display: block;
   margin: auto;
}
.date-picker__month-nav-btn: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);
}
.date-picker__month-nav-btn:active {
   transform: translateY(2px);
}

/* list of week days */
/* day of the week */
.date-picker__day {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: var(--text-sm);
   color: var(--color-contrast-low);
}

/* list of dates */
.date-picker__dates {
   width: calc(var(--date-picker-calendar-item-size) * 7);
}

/* date button */
.date-picker__date {
   background-color: transparent;
   padding: 0;
   border: 0;
   border-radius: 0;
   color: inherit;
   line-height: inherit;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   position: relative;
   z-index: 1;
   width: 100%;
   height: 100%;
   text-align: center;
   font-size: var(--text-sm);
}
.date-picker__date:focus {
   outline: none;
   background-color: var(--color-bg-light);
   box-shadow: inset 0 0 0 2px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   color: var(--color-contrast-higher);
}
.date-picker__date:focus,
.date-picker__date:hover,
.date-picker__date.date-picker__date--selected {
   border-radius: var(--date-picker-calendar-item-radius);
}
.date-picker__date.date-picker__date--range {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   color: var(--color-contrast-higher);
}
.date-picker__date.date-picker__date--range:focus,
.date-picker__date.date-picker__date--range:hover {
   border-radius: 0;
}
.date-picker__date.date-picker__date--range:focus {
   background-color: var(--color-bg-light);
}
.date-picker__date.date-picker__date--selected,
.date-picker__date.date-picker__date--range-start,
.date-picker__date.date-picker__date--range-end {
   background-color: var(--color-primary);
   box-shadow: 0 2px 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.3);
   color: var(--color-white);
   z-index: 2;
}
.date-picker__date.date-picker__date--selected:focus:not(:hover),
.date-picker__date.date-picker__date--range-start:focus:not(:hover),
.date-picker__date.date-picker__date--range-end:focus:not(:hover) {
   box-shadow:
      0 0 0 2px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2),
      0 2px 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.3);
}
.date-picker__date.date-picker__date--range-start {
   border-top-right-radius: 0px;
   border-bottom-right-radius: 0px;
}
.date-picker__date.date-picker__date--range-end {
   border-top-left-radius: 0px;
   border-bottom-left-radius: 0px;
}
.date-picker__date:hover {
   background-color: var(--color-bg-light);
   box-shadow: inset 0 0 0 2px var(--color-primary);
   color: var(--color-contrast-high);
}

.date-picker__date--today {
   color: var(--color-primary);
}

.date-picker__date::-moz-focus-inner {
   /* remove Firefox dotted-outline focus effect */
   border: none;
}

/* -------------------------------- 

File#: _1_details-list-v2
Title: Details List v2
Descr: Pairs of related information displayed in a list
Usage: codyhouse.co/license

-------------------------------- */
.dl-v2__item {
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   padding: var(--space-md);
   border-width: 3px;
   border-color: var(--color-primary);
   box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-xs);
}

.dl-v2__title {
   font-weight: 600;
   color: var(--color-contrast-higher);
   margin-bottom: var(--space-xxs);
}

.dl-v2__description {
   font-size: var(--text-sm);
   line-height: 1.4;
   color: var(--color-contrast-medium);
}

/* -------------------------------- 

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_details
Title: Details
Descr: A button that toggles the visibility of additional information
Usage: codyhouse.co/license

-------------------------------- */
.details__summary {
   display: inline-block;
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.details__summary:hover {
   color: var(--color-primary);
}
.details__summary:focus {
   outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   outline-offset: 4px;
}
.details__summary .icon {
   transition: transform 0.2s;
   flex-shrink: 0;
}

.details__summary {
   list-style: none;
}

.details__summary::-webkit-details-marker {
   display: none;
}

.details__summary[aria-expanded="true"] .icon {
   transform: rotate(90deg);
}

.details__content[aria-hidden="true"] {
   display: none;
}

/* -------------------------------- 

File#: _1_devices
Title: Devices
Descr: A collection of CSS tech devices
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --dev-phone-radius: 14%;
   --dev-phone-img-ratio: 0.56;
   --dev-tablet-radius: 6%;
   --dev-tablet-img-ratio: 0.75;
   --dev-browser-radius: 1.5%;
   --dev-browser-img-ratio: 1.6;
   --dev-laptop-radius: 3%;
   --dev-laptop-img-ratio: 1.6;
   --dev-desktop-radius: 3%;
   --dev-desktop-img-ratio: 1.6;
}

/* #region (Phone) */
.dev-phone,
.dev-phone__body {
   position: relative;
   width: 100%;
}

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

.dev-phone__body {
   background-color: var(--color-bg);
   --phone-inner-shadow: inset 0 0 0.285em hsla(0, 0%, 0%, 0.15), inset 0 0 0.1em hsla(0, 0%, 0%, 0.035),
      inset 0 0 0.05em hsla(0, 0%, 0%, 0.005);
   box-shadow: var(--phone-inner-shadow);
   padding: 3%;
   z-index: 2;
   border-top-left-radius: var(--dev-phone-radius) calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio));
   border-top-right-radius: var(--dev-phone-radius) calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio));
   border-bottom-right-radius: var(--dev-phone-radius) calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio));
   border-bottom-left-radius: var(--dev-phone-radius) calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio));
}
.dev-phone--dark .dev-phone__body {
   background-color: var(--color-black);
   border: 3px solid #f34747;
}

.dev-phone__media {
   position: relative;
   overflow: hidden;
   border-top-left-radius: calc(var(--dev-phone-radius) * 0.85)
      calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio));
   border-top-right-radius: calc(var(--dev-phone-radius) * 0.85)
      calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio));
   border-bottom-left-radius: calc(var(--dev-phone-radius) * 0.85)
      calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio));
   border-bottom-right-radius: calc(var(--dev-phone-radius) * 0.85)
      calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio));
}
.dev-phone__media img,
.dev-phone__media svg,
.dev-phone__media video {
   display: block;
   width: 100%;
   height: auto;
}
.dev-phone__media::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.075);
   border-radius: inherit;
   pointer-events: none;
}
.dev-phone--dark .dev-phone__media::after {
   display: none;
}

.dev-phone__notch {
   position: absolute;
   z-index: 2;
   top: 0;
   width: 50%;
   right: 25%;
   height: 4%;
   border-radius: 0 0 0.85em 0.85em;
   background-color: var(--color-bg);
   border: 1px solid hsla(0, 0%, 0%, 0.1);
   border-top-width: 0;
}
.dev-phone--dark .dev-phone__notch {
   background-color: var(--color-black);
   border-width: 0;
}

.dev-phone--landscape .dev-phone__body {
   padding: 1.75%;
   border-top-left-radius: calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio)) var(--dev-phone-radius);
   border-top-right-radius: calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio)) var(--dev-phone-radius);
   border-bottom-right-radius: calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio)) var(--dev-phone-radius);
   border-bottom-left-radius: calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio)) var(--dev-phone-radius);
}
.dev-phone--landscape .dev-phone__media {
   border-top-left-radius: calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio))
      calc(var(--dev-phone-radius) * 0.85);
   border-top-right-radius: calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio))
      calc(var(--dev-phone-radius) * 0.85);
   border-bottom-left-radius: calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio))
      calc(var(--dev-phone-radius) * 0.85);
   border-bottom-right-radius: calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio))
      calc(var(--dev-phone-radius) * 0.85);
}
.dev-phone--landscape .dev-phone__notch {
   right: 0;
   height: 56%;
   top: 22%;
   width: 4%;
   border-radius: 0.85em 0 0 0.85em;
   border-right-width: 0px;
   border-top-width: 1px;
}

.dev-phone--front-light .dev-phone__body {
   box-shadow: var(--phone-inner-shadow), var(--shadow-lg);
}

.dev-phone--top-light .dev-phone__shadow {
   position: absolute;
   background-color: hsla(0, 0%, 0%, 0.1);
   z-index: 1;
   height: 1em;
   width: 100%;
   left: 0;
   bottom: -0.5em;
   border-radius: 100%;
   filter: blur(5px);
}
.dev-phone--top-light .dev-phone__shadow::before,
.dev-phone--top-light .dev-phone__shadow::after {
   content: "";
   position: absolute;
   border-radius: inherit;
}
.dev-phone--top-light .dev-phone__shadow::before {
   top: 20%;
   left: 10%;
   width: 80%;
   height: 40%;
   background-color: hsla(0, 0%, 0%, 0.4);
}
.dev-phone--top-light .dev-phone__shadow::after {
   top: 20%;
   left: 5%;
   width: 90%;
   height: 60%;
   background-color: hsla(0, 0%, 0%, 0.15);
}

/* #endregion */
/* #region (Tablet) */
.dev-tablet,
.dev-tablet__body {
   position: relative;
   width: 100%;
}

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

.dev-tablet__body {
   background-color: var(--color-bg);
   --tablet-inner-shadow: inset 0 0 0.285em hsla(0, 0%, 0%, 0.15), inset 0 0 0.1em hsla(0, 0%, 0%, 0.035),
      inset 0 0 0.05em hsla(0, 0%, 0%, 0.005);
   box-shadow: var(--tablet-inner-shadow);
   padding: 3%;
   z-index: 2;
   border-top-left-radius: var(--dev-tablet-radius) calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio));
   border-top-right-radius: var(--dev-tablet-radius) calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio));
   border-bottom-right-radius: var(--dev-tablet-radius) calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio));
   border-bottom-left-radius: var(--dev-tablet-radius) calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio));
}

.dev-tablet__media {
   position: relative;
   overflow: hidden;
   border-top-left-radius: calc(var(--dev-tablet-radius) * 0.75)
      calc(var(--dev-tablet-radius) * 0.75 * var(--dev-tablet-img-ratio));
   border-top-right-radius: calc(var(--dev-tablet-radius) * 0.75)
      calc(var(--dev-tablet-radius) * 0.75 * var(--dev-tablet-img-ratio));
   border-bottom-left-radius: calc(var(--dev-tablet-radius) * 0.75)
      calc(var(--dev-tablet-radius) * 0.75 * var(--dev-tablet-img-ratio));
   border-bottom-right-radius: calc(var(--dev-tablet-radius) * 0.75)
      calc(var(--dev-tablet-radius) * 0.75 * var(--dev-tablet-img-ratio));
}
.dev-tablet__media img,
.dev-tablet__media svg,
.dev-tablet__media video {
   display: block;
   width: 100%;
   height: auto;
}
.dev-tablet__media::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.075);
   border-radius: inherit;
   pointer-events: none;
}

.dev-tablet--landscape .dev-tablet__body {
   padding: 1.75%;
   border-top-left-radius: calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio)) var(--dev-tablet-radius);
   border-top-right-radius: calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio)) var(--dev-tablet-radius);
   border-bottom-right-radius: calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio)) var(--dev-tablet-radius);
   border-bottom-left-radius: calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio)) var(--dev-tablet-radius);
}
.dev-tablet--landscape .dev-tablet__media {
   border-top-left-radius: calc(var(--dev-tablet-radius) * 0.85 * var(--dev-tablet-img-ratio))
      calc(var(--dev-tablet-radius) * 0.85);
   border-top-right-radius: calc(var(--dev-tablet-radius) * 0.85 * var(--dev-tablet-img-ratio))
      calc(var(--dev-tablet-radius) * 0.85);
   border-bottom-left-radius: calc(var(--dev-tablet-radius) * 0.85 * var(--dev-tablet-img-ratio))
      calc(var(--dev-tablet-radius) * 0.85);
   border-bottom-right-radius: calc(var(--dev-tablet-radius) * 0.85 * var(--dev-tablet-img-ratio))
      calc(var(--dev-tablet-radius) * 0.85);
}

.dev-tablet--front-light .dev-tablet__body {
   box-shadow: var(--tablet-inner-shadow), var(--shadow-lg);
}

.dev-tablet--top-light .dev-tablet__shadow {
   position: absolute;
   background-color: hsla(0, 0%, 0%, 0.1);
   z-index: 1;
   height: 1em;
   width: 100%;
   left: 0;
   bottom: -0.5em;
   border-radius: 100%;
   filter: blur(5px);
}
.dev-tablet--top-light .dev-tablet__shadow::before,
.dev-tablet--top-light .dev-tablet__shadow::after {
   content: "";
   position: absolute;
   border-radius: inherit;
}
.dev-tablet--top-light .dev-tablet__shadow::before {
   top: 20%;
   left: 10%;
   width: 80%;
   height: 40%;
   background-color: hsla(0, 0%, 0%, 0.4);
}
.dev-tablet--top-light .dev-tablet__shadow::after {
   top: 20%;
   left: 5%;
   width: 90%;
   height: 60%;
   background-color: hsla(0, 0%, 0%, 0.15);
}

/* #endregion */
/* #region (Browser) */
.dev-browser,
.dev-browser__body {
   position: relative;
   width: 100%;
}

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

.dev-browser__body {
   background: var(--color-bg);
   padding: 2em 1.5% 1.5%;
   --browser-inner-shadow: inset 0 0 0.285em hsla(0, 0%, 0%, 0.15), inset 0 0 0.1em hsla(0, 0%, 0%, 0.035),
      inset 0 0 0.05em hsla(0, 0%, 0%, 0.005);
   box-shadow: var(--browser-inner-shadow);
   border-top-left-radius: var(--dev-browser-radius) calc(var(--dev-browser-radius) * var(--dev-browser-img-ratio));
   border-top-right-radius: var(--dev-browser-radius) calc(var(--dev-browser-radius) * var(--dev-browser-img-ratio));
   border-bottom-right-radius: var(--dev-browser-radius) calc(var(--dev-browser-radius) * var(--dev-browser-img-ratio));
   border-bottom-left-radius: var(--dev-browser-radius) calc(var(--dev-browser-radius) * var(--dev-browser-img-ratio));
   z-index: 2;
}

.dev-browser__media {
   overflow: hidden;
   border-radius: var(--radius-md);
}
.dev-browser__media img,
.dev-browser__media svg,
.dev-browser__media video {
   display: block;
   width: 100%;
   height: auto;
}

.dev-browser__dots {
   position: absolute;
   left: calc(1.5% + 0.4em);
   top: calc(1em - 6px);
   display: flex;
}
.dev-browser__dots span {
   display: inline-block;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
   margin-right: var(--space-xxs);
}

.dev-browser--front-light .dev-browser__body {
   box-shadow: var(--browser-inner-shadow), var(--shadow-lg);
}

.dev-browser--top-light .dev-browser__shadow {
   position: absolute;
   background-color: hsla(0, 0%, 0%, 0.1);
   z-index: 1;
   height: 1em;
   width: 100%;
   left: 0;
   bottom: -0.5em;
   border-radius: 100%;
   filter: blur(5px);
}
.dev-browser--top-light .dev-browser__shadow::before,
.dev-browser--top-light .dev-browser__shadow::after {
   content: "";
   position: absolute;
   border-radius: inherit;
}
.dev-browser--top-light .dev-browser__shadow::before {
   top: 20%;
   left: 10%;
   width: 80%;
   height: 40%;
   background-color: hsla(0, 0%, 0%, 0.4);
}
.dev-browser--top-light .dev-browser__shadow::after {
   top: 20%;
   left: 5%;
   width: 90%;
   height: 60%;
   background-color: hsla(0, 0%, 0%, 0.2);
}

/* #endregion */
/* #region (Laptop) */
.dev-laptop {
   position: relative;
   z-index: 1;
   width: 100%;
}

.dev-laptop__body {
   width: 85%;
   margin: 0 auto;
   background-color: var(--color-black);
   border: 3px solid var(--color-contrast-low);
   border-bottom-width: 0;
   padding: 3% 1.5% 1.5%;
   border-top-left-radius: var(--dev-laptop-radius) calc(var(--dev-laptop-radius) * var(--dev-laptop-img-ratio));
   border-top-right-radius: var(--dev-laptop-radius) calc(var(--dev-laptop-radius) * var(--dev-laptop-img-ratio));
   z-index: 2;
}

.dev-laptop__media img,
.dev-laptop__media svg,
.dev-laptop__media video {
   display: block;
   width: 100%;
   height: auto;
}

.dev-laptop__base {
   position: relative;
   width: 100%;
   height: 0;
   padding-bottom: 3%;
   background: linear-gradient(
      hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 1.4)),
      var(--color-contrast-low) 7% 55%,
      hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.85)) 55%,
      hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.5))
   );
   border-bottom-left-radius: 10% 50%;
   border-bottom-right-radius: 10% 50%;
   z-index: 2;
}
.dev-laptop__base::after {
   content: "";
   position: absolute;
   top: 0;
   left: 40%;
   width: 20%;
   height: 35%;
   border-radius: 0 0 1em 1em;
   background-color: hsl(
      var(--color-contrast-low-h),
      var(--color-contrast-low-s),
      calc(var(--color-contrast-low-l) * 0.8)
   );
   box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.25);
}

.dev-laptop__shadow {
   position: absolute;
   z-index: 1;
   height: 1em;
   width: 94%;
   left: 3%;
   bottom: -0.5em;
   perspective: 400px;
}
.dev-laptop__shadow::before,
.dev-laptop__shadow::after {
   content: "";
   position: absolute;
}
.dev-laptop__shadow::before {
   top: 0;
   left: 1%;
   width: 98%;
   height: 100%;
   background-color: hsla(0, 0%, 0%, 0.25);
   transform: rotateX(70deg);
   filter: blur(5px);
}
.dev-laptop__shadow::after {
   top: calc(44% - 1px);
   left: 4%;
   width: 92%;
   height: 12%;
   border-radius: 100%;
   background-color: hsla(0, 0%, 0%, 0.8);
   filter: blur(1px);
}

/* #endregion */
/* #region (Desktop) */
.dev-desktop {
   position: relative;
   z-index: 1;
   width: 100%;
}

.dev-desktop__body {
   position: relative;
   z-index: 2;
   width: 100%;
   margin: 0 auto;
   background-color: var(--color-black);
   border: 3px solid var(--color-contrast-low);
   padding: 4%;
   border-top-left-radius: var(--dev-desktop-radius) calc(var(--dev-desktop-radius) * var(--dev-desktop-img-ratio));
   border-top-right-radius: var(--dev-desktop-radius) calc(var(--dev-desktop-radius) * var(--dev-desktop-img-ratio));
   border-bottom-right-radius: var(--dev-desktop-radius) calc(var(--dev-desktop-radius) * var(--dev-desktop-img-ratio));
   border-bottom-left-radius: var(--dev-desktop-radius) calc(var(--dev-desktop-radius) * var(--dev-desktop-img-ratio));
}

.dev-desktop__media img,
.dev-desktop__media svg,
.dev-desktop__media video {
   display: block;
   width: 100%;
   height: auto;
}

.dev-desktop__base {
   position: relative;
   z-index: 1;
   width: 33%;
   margin: 0 auto;
   height: 0;
   padding-bottom: 15%;
   perspective: 180px;
}

.dev-desktop__base-top {
   position: absolute;
   z-index: 3;
   top: -1px;
   left: 15%;
   width: 70%;
   height: 80%;
   clip-path: polygon(3% 0%, 97% 0%, 100% 100%, 0% 100%);
   background: linear-gradient(
      hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.6)),
      var(--color-contrast-low)
   );
}

.dev-desktop__base-bottom {
   position: absolute;
   z-index: 2;
   top: calc(80% - 2px);
   left: 15%;
   width: 70%;
   height: 50%;
   border-radius: 0 0 0.25em 0.25em;
   transform-origin: center top;
   transform: rotateX(80deg);
   background-color: var(--color-contrast-low);
   box-shadow: inset 0 -2px 0 hsla(0, 0%, 100%, 0.25);
}

.dev-desktop__shadow {
   position: absolute;
   z-index: 1;
   top: calc(80% - 2px);
   left: 17%;
   width: 66%;
   height: 50%;
   border-radius: 0 0 0.25em 0.25em;
   transform-origin: center top;
   transform: rotateX(80deg);
   box-shadow:
      0 2px 2px hsla(0, 0%, 0%, 0.4),
      0 4px 4px hsla(0, 0%, 0%, 0.15);
}

/* #endregion */
/* -------------------------------- 

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_dialog
Title: Dialog
Descr: Overlay informing user about tasks/decisions
Usage: codyhouse.co/license

-------------------------------- */
.dialog {
   position: fixed;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: var(--z-index-overlay, 15);
   opacity: 0;
   visibility: hidden;
}

.dialog__content {
   width: calc(100% - 2 * var(--space-md));
   overflow: auto;
   padding: var(--space-md);
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-lg);
   border-radius: var(--radius-lg);
}

.dialog--is-visible {
   opacity: 1;
   visibility: visible;
}

.dialog--sticky {
   align-items: flex-start;
}
.dialog--sticky .dialog__content {
   border-top-left-radius: 0;
   border-top-right-radius: 0;
}

.dialog[data-animation="on"] {
   transition:
      opacity 0.3s,
      visibility 0s 0.3s;
   perspective: 800px;
}
.dialog[data-animation="on"] .dialog__content {
   will-change: transform;
   transition: transform 0.3s var(--ease-out);
   transform: translateY(10%);
}
.dialog[data-animation="on"].dialog--is-visible {
   transition: opacity 0.3s;
}
.dialog[data-animation="on"].dialog--is-visible .dialog__content {
   transform: translateY(0);
}
.dialog[data-animation="on"].dialog--sticky .dialog__content {
   transform: translateY(-100%);
}
.dialog[data-animation="on"].dialog--sticky.dialog--is-visible {
   transition: none;
}
.dialog[data-animation="on"].dialog--sticky.dialog--is-visible .dialog__content {
   transform: translateY(0);
}

/* -------------------------------- 

File#: _1_diamond-grid
Title: Diamond Grid
Descr: Diamond shaped image gallery
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --diamond-grid-gap: 10px;
}

.diamond-grid {
   position: relative;
   z-index: 1;
}

.diamond-grid__inner {
   display: flex;
   flex-wrap: wrap;
   transform: scale(0.71) rotate(-45deg);
}

.diamond-grid__item {
   position: relative;
   display: block;
   width: calc(50% - var(--diamond-grid-gap) / 2);
   padding-bottom: calc(50% - var(--diamond-grid-gap) / 2);
   overflow: hidden;
}
.diamond-grid__item:nth-child(1),
.diamond-grid__item:nth-child(3) {
   margin-right: var(--diamond-grid-gap);
}
.diamond-grid__item:nth-child(1),
.diamond-grid__item:nth-child(2) {
   margin-bottom: var(--diamond-grid-gap);
}

.diamond-grid__img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   transform: scale(1.414) rotate(45deg);
}

.diamond-grid__item--link {
   text-decoration: none;
}
.diamond-grid__item--link::after {
   content: "";
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0
   );
   transition: 0.3s;
}
.diamond-grid__item--link:hover::after {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.85
   );
}
.diamond-grid__item--link:hover .diamond-grid__icon :nth-child(1),
.diamond-grid__item--link:hover .diamond-grid__icon :nth-child(2) {
   opacity: 1;
}
.diamond-grid__item--link:hover .diamond-grid__icon :nth-child(1) {
   transform: scaleY(1);
}
.diamond-grid__item--link:hover .diamond-grid__icon :nth-child(2) {
   transform: scaleY(1);
}

.diamond-grid__icon {
   position: absolute;
   z-index: 2;
   font-size: var(--size);
   top: calc(50% - 0.5em);
   left: calc(50% - 0.5em);
   transform: scale(1.4) rotate(45deg);
}
.diamond-grid__icon :nth-child(1),
.diamond-grid__icon :nth-child(2) {
   transform-origin: 50% 50%;
   opacity: 0;
   transition:
      opacity 0.3s,
      transform 0.3s var(--ease-out);
}
.diamond-grid__icon :nth-child(1) {
   transform: scaleY(0.5);
}
.diamond-grid__icon :nth-child(2) {
   transform: scale(0.5);
}

/* -------------------------------- 

File#: _1_download-list
Title: Download List
Descr: A list of downloadable files
Usage: codyhouse.co/license

-------------------------------- */
.dow-list {
   display: grid;
   gap: var(--space-xs);
}

.dow-list__item {
   border-radius: var(--radius-md);
   background: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-xs);
   padding: var(--space-xs);
   display: flex;
   flex-direction: column;
   gap: var(--space-xs);
}
@media (min-width: 32rem) {
   .dow-list__item {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
   }
}

.dow-list__title {
   font-size: var(--text-base-size);
   font-weight: 600;
   line-height: 1;
   margin-bottom: var(--space-xxs);
}

.dow-list__metadata-list {
   display: flex;
   align-items: center;
   font-size: var(--text-xs);
   color: var(--color-contrast-medium);
   line-height: 1;
}
.dow-list__metadata-list > * {
   display: flex;
   align-items: center;
}
.dow-list__metadata-list > *:not(:last-child)::after {
   /* dot separator */
   content: "";
   display: block;
   flex-shrink: 0;
   --size: 5px;
   width: var(--size);
   height: var(--size);
   border-radius: 50%;
   background-color: currentColor;
   margin: 0 var(--space-xs);
   opacity: 0.5;
}

/* animated button */
.dow-list__btn {
   --hover-transition-duration: 0.3s;
   overflow: hidden;
}
.dow-list__btn:hover .dow-list__btn-label,
.dow-list__btn.dow-list__btn--is-loading .dow-list__btn-label {
   transform: scale(0.5);
   opacity: 0;
}
.dow-list__btn:hover .dow-list__icon-wrapper,
.dow-list__btn.dow-list__btn--is-loading .dow-list__icon-wrapper {
   transform: translateY(0);
}

.dow-list__btn--reset .dow-list__btn-label,
.dow-list__btn--reset:hover .dow-list__btn-label {
   transform: scale(1);
   opacity: 1;
}
.dow-list__btn--reset .dow-list__icon-wrapper,
.dow-list__btn--reset:hover .dow-list__icon-wrapper {
   transform: translateY(100%);
}
.dow-list__btn--reset .dow-list__icon-group *,
.dow-list__btn--reset:hover .dow-list__icon-group * {
   transition: none !important;
   animation: none !important;
}

.dow-list__btn-label {
   transition:
      opacity var(--hover-transition-duration),
      transform var(--hover-transition-duration);
}

.dow-list__icon-wrapper {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   transform: translateY(100%);
   transition: transform var(--hover-transition-duration);
}

.dow-list__icon {
   --size: 20px;
   display: block;
   width: 20px;
   height: 20px;
}
.dow-list__icon .dow-list__icon-group > *:nth-child(1) {
   /* arrow main leg */
   stroke-dashoffset: 0;
   stroke-dasharray: 16;
   transition: stroke-dashoffset 0.4s 0.3s var(--ease-in);
}
.dow-list__icon .dow-list__icon-group > *:nth-child(2),
.dow-list__icon .dow-list__icon-group *:nth-child(3) {
   /* arrow smaller legs */
   opacity: 1;
   transform: rotate(0);
   transition:
      transform 0.3s var(--ease-out),
      opacity 0s 0.3s;
}
.dow-list__icon .dow-list__icon-group > *:nth-child(4) {
   /* loading circle */
   stroke-dashoffset: 50;
   stroke-dasharray: 50;
}
.dow-list__icon .dow-list__icon-group > *:nth-child(5) {
   /* checkmark final loading circle */
   stroke-dashoffset: 38;
   stroke-dasharray: 38;
   transition: stroke-dashoffset 0.7s;
}
.dow-list__icon .dow-list__icon-group > *:nth-child(6) {
   /* checkmark */
   stroke-dashoffset: 24;
   stroke-dasharray: 24;
   transition: stroke-dashoffset 0.5s 0.2s var(--ease-out);
}
.dow-list__icon .dow-list__icon-group > *:nth-child(7) {
   /* exclamation point final loading circle */
   stroke-dashoffset: 25;
   stroke-dasharray: 25;
   transition: stroke-dashoffset 0.45s;
}
.dow-list__icon .dow-list__icon-group > *:nth-child(8) {
   /* exclamation point leg */
   stroke-dashoffset: 10;
   stroke-dasharray: 10;
   transition: stroke-dashoffset 0.3s 0.2s var(--ease-out);
}
.dow-list__icon .dow-list__icon-group > *:nth-child(9) {
   /* exclamation point dot */
   transform-origin: 10px 17.5px;
   transform: scale(0);
   transition: transform 0.3s 0.5s var(--ease-out-back);
}

.dow-list__btn--is-loading .dow-list__icon-group > *:nth-child(1) {
   stroke-dashoffset: 16;
}
.dow-list__btn--is-loading .dow-list__icon-group > *:nth-child(2),
.dow-list__btn--is-loading .dow-list__icon-group *:nth-child(3) {
   opacity: 0;
   transform-origin: 10px 18px;
}
.dow-list__btn--is-loading .dow-list__icon-group > *:nth-child(2) {
   transform: rotate(45deg);
}
.dow-list__btn--is-loading .dow-list__icon-group > *:nth-child(3) {
   transform: rotate(-45deg);
}
.dow-list__btn--is-loading .dow-list__icon-group > *:nth-child(4) {
   animation: dow-list-obj-4-anim 1s 0.6s infinite;
}

@media not all and (pointer: fine) {
   /* user hasn't pointing device (e.g., touch device) */
   .dow-list__icon .dow-list__icon-group {
      /* hide arrow icon */
   }
   .dow-list__icon .dow-list__icon-group > *:nth-child(1),
   .dow-list__icon .dow-list__icon-group > *:nth-child(2),
   .dow-list__icon .dow-list__icon-group > *:nth-child(3) {
      display: none;
   }
   .dow-list__btn--is-loading .dow-list__icon-group > *:nth-child(4) {
      animation-delay: 0s;
   }
   .dow-list__btn:hover .dow-list__btn-label {
      /* keep btn label visible */
      transform: scale(1);
      opacity: 1;
   }
   .dow-list__btn.dow-list__btn--is-loading .dow-list__btn-label {
      opacity: 0;
   }
}
@keyframes dow-list-obj-4-anim {
   from {
      stroke-dashoffset: 50;
   }
   to {
      stroke-dashoffset: 150;
   }
}
.dow-list__btn--success .dow-list__icon-group > *:nth-child(4) {
   display: none; /* hide loading circle */
}
.dow-list__btn--success .dow-list__icon-group > *:nth-child(5) {
   stroke-dashoffset: 114;
}
.dow-list__btn--success .dow-list__icon-group > *:nth-child(6) {
   stroke-dashoffset: 0;
}

.dow-list__btn--error {
   animation: dow-list-btn-error-anim 0.4s 0.5s;
}
.dow-list__btn--error .dow-list__icon-group > *:nth-child(4) {
   display: none; /* hide loading circle */
}
.dow-list__btn--error .dow-list__icon-group > *:nth-child(7) {
   stroke-dashoffset: 75;
}
.dow-list__btn--error .dow-list__icon-group > *:nth-child(8) {
   stroke-dashoffset: 0;
}
.dow-list__btn--error .dow-list__icon-group > *:nth-child(9) {
   transform: scale(1);
}

@keyframes dow-list-btn-error-anim {
   0%,
   100% {
      transform: translateX(0);
   }
   20%,
   60% {
      transform: translateX(4px);
   }
   40%,
   80% {
      transform: translateX(-4px);
   }
}
/* -------------------------------- 

File#: _1_drawer
Title: Drawer
Descr: A slide-in panel used to display critical content
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --drawer-width: 400px;
}

.drawer {
   position: fixed;
   z-index: var(--z-index-overlay, 15);
   height: 100%;
   width: 100%;
   max-width: var(--drawer-width);
   top: 0;
   right: 0;
   visibility: hidden;
   transition: visibility 0s 0.3s;
}
.drawer:focus {
   outline: none;
}

.drawer--is-visible {
   visibility: visible;
   transition: none;
}

.drawer--open-left {
   right: auto;
   left: 0;
}

.drawer__content {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   right: 0;
   transform: translateX(100%);
   transition: transform 0.3s;
   transition-timing-function: var(--ease-in-out);
}
.drawer--open-left .drawer__content {
   transform: translateX(-100%);
}
.drawer--is-visible .drawer__content {
   transform: translateX(0);
}

.drawer__body {
   height: 100%;
   overflow: auto;
   overscroll-behavior: contain;
   -webkit-overflow-scrolling: touch;
}

.drawer__close-btn {
   --size: 32px;
   width: var(--size);
   height: var(--size);
   flex-shrink: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   background-color: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0.95);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   transition: 0.2s;
}
.drawer__close-btn:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-md);
}
.drawer__close-btn .icon {
   display: block;
   color: var(--color-contrast-high);
}

.drawer--modal {
   max-width: none;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
   transition:
      background-color 0.3s,
      visibility 0s 0.3s;
}
.drawer--modal.drawer--is-visible {
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.75);
   transition: background-color 0.3s;
}
.drawer--modal.drawer--open-left .drawer__content {
   right: auto;
   left: 0;
}
.drawer--modal .drawer__content {
   max-width: var(--drawer-width);
}

/* -------------------------------- 

File#: _1_drop-cap
Title: Drop Cap
Descr: Make the first letter of a paragraph larger in size
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --drop-cap-lines: 3;
}

.drop-cap::first-letter {
   float: left;
   line-height: 1;
   font-size: calc(1em * var(--drop-cap-lines) * var(--body-line-height));
   padding: 0 0.125em 0 0;
   text-transform: uppercase;
   color: var(--color-contrast-higher);
}

.text-component .drop-cap::first-letter {
   font-size: calc(1em * var(--drop-cap-lines) * var(--body-line-height) * var(--line-height-multiplier));
}

/* -------------------------------- 

File#: _1_emoji-feedback
Title: Emoji Feedback
Descr: A feedback collection system based on emoticons
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --emoji-rate-size: 40px;
}

.emoji-rate__list > * {
   position: relative;
}

.emoji-rate__custom-input {
   position: relative;
   display: block;
   font-size: var(--emoji-rate-size);
   width: 1em;
   height: 1em;
   border-radius: 50%;
   overflow: hidden;
   cursor: pointer;
   transition: transform 0.3s var(--ease-out-back);
}

.emoji-rate__icon {
   display: block;
   width: inherit;
   height: inherit;
   transition: color 0.3s;
}
.emoji-rate__icon * {
   transition: fill, stroke;
   transition-duration: 0.3s;
}

.emoji-rate__hand-icon {
   display: block;
   font-size: var(--emoji-rate-size);
   width: 1em;
   height: 1em;
   position: absolute;
   left: 0;
   bottom: 0;
   pointer-events: none;
   transition: transform 0.3s;
}

#emoji-rate-partially-hand {
   opacity: 0;
}

.emoji-rate__native-input + .emoji-rate__custom-input--no .emoji-rate__icon #emoji-rate-no-eyes {
   transform: translateY(0) translateX(0);
}
.emoji-rate__native-input + .emoji-rate__custom-input--no .emoji-rate__icon #emoji-rate-no-mouth {
   transform: translateY(0) translateX(0);
}
.emoji-rate__native-input + .emoji-rate__custom-input--yes .emoji-rate__icon #emoji-rate-yes-eyes {
   transform: translateY(0) scale(1);
}
.emoji-rate__native-input + .emoji-rate__custom-input--yes .emoji-rate__icon #emoji-rate-yes-mouth {
   transform-origin: 50% 70%;
   transform: translateY(0) scale(1);
}
.emoji-rate__native-input + .emoji-rate__custom-input--partially .emoji-rate__icon #emoji-rate-partially-eyes {
   transform-origin: 20px 19.5px;
   transform: translateY(0) scaleY(1);
}
.emoji-rate__native-input + .emoji-rate__custom-input--partially .emoji-rate__icon #emoji-rate-partially-mouth {
   transform-origin: 20px 28px;
   transform: translateY(0) scaleX(1);
}
.emoji-rate__native-input ~ .emoji-rate__hand-icon #emoji-rate-partially-hand {
   transform-origin: 7px 35px;
   opacity: 0;
   transform: translateX(0);
}

.emoji-rate__native-input:checked + .emoji-rate__custom-input,
.emoji-rate__native-input:checked ~ .emoji-rate__hand-icon {
   transform: scale(1.1);
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--no .emoji-rate__icon {
   color: var(--color-black);
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--no .emoji-rate__icon #emoji-rate-no-bg {
   fill: var(--color-error-light);
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--no .emoji-rate__icon #emoji-rate-no-eyes {
   animation: emoji-rate-no-eyes-anim 1.6s;
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--no .emoji-rate__icon #emoji-rate-no-mouth {
   animation: emoji-rate-no-mouth-anim 1.6s;
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--yes .emoji-rate__icon {
   color: var(--color-black);
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--yes .emoji-rate__icon #emoji-rate-yes-bg {
   fill: var(--color-warning);
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--yes .emoji-rate__icon #emoji-rate-yes-eyes {
   animation: emoji-rate-yes-eyes-anim 1.6s;
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--yes .emoji-rate__icon #emoji-rate-yes-mouth {
   transform-origin: 50% 70%;
   animation: emoji-rate-yes-mouth-anim 1.6s;
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--yes .emoji-rate__icon #emoji-rate-yes-tongue {
   fill: var(--color-error);
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--partially .emoji-rate__icon {
   color: var(--color-black);
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--partially .emoji-rate__icon #emoji-rate-partially-bg {
   fill: var(--color-warning);
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--partially .emoji-rate__icon #emoji-rate-partially-eyes {
   animation: emoji-rate-partially-eyes-anim 1.6s;
}
.emoji-rate__native-input:checked + .emoji-rate__custom-input--partially .emoji-rate__icon #emoji-rate-partially-mouth {
   animation: emoji-rate-partially-mouth-anim 1.6s;
}
.emoji-rate__native-input:checked ~ .emoji-rate__hand-icon #emoji-rate-partially-hand {
   animation: emoji-rate-partially-hand-anim 1.6s;
}

.emoji-rate__native-input:focus + .emoji-rate__custom-input {
   box-shadow: 0 0 0 3px hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), 0.3);
}
.emoji-rate__native-input:focus + .emoji-rate__custom-input--no {
   box-shadow: 0 0 0 3px hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.25);
}

.emoji-rate__native-input:focus:not(:focus-visible) + .emoji-rate__custom-input {
   box-shadow: none !important;
}

@keyframes emoji-rate-no-eyes-anim {
   0%,
   100% {
      transform: translateY(0) translateX(0);
   }
   30%,
   40% {
      transform: translateY(4px) translateX(0);
   }
   50% {
      transform: translateY(4px) translateX(-4px);
   }
   60% {
      transform: translateY(4px) translateX(4px);
   }
   70% {
      transform: translateY(4px) translateX(0px);
   }
}
@keyframes emoji-rate-no-mouth-anim {
   0%,
   100% {
      transform: translateY(0) translateX(0);
   }
   30%,
   40% {
      transform: translateY(2.5px) translateX(0);
   }
   50% {
      transform: translateY(2.5px) translateX(-2.5px);
   }
   60% {
      transform: translateY(2.5px) translateX(2.5px);
   }
   70% {
      transform: translateY(2.5px) translateX(0px);
   }
}
@keyframes emoji-rate-yes-mouth-anim {
   0%,
   100% {
      transform: translateY(0) scale(1);
   }
   30%,
   40% {
      transform: translateY(-2.5px) scale(1.2);
   }
   55% {
      transform: translateY(0) scale(1.2);
   }
   70% {
      transform: translateY(-2.5px) scale(1.2);
   }
}
@keyframes emoji-rate-yes-eyes-anim {
   0%,
   100% {
      transform: translateY(0);
   }
   30%,
   40% {
      transform: translateY(-2.5px);
   }
   55% {
      transform: translateY(0);
   }
   70% {
      transform: translateY(-2.5px);
   }
}
@keyframes emoji-rate-partially-eyes-anim {
   0%,
   100% {
      transform: translateY(0) scaleY(1);
   }
   30%,
   40%,
   60%,
   70% {
      transform: translateY(-2px) scaleY(1);
   }
   50% {
      transform: translateY(-2px) scaleY(0.1);
   }
}
@keyframes emoji-rate-partially-mouth-anim {
   0%,
   100% {
      transform: translateY(0) scaleX(1);
   }
   30%,
   70% {
      transform: translateY(-4px) scaleX(0.6);
   }
}
@keyframes emoji-rate-partially-hand-anim {
   0%,
   100% {
      opacity: 0;
      transform: translateX(0);
   }
   30%,
   70% {
      opacity: 1;
      transform: translateX(3px);
   }
}
/* -------------------------------- 

File#: _1_expandable-search
Title: Expandable Search
Descr: A search button that expands to reveal a search input element
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --expandable-search-size-compact: 2.2em; /* height and width - compact version /  height - expanded version */
   --expandable-search-size-expanded: 10em; /* width - expanded version */
   --expandable-search-radius: 50em; /* border radius */
   --expandable-search-icon-size: 1.2em; /* lens icon size */
   --expandable-search-btn-padding: 2px; /* gap between button and input element */
}

.expandable-search {
   position: relative;
   display: inline-block;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}

.expandable-search__input {
   width: var(--expandable-search-size-compact);
   height: var(--expandable-search-size-compact);
   color: transparent;
   overflow: hidden;
   border-radius: var(--expandable-search-radius);
   transition:
      width 0.3s var(--ease-out),
      box-shadow 0.3s,
      background-color 0.3s;
}
.expandable-search__input::-moz-placeholder {
   opacity: 0;
   color: transparent;
}
.expandable-search__input::placeholder {
   opacity: 0;
   color: transparent;
}
.expandable-search__input:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   cursor: pointer;
}
.expandable-search__input:not(:focus):not(.expandable-search__input--has-content) {
   padding: 0px; /* padding = 0 if search is not expanded */
}
.expandable-search__input:focus,
.expandable-search__input.expandable-search__input--has-content {
   background-color: var(--color-bg);
   width: var(--expandable-search-size-expanded);
   padding-top: 0;
   padding-right: calc(var(--expandable-search-btn-padding, 2px) + var(--expandable-search-size-compact));
   padding-bottom: 0;
   outline: none;
   box-shadow:
      var(--shadow-md),
      0 0 0 2px var(--color-primary);
   color: var(--color-contrast-higher);
   cursor: auto;
   -webkit-user-select: auto;
   -moz-user-select: auto;
   user-select: auto;
   /* ������ you can ovveride this padding by using the padding utility classes */
}
.expandable-search__input:focus:not([class^="padding-"]):not([class*=" padding-"]),
.expandable-search__input.expandable-search__input--has-content:not([class^="padding-"]):not([class*=" padding-"]) {
   padding-left: var(--space-sm);
}
.expandable-search__input:focus::-moz-placeholder,
.expandable-search__input.expandable-search__input--has-content::-moz-placeholder {
   opacity: 1;
   color: var(--color-contrast-low);
}
.expandable-search__input:focus::placeholder,
.expandable-search__input.expandable-search__input--has-content::placeholder {
   opacity: 1;
   color: var(--color-contrast-low);
}
.expandable-search__input:focus + .expandable-search__btn {
   pointer-events: auto;
}
.expandable-search__input::-webkit-search-decoration,
.expandable-search__input::-webkit-search-cancel-button,
.expandable-search__input::-webkit-search-results-button,
.expandable-search__input::-webkit-search-results-decoration {
   display: none;
}

.expandable-search__btn {
   position: absolute;
   display: flex;
   top: var(--expandable-search-btn-padding, 2px);
   right: var(--expandable-search-btn-padding, 2px);
   width: calc(var(--expandable-search-size-compact) - var(--expandable-search-btn-padding, 2px) * 2);
   height: calc(var(--expandable-search-size-compact) - var(--expandable-search-btn-padding, 2px) * 2);
   border-radius: var(--expandable-search-radius);
   z-index: 1;
   pointer-events: none;
   transition: background-color 0.3s;
}
.expandable-search__btn .icon {
   display: block;
   margin: auto;
   height: var(--expandable-search-icon-size);
   width: var(--expandable-search-icon-size);
}
.expandable-search__btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.expandable-search__btn:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}

/* -------------------------------- 

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-nav {
   margin-bottom: var(--space-md);
}

.exsidenav__pop-link,
.exsidenav__link,
.exsidenav__control {
   display: flex;
   align-items: center;
   width: 100%;
   color: var(--color-contrast-high);
   text-decoration: none;
   line-height: 1;
   padding: var(--space-xxs);
   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__label-wrapper {
   margin: var(--space-md) 0 var(--space-xxs) var(--space-xxs);
}
.exsidenav__list .exsidenav__list .exsidenav__label-wrapper {
   margin: var(--space-xs) 0 var(--space-xxxs) var(--space-xxs);
}

.exsidenav__label {
   color: var(--color-contrast-low);
   font-size: var(--text-xs);
   text-transform: uppercase;
   letter-spacing: 0.1em;
}

/* button controlling sub navigations */
.exsidenav__control {
   font-weight: 600;
}
.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-link,
   .exsidenav__link,
   .exsidenav__control {
      font-size: var(--text-sm);
   }
}
/* -------------------------------- 

File#: _1_expandable-table
Title: Expandable Table
Descr: A table whose rows expand to reveal additional information
Usage: codyhouse.co/license

-------------------------------- */
.ex-table {
   position: relative;
   z-index: 1;
   border-collapse: separate;
   width: 100%;
}

.ex-table__btn {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.ex-table__btn:active {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.05
   );
}

.ex-table__btn-icon {
   position: relative;
   display: block;
   margin: 0 auto;
}
.ex-table__btn-icon::before,
.ex-table__btn-icon::after {
   content: "";
   position: absolute;
   width: 2px;
   height: 80%;
   border-radius: 5em;
   background: currentColor;
   top: 0;
   transform-origin: 50% 100%;
   will-change: transform;
   transition: transform 0.2s;
}
.ex-table__btn-icon::before {
   left: 50%;
   transform: rotate(-45deg);
}
.ex-table__btn-icon::after {
   left: calc(50% - 1px);
   transform: rotate(45deg);
}

.ex-table__more-content {
   display: none;
}

.ex-table__row--show-more-content .ex-table__more-content {
   display: block;
}
.ex-table__row--show-more-content .ex-table__btn-icon::before {
   transform: translateY(-80%) rotate(-135deg);
}
.ex-table__row--show-more-content .ex-table__btn-icon::after {
   transform: translateY(-80%) rotate(135deg);
}

@media not all and (min-width: 48rem) {
   .ex-table {
      border-spacing: 0 var(--space-md);
      margin-top: calc(-2 * var(--space-md));
   }
   .ex-table__header {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
   }
   .ex-table__cell {
      display: block;
      padding: var(--space-sm);
      width: 100%;
      text-align: left;
      border: 1px solid var(--color-contrast-lower);
      border-bottom-width: 0;
   }
   .ex-table__row .ex-table__cell:last-child {
      border-bottom-width: 1px;
   }
   .ex-table__label {
      display: block;
      font-weight: bold;
      color: var(--color-contrast-higher);
      margin-bottom: var(--space-xxs);
   }
   .ex-table__btn {
      border-radius: var(--radius-md);
      padding: var(--space-xs);
      width: 100%;
   }
   .ex-table__btn-icon {
      width: 1em;
      height: 1em;
   }
   .ex-table__more-content {
      padding: var(--space-md) 0 0;
   }
}
@media (min-width: 48rem) {
   .ex-table__header .ex-table__cell {
      font-weight: bold;
      text-align: left;
      color: var(--color-contrast-higher);
   }
   .ex-table__cell {
      padding: var(--space-xs) var(--space-sm) var(--space-xs) 0;
      border-bottom: 1px solid var(--color-contrast-lower);
   }
   .ex-table__row .ex-table__cell:last-child {
      padding-right: 0;
   }
   .ex-table__label {
      display: none;
   }
   .ex-table__btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      float: right;
   }
   .ex-table__btn-icon {
      width: 16px;
      height: 16px;
   }
   .ex-table__more-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-color: var(--color-bg);
      padding: var(--space-md) 0;
      border-bottom: 1px solid var(--color-contrast-lower);
   }
   .ex-table__row--show-more-content .ex-table__cell {
      border-bottom-color: var(--color-bg);
   }
}
/* -------------------------------- 

File#: _1_feature-v10
Title: Feature v10
Descr: A feature section containing two adjacent content blocks
Usage: codyhouse.co/license

-------------------------------- */
.feature-v10 {
   position: relative;
   z-index: 1;
}

.feature-v10__img-link {
   transition: 0.3s;
}
.feature-v10__img-link:hover {
   opacity: 0.8;
}

.feature-v10__media {
   display: block;
   width: 100%;
   aspect-ratio: 16/9;
   -o-object-fit: cover;
   object-fit: cover;
   border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-v10__content {
   border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.feature-v10__link {
   position: relative;
   text-decoration: none;
   color: inherit;
   display: inline-block;
   will-change: transform;
   transition: 0.3s var(--ease-out);
   transform-origin: left bottom;
}
.feature-v10__link i {
   /* label */
   position: relative;
   z-index: 2;
   display: inline-block;
   will-change: transform;
   transition:
      transform 0.3s var(--ease-out),
      color 0.3s;
}
.feature-v10__link::after {
   /* animated border */
   content: "";
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
   height: 2px;
   width: 100%;
   position: absolute;
   z-index: 1;
   bottom: 0;
   left: 0;
   clip-path: inset(0% round var(--radius-sm));
   transition:
      height 0.3s var(--ease-out),
      background-color 0.3s;
}
.feature-v10__link:hover {
   transform: scale(1.3);
}
.feature-v10__link:hover i {
   color: var(--color-bg);
   transform: scale(0.7); /* reverse parent transformation */
}
.feature-v10__link:hover::after {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      1
   );
   height: 100%;
}

@media (min-width: 64rem) {
   .feature-v10__item:first-child .feature-v10__media {
      border-radius: var(--radius-lg) 0 0 0;
   }
   .feature-v10__item:first-child .feature-v10__content {
      border-radius: 0 var(--radius-lg) 0 0;
   }
   .feature-v10__item:last-child .feature-v10__media {
      border-radius: 0 0 var(--radius-lg) 0;
   }
   .feature-v10__item:last-child .feature-v10__content {
      border-radius: 0 0 0 var(--radius-lg);
   }
}
/* -------------------------------- 

File#: _1_feature-v11
Title: Feature v11
Descr: Feature section containing a boxed content over a background image
Usage: codyhouse.co/license

-------------------------------- */
.feature-v11 {
   position: relative;
   z-index: 1;
}

.feature-v11__link {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   color: var(--color-contrast-higher);
   text-decoration: none;
   line-height: 1;
   transition: 0.3s;
}
.feature-v11__link:hover {
   background-color: var(--color-primary);
   color: var(--color-white);
}
.feature-v11__link:hover .feature-v11__link-icon > * {
   transition: transform 0.3s var(--ease-out);
}
.feature-v11__link:hover .feature-v11__link-icon > *:first-child {
   transform: rotate(-180deg);
}
.feature-v11__link:hover .feature-v11__link-icon > *:last-child {
   transform: rotate(180deg);
}

.feature-v11__link-icon {
   /* animated arrow */
   --size: 16px;
}
.feature-v11__link-icon > * {
   will-change: transform;
}
.feature-v11__link-icon > *:first-child {
   transform-origin: 8px 5px;
}
.feature-v11__link-icon > *:last-child {
   transform-origin: 8px 11px;
}

/* -------------------------------- 

File#: _1_feature-v12
Title: Feature v12
Descr: Feature section containing text that overlaps a background image
Usage: codyhouse.co/license

-------------------------------- */
.feature-v12,
.feature-v12__offset-item,
.feature-v12__bg-item {
   position: relative;
}

.feature-v12,
.feature-v12__bg-item {
   z-index: 1;
}

.feature-v12__offset-item {
   z-index: 2;
}

.feature-v12--left .feature-v12__offset-item,
.feature-v12--right .feature-v12__offset-item {
   width: calc(100% + var(--feature-v12-offset, 3em));
}

.feature-v12--right .feature-v12__offset-item {
   margin-left: calc(-1 * var(--feature-v12-offset, 3em));
}

.feature-v12--top .feature-v12__offset-item {
   margin-bottom: calc(-1 * var(--feature-v12-offset, 3em));
}

.feature-v12--bottom .feature-v12__offset-item {
   margin-top: calc(-1 * var(--feature-v12-offset, 3em));
}

.feature-v12--offset-xs {
   --feature-v12-offset: 2em;
}

.feature-v12--offset-sm {
   --feature-v12-offset: 3em;
}

.feature-v12--offset-md {
   --feature-v12-offset: 5em;
}

.feature-v12--offset-lg {
   --feature-v12-offset: 8em;
}

.feature-v12--offset-xl {
   --feature-v12-offset: 13em;
}

@media (min-width: 32rem) {
   .feature-v12--left\@xs .feature-v12__offset-item,
   .feature-v12--right\@xs .feature-v12__offset-item {
      width: calc(100% + var(--feature-v12-offset, 3em));
      margin: 0;
   }
   .feature-v12--right\@xs .feature-v12__offset-item {
      margin-left: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--top\@xs .feature-v12__offset-item,
   .feature-v12--bottom\@xs .feature-v12__offset-item {
      width: auto;
      margin: 0;
   }
   .feature-v12--top\@xs .feature-v12__offset-item {
      margin-bottom: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--bottom\@xs .feature-v12__offset-item {
      margin-top: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--offset-xs\@xs {
      --feature-v12-offset: 2em;
   }
   .feature-v12--offset-sm\@xs {
      --feature-v12-offset: 3em;
   }
   .feature-v12--offset-md\@xs {
      --feature-v12-offset: 5em;
   }
   .feature-v12--offset-lg\@xs {
      --feature-v12-offset: 8em;
   }
   .feature-v12--offset-xl\@xs {
      --feature-v12-offset: 13em;
   }
}
@media (min-width: 48rem) {
   .feature-v12--left\@sm .feature-v12__offset-item,
   .feature-v12--right\@sm .feature-v12__offset-item {
      width: calc(100% + var(--feature-v12-offset, 3em));
      margin: 0;
   }
   .feature-v12--right\@sm .feature-v12__offset-item {
      margin-left: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--top\@sm .feature-v12__offset-item,
   .feature-v12--bottom\@sm .feature-v12__offset-item {
      width: auto;
      margin: 0;
   }
   .feature-v12--top\@sm .feature-v12__offset-item {
      margin-bottom: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--bottom\@sm .feature-v12__offset-item {
      margin-top: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--offset-xs\@sm {
      --feature-v12-offset: 2em;
   }
   .feature-v12--offset-sm\@sm {
      --feature-v12-offset: 3em;
   }
   .feature-v12--offset-md\@sm {
      --feature-v12-offset: 5em;
   }
   .feature-v12--offset-lg\@sm {
      --feature-v12-offset: 8em;
   }
   .feature-v12--offset-xl\@sm {
      --feature-v12-offset: 13em;
   }
}
@media (min-width: 64rem) {
   .feature-v12--left\@md .feature-v12__offset-item,
   .feature-v12--right\@md .feature-v12__offset-item {
      width: calc(100% + var(--feature-v12-offset, 3em));
      margin: 0;
   }
   .feature-v12--right\@md .feature-v12__offset-item {
      margin-left: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--top\@md .feature-v12__offset-item,
   .feature-v12--bottom\@md .feature-v12__offset-item {
      width: auto;
      margin: 0;
   }
   .feature-v12--top\@md .feature-v12__offset-item {
      margin-bottom: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--bottom\@md .feature-v12__offset-item {
      margin-top: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--offset-xs\@md {
      --feature-v12-offset: 2em;
   }
   .feature-v12--offset-sm\@md {
      --feature-v12-offset: 3em;
   }
   .feature-v12--offset-md\@md {
      --feature-v12-offset: 5em;
   }
   .feature-v12--offset-lg\@md {
      --feature-v12-offset: 8em;
   }
   .feature-v12--offset-xl\@md {
      --feature-v12-offset: 13em;
   }
}
@media (min-width: 80rem) {
   .feature-v12--left\@lg .feature-v12__offset-item,
   .feature-v12--right\@lg .feature-v12__offset-item {
      width: calc(100% + var(--feature-v12-offset, 3em));
      margin: 0;
   }
   .feature-v12--right\@lg .feature-v12__offset-item {
      margin-left: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--top\@lg .feature-v12__offset-item,
   .feature-v12--bottom\@lg .feature-v12__offset-item {
      width: auto;
      margin: 0;
   }
   .feature-v12--top\@lg .feature-v12__offset-item {
      margin-bottom: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--bottom\@lg .feature-v12__offset-item {
      margin-top: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--offset-xs\@lg {
      --feature-v12-offset: 2em;
   }
   .feature-v12--offset-sm\@lg {
      --feature-v12-offset: 3em;
   }
   .feature-v12--offset-md\@lg {
      --feature-v12-offset: 5em;
   }
   .feature-v12--offset-lg\@lg {
      --feature-v12-offset: 8em;
   }
   .feature-v12--offset-xl\@lg {
      --feature-v12-offset: 13em;
   }
}
@media (min-width: 90rem) {
   .feature-v12--left\@xl .feature-v12__offset-item,
   .feature-v12--right\@xl .feature-v12__offset-item {
      width: calc(100% + var(--feature-v12-offset, 3em));
      margin: 0;
   }
   .feature-v12--right\@xl .feature-v12__offset-item {
      margin-left: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--top\@xl .feature-v12__offset-item,
   .feature-v12--bottom\@xl .feature-v12__offset-item {
      width: auto;
      margin: 0;
   }
   .feature-v12--top\@xl .feature-v12__offset-item {
      margin-bottom: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--bottom\@xl .feature-v12__offset-item {
      margin-top: calc(-1 * var(--feature-v12-offset, 3em));
   }
   .feature-v12--offset-xs\@xl {
      --feature-v12-offset: 2em;
   }
   .feature-v12--offset-sm\@xl {
      --feature-v12-offset: 3em;
   }
   .feature-v12--offset-md\@xl {
      --feature-v12-offset: 5em;
   }
   .feature-v12--offset-lg\@xl {
      --feature-v12-offset: 8em;
   }
   .feature-v12--offset-xl\@xl {
      --feature-v12-offset: 13em;
   }
}
/* -------------------------------- 

File#: _1_feature-v2
Title: Feature v2
Descr: Content group containing two text components
Usage: codyhouse.co/license

-------------------------------- */
.feature-v2__label {
   display: flex;
   gap: var(--space-sm);
   align-items: center;
}
.feature-v2__label::after {
   content: "";
   height: 1px;
   flex-grow: 1;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}

/* -------------------------------- 

File#: _1_feature-v20
Title: Feature v20
Descr: A list of features with icons
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_feature-v3
Title: Feature v3
Descr: Content group containing text + media element that outsets its container at a specific viewport size
Usage: codyhouse.co/license

-------------------------------- */
@media (min-width: 64rem) {
   .feature-v3 {
      overflow-x: clip;
   }
   .feature-v3__media-wrapper {
      position: relative;
      height: 520px;
   }
   .feature-v3__media-wrapper > * {
      position: absolute;
      top: 0;
      height: 100%;
      max-width: none;
      width: auto;
   }
}
/* -------------------------------- 

File#: _1_feature-v4
Title: Feature v4
Descr: Content group containing media element + text that outsets its container at a specific breakpoint
Usage: codyhouse.co/license

-------------------------------- */
.feature-v4 {
   --feature-text-offset: 65%;
   position: relative;
   z-index: 1;
}

@media (min-width: 32rem) {
   .feature-v4__text-offset\@xs {
      width: calc(100% + var(--feature-text-offset));
   }
   .feature-v4--invert\@xs .feature-v4__grid > *:last-child {
      order: -1;
   }
   .feature-v4--invert\@xs .feature-v4__text-offset\@xs {
      margin-left: calc(var(--feature-text-offset) * -1);
   }
}
@media (min-width: 48rem) {
   .feature-v4__text-offset\@sm {
      width: calc(100% + var(--feature-text-offset));
   }
   .feature-v4--invert\@sm .feature-v4__grid > *:last-child {
      order: -1;
   }
   .feature-v4--invert\@sm .feature-v4__text-offset\@sm {
      margin-left: calc(var(--feature-text-offset) * -1);
   }
}
@media (min-width: 64rem) {
   .feature-v4__text-offset\@md {
      width: calc(100% + var(--feature-text-offset));
   }
   .feature-v4--invert\@md .feature-v4__grid > *:last-child {
      order: -1;
   }
   .feature-v4--invert\@md .feature-v4__text-offset\@md {
      margin-left: calc(var(--feature-text-offset) * -1);
   }
}
@media (min-width: 80rem) {
   .feature-v4__text-offset\@lg {
      width: calc(100% + var(--feature-text-offset));
   }
   .feature-v4--invert\@lg .feature-v4__grid > *:last-child {
      order: -1;
   }
   .feature-v4--invert\@lg .feature-v4__text-offset\@lg {
      margin-left: calc(var(--feature-text-offset) * -1);
   }
}
@media (min-width: 90rem) {
   .feature-v4__text-offset\@xl {
      width: calc(100% + var(--feature-text-offset));
   }
   .feature-v4--invert\@xl .feature-v4__grid > *:last-child {
      order: -1;
   }
   .feature-v4--invert\@xl .feature-v4__text-offset\@xl {
      margin-left: calc(var(--feature-text-offset) * -1);
   }
}
/* -------------------------------- 

File#: _1_feature-v5
Title: Feature v5
Descr: Content group containing text components and a media element
Usage: codyhouse.co/license

-------------------------------- */
.feature-v5 {
   --feature-media-offset: var(--space-xxl); /* image offset */
   --feature-content-media-gap: var(--space-lg); /* space between text and image */
}

.feature-v5__content {
   background-color: var(--color-bg-dark);
   padding-bottom: calc(var(--feature-content-media-gap) + var(--feature-media-offset));
}

.feature-v5__media {
   margin-top: calc(-1 * var(--feature-media-offset));
}

/* -------------------------------- 

File#: _1_feature-v6
Title: Feature v6
Descr: A section containing a list of features
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_feature-v7
Title: Feature v7
Descr: A section containing a list of features
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_feature-v9
Title: Feature v9
Descr: A feature section with 2 blocks
Usage: codyhouse.co/license

-------------------------------- */
/* .feature-v9:hover .feature-v9__block:not(:hover) .feature-v9__content {
   opacity: 0.5;
}
.feature-v9:hover .feature-v9__block:not(:hover)::after {
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8);
   -webkit-backdrop-filter: grayscale(100%);
   backdrop-filter: grayscale(100%);
} */

.feature-v9__block {
   position: relative;
   display: flex;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   padding: var(--space-xl) var(--space-md);
   min-height: 350px;
}
.feature-v9__block::before,
.feature-v9__block::after {
   content: "";
   position: absolute;
   z-index: 1;
   bottom: 0;
   left: 0;
   width: 100%;
   transition: 0.2s;
}
.feature-v9__block::before {
   height: 70%;
   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), 0.8)
   );
   mix-blend-mode: multiply;
}
.feature-v9__block::after {
   height: 100%;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
}
.feature-v9__block:hover .feature-v9__content {
   transform: translateY(-10px);
}
@media (min-width: 48rem) {
   .feature-v9__block {
      min-height: 450px;
   }
}
@media (min-width: 64rem) {
   .feature-v9__block {
      min-height: 600px;
   }
}
@media (min-width: 80rem) {
   .feature-v9__block {
      min-height: 700px;
   }
}

.feature-v9__content {
   position: relative;
   z-index: 2;
   color: var(--color-white);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   margin: auto auto 0;
   transition: 0.2s;
}

.feature-v9__link {
   color: var(--color-black);
   text-decoration: none;
   display: inline-block;
   padding: var(--space-xs) var(--space-md);
   background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.8);
   border-radius: var(--radius-md);
   -webkit-backdrop-filter: blur(5px);
   backdrop-filter: blur(5px);
   transition: background-color 0.2s;
}
.feature-v9__link:hover {
   background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 1);
}

/* -------------------------------- 

File#: _1_feature
Title: Feature
Descr: Content group containing text + media (img, video, iframe, inline SVG)
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_file-upload
Title: File Upload
Descr: Custom file input element used to select and upload a file
Usage: codyhouse.co/license

-------------------------------- */
.file-upload__input {
   /* visually hide input file element */
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
   width: 1px;
   height: 1px;
}

.file-upload__text--has-max-width {
   /* set a max width to the label text */
   max-width: 200px;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

/* -------------------------------- 

File#: _1_fill-loader
Title: Loader
Descr: A collection of animated loaders with a filling effect
Usage: codyhouse.co/license

-------------------------------- */
.fill-loader {
   position: relative;
   overflow: hidden;
   display: inline-block;
}

.fill-loader__fill {
   position: absolute;
}

.fill-loader__label {
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

.fill-loader--v1 .fill-loader__base,
.fill-loader--v2 .fill-loader__base {
   width: 64px;
   height: 4px;
   background-color: var(--color-contrast-lower);
}
.fill-loader--v1 .fill-loader__fill,
.fill-loader--v2 .fill-loader__fill {
   background-color: var(--color-primary);
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   will-change: transform;
}

.fill-loader--v1 .fill-loader__fill {
   animation: fill-loader-1 0.8s infinite var(--ease-in-out);
}

.fill-loader--v2 .fill-loader__fill {
   animation: fill-loader-2 0.8s infinite alternate var(--ease-in-out);
}

@keyframes fill-loader-1 {
   0% {
      transform-origin: 0 0;
      transform: scaleX(0);
   }
   49% {
      transform-origin: 0 0;
      transform: scaleX(1);
   }
   51% {
      transform: scaleX(1);
      transform-origin: 100% 0;
   }
   100% {
      transform: scaleX(0);
      transform-origin: 100% 0;
   }
}
@keyframes fill-loader-2 {
   0% {
      transform-origin: 0 0;
      transform: scaleX(0.1);
   }
   49% {
      transform-origin: 0 0;
      transform: scaleX(1);
   }
   51% {
      transform: scaleX(1);
      transform-origin: 100% 0;
   }
   100% {
      transform: scaleX(0.1);
      transform-origin: 100% 0;
   }
}
.fill-loader--v3 .fill-loader__base {
   width: 120px;
   height: 10px;
   background-color: var(--color-contrast-lower);
}
.fill-loader--v3 .fill-loader__fill {
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   transform: scaleX(0);
   will-change: transform;
   animation: fill-loader-1 1s infinite var(--ease-in-out);
}
.fill-loader--v3 .fill-loader__fill--1st {
   background-color: var(--color-contrast-medium);
}
.fill-loader--v3 .fill-loader__fill--2nd {
   background-color: var(--color-contrast-higher);
   animation-delay: 0.1s;
}
.fill-loader--v3 .fill-loader__fill--3rd {
   background-color: var(--color-primary);
   animation-delay: 0.2s;
}

.fill-loader--v4 {
   width: 90%;
   max-width: 300px;
}
.fill-loader--v4 .fill-loader__base {
   height: 4px;
   background-color: var(--color-contrast-lower);
}
.fill-loader--v4 .fill-loader__fill {
   top: 0;
   left: 0;
   right: 0;
   height: 100%;
   background-color: var(--color-primary);
   animation: fill-loader-4 1.6s infinite var(--ease-in-out);
   will-change: left, right;
}

@keyframes fill-loader-4 {
   0% {
      left: 0;
      right: 100%;
      background-color: var(--color-primary);
   }
   10%,
   60% {
      left: 0;
   }
   40%,
   90% {
      right: 0;
   }
   50% {
      left: 100%;
      background-color: var(--color-primary);
   }
   51% {
      left: 0;
      right: 100%;
      background-color: var(--color-accent);
   }
   100% {
      left: 100%;
      background-color: var(--color-accent);
   }
}
.fill-loader--v5 .fill-loader__base {
   width: 48px;
   height: 48px;
   background-color: var(--color-contrast-lower);
}
.fill-loader--v5 .fill-loader__fill {
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   will-change: transform;
}
.fill-loader--v5 .fill-loader__fill--1st {
   background-color: var(--color-primary);
   transform-origin: 0 50%;
   animation: fill-loader-5-1st 2s infinite var(--ease-in-out);
}
.fill-loader--v5 .fill-loader__fill--2nd {
   background-color: var(--color-contrast-higher);
   transform-origin: 50% 100%;
   animation: fill-loader-5-2nd 2s infinite var(--ease-in-out);
}
.fill-loader--v5 .fill-loader__fill--3rd {
   background-color: var(--color-accent);
   transform-origin: 100% 50%;
   animation: fill-loader-5-3rd 2s infinite var(--ease-in-out);
}
.fill-loader--v5 .fill-loader__fill--4th {
   background-color: var(--color-contrast-lower);
   transform-origin: 50% 0%;
   animation: fill-loader-5-4th 2s infinite var(--ease-in-out);
}

@keyframes fill-loader-5-1st {
   0% {
      transform: scaleX(0);
   }
   25%,
   100% {
      transform: scaleX(1);
   }
}
@keyframes fill-loader-5-2nd {
   0%,
   25% {
      transform: scaleY(0);
   }
   50%,
   100% {
      transform: scaleY(1);
   }
}
@keyframes fill-loader-5-3rd {
   0%,
   50% {
      transform: scaleX(0);
   }
   75%,
   100% {
      transform: scaleX(1);
   }
}
@keyframes fill-loader-5-4th {
   0%,
   75% {
      transform: scaleY(0);
   }
   100% {
      transform: scaleY(1);
   }
}
.fill-loader--v6 .fill-loader__grid {
   display: flex;
}
.fill-loader--v6 .fill-loader__bar {
   position: relative;
}
.fill-loader--v6 .fill-loader__bar:nth-child(2) {
   margin: 0 8px;
}
.fill-loader--v6 .fill-loader__base {
   width: 6px;
   height: 30px;
   background-color: var(--color-contrast-lower);
}
.fill-loader--v6 .fill-loader__fill {
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   will-change: transform;
   transform: scaleY(0);
   transform-origin: 50% 100%;
   background-color: var(--color-primary);
   animation: fill-loader-6 0.8s infinite;
}
.fill-loader--v6 .fill-loader__fill--2nd {
   animation-delay: 0.1s;
}
.fill-loader--v6 .fill-loader__fill--3rd {
   animation-delay: 0.2s;
}

@keyframes fill-loader-6 {
   0% {
      transform-origin: 0 100%;
      transform: scaleY(0);
   }
   49% {
      transform-origin: 0 100%;
      transform: scaleY(1);
   }
   51% {
      transform: scaleY(1);
      transform-origin: 0 0;
   }
   100% {
      transform: scaleY(0);
      transform-origin: 0 0;
   }
}
/* -------------------------------- 

File#: _1_filter-navigation
Title: Filter Navigation
Descr: Filter navigation template
Usage: codyhouse.co/license

-------------------------------- */
/* --expanded version */
.filter-nav--expanded {
   /* --v1 */
   /* --v2 */
   /* --v3 */
}
.filter-nav--expanded .filter-nav__nav {
   display: flex;
   overflow: auto;
}
.filter-nav--expanded .filter-nav__list {
   display: inline-flex;
   position: relative;
}
.filter-nav--expanded .filter-nav__item {
   flex-shrink: 0;
   position: relative;
   z-index: 1;
}
.filter-nav--expanded .filter-nav__btn {
   /* <button> element inside each list item */
   cursor: pointer;
}
.filter-nav--expanded .filter-nav__marker {
   /* animated marker */
   position: absolute;
   width: 0;
   pointer-events: none;
   transition:
      transform 0.3s,
      width 0.3s;
   transition-timing-function: var(--ease-in-out);
   will-change: width, transform;
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__nav {
   padding: var(--space-xs) 0;
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__btn {
   margin: 0 var(--space-xxxs);
   padding: var(--space-xxxs) var(--space-xs);
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
   transition: color 0.2s;
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__btn:hover {
   color: var(--color-contrast-higher);
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__btn[aria-current="true"] {
   color: var(--color-primary);
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__marker {
   /* animated marker */
   top: 0;
   left: 0;
   height: 100%;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   border-radius: var(--radius-md);
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__list {
   background-color: var(--color-bg-darker);
   padding: var(--space-xxxs);
   border-radius: 50em;
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__btn {
   padding: var(--space-xxxs) var(--space-sm);
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
   transition: color 0.2s;
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__btn:hover {
   color: var(--color-contrast-higher);
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__btn[aria-current="true"] {
   color: var(--color-primary);
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__marker {
   /* animated marker */
   top: var(--space-xxxs);
   left: 0;
   height: calc(100% - var(--space-xxxs) * 2);
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   border-radius: 50em;
}
.filter-nav--expanded.filter-nav--v3 .filter-nav__btn {
   padding: var(--space-xxxs) var(--space-sm);
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
   transition: color 0.2s;
}
.filter-nav--expanded.filter-nav--v3 .filter-nav__btn:hover {
   color: var(--color-contrast-higher);
}
.filter-nav--expanded.filter-nav--v3 .filter-nav__btn[aria-current="true"] {
   color: var(--color-primary);
}
.filter-nav--expanded.filter-nav--v3 .filter-nav__marker {
   /* animated marker */
   bottom: 0;
   left: 0;
   height: 1px;
   background-color: var(--color-primary);
}

/* --collapsed version - available horizontal space not enough to contain all list items */
.filter-nav--collapsed .filter-nav__wrapper {
   position: fixed;
   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;
}
.filter-nav--collapsed .filter-nav__wrapper--is-visible {
   visibility: visible;
   opacity: 1;
   transition: opacity 0.3s;
}
.filter-nav--collapsed .filter-nav__wrapper--is-visible .filter-nav__nav {
   transform: translateY(0);
   transition: transform 0.3s;
}
.filter-nav--collapsed .filter-nav__nav {
   display: flex;
   justify-content: flex-start;
   flex-direction: column;
   background-color: var(--color-bg);
   box-shadow: var(--shadow-md);
   max-height: 100%;
   transform: translateY(-1em);
}
.filter-nav--collapsed .filter-nav__list {
   order: 2;
   flex-direction: column;
   overflow: auto;
   padding: 0 0 var(--space-md);
}
.filter-nav--collapsed .filter-nav__list::before {
   /* top shadow - visible if menu height triggers vertical scrolling */
   content: "";
   display: block;
   width: 100%;
   height: 10px;
   background: linear-gradient(
      hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 1),
      hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0)
   );
   position: sticky;
   top: 0;
   left: 0;
   z-index: 1;
}
.filter-nav--collapsed .filter-nav__btn {
   display: block; /* fallback */
   display: flex;
   align-items: center;
   width: 100%;
   text-align: left;
   font-size: var(--text-md);
   padding: var(--space-xs) var(--space-sm);
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
   cursor: pointer;
}
.filter-nav--collapsed .filter-nav__btn:hover {
   color: var(--color-contrast-higher);
}
.filter-nav--collapsed .filter-nav__btn[aria-current="true"] {
   color: var(--color-primary);
}
.filter-nav--collapsed .filter-nav__btn::before {
   /* check icon next to the selected button */
   content: "";
   display: block;
   height: 16px;
   width: 16px;
   margin-right: var(--space-xxxs);
   background-color: transparent;
}
.filter-nav--collapsed .filter-nav__btn[aria-current="true"]::before {
   background-color: var(--color-primary); /* icon color */
   -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23000000' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
   mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23000000' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
}
.filter-nav--collapsed .filter-nav__marker {
   /* hide animated marker */
   display: none !important;
}
.filter-nav--collapsed .filter-nav__close-btn {
   /* X button */
   --size: 32px;
   width: var(--size);
   height: var(--size);
   display: flex;
   order: 1;
   flex-shrink: 0;
   position: relative;
   z-index: 2;
   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;
}
.filter-nav--collapsed .filter-nav__close-btn:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-md);
}
.filter-nav--collapsed .filter-nav__close-btn .icon {
   display: block;
   color: var(--color-contrast-high);
}

/* -------------------------------- 

File#: _1_filter
Title: Filter
Descr: A plugin to filter/sort items in a grid
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_flash-message
Title: Flash message
Descr: Modeless, non-interactive message to alert the user of a status change
Usage: codyhouse.co/license

-------------------------------- */
.flash-message {
   position: fixed;
   bottom: var(--space-md);
   left: var(--space-md);
   z-index: var(--z-index-fixed-element, 10);
   background-color: var(--color-bg-light);
   padding: var(--space-xs);
   box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-sm);
   border-radius: var(--radius-md);
   color: var(--color-contrast-high);
   font-size: var(--text-sm);
   transition: 0.2s;
   transform: translateY(16px);
   transform-origin: bottom left;
   opacity: 0;
   visibility: hidden;
}

.flash-message--is-visible {
   opacity: 1;
   visibility: visible;
   transform: translateY(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: 0.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 hsla(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_floating-label
Title: Floating Label
Descr: Input element w/ placeholder that morphs into a label
Usage: codyhouse.co/license

-------------------------------- */
.floating-label {
   background: var(--color-bg);
   padding: var(--space-xxxxs) var(--space-xxxs);
   border-radius: var(--radius-md);
   line-height: 1;
   font-size: var(--text-sm);
   color: var(--color-contrast-low);
   position: absolute;
   top: 0;
   left: calc(
      var(--space-sm) - var(--space-xxxs)
   ); /* calc((floating-label-control left padding) - (floating-label left padding)) */
   transform: translateY(-50%);
   transition:
      transform 0.2s var(--ease-out),
      color 0.2s;
   clip: auto;
   clip-path: none;
}

.floating-label-control {
   background-color: var(--color-bg);
   padding: var(--space-xs) calc(var(--space-sm) + 24px) var(--space-xs) var(--space-sm); /* 24px → icon size */
}

.floating-label-control:-moz-placeholder-shown {
   /* input with no content - placeholder is visible */
   background-color: var(--color-bg-dark);
}

.floating-label-control:placeholder-shown {
   /* input with no content - placeholder is visible */
   background-color: var(--color-bg-dark);
}
.floating-label-control:-moz-placeholder-shown + .floating-label {
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
   transform: translateY(-25%);
}
.floating-label-control:placeholder-shown + .floating-label {
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
   transform: translateY(-25%);
}

.floating-label-control ~ .icon {
   color: var(--color-contrast-medium);
   pointer-events: none;
}

/* focus */
.floating-label-control:focus {
   background-color: var(--color-bg);
}
.floating-label-control:focus ~ .icon {
   color: var(--color-primary);
}
.floating-label-control:focus + .floating-label {
   color: var(--color-primary);
}

/* -------------------------------- 

File#: _1_form-validator
Title: Form Validator
Descr: A plugin to validate form fields
Usage: codyhouse.co/license

-------------------------------- */
.form-validate__error-msg {
   display: none;
}
.form-validate__input-wrapper--error .form-validate__error-msg {
   display: block;
}

/* -------------------------------- 

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;
   background-color: var(--color-bg-dark);
}

.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_grid-background
Title: Grid Background
Descr: Grid background pattern
Usage: codyhouse.co/license

-------------------------------- */
.grid-bg-fx {
   pointer-events: none;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.grid-bg-fx__grid {
   position: relative;
   height: 100%;
}
.grid-bg-fx__grid::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: -1px;
   width: calc(100% + 2px);
   height: 100px;
   background: linear-gradient(
      hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0),
      hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 1)
   );
}
.grid-bg-fx__grid > * {
   position: relative;
   margin-bottom: 0 !important;
}
.grid-bg-fx__grid > *::before,
.grid-bg-fx__grid *::after {
   content: "";
   position: absolute;
   top: 0;
   height: 100%;
   width: 1px;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.grid-bg-fx__grid > *::before {
   left: -1px;
}
.grid-bg-fx__grid > *::after {
   right: 0;
}

/* -------------------------------- 

File#: _1_hero
Title: Hero
Descr: A full-width callout section
Usage: codyhouse.co/license

-------------------------------- */
.hero {
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center center;
}

.hero--overlay-layer::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.8);
   z-index: 1;
}

/* -------------------------------- 

File#: _1_how-it-works-v2
Title: How It Works v2
Descr: A list of steps showing how a product works
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --hiw-v2-gap: var(--space-lg);
   --hiw-v2-arrow-size: 40px;
}

.hiw-v2__grid {
   display: flex;
   flex-direction: column;
   gap: calc(var(--hiw-v2-gap) * 2 + var(--hiw-v2-arrow-size));
}

.hiw-v2__item {
   position: relative;
}
.hiw-v2__item:last-child .hiw-v2__arrow {
   display: none;
}

.hiw-v2__arrow {
   position: absolute;
   top: calc(100% + var(--hiw-v2-gap));
   left: calc(50% - var(--hiw-v2-arrow-size) / 2);
   width: var(--hiw-v2-arrow-size);
   height: var(--hiw-v2-arrow-size);
}

@media (min-width: 64rem) {
   /* layout swift */
   :root {
      --hiw-v2-gap: var(--space-md);
   }
   .hiw-v2__grid {
      flex-direction: row;
   }
   .hiw-v2__item {
      flex-grow: 1;
      flex-basis: 0;
      max-width: 100%;
      min-width: 0;
   }
   .hiw-v2__figure {
      position: relative;
   }
   .hiw-v2__arrow {
      top: calc(50% - var(--hiw-v2-arrow-size) / 2);
      left: calc(100% + var(--hiw-v2-gap));
      transform: rotate(-90deg);
   }
}
/* -------------------------------- 

File#: _1_how-it-works-v3
Title: How It Works v3
Descr: A list of steps showing how a product works
Usage: codyhouse.co/license

-------------------------------- */
.hiw-v3 {
   --hiw-v3-bullet-size: 40px;
   --hiw-v3-bullet-font-size: 16px;
   --hiw-v3-bullet-margin-right: var(--space-sm);
   --hiw-v3-gap-y: var(--space-lg);
   counter-reset: list-items;
}

.text-component .hiw-v3 {
   padding-left: 0;
   list-style: none;
}

.hiw-v3__item {
   position: relative;
   counter-increment: list-items;
}
.hiw-v3__item:not(:last-child)::before {
   content: "";
   position: absolute;
   top: var(--hiw-v3-bullet-size);
   left: calc(var(--hiw-v3-bullet-size) / 2 - 2px);
   width: 4px;
   height: calc(100% - var(--hiw-v3-bullet-size) / 2);
   background: linear-gradient(
      to bottom,
      hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 0) 0%,
      hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 1)
         calc(100% - var(--hiw-v3-bullet-size) / 2)
   );
}
.hiw-v3__item:not(:last-child) {
   padding-bottom: var(--hiw-v3-gap-y);
}
.hiw-v3__item:nth-last-child(2)::before {
   background: linear-gradient(
      to bottom,
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0) 0%,
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 1)
         calc(100% - var(--hiw-v3-bullet-size) / 2)
   );
}

.hiw-v3__title-wrapper {
   position: relative;
   margin-bottom: var(--space-xs);
}

.hiw-v3__title {
   padding-left: calc(var(--hiw-v3-bullet-size) + var(--hiw-v3-bullet-margin-right));
}

.hiw-v3__bullet {
   position: relative;
   margin-left: calc(-1 * var(--hiw-v3-bullet-size));
   left: calc(-1 * var(--hiw-v3-bullet-margin-right));
}
.hiw-v3__bullet::before {
   content: "X";
   display: inline-flex;
   width: var(--hiw-v3-bullet-size);
   overflow: hidden;
   pointer-events: none;
   opacity: 0;
}
.hiw-v3__bullet::after {
   content: counter(list-items);
   display: flex;
   align-items: center;
   justify-content: center;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
   width: var(--hiw-v3-bullet-size);
   height: var(--hiw-v3-bullet-size);
   background-color: var(--color-bg-dark);
   border-radius: 50%;
   font-size: var(--hiw-v3-bullet-font-size);
   font-weight: 600;
}

.hiw-v3__item:last-child .hiw-v3__bullet::after {
   background-color: var(--color-primary);
   color: var(--color-white);
}

.hiw-v3__content {
   padding-left: calc(var(--hiw-v3-bullet-size) + var(--hiw-v3-bullet-margin-right));
}

/* -------------------------------- 

File#: _1_how-it-works
Title: How It Works
Descr: A list of steps showing how a product works
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --hiw-counter-size: 2rem;
   --hiw-counter-font-size: 1rem;
   --hiw-line-stroke-width: 2px;
   --hiw-line-border-radius: 1em;
   --hiw-items-gap-x: var(--space-md); /* gap between counter and content */
   --hiw-items-gap-y: var(--space-xxl); /* gap between list items */
}
@media (min-width: 64rem) {
   :root {
      --hiw-counter-size: 3rem;
      --hiw-counter-font-size: 1.25rem;
   }
}

.hiw-list {
   counter-reset: hiw-list-items;
}

.hiw-list__item {
   position: relative;
   counter-increment: hiw-list-items;
}
.hiw-list__item:not(:last-child) {
   padding-bottom: calc(var(--hiw-items-gap-y) / 2);
   margin-bottom: calc(var(--hiw-items-gap-y) / 2);
}
.hiw-list__item::before,
.hiw-list__item::after {
   /* dashed line */
   content: "";
   position: absolute;
   width: calc(50% - var(--hiw-counter-size) / 2 + var(--hiw-line-stroke-width) / 2);
}
.hiw-list__item::before {
   top: calc(var(--hiw-counter-size) + var(--hiw-line-stroke-width));
   height: calc(100% - var(--hiw-counter-size) - var(--hiw-line-stroke-width));
   border-bottom: var(--hiw-line-stroke-width) dashed
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
}
.hiw-list__item::after {
   top: calc(100% - var(--hiw-line-stroke-width));
   height: calc(var(--hiw-items-gap-y) / 2);
   border-top: var(--hiw-line-stroke-width) dashed
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
}
.hiw-list__item:nth-child(2n + 1) {
   padding-right: calc(var(--hiw-counter-size) / 2);
}
.hiw-list__item:nth-child(2n + 1)::before {
   left: calc(var(--hiw-counter-size) / 2 - var(--hiw-line-stroke-width) / 2);
   border-left: var(--hiw-line-stroke-width) dashed
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
   border-bottom-left-radius: var(--hiw-line-border-radius);
}
.hiw-list__item:nth-child(2n + 1)::after {
   left: 50%;
   border-top-right-radius: var(--hiw-line-border-radius);
   border-right: var(--hiw-line-stroke-width) dashed
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
}
.hiw-list__item:nth-child(2n) {
   padding-left: calc(var(--hiw-counter-size) / 2);
}
.hiw-list__item:nth-child(2n) .hiw-list__item-inner {
   flex-direction: row-reverse;
}
.hiw-list__item:nth-child(2n)::before {
   border-right: var(--hiw-line-stroke-width) dashed
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
   right: calc(var(--hiw-counter-size) / 2 - var(--hiw-line-stroke-width) / 2);
   border-bottom-right-radius: var(--hiw-line-border-radius);
}
.hiw-list__item:nth-child(2n)::after {
   right: 50%;
   border-top-left-radius: var(--hiw-line-border-radius);
   border-left: var(--hiw-line-stroke-width) dashed
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
}
.hiw-list__item:last-child::before,
.hiw-list__item:last-child::after {
   display: none;
}

.hiw-list__item-inner {
   display: flex;
   gap: var(--hiw-items-gap-x);
}

.hiw-list__counter {
   width: var(--hiw-counter-size);
   height: var(--hiw-counter-size);
   border-radius: 50%;
   flex-shrink: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   border: var(--hiw-line-stroke-width) solid
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
   color: var(--color-primary);
   font-size: var(--hiw-counter-font-size);
}
.hiw-list__counter::before {
   content: counter(hiw-list-items);
}

@media (min-width: 64rem) {
   .hiw-list__item:nth-child(2n) .hiw-list__content {
      flex-direction: row-reverse;
   }
}
/* -------------------------------- 

File#: _1_image-magnifier
Title: Image Magnifier
Descr: Plugin to create a magnifying effect on an image
Usage: codyhouse.co/license

-------------------------------- */
.img-mag {
   overflow: hidden;
}

.img-mag__asset {
   display: block;
   width: 100%;
   transform-origin: left top;
}

/* -------------------------------- 

File#: _1_immersive-section-transition
Title: Immersive Section Transition
Descr: A media element that animates to a full-screen block, before transitioning to the next section of content
Usage: codyhouse.co/license

-------------------------------- */
.immerse-section-tr {
   position: relative;
   --immerse-section-tr-opacity: 0;
}

.immerse-section-tr__media {
   position: sticky;
   top: 0;
   z-index: 1;
   overflow: hidden;
   pointer-events: none;
}

.immerse-section-tr--disabled .immerse-section-tr__media {
   position: relative;
}

.immerse-section-tr__figure {
   will-change: transform;
   pointer-events: auto;
   position: relative;
   height: 0;
}
.immerse-section-tr__figure > * {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.immerse-section-tr__figure--16-9 {
   padding-bottom: 56.25%;
}

.immerse-section-tr__figure--3-4 {
   padding-bottom: 133.33%;
}

.immerse-section-tr__content {
   position: relative;
   z-index: 3;
   transform: translateZ(0);
}
.immerse-section-tr__content::after,
.immerse-section-tr__content::before {
   content: "";
   pointer-events: none;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   background: var(--color-bg);
   opacity: var(--immerse-section-tr-opacity, 0);
   pointer-events: none;
}
.immerse-section-tr__content::before {
   height: 100%;
   z-index: -1;
}
.immerse-section-tr__content::after {
   height: 100vh;
   transform: translateY(-100%);
}

.immerse-section-tr--disabled .immerse-section-tr__content::before {
   opacity: 1;
}

/* -------------------------------- 

File#: _1_input-group
Title: Input Group
Descr: A group of connected form elements, distributed on a single row
Usage: codyhouse.co/license

-------------------------------- */
.input-group {
   display: flex;
}
.input-group > * {
   position: relative;
}
.input-group > *:not(:last-child):not(:first-child) {
   border-radius: 0;
}
.input-group > *:first-child {
   border-top-right-radius: 0;
   border-bottom-right-radius: 0;
}
.input-group > *:first-child .select__input {
   border-top-right-radius: 0;
   border-bottom-right-radius: 0;
}
.input-group > *:last-child {
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
}
.input-group > *:last-child .select__input {
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
}
.input-group > *:focus,
.input-group *:focus-within {
   z-index: 1;
}

.input-group__tag {
   display: flex;
   align-items: center;
   padding: 0 var(--space-sm);
   background-color: var(--color-bg);
   border-radius: var(--radius-md);
   border: 1px solid var(--color-contrast-lower);
   white-space: nowrap;
   color: var(--color-contrast-medium);
}
.input-group__tag:first-child {
   border-right-width: 0px;
}
.input-group__tag:last-child {
   border-left-width: 0px;
}

/* custom select */
.input-group .select {
   --select-icon-size: 16px;
   --select-icon-right-margin: var(--space-sm);
   --select-text-icon-gap: var(--space-xxxs);
}
.input-group .select .input-group__tag:focus {
   outline: 2px solid var(--color-primary);
}

/* -------------------------------- 

File#: _1_input-icon
Title: Input Icon
Descr: Icon within form control
Usage: codyhouse.co/license

-------------------------------- */
.form-control-wrapper {
   --input-icon-size: 1em;
   --input-icon-text-gap: var(--space-xxs);
   position: relative;
}
.form-control-wrapper .form-control {
   width: 100%;
   height: 100%;
}
.form-control-wrapper .icon {
   display: block;
   position: absolute;
   width: var(--input-icon-size);
   height: var(--input-icon-size);
   top: calc(50% - var(--input-icon-size) / 2);
   pointer-events: none;
}

.form-control-wrapper--icon-left .icon {
   left: var(--form-control-padding-x);
}
.form-control-wrapper--icon-left .form-control {
   padding-left: calc(var(--form-control-padding-x) + var(--input-icon-size) + var(--input-icon-text-gap));
}

.form-control-wrapper--icon-right .icon {
   right: var(--form-control-padding-x);
}
.form-control-wrapper--icon-right .form-control {
   padding-right: calc(var(--form-control-padding-x) + var(--input-icon-size) + var(--input-icon-text-gap));
}

/* -------------------------------- 

File#: _1_input-merger
Title: Input Merger
Descr: Merge multiple input elements
Usage: codyhouse.co/license

-------------------------------- */
.input-merger:focus-within {
   /* ⚠️ copy here :focus style of .form-control in Framework > custom-style > _forms.scss */
}

.input-merger__input {
   width: 100%;
   font-size: 1em;
   /* line divider */
   background: linear-gradient(to right, transparent calc(100% - 1px), var(--color-contrast-low) 100%);
   background-size: 100% 50%;
   background-repeat: no-repeat;
   background-position: center center;
   /* ������ you can ovveride this padding by using the padding utility classes */
}
.input-merger__input:not([class^="padding-"]):not([class*=" padding-"]) {
   padding: var(--form-control-padding-y) var(--form-control-padding-x);
}
.input-merger__input:focus {
   outline: none;
}
.input-merger__input:last-of-type {
   background: transparent; /* remove divider if last element */
}

/* -------------------------------- 

File#: _1_invoice
Title: Invoice
Descr: Invoice template
Usage: codyhouse.co/license

-------------------------------- */
@media not print {
   .invoice {
      overflow: hidden;
      background-color: var(--color-bg-light);
      border-radius: var(--radius-md);
      box-shadow: var(--inner-glow), var(--shadow-sm);
      min-width: 800px;
   }
   .invoice__section {
      padding: var(--space-lg);
   }
   .invoice__section--bg {
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.05
      );
   }
}
@media print {
   .invoice__section {
      margin-bottom: var(--space-lg);
   }
   .invoice-btn-wrapper {
      display: none;
   }
}
.invoice__logo {
   width: 48px;
   height: 48px;
}

.invoice__label {
   font-weight: 700;
   font-size: var(--text-sm);
   color: var(--color-contrast-higher);
   margin-bottom: var(--space-xs);
}

.invoice__table {
   width: 100%;
   font-size: var(--text-sm);
}

.invoice__table-cell {
   text-align: left;
   padding: var(--space-xs) var(--space-xs) var(--space-xs) 0;
}

.invoice__paid-stamp {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: var(--space-xs);
   border-radius: var(--radius-md);
   border: 3px solid var(--color-success);
   font-size: var(--text-sm);
   font-weight: 700;
   line-height: 1px;
   color: var(--color-success);
   transform: rotate(-10deg);
}

/* -------------------------------- 

File#: _1_keyboard-input
Title: Keyboard Input
Descr: Custom style for the Keyboard Input inline element
Usage: codyhouse.co/license

-------------------------------- */
kbd {
   background-color: var(--color-bg);
   padding: var(--space-xxxxs) var(--space-xxxs);
   border-radius: var(--radius-md);
   box-shadow: inset 0 0 0 1px
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
   color: var(--color-contrast-medium);
}

/* -------------------------------- 

File#: _1_language-picker
Title: Language Picker
Descr: A custom selector allowing users to choose their preferred language on a page
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --picker-vertical-gap: 4px;
}

.language-picker {
   display: inline-block;
   position: relative;
}

.language-picker__form {
   display: none;
}

.language-picker__button .icon {
   height: 16px;
   width: 16px;
}
.language-picker__button .icon:first-of-type {
   margin-right: var(--space-xxxs);
}
.language-picker__button .icon:last-of-type {
   margin-left: var(--space-xxxs);
}

.language-picker__dropdown {
   position: absolute;
   left: 0;
   top: 100%;
   width: 200px;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-md);
   padding: var(--space-xxxs) 0;
   border-radius: var(--radius-md);
   z-index: var(--z-index-popover, 5);
   margin-top: var(--picker-vertical-gap);
   margin-bottom: var(--picker-vertical-gap);
   --space-unit: 1rem;
   --text-unit: 1rem;
   font-size: var(--text-unit);
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0s 0.2s,
      opacity 0.2s;
}

.language-picker__dropdown--right {
   right: 0;
   left: auto;
}

.language-picker__dropdown--up {
   bottom: 100%;
   top: auto;
}

.language-picker__button[aria-expanded="true"] + .language-picker__dropdown {
   visibility: visible;
   opacity: 1;
   transition:
      visibility 0s,
      opacity 0.2s;
}

.language-picker__item {
   display: flex;
   align-items: center;
   text-decoration: none;
   padding: var(--space-xxs) var(--space-sm);
   color: var(--color-contrast-high);
   transition: background 0.2s;
}
.language-picker__item span {
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
.language-picker__item:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.language-picker__item:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.1);
}
.language-picker__item[aria-selected="true"] {
   position: relative;
   background-color: var(--color-primary);
   color: var(--color-white);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
.language-picker__item[aria-selected="true"]:focus {
   outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.language-picker__item[aria-selected="true"]::after {
   content: "";
   height: 16px;
   width: 16px;
   background-color: currentColor;
   -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
   mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
   margin-left: auto;
}

.language-picker__flag {
   display: flex;
   align-items: center;
}
.language-picker__flag::before {
   display: none;
   flex-shrink: 0;
   content: "";
   height: 16px;
   width: 16px;
   margin-right: var(--space-xxs);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}
.language-picker__dropdown .language-picker__flag::before {
   margin-right: var(--space-xs);
}

.language-picker--flags .language-picker__flag::before {
   display: inline-block;
   display: inline-flex;
}
.language-picker--flags .language-picker__button .icon:first-of-type {
   display: none;
}

.language-picker__flag--deutsch::before {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M48,18H0V8c0-1.105,0.895-2,2-2h44c1.105,0,2,0.895,2,2V18z'/%3E%3Crect y='18' fill='%23EE0000' width='48' height='12'/%3E%3Cpath fill='%23FDCF00' d='M48,40c0,1.105-0.895,2-2,2H2c-1.105,0-2-0.895-2-2V30h48V40z'/%3E%3C/svg%3E");
}

.language-picker__flag--english::before {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23002781' d='M46,6H2C0.896,6,0,6.896,0,8v32c0,1.104,0.896,2,2,2h44c1.104,0,2-0.896,2-2V8C48,6.896,47.104,6,46,6z'/%3E%3Cpath fill='%23E6E6E6' d='M48,8c0-1.104-0.896-2-2-2h-5.161L28,15.876V6h-8v9.876L7.161,6H2C0.896,6,0,6.896,0,8v2.586L12.239,20H0v8 h12.239L0,37.415V40c0,1.104,0.896,2,2,2h5.161L20,32.124V42h8v-9.876L40.839,42H46c1.104,0,2-0.896,2-2v-2.585L35.761,28H48v-8 H35.761L48,10.586V8z'/%3E%3Cpolygon fill='%23D10D24' points='48,22 26,22 26,6 22,6 22,22 0,22 0,26 22,26 22,42 26,42 26,26 48,26 '/%3E%3Cpath fill='%23D10D24' d='M47.001,6.307L29.2,20h3.28L48,8.062V8C48,7.268,47.587,6.656,47.001,6.307z'/%3E%3Cpath fill='%23D10D24' d='M32.48,28H29.2l17.801,13.693C47.587,41.344,48,40.732,48,40v-0.062L32.48,28z'/%3E%3Cpath fill='%23D10D24' d='M15.52,28L0,39.938V40c0,0.732,0.413,1.344,0.999,1.693L18.8,28H15.52z'/%3E%3Cpath fill='%23D10D24' d='M15.52,20h3.28L0.999,6.307C0.413,6.656,0,7.268,0,8v0.062L15.52,20z'/%3E%3C/svg%3E");
}

.language-picker__flag--francais::before {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%2301209F' d='M16,42H2c-1.105,0-2-0.895-2-2V8c0-1.105,0.895-2,2-2h14V42z'/%3E%3Cpath fill='%23EF4234' d='M48,40c0,1.105-0.895,2-2,2H32V6h14c1.105,0,2,0.895,2,2V40z'/%3E%3Crect x='16' y='6' fill='%23E6E6E6' width='16' height='36'/%3E%3C/svg%3E");
}

.language-picker__flag--italiano::before {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23009345' d='M16,42H2c-1.105,0-2-0.895-2-2V8c0-1.105,0.895-2,2-2h14V42z'/%3E%3Cpath fill='%23CF2B36' d='M48,40c0,1.105-0.895,2-2,2H32V6h14c1.105,0,2,0.895,2,2V40z'/%3E%3Crect x='16' y='6' fill='%23E6E6E6' width='16' height='36'/%3E%3C/svg%3E");
}

.language-picker--hide-label .language-picker__button .icon {
   margin-left: 0;
}
.language-picker--hide-label .language-picker__button .icon:first-of-type {
   display: none;
}
.language-picker--hide-label .language-picker__button em {
   display: none;
}
.language-picker--hide-label .language-picker__button .language-picker__flag::before {
   margin-right: var(--space-xxxs);
}

.language-picker--hide-label .language-picker__flag::before {
   display: inline-block;
   display: inline-flex;
}

/* -------------------------------- 

File#: _1_lazy-load
Title: Lazy Load
Descr: A plugin used to load assets when they enter the viewport
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_link-card
Title: Link Card
Descr: Link card for app UI
Usage: codyhouse.co/license

-------------------------------- */
.link-card {
   text-decoration: none;
   color: inherit;
   box-shadow: var(--inner-glow), var(--shadow-xs);
   transition: 0.3s;
}
.link-card:hover {
   box-shadow: var(--inner-glow), var(--shadow-sm);
}

.link-card__footer {
   position: relative;
   overflow: hidden;
   height: 60px;
}
.link-card__footer > * {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: 0.3s;
}
.link-card__footer > *:last-child {
   transform: translateY(100%);
   opacity: 0;
}

.link-card:hover .link-card__footer > *:first-child {
   transform: translateY(-100%);
   opacity: 0;
}
.link-card:hover .link-card__footer > *:last-child {
   transform: translateY(0);
   opacity: 1;
}

/* -------------------------------- 

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-filter
Title: List Filter
Descr: A list of filterable search items
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --list-filter-height: 240px;
}

.list-filter__form {
   overflow: hidden;
}

.list-filter__search {
   position: relative;
   width: 100%;
   z-index: 1;
}
.list-filter__search::-webkit-search-decoration,
.list-filter__search::-webkit-search-cancel-button,
.list-filter__search::-webkit-search-results-button,
.list-filter__search::-webkit-search-results-decoration {
   -webkit-appearance: none;
}
.list-filter__search::-ms-clear,
.list-filter__search::-ms-reveal {
   display: none;
   width: 0;
   height: 0;
}
.list-filter__search:focus {
   outline: none;
}
.list-filter__search:focus + .list-filter__focus-marker {
   opacity: 1;
}
.list-filter__search:-moz-placeholder-shown ~ .list-filter__search-cancel-btn {
   display: none;
}
.list-filter__search:placeholder-shown ~ .list-filter__search-cancel-btn {
   display: none;
}

.list-filter__search-cancel-btn {
   /* custom search cancel button */
   display: inline-block;
   position: absolute;
   z-index: 2;
   color: var(--color-contrast-medium);
   top: 50%;
   transform: translateY(-50%);
   cursor: pointer;
   border-radius: 50%;
}
.list-filter__search-cancel-btn:hover {
   opacity: 0.85;
}

.list-filter__focus-marker {
   display: block;
   height: 1em;
   width: 3px;
   background-color: var(--color-primary);
   position: absolute;
   left: 0;
   top: calc(50% - 0.5em);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s;
}

.list-filter__list-wrapper {
   position: relative;
   height: var(--list-filter-height);
}

.list-filter__list {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
}

.list-filter__item {
   display: flex;
   align-items: center;
   cursor: default;
   transition: background-color 0.2s;
}
.list-filter__item:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}

.list-filter__status {
   display: block;
   flex-shrink: 0;
   --size: 8px;
   width: var(--size);
   height: var(--size);
   border-radius: 50%;
}
.list-filter__item--user-active .list-filter__status {
   background-color: var(--color-success);
}
.list-filter__item--user-active .list-filter__status::after {
   content: "user active";
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}
.list-filter__item--user-pending .list-filter__status {
   background-color: var(--color-warning);
}
.list-filter__item--user-pending .list-filter__status::after {
   content: "user pending";
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

.list-filter__action-btn {
   display: flex;
   flex-shrink: 0;
   background-color: var(--color-bg);
   border: 1px solid
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
   border-radius: 50%;
   width: 24px;
   height: 24px;
   cursor: pointer;
   transition: 0.2s;
}
.list-filter__action-btn .icon {
   margin: auto;
}
.list-filter__action-btn:hover {
   border-color: var(--color-error);
   color: var(--color-error);
}

/* -------------------------------- 

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-v3
Title: List v3
Descr: Custom list component
Usage: codyhouse.co/license

-------------------------------- */
.list-v3 {
   --list-v3-gap: var(--space-md);
   /* icon wrapper */
   --list-v3-figure-size: 48px;
   --list-v3-icon-size: 24px;
}
@media (min-width: 64rem) {
   .list-v3 {
      --list-v3-figure-size: 64px;
   }
}

.list-v3__item:not(:first-child) {
   padding-top: var(--list-v3-gap);
}
.list-v3__item:not(:last-child) {
   padding-bottom: var(--list-v3-gap);
   border-bottom: 1px solid
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
}

.list-v3__figure {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   width: var(--list-v3-figure-size);
   height: var(--list-v3-figure-size);
   border-radius: 50%;
   position: relative;
   overflow: hidden;
}
.list-v3__figure img,
.list-v3__figure .list-v3__icon {
   position: relative;
   z-index: 1;
}
.list-v3__figure::before {
   content: "";
   position: absolute;
   inset: 0;
   border-radius: inherit;
   background: currentColor;
   opacity: 0.2;
}

.list-v3__icon {
   --size: var(--list-v3-icon-size);
}

.list-v3__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% 2px;
   background-repeat: no-repeat;
   background-position: 100% 100%;
   transition: background-position 0.3s;
}
.list-v3__link:hover {
   background-position: 0% 100%;
}

/* -------------------------------- 

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_looping-tabs
Title: Looping Tabs
Descr: Accessible tabbed content that loops automatically from one item to the next
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --loop-tabs-fill-size: 1px;
   --loop-tabs-animation-duration: 0.5s;
}

.loop-tabs {
   position: relative;
   z-index: 1;
}

.loop-tabs__media {
   display: none;
}

.loop-tabs__assets,
.loop-tabs__panels {
   position: relative;
}

.loop-tabs__asset,
.loop-tabs__panel {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1;
   opacity: 0;
   visibility: hidden;
   transition:
      opacity var(--loop-tabs-animation-duration),
      visibility var(--loop-tabs-animation-duration),
      transform var(--loop-tabs-animation-duration);
}

.loop-tabs__asset {
   transform: scale(0.9);
}

.loop-tabs__asset--selected,
.loop-tabs__panel--selected {
   position: relative;
   opacity: 1;
   z-index: 2;
   visibility: visible;
}

.loop-tabs__asset--selected {
   transform: scale(1);
}

.loop-tabs__asset--exit {
   transform: scale(1.1);
}

.loop-tabs__control {
   display: block;
   position: relative;
   text-decoration: none;
   color: var(--color-contrast-low);
   --loop-tabs-filling: 0;
}
.loop-tabs__control::before,
.loop-tabs__control::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   height: var(--loop-tabs-fill-size);
   width: 100%;
}
.loop-tabs__control::before {
   background-color: var(--color-contrast-lower);
}
.loop-tabs__control::after {
   transform: scaleX(0);
   transform-origin: left top;
}
.loop-tabs__control:focus {
   outline: none;
}
.loop-tabs__control:focus::after,
.loop-tabs--autoplay-off .loop-tabs__control::after {
   transform: scaleX(1);
}

.loop-tabs__control--selected {
   color: var(--color-contrast-high);
}
.loop-tabs__control--selected::after {
   transform: scaleX(var(--loop-tabs-filling));
   background-color: currentColor;
}

.loop-tabs__media {
   display: flex;
   justify-content: center;
}

@media (min-width: 64rem) {
   .loop-tabs__control::before,
   .loop-tabs__control::after {
      width: var(--loop-tabs-fill-size);
      height: 100%;
   }
   .loop-tabs__control::after {
      transform: scaleY(0);
   }
   .loop-tabs__control--selected::after {
      transform: scaleY(var(--loop-tabs-filling));
   }
   .loop-tabs__control:focus::after,
   .loop-tabs--autoplay-off .loop-tabs__control::after {
      transform: scaleY(1);
   }
}
/* -------------------------------- 

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-v3
Title: Main Footer v3
Descr: Footer navigation template
Usage: codyhouse.co/license

-------------------------------- */
.footer-v3 {
   position: relative;
   z-index: 1;
}

.footer-v3__logo a,
.footer-v3__logo svg,
.footer-v3__logo img {
   width: 104px;
   height: 30px;
   display: block;
}

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

.footer-v3__nav-item {
   margin-bottom: var(--space-sm);
}
.footer-v3__nav-item a {
   color: var(--color-contrast-high);
   font-size: 1.25em;
}
.footer-v3__nav-item a:hover {
   color: var(--color-primary);
}

.footer-v3__socials {
   display: flex;
   align-items: center;
}
.footer-v3__socials a {
   text-decoration: none;
   display: inline-block;
   margin: 0 var(--space-xs) 0 0;
   color: var(--color-contrast-high);
}
.footer-v3__socials a:hover {
   color: var(--color-primary);
}
.footer-v3__socials a .icon {
   display: block;
   width: 1.25em;
   height: 1.25em;
}

@supports (display: grid) {
   @media (min-width: 64rem) {
      .footer-v3__container {
         display: grid;
         grid-template-columns: 130px 1fr 130px;
      }
      .footer-v3__nav {
         margin: 0;
      }
      .footer-v3__nav-list {
         display: flex;
         height: 100%;
         align-items: center;
         justify-content: center;
         flex-wrap: wrap;
      }
      .footer-v3__nav-item {
         padding: 0 var(--space-xs);
         margin: 0;
         position: relative;
      }
      .footer-v3__nav-item a {
         font-size: 0.875em;
      }
      .footer-v3__nav-item::after {
         content: "";
         display: inline-block;
         position: absolute;
         height: 0.8em;
         width: 1px;
         right: 0;
         top: calc(50% - 0.4em);
         background-color: var(--color-contrast-lower);
      }
      .footer-v3__nav-item:first-child {
         padding-left: 0;
      }
      .footer-v3__nav-item:last-child {
         padding-right: 0;
      }
      .footer-v3__nav-item:last-child::after {
         display: none;
      }
      .footer-v3__socials a {
         margin: 0 0 0 var(--space-xs);
      }
      .footer-v3__socials a .icon {
         width: 1em;
         height: 1em;
      }
   }
}
/* -------------------------------- 

File#: _1_main-footer-v4
Title: Main Footer v4
Descr: Footer navigation template
Usage: codyhouse.co/license

-------------------------------- */
.footer-v4 {
   position: relative;
   z-index: 1;
}

.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);
   font-size: 1.25em;
}
.footer-v4__nav-item a:hover {
   color: var(--color-primary);
}

.footer-v4__logo {
   margin-bottom: var(--space-sm);
}
.footer-v4__logo a,
.footer-v4__logo svg,
.footer-v4__logo img {
   width: 104px;
   height: 30px;
   display: block;
}

.footer-v4__print {
   color: var(--color-contrast-medium);
   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 a {
      font-size: 0.75em;
   }
   .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-footer-v5
Title: Main Footer v5
Descr: Footer navigation template
Usage: codyhouse.co/license

-------------------------------- */
.footer-v5 {
   position: relative;
   z-index: 1;
}

.footer-v5__popular-link {
   display: inline-block;
   padding: var(--space-xxs);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   border-radius: var(--radius-md);
   color: var(--color-contrast-medium);
   line-height: 1;
   transition: 0.2s;
}
.footer-v5__popular-link:hover {
   color: var(--color-contrast-high);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}

.footer-v5__back-to-top {
   color: var(--color-contrast-medium);
   transition: color 0.2s;
}
.footer-v5__back-to-top:hover {
   color: var(--color-contrast-high);
}

.footer-v5__link {
   color: var(--color-contrast-medium);
   text-decoration: none;
   transition: color 0.2s;
}
.footer-v5__link:hover {
   color: var(--color-contrast-high);
   text-decoration: underline;
}

.footer-v5__social-btn {
   display: block;
   text-decoration: none;
   color: var(--color-contrast-medium);
   transition: color 0.2s;
}
.footer-v5__social-btn .icon {
   display: block;
}
.footer-v5__social-btn:hover {
   color: var(--color-contrast-high);
}

/* -------------------------------- 

File#: _1_main-footer-v6
Title: Main Footer v6
Descr: Footer navigation template
Usage: codyhouse.co/license

-------------------------------- */
.footer-v6 {
   position: relative;
   z-index: 1;
}

.footer-v6__link {
   color: var(--color-contrast-medium);
   text-decoration: none;
   transition: color 0.2s;
}
.footer-v6__link:hover {
   color: var(--color-primary);
   text-decoration: underline;
}

.footer-v6__link-icon {
   display: inline-flex;
   width: 30px;
   height: 30px;
   color: var(--color-contrast-medium);
   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;
}
.footer-v6__link-icon .icon {
   font-size: 16px;
   margin: auto;
}
.footer-v6__link:hover .footer-v6__link-icon {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      1
   );
   color: var(--color-bg);
}

/* -------------------------------- 

File#: _1_main-footer
Title: Main Footer
Descr: Footer navigation
Usage: codyhouse.co/license

-------------------------------- */
.main-footer__logo {
   display: inline-block;
}
.main-footer__logo svg,
.main-footer__logo img {
   display: block;
}

.main-footer__link {
   color: var(--color-contrast-medium);
   text-decoration: none;
}
.main-footer__link:hover {
   color: var(--color-contrast-high);
   text-decoration: underline;
}

.main-footer__social {
   text-decoration: none;
   display: inline-block;
   color: var(--color-contrast-medium);
}
.main-footer__social:hover {
   color: var(--color-contrast-high);
}
.main-footer__social .icon {
   font-size: 1.2em;
}
@media (min-width: 64rem) {
   .main-footer__social .icon {
      font-size: 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_masonry
Title: Masonry
Descr: Gallery with elements laid out in optimal position based on available vertical space
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --masonry-grid-gap: var(--space-sm);
   --masonry-col-auto-size: 280px;
}

.masonry__loader {
   display: none;
}

.masonry__list {
   display: flex;
   flex-wrap: wrap;
   margin-right: calc(-1 * var(--masonry-grid-gap));
   margin-bottom: calc(-1 * var(--masonry-grid-gap));
}

.masonry__item {
   display: inline-block;
   width: var(--masonry-col-auto-size);
   margin-right: var(--masonry-grid-gap);
   margin-bottom: var(--masonry-grid-gap);
}

.masonry {
   position: relative;
}

.masonry__loader {
   display: block;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   top: 0;
}

.masonry__list {
   opacity: 0;
   transition: opacity 0.4s;
}

.masonry--loaded .masonry__loader {
   display: none;
}
.masonry--loaded .masonry__list {
   opacity: 1;
}

@supports (flex-basis: 0px) {
   .masonry__list {
      flex-direction: column;
   }
   .masonry__item {
      flex-basis: 0px;
   }
}
/* -------------------------------- 

File#: _1_menu
Title: Menu
Descr: Application menu that provides access to a set of functionalities
Usage: codyhouse.co/license

-------------------------------- */
.menu {
   --menu-vertical-gap: 4px; /* vertical gap between the Menu element and its control */
   --menu-item-padding: var(--space-xxxs) var(--space-xs);
   list-style: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   position: fixed; /* top/left position set in JS */
   z-index: var(--z-index-popover, 5);
   width: 220px;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-md);
   padding: var(--space-xxs) 0;
   border-radius: var(--radius-md);
   margin-top: var(--menu-vertical-gap);
   margin-bottom: var(--menu-vertical-gap);
   overflow: auto;
   /* use rem units */
   --space-unit: 1rem;
   --text-unit: 1rem;
   font-size: var(--text-unit);
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0s 0.2s,
      opacity 0.2s;
}

.menu--is-visible {
   visibility: visible;
   opacity: 1;
   transition:
      visibility 0s,
      opacity 0.2s;
}

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

.menu__content {
   display: flex;
   align-items: center;
   padding: var(--menu-item-padding);
   text-decoration: none; /* reset link style */
   color: var(--color-contrast-high);
   cursor: pointer;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   transition: 0.2s;
}
.menu__content:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.menu__content:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}

.menu__label {
   padding: var(--menu-item-padding);
   font-size: var(--text-sm);
   color: var(--color-contrast-medium);
}

.menu__separator {
   height: 1px;
   background-color: var(--color-contrast-lower);
   margin: var(--menu-item-padding);
}

.menu__icon {
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
   margin-right: var(--space-xxs);
}

/* -------------------------------- 

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_morphing-background
Title: Morphing Background
Descr: A morphing background item that transitions from one element's position to another's
Usage: codyhouse.co/license

-------------------------------- */
.morph-bg {
   position: absolute;
   top: 0;
   left: 0;
   height: 1px;
   width: 1px;
   pointer-events: none;
   opacity: 0;
   transition: opacity 0.3s;
   transform-origin: left top;
   backface-visibility: hidden;
}

.morph-bg--visible {
   opacity: 1;
}

.morph-bg--has-transition {
   transition: 0.3s;
   will-change: transform, border-radius, height, width;
}

/* --------------------------------

File#: _1_newsletter-card
Title: Newsletter Card
Descr: A card containing a newsletter form
Usage: codyhouse.co/license

-------------------------------- */
/* --------------------------------

File#: _1_newsletter-input
Title: Newsletter Input
Descr: Animated newsletter input
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --news-form-input-height: 48px;
   --news-form-input-padding-x: 18px;
   --news-form-input-radius: 50em;
   --news-form-btn-margin: 4px;
   --news-form-btn-padding-x: 16px;
   --news-form-icon-size: 24px;
}

.news-form__wrapper {
   position: relative;
}

.news-form__input {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
   padding: 0 var(--news-form-input-padding-x);
   border-radius: var(--news-form-input-radius);
   width: 100%;
   height: var(--news-form-input-height);
   transition: 0.2s;
}
.news-form__input:focus {
   outline: none;
   background-color: var(--color-bg);
   box-shadow:
      var(--shadow-md),
      0 0 0 2px var(--color-primary);
}

.news-form__btn {
   display: inline-block;
   overflow: hidden;
   position: absolute;
   top: var(--news-form-btn-margin);
   right: var(--news-form-btn-margin);
   height: calc(var(--news-form-input-height) - 2 * var(--news-form-btn-margin));
   padding: 0 var(--news-form-btn-padding-x);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.9);
   border-radius: calc(var(--news-form-input-radius) * 0.85);
   box-shadow: var(--shadow-sm);
   font-size: var(--text-sm);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   cursor: pointer;
   transition: 0.2s;
}
.news-form__btn > * {
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: transform 0.3s var(--ease-out);
}
.news-form__btn > *:last-child {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transform: translateY(100%);
}

.news-form__icon {
   display: block;
   width: var(--news-form-icon-size);
   height: var(--news-form-icon-size);
}
.news-form__icon > * {
   transform-origin: 50% 50%;
}

.news-form__icon-circle {
   stroke-dashoffset: 160;
   stroke-dasharray: 32;
}

.news-form__icon-check {
   stroke-dashoffset: 30;
   stroke-dasharray: 30;
}

.news-form__icon-excl-line {
   stroke-dashoffset: 14;
   stroke-dasharray: 14;
}

.news-form__icon-excl-dot {
   transform-origin: 12px 21.5px;
   transform: scale(0);
}

.news-form--enabled .news-form__btn {
   background-color: var(--color-primary);
   color: var(--color-white);
}
.news-form--enabled .news-form__btn:hover {
   background-color: var(--color-primary-dark);
}

.news-form--loading .news-form__btn > *:first-child {
   transform: translateY(-100%);
}
.news-form--loading .news-form__btn > *:last-child {
   transform: translateY(0);
}

.news-form--circle-loop .news-form__icon-circle {
   animation: news-input-circle-anim-loader 1s var(--ease-in-out);
}

.news-form--success .news-form__btn > *,
.news-form--error .news-form__btn > * {
   transition: none;
}
.news-form--success .news-form__btn > *:first-child,
.news-form--error .news-form__btn > *:first-child {
   transform: translateY(-100%);
}
.news-form--success .news-form__btn > *:last-child,
.news-form--error .news-form__btn > *:last-child {
   transform: translateY(0);
}

.news-form--success .news-form__icon-circle {
   animation: news-input-circle-anim-success 1s var(--ease-in-out) forwards;
}
.news-form--success .news-form__icon-check {
   animation: news-input-check-anim-success 0.5s 0.8s var(--ease-in-out) forwards;
}

.news-form--error .news-form__icon-circle {
   animation: news-input-circle-anim-error 0.8s var(--ease-in-out) forwards;
}
.news-form--error .news-form__icon-excl-line {
   animation: news-input-line-anim-error 0.3s 0.6s var(--ease-in-out) forwards;
}
.news-form--error .news-form__icon-excl-dot {
   animation: news-input-dot-anim-error 0.3s 0.9s var(--ease-out) forwards;
}

@keyframes news-input-circle-anim-loader {
   from {
      transform: rotate(0);
      stroke-dashoffset: 160;
   }
   to {
      stroke-dashoffset: 96;
      transform: rotate(-180deg);
   }
}
@keyframes news-input-circle-anim-success {
   from {
      transform: rotate(0);
      stroke-dashoffset: 160;
   }
   to {
      transform: rotate(-180deg);
      stroke-dashoffset: 96;
   }
}
@keyframes news-input-circle-anim-error {
   from {
      transform: rotate(0);
      stroke-dashoffset: 160;
   }
   to {
      transform: rotate(-90deg);
      stroke-dashoffset: 96;
   }
}
@keyframes news-input-check-anim-success {
   from {
      stroke-dashoffset: 30;
   }
   to {
      stroke-dashoffset: 0;
   }
}
@keyframes news-input-line-anim-error {
   from {
      stroke-dashoffset: 14;
   }
   to {
      stroke-dashoffset: 0;
   }
}
@keyframes news-input-dot-anim-error {
   from {
      transform: translateY(-4px) scale(0);
   }
   to {
      transform: translateY(0) scale(1);
   }
}
.news-form__msg {
   position: absolute;
   z-index: var(--z-index-popover, 5);
   top: calc(14px + var(--news-form-input-height));
   left: 5%;
   width: 90%;
   border-top-left-radius: 0;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-10px);
   transition:
      opacity 0.3s,
      visibility 0s 0.3s,
      transform 0.3s var(--ease-out);
}
.news-form__msg::before {
   content: "";
   width: 12px;
   height: 10px;
   background-color: inherit;
   position: absolute;
   left: 0;
   bottom: calc(100% - 1px);
   clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}

.news-form__msg--success {
   background-color: var(--color-success-lighter);
   color: var(--color-black);
}

.news-form__msg--error {
   background-color: var(--color-error);
   color: var(--color-white);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

.news-form--success .news-form__msg--success,
.news-form--error .news-form__msg--error {
   opacity: 1;
   visibility: visible;
   transform: translateY(0px);
   transition:
      opacity 0.3s 1s,
      transform 0.3s 1s var(--ease-out);
}

/* -------------------------------- 

File#: _1_newsletter
Title: Newsletter 
Descr: Newsletter form template
Usage: codyhouse.co/license

-------------------------------- */
.newsletter {
   position: relative;
   z-index: 1;
}

/* -------------------------------- 

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_note
Title: Note
Descr: A brief piece of information given to the user
Usage: codyhouse.co/license

-------------------------------- */
.note {
   background-color: var(--color-bg-light);
   border-left: 3px solid var(--color-primary);
   box-shadow: var(--shadow-sm);
   /* ������ you can ovveride this padding using the padding utility classes */
}
.note:not([class^="padding-"]):not([class*=" padding-"]) {
   padding: var(--space-sm);
}

.note--warning {
   border-left-color: var(--color-warning);
}

.note--error {
   border-left-color: var(--color-error);
}

.note--success {
   border-left-color: var(--color-success);
}

.text-component {
   /* reset in case the component is used inside a .text-component */
}
.text-component .note__content > *:last-child {
   margin-bottom: 0;
}
.text-component .note__title {
   margin-bottom: 0;
}

/* -------------------------------- 

File#: _1_notice
Title: Notice 
Descr: Modeless notice banner, visible by default
Usage: codyhouse.co/license

-------------------------------- */
.notice {
   position: fixed;
   width: 100%;
   pointer-events: none;
   z-index: var(--z-index-fixed-element, 10);
}

.notice__banner {
   pointer-events: auto;
}

.notice__close-btn {
   --size: 32px;
   display: flex;
   width: var(--size);
   height: var(--size);
   flex-shrink: 0;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.5
   );
   color: var(--color-bg);
   transition: 0.2s;
}
.notice__close-btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.7
   );
}
.notice__close-btn .icon {
   --size: 16px;
}

.notice--hide {
   opacity: 0;
   visibility: hidden;
}

@media screen and (prefers-reduced-motion: no-preference) {
   .notice {
      transition:
         opacity 0.3s,
         visibility 0s 0.3s;
   }
   .notice__banner {
      transition: transform 0.3s;
   }
   .notice--hide .notice__banner {
      transform: translateY(20px);
   }
}
/* -------------------------------- 

File#: _1_notifications
Title: Notifications
Descr: A list of notification items
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --notif-figure-size: 48px;
}

.notif {
   position: relative;
   z-index: 1;
}

.notif__item:not(:last-child) {
   border-bottom: 1px solid var(--color-contrast-lower);
}

.notif__link {
   text-decoration: none;
   color: inherit;
   transition: 0.2s;
}
.notif__link:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}

.notif__figure {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   width: var(--notif-figure-size);
   height: var(--notif-figure-size);
   border-radius: 50%;
   overflow: hidden;
   flex-shrink: 0;
}
.notif__figure > * {
   position: relative;
   z-index: 1;
}
.notif__figure img {
   display: block;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}
.notif__figure::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: inherit;
   background-color: currentColor;
   opacity: 0.15;
}

.notif__dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background-color: var(--color-primary);
   align-self: center;
   flex-shrink: 0;
}

/* -------------------------------- 

File#: _3_product-color-feature
Title: Product Color Feature
Descr: A section displaying the color variations of a product
Usage: codyhouse.co/license

-------------------------------- */
.prod-color-feature {
   --slideshow-height: auto;
}

@media (min-width: 64rem) {
   .prod-color-feature .color-swatches {
      --color-swatch-size: 24px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin: 0 !important;
   }
   .prod-color-feature .color-swatches__legend {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px);
      -webkit-clip-path: inset(50%);
      clip-path: inset(50%);
   }
   .prod-color-feature .color-swatches__list {
      grid-template-columns: var(--color-swatch-size);
   }
}

/* -------------------------------- 

File#: _1_number-input
Title: Number input
Descr: Number input field with custom increment buttons
Usage: codyhouse.co/license

-------------------------------- */
.number-input__btn {
   display: none;
}

.number-input .form-control::-webkit-inner-spin-button,
.number-input .form-control::-webkit-outer-spin-button {
   display: none;
}
.number-input .form-control {
   -moz-appearance: textfield;
   display: block;
}

.number-input__btn {
   display: flex;
   background: var(--color-contrast-lower);
}
.number-input__btn:hover {
   background-color: var(--color-contrast-low);
}
.number-input__btn:focus {
   outline: none;
   background-color: var(--color-primary);
}
.number-input__btn:focus .icon {
   color: var(--color-white);
}
.number-input__btn:active {
   background-color: hsl(var(--color-primary-h), var(--color-primary-s), calc(var(--color-primary-l) * 0.9));
}
.number-input__btn .icon {
   --size: var(--number-input-icon-size, 12px);
   display: block;
   margin: auto;
}

.number-input--v1 {
   --number-input-btn-width: 1.75em;
   --number-input-btn-gap: 4px;
   --number-input-btn-input-gap: var(--space-xxxs);
   --number-input-icon-size: 8px;
   position: relative;
}
.number-input--v1 .form-control {
   padding-right: calc(var(--number-input-btn-width) + var(--number-input-btn-input-gap) * 2);
   width: 100%;
   height: 100%;
}
.number-input--v1 .number-input__btns {
   position: absolute;
   top: var(--number-input-btn-input-gap);
   right: var(--number-input-btn-input-gap);
   width: var(--number-input-btn-width);
   height: calc(100% - var(--number-input-btn-input-gap) * 2);
}
.number-input--v1 .number-input__btn {
   position: absolute;
   width: 100%;
   height: calc(50% - var(--number-input-btn-gap) / 2);
   border-radius: var(--radius-sm);
}
.number-input--v1 .number-input__btn.number-input__btn--plus {
   top: 0;
}
.number-input--v1 .number-input__btn.number-input__btn--minus {
   bottom: 0;
}

.number-input--v2 {
   --number-input-btn-width: 1.6em;
   --number-input-btn-input-gap: var(--space-xxxs);
   --number-input-icon-size: 12px;
   display: flex;
   align-items: center;
}
.number-input--v2 .form-control {
   margin: 0 var(--number-input-btn-input-gap);
   order: 1;
   flex-grow: 1;
   text-align: center;
}
.number-input--v2 .number-input__btn {
   width: var(--number-input-btn-width);
   height: var(--number-input-btn-width);
   border-radius: 50%;
   flex-shrink: 0;
}
.number-input--v2 .number-input__btn--plus {
   order: 2;
}

/* -------------------------------- 

File#: _1_off-canvas-content
Title: Off-Canvas Content
Descr: An off-canvas section used for complementary content
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --off-canvas-panel-width: 400px;
   --off-canvas-panel-width-opposite: -400px;
   --off-canvas-animation-duration: 0.4s;
}

.off-canvas {
   overflow: hidden;
}

.off-canvas__main {
   position: relative;
   z-index: 2;
   height: 100vh;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   will-change: transform;
   transition: transform var(--off-canvas-animation-duration) var(--ease-in-out);
}

.off-canvas--visible .off-canvas__main {
   transform: translateX(100%);
}

@media (min-width: 32rem) {
   .off-canvas--visible:not(.off-canvas--full-width) .off-canvas__main {
      transform: translateX(var(--off-canvas-panel-width));
   }
}
.off-canvas--right.off-canvas--visible .off-canvas__main {
   transform: translateX(-100%);
}

@media (min-width: 32rem) {
   .off-canvas--right.off-canvas--visible:not(.off-canvas--full-width) .off-canvas__main {
      transform: translateX(var(--off-canvas-panel-width-opposite));
   }
}
.off-canvas--bottom.off-canvas--visible .off-canvas__main {
   transform: translateY(-100%);
}

.off-canvas--top.off-canvas--visible .off-canvas__main {
   transform: translateY(100%);
}

.off-canvas__close-btn {
   display: none;
}

.off-canvas__panel {
   position: fixed;
   z-index: 1;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   visibility: hidden;
   background-color: var(--color-bg-dark);
   transition: visibility var(--off-canvas-animation-duration);
}
.off-canvas__panel:focus {
   outline: none;
}

@media (min-width: 32rem) {
   .off-canvas:not(.off-canvas--full-width) .off-canvas__panel {
      width: var(--off-canvas-panel-width);
   }
}
.off-canvas__content {
   height: 100%;
   overflow-y: auto;
   -webkit-overflow-scrolling: touch;
   transform: translateX(-50%);
   will-change: transform;
   transition: transform var(--off-canvas-animation-duration) var(--ease-in-out);
}

.off-canvas__close-btn {
   --size: 32px;
   width: var(--size);
   height: var(--size);
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   background-color: var(--color-bg);
   box-shadow: var(--inner-glow), var(--shadow-xs);
   transition: 0.3s;
}
.off-canvas__close-btn:hover {
   box-shadow: var(--inner-glow), var(--shadow-sm);
}

.off-canvas--visible .off-canvas__panel {
   visibility: visible;
}
.off-canvas--visible .off-canvas__content {
   transform: translateX(0);
}
.off-canvas--visible.off-canvas--bottom,
.off-canvas--visible.off-canvas--top {
   transform: translateY(0);
}

.off-canvas--right .off-canvas__panel {
   left: auto;
   right: 0;
}
.off-canvas--right:not(.off-canvas--visible) .off-canvas__content {
   transform: translateX(50%);
}

.off-canvas--bottom:not(.off-canvas--visible) .off-canvas__content {
   transform: translateY(50px);
}

.off-canvas--top:not(.off-canvas--visible) .off-canvas__content {
   transform: translateY(-50px);
}

.off-canvas--full-width .off-canvas__close-btn {
   width: 40px;
   height: 40px;
}
@media (min-width: 64rem) {
   .off-canvas--full-width {
      --off-canvas-animation-duration: 0.65s;
   }
}

/* -------------------------------- 

File#: _1_order-summary
Title: Order Summary
Descr: A template showing a recap of the cart items
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --order-summary-img-size: 3.6em;
   --order-summary-img-margin-right: var(--space-xs);
}

.order-summary__header {
   border-radius: inherit;
   border-bottom-left-radius: 0px;
   border-bottom-right-radius: 0px;
}

.order-summary__footer {
   border-radius: inherit;
   border-top-left-radius: 0px;
   border-top-right-radius: 0px;
}

.order-summary__item {
   display: grid;
   grid-template-columns: var(--order-summary-img-size) 1fr;
   grid-gap: var(--order-summary-img-margin-right);
   align-items: center;
}

.order-summary__img {
   display: block;
   width: var(--order-summary-img-size);
   height: var(--order-summary-img-size);
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   transition: 0.2s;
}
.order-summary__img img {
   display: block;
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}
.order-summary__img:hover {
   transform: translateY(-1px);
   box-shadow: var(--shadow-sm);
}

/* -------------------------------- 

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_page-transition
Title: Page Transition Plugin
Descr: A plugin to create smooth transitions between pages
Usage: codyhouse.co/license

-------------------------------- */
.js-page-trans__content:focus {
   outline: none;
}

/* -------------------------------- 

File#: _1_pagination
Title: Pagination 
Descr: Component used to navigate through pages of related content
Usage: codyhouse.co/license

-------------------------------- */
.pagination__list > li {
   display: inline-block;
}

.pagination--split .pagination__list {
   width: 100%;
}
.pagination--split .pagination__list > *:first-child {
   margin-right: auto;
}
.pagination--split .pagination__list > *:last-child {
   margin-left: auto;
}

.pagination__item {
   display: inline-block;
   display: inline-flex;
   height: 100%;
   align-items: center;
   padding: var(--space-xs) calc(1.355 * var(--space-xs));
   white-space: nowrap;
   line-height: 1;
   border-radius: var(--radius-md);
   text-decoration: none;
   color: var(--color-contrast-high);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   will-change: transform;
   transition: 0.2s;
}
.pagination__item:hover:not(.pagination__item--selected):not(.pagination__item--ellipsis) {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.pagination__item:active {
   transform: translateY(2px);
}

.pagination__item--selected {
   background-color: var(--color-contrast-higher);
   color: var(--color-bg);
   box-shadow: var(--shadow-sm);
}

.pagination__item--disabled {
   opacity: 0.5;
   pointer-events: none;
}

.pagination__jumper .form-control {
   width: 3em;
   margin-right: var(--space-xs);
}
.pagination__jumper em {
   flex-shrink: 0;
   white-space: nowrap;
}

/* -------------------------------- 

File#: _1_parallax-image
Title: Parallax Image
Descr: Overlapping images in a 3D space
Usage: codyhouse.co/license

-------------------------------- */
.parallax {
   overflow: hidden;
   perspective: 4000px;
   opacity: 0; /* hide image while it is initialized in JS */
}

.parallax--loaded {
   opacity: 1;
}

.parallax__wrapper {
   position: relative;
   transform-style: preserve-3d;
   transform: translateZ(0);
   will-change: transform;
   transition: transform 0.4s var(--ease-out);
}

.parallax__item {
   display: block;
   width: 100%;
}

.parallax__item:not(:first-of-type) {
   position: absolute;
   top: 0;
   left: 0;
}

/* -------------------------------- 

File#: _1_password
Title: Password Visibility Control
Descr: Password input field with option to toggle password visibility
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --password-btn-width: 3.5em;
   --password-icon-size: 1.5em;
}

.password {
   position: relative;
}

.password__input {
   height: 100%;
}

.password__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;
   z-index: 1;
   top: 0;
   right: 0;
   height: 100%;
   width: var(--password-btn-width);
   background-color: rgba(255, 255, 255, 0);
   justify-content: center;
   align-items: center;
   display: none;
}
.password__btn:focus {
   color: var(--color-primary);
}

.password__btn-label:last-child {
   display: none;
}
.password__btn-label .icon {
   width: var(--password-icon-size);
   height: var(--password-icon-size);
}

.password--text-is-visible .password__btn-label:first-child {
   display: none;
}
.password--text-is-visible .password__btn-label:last-child {
   display: inline-block;
}

.password__input {
   padding-right: calc(var(--space-sm) + var(--password-btn-width));
}

.password__input::-ms-reveal {
   display: none;
}

.password__btn {
   display: flex;
}

/* -------------------------------- 

File#: _1_percentage-bar
Title: Percentage Bar
Descr: A bar graph used to display a percentage distribution
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --pct-bar-height: 10px;
   --pct-bar-radius: 50em;
   --pct-bar-gap: 3px;
   --pct-bar-legend-bullet-size: 10px;
}

.pct-bar__bg {
   display: none;
}

.pct-bar__bullet {
   display: block;
   width: var(--pct-bar-legend-bullet-size);
   height: var(--pct-bar-legend-bullet-size);
   border-radius: 50%;
   flex-shrink: 0;
}

.pct-bar__bg {
   display: flex;
   height: var(--pct-bar-height);
   border-radius: var(--pct-bar-radius);
   overflow: hidden;
}

.pct-bar__fill {
   height: 100%;
   margin-right: var(--pct-bar-gap);
}
.pct-bar__fill:first-child {
   border-radius: var(--pct-bar-radius) 0 0 var(--pct-bar-radius);
}
.pct-bar__fill:last-child {
   border-radius: 0 var(--pct-bar-radius) var(--pct-bar-radius) 0;
   margin-right: 0;
}

/* -------------------------------- 

File#: _1_pie-chart
Title: Pie Chart
Descr: Data visualisation using SVG Radial Chart
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --pie-chart-size: 200px;
   --pie-chart-gap: 2px;
   --pie-chart-legend-bullet-size: 10px;
   --pie-chart-donut-width: 30px;
}

.pie-chart__area {
   position: relative;
   display: block;
   width: var(--pie-chart-size);
   height: var(--pie-chart-size);
}

.pie-chart__svg {
   display: block;
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
}

.pie-chart__data-path {
   stroke: var(--color-bg);
   stroke-width: var(--pie-chart-gap);
   transition: opacity 0.2s;
   fill: var(--color-primary);
}
.pie-chart__data-path:hover {
   opacity: 0.8;
}

.pie-chart__bullet {
   display: block;
   width: var(--pie-chart-legend-bullet-size);
   height: var(--pie-chart-legend-bullet-size);
   border-radius: 50%;
   flex-shrink: 0;
}

.pie-chart__tooltip {
   position: absolute;
   z-index: 2;
   font-size: var(--text-sm);
   background-color: var(--color-bg-light);
   padding: var(--space-xs);
   border-radius: var(--radius-md);
   box-shadow: var(--inner-glow), var(--shadow-md);
   transform: translateX(-50%) translateY(-50%);
   pointer-events: none;
}

/* -------------------------------- 

File#: _1_popover
Title: Popover
Descr: A pop-up box controlled by a trigger element
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --popover-width: 250px;
   --popover-control-gap: 4px;
   --popover-viewport-gap: 20px;
   --popover-transition-duration: 0.2s;
}

.popover {
   position: fixed;
   width: var(--popover-width);
   z-index: var(--z-index-popover, 5);
   margin-top: var(--popover-control-gap);
   margin-bottom: var(--popover-control-gap);
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0s var(--popover-transition-duration),
      opacity var(--popover-transition-duration);
}

.popover--is-visible {
   visibility: visible;
   opacity: 1;
   transition:
      visibility 0s,
      opacity var(--popover-transition-duration);
}

/* -------------------------------- 

File#: _1_pre-header
Title: Pre-header 
Descr: Pre-header (top) banner
Usage: codyhouse.co/license

-------------------------------- */
.pre-header {
   display: block;
   background-color: var(--color-contrast-higher);
   color: var(--color-bg);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

.pre-header--is-hidden {
   display: none;
}

.pre-header__close-btn {
   position: absolute;
   right: 0;
   top: calc(50% - 0.5em);
   will-change: transform;
   transition: 0.3s var(--ease-out-back);
}
.pre-header__close-btn:hover {
   transform: scale(1.1);
}
.pre-header__close-btn .icon {
   display: block;
}

a.pre-header {
   text-decoration: none;
   transition: background-color 0.2s;
}
a.pre-header:hover {
   text-decoration: underline;
   background-color: var(--color-contrast-high);
}

/* -------------------------------- 

File#: _1_previous-next-links
Title: Previous/Next Links
Descr: Links to previous/next articles
Usage: codyhouse.co/license

-------------------------------- */
.pn-links {
   border-top: 1px solid var(--color-contrast-lower);
   border-bottom: 1px solid var(--color-contrast-lower);
}

.pn-links__item:first-child .pn-links__link {
   border-bottom: 1px solid var(--color-contrast-lower);
}

.pn-links__link {
   display: flex;
   align-items: center;
   height: 100%;
   color: inherit;
   text-decoration: none;
   padding: var(--space-md);
}
.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;
      border-right: 1px solid var(--color-contrast-lower);
   }
}
/* -------------------------------- 

File#: _1_product-card
Title: Product Card
Descr: A selection of product information used as teasers for further content
Usage: codyhouse.co/license

-------------------------------- */
.prod-card {
   position: relative;
}

.prod-card__img-link {
   text-decoration: none;
   display: block;
}
.prod-card__img-link:hover .prod-card__img {
   opacity: 0.85;
}

.prod-card__img {
   transition: opacity 0.2s;
}
.prod-card__img img {
   display: block;
   width: 100%;
}

.prod-card__badge {
   position: absolute;
   z-index: 1;
   top: var(--space-xs);
   right: var(--space-xs);
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.95);
   padding: var(--space-xxs) var(--space-sm);
   font-size: var(--text-xs);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--color-contrast-high);
   font-weight: 500;
}

.prod-card__price--old {
   color: var(--color-accent);
   text-decoration: line-through;
}
.prod-card__price--old::before {
   content: "original price";
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

.prod-card__price--new {
   text-decoration: none;
}
.prod-card__price--new::before {
   content: "discounted price";
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

/* --------------------------------

File#: _1_product-tour
Title: Product Tour
Descr: A step-by-step interactive guide
Usage: codyhouse.co/license

-------------------------------- */
:root {
   /* ������ visible only on bigger screens */
   --p-tour-pin-size: 12px; /* dot indicator size */
   --p-tour-pin-tooltip-gap: 4px; /* gap between dot and tooltip */
}

.p-tour {
   --p-tour-layout: "mobile"; /* used in JS to detect layout type */
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: var(--z-index-overlay, 15);
   opacity: 1;
   visibility: visible;
}

.p-tour--is-hidden {
   opacity: 0;
   visibility: hidden;
   transition:
      opacity 0.3s,
      visibility 0s 0.3s;
}

.p-tour__background {
   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.8);
}

.p-tour__pin {
   display: none; /* hide pin on smaller devices */
}

.p-tour__steps {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
}

.p-tour__step {
   position: absolute;
   width: calc(100% - 2 * var(--space-md));
   left: var(--space-md);
   top: 50%;
   transform: translateY(-50%);
   opacity: 0;
   visibility: hidden;
   pointer-events: auto;
   z-index: 1;
   max-height: calc(100% - 2 * var(--space-md));
   overflow: auto;
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   box-shadow:
      0 0.9px 2.2px rgba(0, 0, 0, 0.025),
      0 2.1px 5.3px rgba(0, 0, 0, 0.036),
      0 3.9px 10px rgba(0, 0, 0, 0.045),
      0 6.9px 17.9px rgba(0, 0, 0, 0.054),
      0 13px 33.4px rgba(0, 0, 0, 0.065),
      0 31px 80px rgba(0, 0, 0, 0.09);
   transition:
      transform 0.3s,
      opacity 0.3s,
      visibility 0s 0.3s;
}

.p-tour__step--current {
   opacity: 1;
   visibility: visible;
   z-index: 2;
   transition:
      transform 0.3s,
      opacity 0.3s,
      visibility 0s;
}

/* slide effect on smaller devices */
.p-tour__step--m-left {
   transform: translateY(-50%) translateX(-50px);
}

.p-tour__step--m-right {
   transform: translateY(-50%) translateX(50px);
}

.p-tour__skip {
   --size: 28px;
   width: var(--size);
   height: var(--size);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-shrink: 0;
   backface-visibility: hidden;
   transition: background-color 0.2s;
}
.p-tour__skip:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
   );
}
.p-tour__skip .icon {
   --size: 16px;
}

@media (min-width: 48rem) {
   .p-tour {
      --p-tour-layout: "desktop";
      display: block;
      padding: 0;
      pointer-events: none;
   }
   .p-tour__background {
      opacity: 0;
   }
   .p-tour__background--animate {
      animation: p-tour-bg-anim 1.5s;
   }
   @keyframes p-tour-bg-anim {
      0%,
      100% {
         opacity: 0;
      }
      30%,
      60% {
         opacity: 1;
      }
   }
   .p-tour__step {
      width: 340px;
      transform: translate3d(0);
      transition:
         opacity 0.3s,
         visibility 0s 0.3s;
      max-height: none;
      overflow: visible;
   }
   .p-tour__step--current {
      transition:
         opacity 0.3s,
         visibility 0s;
   }
   /* triangle indicator */
   .p-tour__step--top::before,
   .p-tour__step--bottom::before,
   .p-tour__step--right::before,
   .p-tour__step--left::before,
   .p-tour__step--bottom-right::before,
   .p-tour__step--bottom-left::before,
   .p-tour__step--top-right::before,
   .p-tour__step--top-left::before {
      content: "";
      position: absolute;
      color: var(--color-bg-light); /* triangle color */
   }
   .p-tour__step--bottom-right,
   .p-tour__step--top-right {
      transform: translateX(calc(0.5 * var(--p-tour-pin-size) + var(--p-tour-pin-tooltip-gap) + 12px));
   }
   .p-tour__step--bottom-left,
   .p-tour__step--top-left {
      transform: translateX(calc(-0.5 * var(--p-tour-pin-size) - var(--p-tour-pin-tooltip-gap) - 12px));
   }
   .p-tour__step--top {
      transform: translateY(calc(-0.5 * var(--p-tour-pin-size) - var(--p-tour-pin-tooltip-gap) - 12px));
   }
   .p-tour__step--top::before {
      top: calc(100% - 1px);
      left: 50%;
      transform: translate(-50%);
      width: 0;
      height: 0;
      border: 12px solid transparent;
      border-top-color: currentColor;
   }
   .p-tour__step--top-right::before,
   .p-tour__step--top-left::before {
      width: 12px;
      height: 12px;
      background-color: currentColor;
      bottom: 0;
   }
   .p-tour__step--top-right {
      border-bottom-left-radius: 0;
   }
   .p-tour__step--top-right::before {
      right: calc(100% - 1px);
      clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
   }
   .p-tour__step--top-left {
      border-bottom-right-radius: 0;
   }
   .p-tour__step--top-left::before {
      left: calc(100% - 1px);
      clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
   }
   .p-tour__step--bottom {
      transform: translateY(calc(var(--p-tour-pin-size) * 0.5 + var(--p-tour-pin-tooltip-gap) + 12px));
   }
   .p-tour__step--bottom::before {
      bottom: calc(100% - 1px);
      left: 50%;
      transform: translate(-50%);
      width: 0;
      height: 0;
      border: 12px solid transparent;
      border-bottom-color: currentColor;
   }
   .p-tour__step--bottom-right::before,
   .p-tour__step--bottom-left::before {
      width: 12px;
      height: 12px;
      background-color: currentColor;
      top: 0;
   }
   .p-tour__step--bottom-right {
      border-top-left-radius: 0;
   }
   .p-tour__step--bottom-right::before {
      right: calc(100% - 1px);
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
   }
   .p-tour__step--bottom-left {
      border-top-right-radius: 0;
   }
   .p-tour__step--bottom-left::before {
      left: calc(100% - 1px);
      clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
   }
   .p-tour__step--left {
      transform: translateX(calc(-0.5 * var(--p-tour-pin-size) - var(--p-tour-pin-tooltip-gap) - 12px));
   }
   .p-tour__step--left::before {
      top: 50%;
      left: calc(100% - 1px);
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border: 12px solid transparent;
      border-left-color: currentColor;
   }
   .p-tour__step--right {
      transform: translateX(calc(0.5 * var(--p-tour-pin-size) + var(--p-tour-pin-tooltip-gap) + 12px));
   }
   .p-tour__step--right::before {
      top: 50%;
      right: calc(100% - 1px);
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border: 12px solid transparent;
      border-right-color: currentColor;
   }
   /* dot indicator */
   .p-tour__pin {
      position: absolute;
      display: inline-block;
      width: var(--p-tour-pin-size);
      height: var(--p-tour-pin-size);
      border-radius: 50%;
      background-color: var(--color-accent);
      pointer-events: none;
      transform: translateX(-50%) translateY(-50%);
      transition: transform 0.3s;
   }
   .p-tour__pin::before {
      /* animated bg */
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: inherit;
      background-color: inherit;
      animation: p-tour-pin-anim 1.5s infinite var(--ease-out);
   }
   .p-tour__pin--out {
      transform: translateX(-50%) translateY(-50%) scale(0);
   }
   @keyframes p-tour-pin-anim {
      from {
         opacity: 1;
         transform: scale(0.25);
      }
      to {
         opacity: 0;
         transform: scale(3);
      }
   }
}
/* -------------------------------- 

File#: _1_progress-bar
Title: Progress Bar
Descr: Display the current progress of a task
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --progress-bar-width: 200px;
   --progress-bar-height: 8px;
   --progress-bar-radius: 50em;
}

.progress-bar__bg {
   position: relative;
   width: var(--progress-bar-width);
   height: var(--progress-bar-height);
   border-radius: var(--progress-bar-radius);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   flex-grow: 1;
   overflow: hidden;
}

.progress-bar__fill {
   position: absolute;
   left: 0;
   top: 0;
   height: 100%;
   width: 0%;
   background-color: currentColor;
}

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

.progress-bar[data-animation="on"]:not(.progress-bar--init) .progress-bar__fill,
.progress-bar[data-animation="on"]:not(.progress-bar--init) .progress-bar__value,
.progress-bar--color-update:not(.progress-bar--init) .progress-bar__fill,
.progress-bar--color-update:not(.progress-bar--init) .progress-bar__value {
   opacity: 0;
}

.progress-bar--color-update {
   --progress-bar-color-1: 30;
   --progress-bar-color-2: 65;
   --progress-bar-color-3: 100;
}
.progress-bar--color-update.progress-bar--init .progress-bar__fill {
   transition: background-color 0.3s;
}

.progress-bar--fill-color-1 .progress-bar__fill {
   background-color: var(--color-error);
}

.progress-bar--fill-color-2 .progress-bar__fill {
   background-color: var(--color-warning);
}

.progress-bar--fill-color-3 .progress-bar__fill {
   background-color: var(--color-success);
}

/* -------------------------------- 

File#: _1_prop-table
Title: Property Table
Descr: A table used to display a list of properties and their values
Usage: codyhouse.co/license

-------------------------------- */
.prop-table__cell {
   padding: var(--space-sm) var(--space-sm) var(--space-sm) 0;
   border-bottom: 1px solid var(--color-contrast-lower);
   width: 50%;
}

.prop-table__cell--th {
   font-weight: bold;
   text-align: left;
}

.prop-table--v2 {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
   border-left: 4px solid var(--color-primary);
}
.prop-table--v2 .prop-table__cell {
   padding: var(--space-sm);
   border-width: 0;
}

/* -------------------------------- 

File#: _1_radial-bar-chart
Title: Radial Bar Chart
Descr: A Radial SVG graph used to display a list of percentage values
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --radial-bar-size: 200px;
   --radial-bar-bar-stroke-width: 10px;
   --radial-bar-gap: 4px;
   --radial-bar-legend-bullet-size: 10px;
}

.radial-bar__area {
   position: relative;
   height: var(--radial-bar-size);
   width: var(--radial-bar-size);
}

.radial-bar__svg {
   display: block;
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
}

.radial-bar__circle {
   stroke-width: var(--radial-bar-bar-stroke-width);
   stroke-linecap: round;
   fill: none;
}

.radial-bar__circle__fill {
   stroke: currentColor;
   transition: opacity 0.2s;
}

.radial-bar__group:hover .radial-bar__circle__fill {
   opacity: 0.8;
}

.radial-bar__circle__bg {
   stroke: var(--color-contrast-lower);
}

.radial-bar__tooltip {
   position: absolute;
   z-index: 2;
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
   font-size: var(--text-sm);
   background-color: var(--color-bg);
   padding: var(--space-xs);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-md);
   transform: translateX(-50%) translateY(-50%);
   pointer-events: none;
}

.radial-bar__bullet {
   display: block;
   width: var(--radial-bar-legend-bullet-size);
   height: var(--radial-bar-legend-bullet-size);
   border-radius: 50%;
   flex-shrink: 0;
}

/* -------------------------------- 

File#: _1_radio-switch-v2
Title: Radio Switch v2
Descr: A custom radio button with a switch element and two labels
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --radio-switch-v2-width: 52px;
   --radio-switch-v2-height: 30px;
   --radio-switch-v2-padding: 4px;
   --radio-switch-v2-radius: 50em;
   --radio-switch-v2-animation-duration: 0.3s;
}

.radio-switch-v2 {
   position: relative;
   display: inline-block;
   display: inline-flex;
}

.radio-switch-v2__item {
   position: relative;
   height: var(--radio-switch-v2-height);
   float: left;
}

.radio-switch-v2__input {
   position: relative;
   z-index: 2;
   height: 100%;
   width: calc(var(--radio-switch-v2-width) * 0.5);
   opacity: 0;
   cursor: pointer;
   transform: scaleX(2);
   transform-origin: 0 0;
}
.radio-switch-v2__item:last-of-type .radio-switch-v2__input {
   transform-origin: 100% 100%;
}
.radio-switch-v2__item:first-of-type .radio-switch-v2__input {
   order: 1;
}
.radio-switch-v2__input:checked {
   z-index: -1;
}

.radio-switch-v2__label {
   position: relative;
   z-index: 2;
   display: block;
   line-height: var(--radio-switch-v2-height);
   font-size: calc(var(--text-sm) * 1.2);
   transition: color var(--radio-switch-v2-animation-duration);
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.radio-switch-v2__item:first-of-type .radio-switch-v2__label {
   float: left;
   margin-right: var(--space-xs);
}
.radio-switch-v2__item:last-of-type .radio-switch-v2__label {
   float: right;
   margin-left: var(--space-xs);
}
.radio-switch-v2__input:checked ~ .radio-switch-v2__label {
   color: var(--color-primary);
}
.radio-switch-v2__input:focus ~ .radio-switch-v2__label {
   outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   outline-offset: 2px;
}
.radio-switch-v2__label :not(*):focus-within,
.radio-switch-v2__input:focus ~ .radio-switch-v2__label {
   outline: none;
}

.radio-switch-v2__toggle {
   position: absolute;
   z-index: 1;
   width: var(--radio-switch-v2-width);
   height: var(--radio-switch-v2-height);
   top: 0;
   left: 0;
   transform: translateX(-50%);
   border-radius: var(--radio-switch-v2-radius);
   background-color: var(--color-bg-darker);
}
.radio-switch-v2:focus-within .radio-switch-v2__toggle,
.radio-switch-v2:active .radio-switch-v2__toggle {
   box-shadow: 0 0 0 2px
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
}

.radio-switch-v2__marker {
   position: absolute;
   z-index: 1;
   top: var(--radio-switch-v2-padding);
   left: var(--radio-switch-v2-padding);
   width: calc(var(--radio-switch-v2-height) - var(--radio-switch-v2-padding) * 2);
   height: calc(var(--radio-switch-v2-height) - var(--radio-switch-v2-padding) * 2);
   border-radius: 50%;
   background-color: var(--color-primary);
   transition: left var(--radio-switch-v2-animation-duration);
   box-shadow: var(--shadow-sm);
   will-change: left;
}

.radio-switch-v2__input:checked ~ .radio-switch-v2__toggle .radio-switch-v2__marker {
   left: calc(var(--radio-switch-v2-width) - var(--radio-switch-v2-height) + var(--radio-switch-v2-padding));
}

/* -------------------------------- 

File#: _1_radio-switch
Title: Radio Switch
Descr: Custom radio toggle
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --radio-switch-width: 186px;
   --radio-switch-height: 46px;
   --radio-switch-padding: 3px;
   --radio-switch-radius: 50em;
   --radio-switch-animation-duration: 0.3s;
}

.radio-switch {
   position: relative;
   display: inline-block;
   display: inline-flex;
   padding: var(--radio-switch-padding);
   border-radius: calc(var(--radio-switch-radius) * 1.4);
   background-color: var(--color-bg-darker);
}
.radio-switch:focus-within,
.radio-switch:active {
   box-shadow: 0 0 0 2px
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
}

.radio-switch__item {
   position: relative;
   display: inline-block;
   height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
   width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
}

.radio-switch__label {
   position: relative;
   z-index: 2;
   display: flex;
   height: 100%;
   align-items: center;
   justify-content: center;
   border-radius: var(--radio-switch-radius);
   cursor: pointer;
   font-size: var(--text-sm);
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   transition: all var(--radio-switch-animation-duration);
}
.radio-switch__input:checked ~ .radio-switch__label {
   color: var(--color-white);
}
.radio-switch__input:focus ~ .radio-switch__label {
   background-color: hsl(var(--color-primary-h), var(--color-primary-s), calc(var(--color-primary-l) * 0.6));
}
.radio-switch__label :not(*):focus-within,
.radio-switch__input:focus ~ .radio-switch__label {
   background-color: transparent;
}

.radio-switch__marker {
   position: absolute;
   z-index: 1;
   top: 0;
   left: -100%;
   border-radius: var(--radio-switch-radius);
   background-color: var(--color-primary);
   height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
   width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
   box-shadow: var(--shadow-md);
   transition: transform var(--radio-switch-animation-duration);
}
.radio-switch__input:checked ~ .radio-switch__marker {
   transform: translateX(100%);
}

/* -------------------------------- 

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_read-more
Title: Read More
Descr: A truncated paragraph with the option of reading more content
Usage: codyhouse.co/license

-------------------------------- */
.read-more {
   opacity: 0;
}

.read-more--loaded {
   opacity: 1;
}

.read-more__btn {
   background-color: transparent;
   padding: 0;
   border: 0;
   border-radius: 0;
   color: inherit;
   line-height: inherit;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   cursor: pointer;
   color: var(--color-primary);
   text-decoration: underline;
}

/* -------------------------------- 

File#: _1_reading-progressbar
Title: Reading Progress Bar
Descr: A bar indicator displaying the current reading progress
Usage: codyhouse.co/license

-------------------------------- */
.reading-progressbar {
   position: fixed;
   z-index: var(--z-index-fixed-element, 10);
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   color: var(--color-primary);
   pointer-events: none;
   display: none;
   transition: transform 0.2s;
}

.reading-progressbar--is-out {
   transform: translateY(-100%);
}

.reading-progressbar--is-active {
   display: block;
}

.reading-progressbar::-webkit-progress-bar {
   background-color: transparent;
}

.reading-progressbar::-webkit-progress-value {
   background-color: currentColor;
}

.reading-progressbar::-moz-progress-bar {
   background-color: currentColor;
}

.reading-progressbar__fallback {
   position: absolute;
   left: 0;
   top: 0;
   height: 100%;
   background-color: currentColor;
}

/* -------------------------------- 

File#: _1_repeater
Title: Repeater
Descr: A plugin to repeat groups of elements
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_responsive-iframe
Title: Resposive Iframe
Descr: Responsive wrapper for iframe elements (e.g., YouTube and Vimeo videos)
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

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--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: space-between;
   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;
   flex-grow: 1;
}
.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_revealing-section
Title: Revealing Section
Descr: Section revealing its content on scroll
Usage: codyhouse.co/license

-------------------------------- */
.revealing-section {
   position: sticky;
   min-height: 100vh;
   --reavealing-section-overlay-opacity: 1;
}
.revealing-section::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   pointer-events: none;
   background-color: var(--color-black);
   opacity: var(--reavealing-section-overlay-opacity);
}

/* -------------------------------- 

File#: _1_row-table
Title: Row Oriented Table
Descr: Data tables used to organize information, with a specific layout for cases where each row is a meaningful unit
Usage: codyhouse.co/license

-------------------------------- */
.row-table {
   position: relative;
   z-index: 1;
   width: 100%;
}

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

.row-table__cell--th {
   font-weight: 600;
   color: var(--color-contrast-higher);
}

.row-table__list {
   display: none;
}

@media not all and (min-width: 48rem) {
   .row-table__header,
   .row-table__cell:not(:first-child) {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      width: 1px;
      height: 1px;
      overflow: hidden;
   }
   .row-table__cell[aria-hidden="true"] {
      display: none;
   }
   .row-table__row {
      display: flex;
      flex-direction: column;
   }
   .row-table__cell {
      position: relative;
      background-color: var(--color-bg-light);
      box-shadow: var(--inner-glow-top), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-sm);
      border-radius: var(--radius-md);
      width: 100%;
      margin-bottom: var(--space-xxs);
   }
   .row-table__th-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
   }
   .row-table__th-icon {
      position: relative;
      height: 24px;
      width: 24px;
      --row-table-arrow-width: 2px;
   }
   .row-table__th-icon::before,
   .row-table__th-icon::after {
      content: "";
      position: absolute;
      top: calc(50% - 6px);
      width: var(--row-table-arrow-width);
      height: 12px;
      border-radius: 10px;
      background-color: currentColor;
      transform-origin: 50% 100%;
      transition: transform 0.3s;
   }
   .row-table__th-icon::before {
      right: 50%;
      transform: translateX(50%) rotate(-45deg);
   }
   .row-table__th-icon::after {
      right: calc(50% + var(--row-table-arrow-width) / 2);
      transform: translateX(50%) rotate(45deg);
   }
   .row-table__list {
      margin-top: var(--space-sm);
      line-height: var(--body-line-height);
   }
   .row-table__item {
      display: flex;
      justify-content: space-between;
      font-weight: normal;
      border-top: 1px solid
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
      text-align: right;
      padding: var(--space-sm) 0;
      font-size: var(--text-sm);
      color: var(--color-contrast-medium);
   }
   .row-table__label {
      color: var(--color-contrast-higher);
      font-weight: 600;
      margin-right: var(--space-md);
      text-align: left;
   }
   .row-table__cell--show-list .row-table__th-icon::before {
      transform: translateX(50%) translateY(-80%) rotate(-135deg);
   }
   .row-table__cell--show-list .row-table__th-icon::after {
      transform: translateX(50%) translateY(-80%) rotate(135deg);
   }
   .row-table__cell--show-list .row-table__list {
      display: block;
   }
   .row-table__input {
      position: absolute;
      pointer-events: none;
      height: 0;
      width: 0;
      opacity: 0;
      padding: 0;
      border: 0;
   }
   .row-table__input:focus + .row-table__th-inner {
      color: var(--color-primary);
   }
}
@media (min-width: 48rem) {
   .row-table {
      font-size: var(--text-sm);
      border-bottom: 1px solid
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
   }
   .row-table__header .row-table__row {
      background-color: var(--color-bg);
   }
   .row-table__header .row-table__cell {
      border-bottom: 1px solid
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
      position: relative;
      background-color: inherit;
      z-index: 10;
   }
   .row-table__body .row-table__row:nth-child(odd) {
      background-color: hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 0.85);
   }
   .row-table__input {
      display: none;
   }
   .row-table--sticky-header {
      border-collapse: separate;
   }
   .row-table--sticky-header .row-table__header .row-table__cell {
      position: sticky;
      top: 0;
   }
}
/* -------------------------------- 

File#: _1_scribble-background-decoration
Title: Scribble Background Decoration
Descr: A collection of scribble background decorations
Usage: codyhouse.co/license

-------------------------------- */
.scribble-bg {
   position: absolute;
   top: 0;
   left: 0;
   pointer-events: none;
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.scribble-bg__svg {
   position: absolute;
   width: 134%;
   min-width: 1280px;
   max-width: 1920px;
   height: auto;
}

/* -------------------------------- 

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_scrollbar
Title: Scrollbar
Descr: (WebKit) custom scrollbar
Usage: codyhouse.co/license

-------------------------------- */
.custom-scrollbar::-webkit-scrollbar {
   width: 16px;
}
.custom-scrollbar::-webkit-scrollbar-track {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0
   );
}
.custom-scrollbar::-webkit-scrollbar-thumb {
   border: 4px solid transparent;
   background-clip: content-box;
   border-radius: 50em;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.125
   );
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
}

/* -------------------------------- 

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_side-navigation-v2
Title: Side Navigation v2
Descr: Collapsible Side Navigation
Usage: codyhouse.co/license

-------------------------------- */
.sidenav-v2::after {
   content: "";
   display: table;
   clear: both;
}

.sidenav-v2__control {
   width: 100%;
   padding: var(--space-sm);
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.sidenav-v2__control-text {
   position: relative;
}
.sidenav-v2__control-text > * {
   display: inline-block;
   transition:
      opacity 0.4s,
      transform 0.4s var(--ease-out);
}
.sidenav-v2__control-text > *:last-child {
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   pointer-events: none;
   transform: translateY(-10px);
}

.sidenav-v2__icon-arrow .icon__group {
   will-change: transform;
   transform-origin: 8px 8px;
   transition: transform 0.3s var(--ease-out);
}
.sidenav-v2__icon-arrow .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);
}
.sidenav-v2__icon-arrow .icon__group > *:first-child {
   stroke-dashoffset: 8.5;
}
.sidenav-v2__icon-arrow .icon__group > *:last-child {
   stroke-dashoffset: 8.5;
}

.sidenav-v2__list:not(:last-child) {
   margin-bottom: var(--space-sm);
}

.sidenav-v2__label {
   margin-bottom: var(--space-xxxxs);
}
.sidenav-v2__label > * {
   color: var(--color-contrast-medium);
   font-size: var(--text-sm);
}

.sidenav-v2__link {
   display: flex;
   align-items: center;
   text-decoration: none;
   color: var(--color-contrast-high);
   transition: 0.2s;
}
.sidenav-v2__link:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.05
   );
}
.sidenav-v2__link[aria-current="page"] {
   background-color: var(--color-contrast-higher);
   color: var(--color-bg);
}

.sidenav-v2__link-text {
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   margin-right: var(--space-xxxs);
}

.sidenav-v2__counter {
   display: inline-flex;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
   );
   font-size: var(--text-xs);
   padding: var(--space-xxxxs) var(--space-xxs);
   border-radius: 50em;
   margin-left: auto;
}

.sidenav-v2:not(.sidenav-v2--static) {
   border-radius: var(--radius-md);
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   transition: 0.3s;
}
.sidenav-v2:not(.sidenav-v2--static):hover {
   box-shadow: var(--inner-glow), var(--shadow-md);
}
.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__nav {
   display: none;
   margin: var(--space-xxs) 0;
}
.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__label {
   padding-left: var(--space-sm);
}
.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__link {
   padding: var(--space-xxs) var(--space-sm);
}
.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__control-text > *:first-child {
   transform: translateY(10px);
   opacity: 0;
   pointer-events: none;
}
.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__control-text > *:last-child {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
}
.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__nav {
   display: block;
   animation: sidenav-v2-entry-animation 0.4s var(--ease-out);
}
.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__icon-arrow .icon__group {
   transform: rotate(-90deg);
}
.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__icon-arrow .icon__group > *:first-child,
.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__icon-arrow .icon__group *:last-child {
   stroke-dashoffset: 0;
   transform: translateY(0px);
}

.sidenav-v2--static .sidenav-v2__control {
   display: none;
}
.sidenav-v2--static .sidenav-v2__link {
   padding: var(--space-xxs) var(--space-xs);
   border-radius: var(--radius-md);
}
.sidenav-v2--static .sidenav-v2__link[aria-current="page"] {
   box-shadow: var(--shadow-sm);
}

@keyframes sidenav-v2-entry-animation {
   from {
      opacity: 0;
      transform: translateY(-10px);
   }
   to {
      opacity: 1;
      transform: translateY(0px);
   }
}
[class*="sidenav-v2--static"]::before {
   display: none;
   content: "collapsed";
}

@media (min-width: 32rem) {
   .sidenav-v2--static\@xs::before {
      content: "static";
   }
}
@media (min-width: 48rem) {
   .sidenav-v2--static\@sm::before {
      content: "static";
   }
}
@media (min-width: 64rem) {
   .sidenav-v2--static\@md::before {
      content: "static";
   }
}
@media (min-width: 80rem) {
   .sidenav-v2--static\@lg::before {
      content: "static";
   }
}
@media (min-width: 90rem) {
   .sidenav-v2--static\@xl::before {
      content: "static";
   }
}
/* -------------------------------- 

File#: _1_side-navigation
Title: Side Navigation
Descr: Vertical side navigation template
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --sidenav-list-item-height: 32px;
   --sidenav-list-item-padding-x: 16px;
   --sidenav-icon-size: 16px;
   --sidenav-icon-text-gap: 8px;
   --sidenav-sublist-control-size: 20px;
   --sidenav-sublist-control-icon-size: 12px;
   --sidenav-sublist-control-margin-right: 4px;
}

.sidenav__list .sidenav__list {
   display: none;
}
.sidenav__list .sidenav__list .sidenav__link {
   padding-left: calc(
      var(--sidenav-list-item-padding-x) + var(--sidenav-sublist-control-size) +
         var(--sidenav-sublist-control-margin-right) + var(--sidenav-icon-size) + var(--sidenav-icon-text-gap)
   );
}

.sidenav__item {
   position: relative;
}

.sidenav__item--expanded .sidenav__list {
   display: block;
}
.sidenav__item--expanded .sidenav__sublist-control .icon {
   transform: rotate(90deg);
}

.sidenav__link {
   display: flex;
   height: var(--sidenav-list-item-height);
   align-items: center;
   padding: 0 var(--sidenav-list-item-padding-x) 0
      calc(
         var(--sidenav-list-item-padding-x) + var(--sidenav-sublist-control-size) +
            var(--sidenav-sublist-control-margin-right)
      );
   text-decoration: none;
   color: var(--color-contrast-high);
   transition: 0.2s;
}
.sidenav__link:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.05
   );
}

.sidenav__link[aria-current="page"],
.sidenav__link--current {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.1);
   color: var(--color-primary);
}

.sidenav__icon {
   width: var(--sidenav-icon-size);
   height: var(--sidenav-icon-size);
   margin-right: var(--sidenav-icon-text-gap);
}

.sidenav__text {
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   padding-right: var(--space-xxs);
}

.sidenav__counter {
   display: inline-block;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
   );
   color: var(--color-contrast-high);
   font-size: var(--text-xs);
   padding: var(--space-xxxxs) var(--space-xxxs);
   border-radius: 50em;
   margin-left: auto;
}

.sidenav__sublist-control {
   display: block;
   width: var(--sidenav-sublist-control-size);
   height: var(--sidenav-sublist-control-size);
   border-radius: 50%;
   position: absolute;
   left: var(--sidenav-list-item-padding-x);
   top: calc((var(--sidenav-list-item-height) - var(--sidenav-sublist-control-size)) / 2);
   transition: 0.2s;
}
.sidenav__sublist-control .icon {
   display: block;
   width: var(--sidenav-sublist-control-icon-size);
   height: var(--sidenav-sublist-control-icon-size);
   margin: auto;
   transition: transform 0.2s;
}
.sidenav__sublist-control:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
   );
}

.sidenav__label {
   padding-left: var(--sidenav-list-item-padding-x);
}

.sidenav__divider {
   width: 100%;
   height: 1px;
   background-color: var(--color-contrast-lower);
}

.sidenav--basic .sidenav__link,
.sidenav--basic .sidenav__label {
   padding-left: var(--sidenav-list-item-padding-x);
}

.sidenav--minified {
   --sidenav-list-item-height: auto;
}
.sidenav--minified .sidenav__list .sidenav__list {
   display: none !important;
}
.sidenav--minified .sidenav__link,
.sidenav--minified .sidenav__label {
   padding-left: var(--sidenav-list-item-padding-x);
}
.sidenav--minified .sidenav__link {
   flex-direction: column;
   padding-top: var(--space-sm);
   padding-bottom: var(--space-sm);
}
.sidenav--minified .sidenav__icon {
   margin: 0 0 var(--sidenav-icon-text-gap);
}
.sidenav--minified .sidenav__text {
   padding: 0;
}
.sidenav--minified .sidenav__counter,
.sidenav--minified .sidenav__sublist-control {
   display: none;
}

/* -------------------------------- 

File#: _1_skeleton
Title: Skeleton Screen
Descr: Content placeholder used to indicate that content is loading
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --ske-animation-duration: 1s;
   --ske-radius: var(--radius-md);
}

.ske {
   position: relative;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   overflow: hidden;
}
.ske::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(
      90deg,
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0),
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1),
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0)
   );
   background-repeat: no-repeat;
   background-size: 500px 100%;
   background-position: -500px 0;
   will-change: background-position;
   animation: ske-background var(--ske-animation-duration) infinite;
}

@keyframes ske-background {
   from {
      background-position: -500px 0;
   }
   to {
      background-position: calc(100% + 500px) 0;
   }
}
.ske--circle {
   height: 0;
   padding-bottom: 100%;
   border-radius: 50%;
   clip-path: circle(50% at 50% 50%);
}

.ske--rect,
[class*="ske--rect-"],
.ske--square {
   border-radius: var(--ske-radius);
   clip-path: inset(0% 0% 0% 0% round var(--ske-radius));
}

[class*="ske--rect-"],
.ske--square {
   height: 0;
   padding-bottom: calc(100% / (var(--ske-aspect-ratio)));
}

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

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

.ske--square,
.ske--rect-1\:1 {
   --ske-aspect-ratio: 1/1;
}

.ske--text {
   height: 1em;
   border-radius: var(--ske-radius);
   clip-path: inset(0% 0% 0% 0% round var(--ske-radius));
}

/* -------------------------------- 

File#: _1_skip-link
Title: Skip Link
Descr: Accessibility feature that allows users to jump to the main content of the page
Usage: codyhouse.co/license

-------------------------------- */
.skip-link {
   position: absolute;
   z-index: var(--z-index-fixed-element, 10);
   top: 0;
   left: 0;
   display: inline-block;
   padding: var(--space-sm) var(--space-md);
   background-color: var(--color-bg-light);
   box-shadow: var(--shadow-lg);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}
.skip-link:focus,
.skip-link.skip-link--focus {
   clip: auto;
   clip-path: none;
   outline: 3px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

@media screen and (prefers-reduced-motion: no-preference) {
   html {
      scroll-behavior: smooth;
   }
}
/* -------------------------------- 

File#: _1_slider
Title: Slider
Descr: Slider element for choosing numbers between a min and a max value
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --slider-width: 200px;
   --slider-track-height: 8px;
   --slide-thumb-size: 20px;
}

.slider {
   position: relative;
   width: var(--slider-width);
}

.slider__range {
   width: 100%;
   --slider-fill-value: 0%;
   --slider-empty-value: 100%;
}

.slider__input {
   display: block;
   -webkit-appearance: none;
   width: 100%;
   background: transparent;
}

.slider__input:focus {
   outline: none;
}

.slider__input::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: var(--slide-thumb-size);
   height: var(--slide-thumb-size);
   border-radius: 50%;
   border: none;
   background-color: var(--color-white);
   box-shadow: var(--shadow-xs), var(--shadow-sm);
   cursor: grab;
   margin-top: calc((var(--slider-track-height) - var(--slide-thumb-size)) * 0.5);
}

.slider__input:active::-webkit-slider-thumb {
   cursor: grabbing;
}

.slider__input::-moz-range-thumb {
   width: var(--slide-thumb-size);
   height: var(--slide-thumb-size);
   border-radius: 50%;
   border: none;
   background-color: var(--color-white);
   box-shadow: var(--shadow-xs), var(--shadow-sm);
   cursor: grab;
}

.slider__input:active::-moz-range-thumb {
   cursor: grabbing;
}

.slider__input:active::-ms-thumb {
   cursor: grabbing;
}

.slider__input:focus::-webkit-slider-thumb {
   box-shadow:
      var(--shadow-xs),
      var(--shadow-sm),
      0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2),
      var(--shadow-md);
}

.slider__input:focus::-moz-range-thumb {
   box-shadow:
      var(--shadow-xs),
      var(--shadow-sm),
      0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2),
      var(--shadow-md);
}

.slider__input::-webkit-slider-runnable-track {
   height: var(--slider-track-height);
   border-radius: 50em;
   background-image: linear-gradient(
      to right,
      var(--color-primary) var(--slider-fill-value),
      var(--color-contrast-lower) var(--slider-fill-value),
      var(--color-contrast-lower) var(--slider-empty-value)
   );
   margin-top: calc((var(--slide-thumb-size) - var(--slider-track-height)) * 0.5);
}

.slider__input::-moz-range-track {
   height: var(--slider-track-height);
   border-radius: 50em;
   background-image: linear-gradient(
      to right,
      var(--color-primary) var(--slider-fill-value),
      var(--color-contrast-lower) var(--slider-fill-value),
      var(--color-contrast-lower) var(--slider-empty-value)
   );
}

.slider__input::-moz-focus-outer {
   border: 0;
}

.slider__input::-ms-tooltip {
   display: none;
}

.slider__input::-ms-thumb {
   width: var(--slide-thumb-size);
   height: var(--slide-thumb-size);
   border-radius: 50%;
   border: none;
   background-color: var(--color-white);
   box-shadow: var(--shadow-xs), var(--shadow-sm);
   cursor: grab;
   transform: translateY(0);
   background-color: white !important;
   box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
   height: 20px;
   width: 20px;
}

.slider__input:focus::-ms-thumb {
   box-shadow: inset 0 0 0 2px hsla(220, 90%, 56%, 0.2);
}

.slider__input::-ms-track {
   height: var(--slider-track-height);
   border-radius: 50em;
   background-image: linear-gradient(
      to right,
      var(--color-primary) var(--slider-fill-value),
      var(--color-contrast-lower) var(--slider-fill-value),
      var(--color-contrast-lower) var(--slider-empty-value)
   );
   background-color: hsl(240, 1%, 60%);
   color: transparent;
   height: 8px;
}

.slider--floating-value .slider__value {
   position: absolute;
   top: calc(0px - var(--space-md));
   left: var(--slide-thumb-size);
   transform: translateX(-50%);
   font-size: var(--text-sm);
}

.slider--range-not-supported .slider__value {
   display: none;
}

/* -------------------------------- 

File#: _1_sliding-panels
Title: Sliding Panels
Descr: A group of sections that expand to reveal additional content, or hide to show the navigation
Usage: codyhouse.co/license

-------------------------------- */
.s-panels__nav-control {
   position: fixed;
   z-index: var(--z-index-fixed-element, 10);
   top: var(--space-md);
   right: var(--space-md);
   width: 48px;
   height: 48px;
   border-radius: 50%;
   border: 1px solid hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.1);
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.95);
   display: flex;
   justify-content: center;
   align-items: center;
   color: var(--color-white);
   transition: transform 0.3s var(--ease-in-out);
}
.s-panels__nav-control:active {
   transform: translateY(2px);
}
.s-panels__nav-control .icon__group * {
   transition:
      transform 0.3s var(--ease-in-out),
      stroke-dashoffset 0.3s var(--ease-in-out);
   stroke-dasharray: 24;
}
.s-panels__nav-control .icon__group *:nth-child(1) {
   transform-origin: 2px 6px;
}
.s-panels__nav-control .icon__group *:nth-child(2) {
   transform-origin: 2px 12px;
}
.s-panels__nav-control .icon__group *:nth-child(3) {
   transform-origin: 2px 18px;
}
@media (orientation: portrait) {
   .s-panels__nav-control.s-panels__nav-control--arrow-down {
      transform: rotate(-180deg);
   }
   .s-panels__nav-control.s-panels__nav-control--arrow-down:active {
      transform: translateY(2px) rotate(-180deg);
   }
}
@media (orientation: landscape) {
   .s-panels__nav-control.s-panels__nav-control--arrow-down {
      transform: rotate(-90deg);
   }
   .s-panels__nav-control.s-panels__nav-control--arrow-down:active {
      transform: translateY(2px) rotate(-90deg);
   }
}
.s-panels__nav-control.s-panels__nav-control--arrow-down .icon__group *:nth-child(1),
.s-panels__nav-control.s-panels__nav-control--arrow-down .icon__group *:nth-child(3) {
   stroke-dashoffset: 14;
}
.s-panels__nav-control.s-panels__nav-control--arrow-down .icon__group *:nth-child(1) {
   transform: translateY(6px) rotate(-45deg);
}
.s-panels__nav-control.s-panels__nav-control--arrow-down .icon__group *:nth-child(3) {
   transform: translateY(-6px) rotate(45deg);
}
.s-panels__nav-control.s-panels__nav-control--close:active {
   transform: translateY(2px);
}
.s-panels__nav-control.s-panels__nav-control--close .icon__group *:nth-child(1) {
   transform: translateX(2.93px) translateY(-1.07px) rotate(45deg);
}
.s-panels__nav-control.s-panels__nav-control--close .icon__group *:nth-child(2) {
   stroke-dashoffset: 24;
}
.s-panels__nav-control.s-panels__nav-control--close .icon__group *:nth-child(3) {
   transform: translateX(2.93px) translateY(1.07px) rotate(-45deg);
}

.s-panels__projects-list {
   position: relative;
   z-index: 2;
   height: 100vh;
   overflow: hidden;
   pointer-events: none;
}

.s-panels__project-preview {
   position: absolute;
   top: 0;
   left: 0;
   z-index: 2;
   width: 100%;
   height: 100%;
   transition: transform 0.4s var(--ease-in-out);
}

@media (orientation: landscape) {
   .s-panels__project-preview:nth-child(2) .s-panels__project-figure {
      transform: translateX(25%) scaleX(0.25);
   }
   .s-panels__project-preview:nth-child(2) .s-panels__project-intro {
      transform: translateX(100%);
   }
   .s-panels__project-preview:nth-child(3) .s-panels__project-figure {
      transform: translateX(50%) scaleX(0.25);
   }
   .s-panels__project-preview:nth-child(3) .s-panels__project-intro {
      transform: translateX(200%);
   }
   .s-panels__project-preview:nth-child(4) .s-panels__project-figure {
      transform: translateX(75%) scaleX(0.25);
   }
   .s-panels__project-preview:nth-child(4) .s-panels__project-intro {
      transform: translateX(300%);
   }
   .s-panels__project-preview--hide {
      transform: translateY(-100%);
   }
}
@media (orientation: portrait) {
   .s-panels__project-preview:nth-child(2) .s-panels__project-figure {
      transform: translateY(25%) scaleY(0.25);
   }
   .s-panels__project-preview:nth-child(2) .s-panels__project-intro {
      transform: translateY(100%);
   }
   .s-panels__project-preview:nth-child(3) .s-panels__project-figure {
      transform: translateY(50%) scaleY(0.25);
   }
   .s-panels__project-preview:nth-child(3) .s-panels__project-intro {
      transform: translateY(200%);
   }
   .s-panels__project-preview:nth-child(4) .s-panels__project-figure {
      transform: translateY(75%) scaleY(0.25);
   }
   .s-panels__project-preview:nth-child(4) .s-panels__project-intro {
      transform: translateY(300%);
   }
   .s-panels__project-preview--hide {
      transform: translateX(-100%);
   }
}
.s-panels__project-preview--selected {
   z-index: 1;
   pointer-events: auto;
}
.s-panels__project-preview--selected .s-panels__project-figure {
   overflow: visible;
}
.s-panels__project-preview--selected .s-panels__project-img {
   opacity: 0.9 !important;
   filter: none !important;
}
.s-panels__project-preview--selected .s-panels__project-intro {
   opacity: 0;
}
.s-panels__project-preview--selected .s-panels__project-control {
   pointer-events: none;
}
.s-panels__project-preview--selected .s-panels__text-component::before,
.s-panels__project-preview--selected .s-panels__text-component::after {
   display: none;
}
.s-panels__project-preview--selected .s-panels__project-title-wrapper {
   opacity: 1;
   visibility: visible;
   transition: opacity 0.4s 0.2s;
}
.s-panels__project-preview--selected .s-panels__project-title {
   transform: translateY(0);
   transition-delay: 0.2s;
}

@media (orientation: landscape) {
   .s-panels__project-preview--selected .s-panels__project-figure {
      transform: translateX(calc(50% - 50% / 4)) scaleX(0.25) !important;
   }
}
@media (orientation: portrait) {
   .s-panels__project-preview--selected .s-panels__project-figure {
      transform: translateY(calc(50% - 50% / 4)) scaleY(0.25) !important;
   }
}
.s-panels__project-preview--no-transition {
   transition: none !important;
}
.s-panels__project-preview--no-transition > * {
   transition: none !important;
}

.s-panels__project-figure,
.s-panels__project-img,
.s-panels__project-intro,
.s-panels__project-control {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.s-panels__project-figure {
   overflow: hidden;
   transition: transform 0.4s var(--ease-in-out);
}

@media (orientation: landscape) {
   .s-panels__project-figure {
      transform-origin: left center;
      transform: scaleX(0.25);
   }
}
@media (orientation: portrait) {
   .s-panels__project-figure {
      transform-origin: center top;
      transform: scaleY(0.25);
   }
}
.s-panels__project-img {
   display: block;
   -o-object-fit: cover;
   object-fit: cover;
   opacity: 0.25;
   filter: grayscale(100%);
   transition:
      opacity 0.4s,
      filter 0.4s,
      transform 0.4s var(--ease-in-out);
}
@media (min-width: 64rem) {
   .s-panels__project-img {
      opacity: 0.15;
   }
}

.s-panels__project-intro {
   z-index: 1;
   display: flex;
   justify-content: center;
   align-items: center;
   pointer-events: auto;
   transition: opacity 0.3s;
}
.s-panels__project-intro:hover + .s-panels__project-figure .s-panels__project-img,
.s-panels__project-intro:focus-within + .s-panels__project-figure .s-panels__project-img {
   opacity: 0.5;
   filter: grayscale(50%);
}
.s-panels__project-intro:hover .s-panels__text-component::before,
.s-panels__project-intro:focus-within .s-panels__text-component::before {
   transform: scaleY(1);
}
.s-panels__project-intro:hover .s-panels__text-component::after,
.s-panels__project-intro:focus-within .s-panels__text-component::after {
   transform: scaleX(1);
}

@media (orientation: landscape) {
   .s-panels__project-img {
      transform: scaleX(4);
   }
   .s-panels__project-intro {
      width: 25%;
   }
}
@media (orientation: portrait) {
   .s-panels__project-img {
      transform: scaleY(4);
   }
   .s-panels__project-intro {
      height: 25%;
   }
}
.s-panels__text-component {
   --icon-size: 20px;
   --icon-stroke-width: 1px;
   --icon-margin-top: 12px;
   position: relative;
}
.s-panels__text-component::before,
.s-panels__text-component::after {
   content: "";
   position: absolute;
   background-color: var(--color-white);
   transition: transform 0.2s var(--ease-in-out);
}
.s-panels__text-component::before {
   width: var(--icon-stroke-width);
   height: var(--icon-size);
   bottom: calc(-1 * var(--icon-size) - var(--icon-margin-top));
   left: calc(50% - var(--icon-stroke-width) / 2);
   transform: scaleY(0);
}
.s-panels__text-component::after {
   width: var(--icon-size);
   height: var(--icon-stroke-width);
   bottom: calc(-0.5 * (var(--icon-size) + var(--icon-stroke-width)) - var(--icon-margin-top));
   left: calc(50% - var(--icon-size) / 2);
   transform: scaleX(0);
}
@media (min-width: 64rem) {
   .s-panels__text-component {
      --icon-size: 24px;
      --icon-margin-top: 16px;
   }
}

.s-panels__project-control {
   color: transparent;
}
.s-panels__project-control:focus {
   outline: none;
}

.s-panels__project-title-wrapper {
   position: absolute;
   bottom: 0;
   width: 100%;
   left: 0;
   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), 0.7)
   );
   opacity: 0;
   visibility: hidden;
   transition:
      opacity 0.4s,
      visibility 0s 0.4s;
}

.s-panels__project-title {
   transform: translateY(50px);
   transition: transform 0.4s var(--ease-out);
}

.s-panels__nav-wrapper {
   position: fixed;
   top: 0;
   left: 0;
   z-index: 1;
   width: 100%;
   height: 100%;
}

.s-panels__nav-link {
   color: var(--color-bg);
   text-decoration: none;
   position: relative;
   display: inline-block;
   padding: var(--space-xxxxs) 0;
   line-height: 1;
}
.s-panels__nav-link::before,
.s-panels__nav-link::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   height: 1px;
   width: 100%;
   background-color: currentColor;
}
.s-panels__nav-link::before {
   opacity: 0.15;
}
.s-panels__nav-link::after {
   transform-origin: right center;
   transform: scaleX(0);
   transition: transform 0.3s var(--ease-in-out);
}
.s-panels__nav-link:hover::after {
   transform: scaleX(1);
   transform-origin: left center;
}

.s-panels__social-link {
   color: var(--color-bg);
   text-decoration: none;
   opacity: 1;
   transition: 0.2s;
}
.s-panels__social-link:hover {
   opacity: 0.65;
}

.s-panels__project-content {
   position: relative;
   z-index: 2;
}

.s-panels__overlay-layer {
   position: fixed;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   opacity: 0;
   z-index: 2;
   visibility: hidden;
   transition: 0.5s;
}

.s-panels__overlay-layer--visible {
   opacity: 1;
   visibility: visible;
   z-index: 3;
}

/* -------------------------------- 

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

/* -------------------------------- 

File#: _1_social-sharing
Title: Social Sharing
Descr: Social sharing plugin
Usage: codyhouse.co/license

-------------------------------- */
.sharebar__btn {
   --size: 60px;
   width: var(--size);
   height: var(--size);
   display: flex;
   background: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   border-radius: 50%;
   transition: 0.2s;
}
.sharebar__btn .icon {
   --size: 24px;
   display: block;
   margin: auto;
   color: var(--color-contrast-high);
   transition: color 0.2s;
}
.sharebar__btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
   box-shadow: var(--shadow-sm);
}
.sharebar__btn:hover .icon {
   color: var(--color-contrast-higher);
}

/* -------------------------------- 

File#: _1_socials-v2
Title: Socials v2
Descr: Section with newsletter form and links to social media accounts
Usage: codyhouse.co/license

-------------------------------- */
.socials-v2 {
   position: relative;
   z-index: 1;
}

.socials-v2__btn {
   --btn-size: 40px;
   width: var(--btn-size);
   height: var(--btn-size);
   display: inline-flex;
   background: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   border-radius: 50%;
   transition: 0.2s;
}
.socials-v2__btn .icon {
   display: block;
   margin: auto;
   color: var(--color-contrast-higher);
   transition: color;
}
.socials-v2__btn:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-md);
}
.socials-v2__btn:hover .icon {
   color: var(--color-primary);
}
@media (min-width: 64rem) {
   .socials-v2__btn {
      --btn-size: 48px;
   }
}

/* -------------------------------- 

File#: _1_socials-v3
Title: Socials v3
Descr: Section with links to social media accounts
Usage: codyhouse.co/license

-------------------------------- */
.socials-v3 {
   position: relative;
   z-index: 1;
}

.socials-v3__btns {
   display: flex;
}
.socials-v3__btns > * {
   flex-grow: 1;
}
.socials-v3__btns:hover .socials-v3__btn {
   opacity: 0.5;
}
.socials-v3__btns:hover .socials-v3__btn::after {
   opacity: 0;
}
.socials-v3__btns li:last-child .socials-v3__btn::after {
   display: none;
}

.socials-v3__btn {
   position: relative;
   display: block;
   text-align: center;
   padding-top: var(--space-xl);
   padding-bottom: var(--space-xl);
   border-radius: var(--radius-md);
   transition: 0.3s;
}
.socials-v3__btn .icon {
   font-size: 1.6em;
   color: var(--color-contrast-high);
   transition:
      color 0.2s,
      transform 0.2s;
}
.socials-v3__btn::after {
   content: "";
   position: absolute;
   right: 0;
   top: 0;
   width: 1px;
   height: 100%;
   background-color: var(--color-contrast-lower);
   transition: opacity 0.2s;
}
.socials-v3__btn:hover {
   background-color: var(--color-bg);
   box-shadow: var(--shadow-md);
   opacity: 1 !important;
}
.socials-v3__btn:hover .icon {
   color: var(--color-primary);
   transform: scale(1.2);
}

@media (min-width: 48rem) {
   .socials-v3__btn .icon {
      font-size: 2em;
   }
}
/* -------------------------------- 

File#: _1_socials-v4
Title: Socials v4
Descr: Section with newsletter form and links to social media accounts
Usage: codyhouse.co/license

-------------------------------- */
.socials-v4 {
   position: relative;
   z-index: 1;
}

.socials-v4__btn {
   --btn-size: 40px;
   width: var(--btn-size);
   height: var(--btn-size);
   display: inline-flex;
   background: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   border-radius: 50%;
   transition: 0.2s;
}
.socials-v4__btn .icon {
   display: block;
   margin: auto;
   color: var(--color-contrast-high);
   transition: color 0.2s;
}
.socials-v4__btn:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-md);
}
.socials-v4__btn:hover .icon {
   color: var(--color-primary);
}
@media screen {
   .socials-v4__btn {
      --btn-size: 48px;
   }
}

/* -------------------------------- 

File#: _1_socials-v5
Title: Socials v5
Descr: Section with newsletter form and links to social media accounts
Usage: codyhouse.co/license

-------------------------------- */
.socials-v5 {
   position: relative;
   z-index: 1;
}

.socials-v5__btn {
   display: inline-flex;
   --btn-size: 40px;
   width: var(--btn-size);
   height: var(--btn-size);
   background: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-xs);
   border-radius: 50%;
   transition: 0.2s;
}
.socials-v5__btn .icon {
   display: block;
   margin: auto;
   color: var(--color-contrast-high); /* icon color */
   transition: color 0.2s;
}
.socials-v5__btn:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-sm);
}
.socials-v5__btn:hover .icon {
   color: var(--color-primary);
}

@media (min-width: 64rem) {
   .socials-v5 {
      background: linear-gradient(90deg, var(--color-bg) 50%, var(--color-bg-dark) 50%);
   }
   .socials-v5__btn {
      --btn-size: 48px;
      background-color: var(--color-bg);
   }
}
/* -------------------------------- 

File#: _1_socials
Title: Socials
Descr: Section with links to social media accounts
Usage: codyhouse.co/license

-------------------------------- */
.socials__btns a {
   --size: 2.5em;
   width: var(--size);
   height: var(--size);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: var(--color-contrast-high);
   transition: 0.3s;
}
.socials__btns a .icon {
   font-size: 1.25em; /* icon size */
   color: var(--color-bg); /* icon color */
   transition:
      color 0.3s,
      transform 0.3s var(--ease-out-back);
}
.socials__btns a:hover {
   background-color: var(--color-primary);
}
.socials__btns a:hover .icon {
   transform: scale(1.2);
   color: var(--color-white);
}

/* -------------------------------- 

File#: _1_split-button-v2
Title: Split Button v2
Descr: A button that shows two actions on click
Usage: codyhouse.co/license

-------------------------------- */
.split-btn-v2 {
   position: relative;
   z-index: 1;
}

.split-btn-v2--expanded .split-btn-v2__btn {
   opacity: 0;
   pointer-events: none;
}
.split-btn-v2--expanded .split-btn-v2__list-wrapper {
   opacity: 1;
   pointer-events: auto;
}
.split-btn-v2--expanded .split-btn-v2__list {
   transform: scale(1);
}
.split-btn-v2--expanded .split-btn-v2__morph-bg {
   box-shadow: var(--inner-glow-top), var(--shadow-ring), var(--shadow-md);
}

.split-btn-v2__btn {
   position: relative;
   z-index: 1;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   white-space: nowrap;
   text-decoration: none;
   border-radius: var(--radius-md);
   padding: var(--space-xxs) var(--space-sm);
   font-weight: 500;
   line-height: 1.2;
   color: var(--color-contrast-higher);
   cursor: pointer;
   transition: 0.2s;
}
.split-btn-v2__btn:hover .split-btn-v2__btn-icon {
   transform: translateY(1px);
}
.split-btn-v2__btn:hover ~ .split-btn-v2__morph-bg {
   background: var(--color-bg-light);
   box-shadow: var(--inner-glow-top), var(--shadow-ring), var(--shadow-xs);
}
.split-btn-v2__btn:focus-visible {
   outline: none;
}
.split-btn-v2__btn:focus-visible ~ .split-btn-v2__morph-bg {
   box-shadow:
      var(--inner-glow-top),
      var(--shadow-ring),
      var(--shadow-sm),
      0 0 0 2px var(--color-bg),
      0 0 0 4px var(--color-contrast-high);
}
.split-btn-v2__btn:active {
   transform: translateY(2px);
}

.split-btn-v2__btn-icon {
   transition: 0.2s;
}

.split-btn-v2__list-wrapper {
   position: absolute;
   z-index: 1;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   padding: var(--space-xxxs);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s;
}

.split-btn-v2__list {
   transform: scale(0.5);
   transition: 0.2s var(--ease-in-out);
}

.split-btn-v2__list-item {
   position: relative;
   display: flex;
   gap: var(--space-xxxs);
   width: 100%;
   line-height: 1;
   font-weight: 500;
   white-space: nowrap;
   font-size: 1rem;
   color: var(--color-contrast-higher);
   padding: var(--space-xxs) var(--space-xs);
   border-radius: var(--radius-sm);
   cursor: pointer;
}
.split-btn-v2__list-item::after {
   content: "";
   position: absolute;
   inset: 0;
   z-index: -1;
   border-radius: inherit;
   transform: scale(0.95);
   transition: 0.2s;
}
.split-btn-v2__list-item:hover::after {
   transform: scale(1);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.split-btn-v2__list-item:hover .split-btn-v2__anim-path {
   animation: split-btn-svg-path-anim 2s;
}
.split-btn-v2__list-item:focus-visible {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
   color: var(--color-primary);
}

.split-btn-v2__anim-path {
   transform-origin: 8px 2px;
   transform: translateY(-1px);
}

@keyframes split-btn-svg-path-anim {
   /* bounce animation */
   0%,
   20%,
   40%,
   100% {
      transform: translateY(-1px);
   }
   10%,
   30% {
      transform: translateY(1px);
   }
}
/* morphing background */
.split-btn-v2__morph-bg {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   border-radius: var(--radius-md);
   pointer-events: none;
   transform-origin: left top;
   backface-visibility: hidden;
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow-top), var(--shadow-ring), var(--shadow-sm);
   transition:
      box-shadow 0.2s,
      transform 0.2s var(--ease-in-out),
      background 0.2s,
      height 0.2s var(--ease-in-out),
      width 0.2s var(--ease-in-out);
   will-change: transform, height, width;
}

/* -------------------------------- 

File#: _1_stacking-cards
Title: Stacking Cards
Descr: Cards stack effect on vertical scrolling
Usage: codyhouse.co/license

-------------------------------- */
.stack-cards {
   --stack-cards-gap: var(--space-sm);
   --stack-cards-item-ratio: 2/1;
}

.stack-cards__item {
   position: relative;
   position: sticky;
   top: var(--space-md);
   height: 0;
   padding-bottom: calc(100% / (var(--stack-cards-item-ratio)));
   transform-origin: center top;
}
.stack-cards__item > * {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

/* -------------------------------- 

File#: _1_steps-v2
Title: Steps v2
Descr: Multi-step navigation with bar indicator
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --steps-v2-steps-nr: 10; /* number of steps */
}

@supports (--css: variables) {
   .steps-v2__indicator {
      position: relative;
      height: 8px;
      border-radius: 50em;
      background-color: var(--color-contrast-lower);
   }
   .steps-v2__indicator::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: calc(100% / var(--steps-v2-steps-nr) * var(--step-v2-current-step, 1));
      background-color: var(--color-primary);
      border-radius: inherit;
      transition: width 0.2s;
   }
}
/* -------------------------------- 

File#: _1_steps-v3
Title: Steps v3
Descr: Multi-step indicator
Usage: codyhouse.co/license

-------------------------------- */
.steps-v3 {
   display: flex;
   flex-wrap: wrap;
}

.steps-v3__item {
   display: flex;
   align-items: center;
   padding: var(--space-xxxxs) 0;
}

.steps-v3__item:not(:last-child)::after {
   content: "";
   display: block;
   width: 8px;
   height: 8px;
   -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cg fill='%23322f36'%3E%3Cpath d='M2.5 7l3-3-3-3' fill='none' stroke='%23322f36' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
   mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cg fill='%23322f36'%3E%3Cpath d='M2.5 7l3-3-3-3' fill='none' stroke='%23322f36' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
   background-color: var(--color-contrast-low);
   margin-left: var(--space-xs);
   margin-right: var(--space-xs);
}

.steps-v3__item--current {
   color: var(--color-primary);
}

.steps-v3__link {
   color: inherit;
   text-decoration: none;
}
.steps-v3__link:hover {
   text-decoration: underline;
}

/* -------------------------------- 

File#: _1_steps
Title: Steps
Descr: Multi-step indicator
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --steps-number: 4;
   --step-separator-line-stroke: 3px;
   --step-separator-line-gap: 3px;
   --step-circle-size: 32px;
   --step-circle-font-size: 16px;
}

.steps {
   background-color: var(--color-bg-dark);
   padding: var(--space-md);
   border-radius: var(--radius-md);
}

.steps__list {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: calc(var(--space-xs) * -1);
}

.step {
   display: inline-block;
   display: inline-flex;
   align-items: center;
   margin-bottom: var(--space-xs);
}

.step__label {
   color: inherit;
   text-decoration: none;
}

.step--completed .step__label,
.step--current .step__label {
   color: var(--color-primary);
}

.step--completed .step__label {
   text-decoration: underline;
}

.step__separator {
   margin: 0 var(--space-xs);
   display: inline-block;
   vertical-align: middle;
}
.step__separator .icon {
   display: block;
}

.step__circle {
   display: none;
}

@media (min-width: 64rem) {
   .steps {
      background-color: transparent;
      padding: calc(var(--step-circle-size) / 2) 0 0;
      border-radius: 0px;
   }
   .steps__list {
      margin-bottom: initial;
      align-items: flex-start;
   }
   @supports (grid-area: auto) {
      .steps__list {
         display: grid;
         align-items: start;
         grid-template-columns: repeat(var(--steps-number), 1fr);
      }
   }
   .step {
      float: left;
      width: calc(100% / var(--steps-number));
      justify-content: center;
      text-align: center;
      position: relative;
      margin-bottom: initial;
      padding: 0 var(--space-xs);
   }
   @supports (grid-area: auto) {
      .step {
         width: auto;
      }
   }
   .step__label {
      display: inline-block;
      margin-top: calc(var(--space-xxs) + var(--step-circle-size) / 2);
   }
   .step__separator {
      position: absolute;
      top: calc(var(--step-separator-line-stroke) * -1 / 2);
      left: calc(50% + var(--step-circle-size) / 2 + var(--step-separator-line-gap));
      height: var(--step-separator-line-stroke);
      width: calc(100% - var(--step-circle-size) - var(--step-separator-line-gap) * 2);
      margin: 0;
      background-color: var(--color-contrast-lower);
      color: transparent;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
   }
   .step--completed .step__separator {
      background-color: var(--color-primary);
   }
   .step__circle {
      display: inline-block;
      line-height: var(--step-circle-size);
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--color-contrast-lower);
      width: var(--step-circle-size);
      height: var(--step-circle-size);
      border-radius: 50%;
      position: absolute;
      left: calc(50% - var(--step-circle-size) / 2);
      top: calc(var(--step-circle-size) * -1 / 2);
      font-size: var(--step-circle-font-size);
   }
   .step__circle .icon {
      width: var(--step-circle-font-size);
      height: var(--step-circle-font-size);
   }
   .step--completed .step__circle,
   .step--current .step__circle {
      background-color: var(--color-primary);
      color: var(--color-white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
   }
}
/* screen reader */
.step--completed .step__label::after,
.step--current .step__label::after {
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

.step--completed .step__label::after {
   content: "step completed";
}

.step--current .step__label::after {
   content: "step current";
}

/* -------------------------------- 

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_sticky-feature
Title: Sticky Feature
Descr: List of product features with sticky images
Usage: codyhouse.co/license

-------------------------------- */
.sticky-feature {
   position: relative;
   z-index: 1;
}

.sticky-feature__content-figure {
   /* images visible on small screens */
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   margin-top: var(--space-md);
}
.sticky-feature__content-figure img {
   display: block;
   width: 100%;
}

.sticky-feature__media-list {
   position: sticky;
   top: 0;
   height: 100vh;
}

.sticky-feature__media-item {
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.sticky-feature__media-figure {
   /* images visible on bigger screens */
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-sm);
   overflow: hidden;
   opacity: 0;
}
.sticky-feature__media-figure img {
   display: block;
   width: 100%;
   max-height: 90vh;
}
.sticky-feature-current-item .sticky-feature__media-figure {
   opacity: 1;
}

@media (min-width: 64rem) {
   .sticky-feature__content-list {
      padding-top: 50vh;
      padding-bottom: 50vh;
   }
   .sticky-feature__title {
      font-size: var(--text-xl);
      cursor: pointer;
      opacity: 0.3;
   }
   .sticky-feature__title:hover,
   .sticky-feature-current-item .sticky-feature__title {
      opacity: 1;
   }
   .sticky-feature__content-figure {
      /* show only to screen readers */
      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;
   }
   .sticky-feature__media-list {
      /* text overlay gradients */
   }
   .sticky-feature__media-list::before,
   .sticky-feature__media-list::after {
      content: "";
      position: absolute;
      right: 0;
      width: 100vw;
      height: 100px;
      pointer-events: none;
   }
   .sticky-feature__media-list::before {
      top: 0;
      background: linear-gradient(
         to bottom,
         var(--color-bg),
         hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.8),
         hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0)
      );
   }
   .sticky-feature__media-list::after {
      bottom: 0;
      background: linear-gradient(
         to top,
         var(--color-bg),
         hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.8),
         hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0)
      );
   }
}
/* -------------------------------- 

File#: _1_sticky-hero
Title: Sticky Hero
Descr: A sticky hero section that reveals its content on scroll
Usage: codyhouse.co/license

-------------------------------- */
.sticky-hero {
   position: relative;
   z-index: 1;
}

.sticky-hero__media {
   position: relative;
   position: sticky;
   z-index: 1;
   top: 0;
   width: 100%;
   height: 100vh;
   overflow: hidden;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   transition: transform 0.5s var(--ease-in-out);
   transform: translateZ(0);
}

.sticky-hero--overlay-layer .sticky-hero__media::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   opacity: 0;
   background-color: var(--color-bg);
   transition: opacity 1s;
}

.sticky-hero--media-is-fixed.sticky-hero--overlay-layer .sticky-hero__media::after {
   opacity: 0.65;
}

.sticky-hero--media-is-fixed.sticky-hero--scale .sticky-hero__media {
   transform: scale(0.9);
}

.sticky-hero__video {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
}
.sticky-hero__video video {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
   display: block;
   min-height: 100%;
   min-width: 100%;
   height: auto;
   width: auto;
   max-width: none;
}

.sticky-hero__content {
   position: relative;
   z-index: 2;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   transform: translateZ(0);
}

/* -------------------------------- 

File#: _1_stories
Title: Stories
Descr: A collection of related article tasters
Usage: codyhouse.co/license

-------------------------------- */
.stories {
   background-color: hsla(
      var(--color-contrast-lower-h),
      var(--color-contrast-lower-s),
      var(--color-contrast-lower-l),
      0.3
   );
   padding: var(--component-padding);
   border-radius: var(--radius-lg);
}
@media (min-width: 64rem) {
   .stories {
      --text-unit: 1em; /* use Em units */
      font-size: var(--text-sm); /* reduce font size of all text elements */
      padding: var(--space-sm);
   }
}

.stories__legend {
   font-size: 1em;
   margin-bottom: var(--space-md);
   color: var(--color-contrast-medium);
}

.stories__story {
   display: flex;
}
.stories__story:not(:last-child) {
   margin-bottom: var(--space-sm);
   padding-bottom: var(--space-sm);
   border-bottom: 1px solid var(--color-contrast-lower);
}

.stories__img-wrapper {
   display: block;
   width: 3.6em;
   height: 3.6em;
   border-radius: var(--radius-md);
   overflow: hidden;
   flex-shrink: 0;
   transition: opacity 0.2s;
   margin-right: var(--space-xs);
}
.stories__img-wrapper figure,
.stories__img-wrapper img {
   width: inherit;
   height: inherit;
}
.stories__img-wrapper img {
   display: block;
   -o-object-fit: cover;
   object-fit: cover;
}
.stories__img-wrapper:hover {
   opacity: 0.85;
}

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

.stories__headline {
   font-size: var(--text-md);
}

.stories__metadata {
   color: var(--color-contrast-medium);
   font-size: var(--text-sm);
   text-transform: uppercase;
}

.stories__headline a,
.stories__metadata a {
   color: var(--color-contrast-higher);
   text-decoration: none;
}
.stories__headline a:hover,
.stories__metadata a:hover {
   text-decoration: underline;
}

.stories__separator {
   display: inline-block;
   width: 6px;
   height: 6px;
   vertical-align: middle;
   background-color: var(--color-contrast-low);
   border-radius: 50%;
   margin: 0 var(--space-xxxs);
}

/* --------------------------------

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_svg-image-clip
Title: Svg Image Clip
Descr: Image clipped using a SVG element
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

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_switch
Title: Switch
Descr: Custom ON/OFF checkbox toggle
Usage: codyhouse.co/license

-------------------------------- */
:root {
   /* style */
   --switch-width: 64px;
   --switch-height: 32px;
   --switch-padding: 3px;
   /* animation */
   --switch-animation-duration: 0.2s;
}

.switch {
   position: relative;
   display: inline-flex;
   flex-shrink: 0;
   align-items: center;
   width: var(--switch-width);
   height: var(--switch-height);
   border-radius: 50em;
   padding: var(--switch-padding) 0;
}

.switch__input,
.switch__label {
   position: absolute;
   left: 0;
   top: 0;
}

.switch__input {
   margin: 0;
   padding: 0;
   opacity: 0;
   height: 0;
   width: 0;
   pointer-events: none;
}
.switch__input:checked + .switch__label {
   background-color: var(--color-primary);
}
.switch__input:checked + .switch__label + .switch__marker {
   left: calc(100% - var(--switch-height) + var(--switch-padding));
}
.switch__input:focus + .switch__label,
.switch__input:active + .switch__label {
   box-shadow: 0 0 0 2px
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
}
.switch__input:checked:focus + .switch__label,
.switch__input:checked:active + .switch__label {
   box-shadow: 0 0 0 2px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.switch__label {
   width: 100%;
   height: 100%;
   color: transparent;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   background-color: var(--color-bg-darker);
   border-radius: inherit;
   z-index: 1;
   transition: var(--switch-animation-duration);
   overflow: hidden;
}

.switch__marker {
   position: relative;
   background-color: var(--color-white);
   width: calc(var(--switch-height) - var(--switch-padding) * 2);
   height: calc(var(--switch-height) - var(--switch-padding) * 2);
   border-radius: 50%;
   z-index: 2;
   pointer-events: none;
   box-shadow: var(--shadow-xs);
   left: var(--switch-padding);
   transition: left var(--switch-animation-duration);
   will-change: left;
}

/* -------------------------------- 

File#: _1_tabbed-navigation-v2
Title: Tabbed Navigation v2
Descr: Tabbed (secondary) navigation
Usage: codyhouse.co/license

-------------------------------- */
.tabs-nav-v2 {
   --tabs-nav-border-width: 1px;
   display: flex;
   flex-wrap: wrap;
   border-bottom: var(--tabs-nav-border-width) solid var(--color-contrast-lower);
}
.tabs-nav-v2 li {
   display: inline-block;
   margin-right: var(--space-xs);
   margin-bottom: var(--space-xs);
}

.tabs-nav-v2__item {
   display: inline-block;
   padding: var(--space-xs) var(--space-sm);
   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
   );
   color: inherit;
   white-space: nowrap;
   text-decoration: none;
}

.tabs-nav-v2__item--selected,
.tabs-nav-v2__item[aria-selected="true"] {
   color: var(--color-bg);
   background-color: var(--color-contrast-higher);
}

@media (min-width: 64rem) {
   .tabs-nav-v2 li {
      margin: 0;
   }
   .tabs-nav-v2__item {
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      background-color: transparent;
      border: var(--tabs-nav-border-width) solid transparent;
      border-bottom-width: 0;
      transition: 0.2s;
   }
   .tabs-nav-v2__item:hover {
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.075
      );
   }
   .tabs-nav-v2__item--selected,
   .tabs-nav-v2__item[aria-selected="true"] {
      position: relative;
      background-color: var(--color-bg);
      color: var(--color-primary);
      border-color: var(--color-contrast-lower);
   }
   .tabs-nav-v2__item--selected::after,
   .tabs-nav-v2__item[aria-selected="true"]::after {
      content: "";
      position: absolute;
      bottom: calc(var(--tabs-nav-border-width) * -1);
      left: 0;
      width: 100%;
      height: var(--tabs-nav-border-width);
      background-color: var(--color-bg);
   }
   .tabs-nav-v2__item--selected:hover,
   .tabs-nav-v2__item[aria-selected="true"]:hover {
      background-color: var(--color-bg);
   }
}
/* -------------------------------- 

File#: _1_tabbed-navigation
Title: Tabbed Navigation
Descr: Tabbed secondary navigation
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --s-tabs-border-bottom-width: 1px;
   --s-tabs-selected-item-border-bottom-width: 1px;
}

.s-tabs {
   position: relative;
}
.s-tabs::after {
   /* gradient - truncate text */
   content: "";
   position: absolute;
   right: -1px;
   top: 0;
   height: calc(100% - var(--s-tabs-border-bottom-width));
   width: 2em;
   background: linear-gradient(
      90deg,
      hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0),
      var(--color-bg)
   );
   pointer-events: none;
   z-index: 1;
}

.s-tabs__list {
   display: flex;
   overflow: auto;
   -webkit-overflow-scrolling: auto;
}
.s-tabs__list::after {
   /* border bottom */
   content: "";
   position: absolute;
   width: 100%;
   height: var(--s-tabs-border-bottom-width);
   left: 0;
   bottom: 0;
   background-color: var(--color-contrast-lower);
}

.s-tabs__link {
   color: var(--color-contrast-medium);
   text-decoration: none;
   display: inline-block;
   padding: var(--space-xs) var(--space-sm);
   white-space: nowrap;
   border-bottom: var(--s-tabs-selected-item-border-bottom-width) solid transparent;
   z-index: 1;
   transition: 0.2s;
}
.s-tabs__link:hover:not(.s-tabs__link--current) {
   color: var(--color-contrast-high);
}

.s-tabs__link--current {
   position: relative;
   color: var(--color-primary);
   border-bottom-color: var(--color-primary);
}

/* -------------------------------- 

File#: _1_table-v2
Title: Table v2
Descr: Basic table template
Usage: codyhouse.co/license

-------------------------------- */
.tbl {
   position: relative;
   z-index: 1;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
}
.tbl::-webkit-scrollbar {
   height: 8px;
   width: 8px;
}
.tbl::-webkit-scrollbar-track {
   background-color: var(--color-contrast-lower);
}
.tbl::-webkit-scrollbar-thumb {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.9
   );
   border-radius: 50em;
}
.tbl::-webkit-scrollbar-thumb:hover {
   background-color: var(--color-contrast-higher);
}

.tbl__table {
   width: 100%;
}

.tbl__body .tbl__row {
   border-bottom: 1px solid var(--color-contrast-lower);
   transition: 0.2s;
}
.tbl__body .tbl__row:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.05
   );
}
.tbl__body .tbl__row:last-child {
   border-bottom: none;
}

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

/* -------------------------------- 

File#: _1_table
Title: Table
Descr: Data tables used to organize and display information in rows and columns
Usage: codyhouse.co/license

-------------------------------- */
.table {
   position: relative;
   z-index: 1;
}

.table:not(.table--expanded) {
   border-collapse: separate;
   border-spacing: 0 var(--space-md);
   margin-top: calc(-2 * var(--space-md));
}
.table:not(.table--expanded) .table__header {
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}
.table:not(.table--expanded) .table__row .table__cell:first-child {
   border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.table:not(.table--expanded) .table__row .table__cell:last-child {
   border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.table:not(.table--expanded) .table__row .table__cell:last-child::after {
   display: none;
}
.table:not(.table--expanded) .table__cell {
   position: relative;
   display: flex;
   justify-content: space-between;
   width: 100%;
   text-align: right;
   padding: var(--space-md);
   background-color: var(--color-bg-light);
}
.table:not(.table--expanded) .table__cell::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: var(--space-md);
   width: calc(100% - 2 * var(--space-md));
   height: 1px;
   background-color: var(--color-contrast-lower);
}
.table:not(.table--expanded) .table__label {
   font-weight: bold;
   text-align: left;
   color: var(--color-contrast-higher);
   margin-right: var(--space-md);
}

.table--expanded {
   border-bottom: 1px solid var(--color-contrast-lower);
}
.table--expanded .table__header .table__cell {
   position: relative;
   z-index: 10;
   background-color: var(--color-bg);
   border-bottom: 1px solid var(--color-contrast-lower);
   font-weight: bold;
   color: var(--color-contrast-higher);
}
.table--expanded .table__body .table__row:nth-child(odd) {
   background-color: hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 0.85);
}
.table--expanded .table__cell {
   padding: var(--space-sm);
}
.table--expanded .table__label {
   display: none;
}
.table--expanded .table__header--sticky .table__cell {
   position: sticky;
   top: 0;
}

.table {
   opacity: 0;
}

.table--loaded {
   opacity: 1;
}

[class*="table--expanded"]::before {
   display: none;
}

.table--expanded\@xs::before {
   content: "collapsed";
}
@media (min-width: 32rem) {
   .table--expanded\@xs::before {
      content: "expanded";
   }
}

.table--expanded\@sm::before {
   content: "collapsed";
}
@media (min-width: 48rem) {
   .table--expanded\@sm::before {
      content: "expanded";
   }
}

.table--expanded\@md::before {
   content: "collapsed";
}
@media (min-width: 64rem) {
   .table--expanded\@md::before {
      content: "expanded";
   }
}

.table--expanded\@lg::before {
   content: "collapsed";
}
@media (min-width: 80rem) {
   .table--expanded\@lg::before {
      content: "expanded";
   }
}

.table--expanded\@xl::before {
   content: "collapsed";
}
@media (min-width: 90rem) {
   .table--expanded\@xl::before {
      content: "expanded";
   }
}

/* -------------------------------- 

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_testimonial
Title: Testimonial
Descr: A testimonial quote 
Usage: codyhouse.co/license

-------------------------------- */
.testimonial__block-wrapper {
   position: relative;
}
.testimonial__block-wrapper blockquote {
   position: relative;
   z-index: 1;
}
.testimonial__block-wrapper .icon {
   position: absolute;
   top: -0.5em;
   left: -0.5em;
}

/* -------------------------------- 

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-divider
Title: Text divider
Descr: Labelled horizontal divider for text components
Usage: codyhouse.co/license

-------------------------------- */
.text-divider {
   margin: var(--space-lg) auto;
   display: flex;
   text-align: center;
   align-items: center;
}
.text-divider span {
   font-size: var(--text-sm);
   white-space: nowrap;
   padding: 0 var(--space-sm);
}
.text-divider::before,
.text-divider::after {
   content: "";
   display: inline-block;
   height: 1px;
   width: 20px;
   flex-grow: 1;
   background: var(--color-contrast-lower);
   vertical-align: middle;
}

.text-component .text-divider {
   margin: calc(var(--space-md) * var(--text-space-y-multiplier)) auto;
}

/* -------------------------------- 

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_thank-you
Title: Thank You
Descr: Order confirmation template
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _1_ticker
Title: Ticker
Descr: News-like Horizontal Scrolling List
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --ticker-animation-duration: 10s;
   --ticker-gap-x: var(--space-md); /* horizontal gap */
   --ticker-img-width: 280px;
}
@media (min-width: 48rem) {
   :root {
      --ticker-img-width: 400px;
   }
}
@media (min-width: 64rem) {
   :root {
      --ticker-img-width: 550px;
   }
}

.ticker {
   overflow: hidden;
}

.ticker__list {
   display: flex;
   overflow: auto;
   will-change: transform;
   transform: translateZ(0px);
   backface-visibility: hidden;
}

/* class added in JS to trigger the scrolling animation */
.ticker--animate .ticker__list {
   animation: ticker-animation var(--ticker-animation-duration) infinite;
   animation-timing-function: linear;
}

/* pause animation on hover or using an external control button */
.ticker[data-ticker-pause-hover="on"] .ticker__list:hover,
.ticker--paused .ticker__list {
   animation-play-state: paused;
}

.ticker__item {
   flex-shrink: 0;
   margin-right: calc(var(--ticker-gap-x) / 2);
   margin-left: calc(var(--ticker-gap-x) / 2);
}

.ticker__img {
   display: block;
   width: var(--ticker-img-width);
}

.ticker-control {
   /* pause/play button */
   display: inline-flex;
   width: 40px;
   height: 40px;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.75
   );
   border-radius: 50%;
   transition: 0.2s;
}
.ticker-control i {
   /* icon */
   position: relative;
   display: block;
   width: 16px;
   height: 16px;
   margin: auto;
   color: var(--color-bg); /* icon color */
}
.ticker-control i::before,
.ticker-control i::after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background-color: currentColor;
   transition: clip-path 0.2s var(--ease-out);
}
.ticker-control i::before {
   clip-path: polygon(1px 1px, 5px 1px, 5px calc(100% - 1px), 1px calc(100% - 1px));
}
.ticker-control i::after {
   clip-path: polygon(
      calc(100% - 5px) 1px,
      calc(100% - 1px) 1px,
      calc(100% - 1px) calc(100% - 1px),
      calc(100% - 5px) calc(100% - 1px)
   );
}
.ticker-control:hover {
   cursor: pointer;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.95
   );
}
.ticker-control[aria-pressed="true"] i::before {
   clip-path: polygon(2px 0%, 100% 50%, 100% 50%, 2px 100%);
}
.ticker-control[aria-pressed="true"] i::after {
   clip-path: polygon(
      calc(100% - 5px) calc(100% - 1px),
      calc(100% - 1px) calc(100% - 1px),
      calc(100% - 1px) calc(100% - 1px),
      calc(100% - 5px) calc(100% - 1px)
   );
}

/* ticker--anim-off class turns off translate animation - added in JS if reduced-motion option is on */
.ticker:not(.ticker--anim-off) .ticker__list {
   overflow: visible;
}

.ticker--reverse:not(.ticker--anim-off) .ticker__list {
   flex-direction: row-reverse;
}

.ticker--reverse.ticker--animate:not(.ticker--anim-off) .ticker__list {
   transform: translateX(calc(100vw - 100%));
   animation-name: ticker-animation-reverse;
}

/* intermediate steps are added to fix a bug on Safari */
@keyframes ticker-animation {
   0% {
      transform: translateX(0%);
   }
   100% {
      transform: translateX(-50%);
   }
}
@keyframes ticker-animation-reverse {
   0% {
      transform: translateX(calc(100vw - 100%));
   }
   100% {
      transform: translateX(calc(100vw - 50%));
   }
}
/* -------------------------------- 

File#: _1_tilted-img-slideshow
Title: Tilted Image Slideshow
Descr: A slideshow plugin to loop through a list of 3 tilted images
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --tilted-slideshow-translate-x: 0px;
   --tilted-slideshow-translate-z: 0px;
   --tilted-slideshow-rotate-z: 0deg;
}

.tilted-slideshow__item {
   position: absolute;
   top: 0;
   left: 0;
   transform: translateX(var(--tilted-slideshow-translate-x)) translateZ(var(--tilted-slideshow-translate-z))
      rotateZ(var(--tilted-slideshow-rotate-z));
   transition:
      transform 0.35s,
      opacity 0.35s;
}

.tilted-slideshow__item--top {
   position: relative;
   z-index: 3;
}

.tilted-slideshow__item--middle {
   z-index: 2;
}

.tilted-slideshow__item--bottom {
   z-index: 1;
}

.tilted-slideshow__item:nth-of-type(2) {
   --tilted-slideshow-rotate-z: -10deg;
}

.tilted-slideshow__item:nth-of-type(3) {
   --tilted-slideshow-rotate-z: 10deg;
}

.tilted-slideshow__item--middle {
   --tilted-slideshow-translate-z: -10px;
}

.tilted-slideshow__item--bottom {
   --tilted-slideshow-translate-z: -20px;
}

.tilted-slideshow__item--move-out {
   position: absolute;
   z-index: 4;
   opacity: 0;
   --tilted-slideshow-translate-x: 50px;
}

.tilted-slideshow__item--move-in {
   opacity: 0;
   --tilted-slideshow-translate-x: -50px;
}

.tilted-slideshow__item {
   cursor:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='30' opacity='0.9'/%3E%3Cline x1='15' y1='31' x2='47' y2='31' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpolyline points='37 21 47 31 37 41' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E")
         32 32,
      pointer;
   cursor:
      -webkit-image-set(
            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsSAAALEgHS3X78AAADcUlEQVR4nO1bO2sbQRD+Ng8IASe2UkYBl8HqE+LCncGuHYwKVXn0Bv8OQyo3VlwZDCZqbUM6FzZJL+PSEAfSRIioCYR4wsLocjrda+92TrfSfSCEQLc733czs69ZRUSYZdyZafYA7kl3oJRqAFgGoL/rAF4lPHIB4AZAF8A5EXVF7ZMIAaXUGoDhZy5ncwMAp/pDRKeWTPRgTQCl1CMA7wFs8puWgPaMIwB7RPTLit02BFBKbTP5vG87LQYswk5u2/MIoJTS8fxB8I0nQXvEFhFdZG0gkwDs7vqtv8thvE20AexkCQtjAZRSzwDsA1iaANE4XAJ4Q0TfTB4yEoCHtE6BsW4KnRs2TIbO1BMhB8iDbeuwramQSgBHyA9hJEJiCHDMf3aEvB86HFaTckKsB3C233eQPNjmfeYQiaQQ2C5htjfBEnOIRGQI8CTnUwlJZcHrqMlSnABfJjjDs40bInoZ1mZoCPDcflrIa9SZ0xjGPICTxldHE18c9KjwIjhdDvOAIld1RWKOuY0gTIDNSVq5u7v7+Pj4uFar1SS268a4jXTCOzkTjf3FxcW76+vrD87Ozp4IiFBnjh6CHayNP1MsWq1Wv9vt/mk0GveFRBjhOJIElVJXZYh/TVqT1yJoMVZWVn72er1bS80PiOj58IenLi8eSpH8NFlNWsgT5vwLJX+jy5Y6sAJhETyu/gZTr6GLgqAIoR5QypmfkAgeVy8JKqW+5zVWErYTIxE91d/OnA1KhUNmDzg8PJxvNpsP8xqQB/1+/3ZhYeFHliac8wApOJMDYDkPOOcBUrNDJwSQnBqXXgDhdcGIAJlPWKUgSN7j6hfgpjTM5d+8x9UvgGgtjgmk3d7P1S/AuQgbQxRAHn6ungB8pDwQ4pUaBwcH88LkB/7j8+AoYL0KyxTX19d/T05OfguRR5BjcEtM75d9FOi0THjrL7cLOxiZpiOxIMaOyMImQkcTMa0YjHGrjsaC/+I/7BVqWjEIrS6tjsdjHtqSs6dwRHKJFIArKtpTQL4dV0obWyXGCbHjcJ3QJRdORpbQVmVySa1wAxtlWCcYYFgym1g3nGpHiBcProhgVC+cekvMERHkiqXxX4RVTi5lwyXHvNHGjvGmqC8nlGmIbKeN+SCqKzPVpanq2lx1cdJ2m6MdzOLVWZcw2/UBAP4BLzU5/CzhtvgAAAAASUVORK5CYII=")
               1x,
            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAACXBIWXMAABYlAAAWJQFJUiTwAAAHoElEQVR4nO2dPUwcRxTH3wv5UqRDlJFC+ghoaBzZpSVkegdcOzIfJdgu3EXp/UGLDzm1gfSHkCiN4sYNoPQhqRNWjqJEYqKx39nnu9292d35erPvJ1mGs3X3bv7/efO5M6iUAqG9fCTatxsxQMsRA7Scj1P8+oh4FQDmAGASAK7Sy/r3juFbZABwQj8fA8CF/l0pdewo5GCw7wQi4tck8jUAmAWAGccfeQYApwDwQptDKfWb489zCksDIOIiia7/ng4czjkA9MgMvcCxVIaNARBR1+5lALhVIZX7RjcdzwFgVyl1GmmMHxC1ARBxkmr5iofUbhvdVHR1dlBKXcQaZJQGIOFX6E+std2UjIzQjdEIURkgMeGHidII0RgAEe8lKvwwGZngUQzBBDcAjdm3IujN+0aPHjZCzy0EMwCley38jSABxMMBGSFIsxBkKpjG8S9F/DfoMnhJZeIdrxmAar1u6++E+LIM2AGARz6zgTcD0JTtM4bjed/o+YPvfU0xe2kCqKN3KOIbocvokMrMOc4NgIh6+na/BcM7m+iy2qeyc4pTA9DY/onPkkuMJ1SGznDWB0BEPcRbaqdu1tlTSm24eGMnGUDEt84Slal1rBtAxHeGExNYNQC1VyK+O5Zs9wmsGYB6rHdtvZ9QyF2bowMrnUAas+5biUgw5TsbC0mNDUAzfIcyzveOXlZeaDpj2KgJoLn9ZyJ+EHSZPyMNatO0D3BPpneDMkMa1Ka2AWj5Ulb1wnOnyVJyrT4ApZ2XkvqjQfcHrtRZRq6bAbZE/KjokCaVqWwAGvLJTp74uFFnCblyE4CIv7RwAycXzpVS31aJtVIGoGlIET9epqtOFRtnAOn4saFSh7BKBmjDQxsp0CGtjDDKAFL72WGcBUwzgNR+XhhngbEZQGo/W4yygMkZQYttFn9hYeGz69evf6p/fvXq1X+7u7v/hI/KiA5pt1v2n00MYNyhSBEt/oMHD95VgKmpqT+fPn36N5OvujLOAKV9ADqWRVb7Btje3p5aXV39IpqAypkhDQsZ1wl0/mBC7Oi0PxwiMxOUaljaCUTEX6XzB6DF1qIPv762tsahOciUUt8U/WNhBqA15taLr9Eia7GHX2eSCTpl+wXKmgAvDydygbkJCrUsM0CQAwtihrEJqmUA2ukrq345MDXBNGk6QlEGkPRfAlMT5GpaZIBrbmPhD0MT5GpaZIDSyQPhLcxMkKtp7jwAIv7uI6JU4DJPoJT6avi1kQzg62yalOCSCfK0zWsC5vyEkxZMTDCibZ4BGj1r1mYYmGBE2zwDSBPQgMhNYNQECA3hNDqQPoAjIjWBUR9AVgAtEaEJRrQdmQdwPQegv/jDhw8nO51O65uf7e3t1+vr63/5/MzhuQDvBri4uPhSxH/L5eUlTExM/OHzM4cNIEK0HO8GuH///kWWZZdtL3hNt9t9HToG701A24htnUCaAI9wWCQSAziCywqhGMABnLaRiwEsw+0ZgjwDZAHiSAIG4o9om2eAEz+xpAWTmj+irTQBFuD86FieAYLeZcsNZuKPaJtngOjuuI8VhjV/RFvpA9SEadof0Va2hdeAa5tvtC2cOPMREEcYd/hyNS0ywKnbWHjC/KCIXE2LDPDCbSz8YC4+FGlaZAAZCg6QgPhQpGmuAegmqnPnITFgeXn58wTEPy+6XaxsJrDnLh4+zM/PfzIcLDPxoUzLMgNIM5ADQ/GhTMvCk0KVUj1EzNr+nMDR0dG//VU0ZkfF9tHHxBVmgHHnBP4oV8OxZ0cp9UPRlxi3Glh6zqzAgvpnBSulTmVWkDVnpGEhJvsBum0vRcaM1c7EAD3ZJsaSzGQoP9YAdOOEZAF+dE3uDJJLo9LE7qVRkgXYYVT7QS6OTBI3F0dKFmCDce0HuTw6OdxeHk1stLV0GVBZm8oGUErplaWDRAosJQ5Im0pUbgJAOoQxUqnjN0itR8Pog6QpiIeNOuJDk2cDaY15J/6ySZ6dsvX+cdRqAvpQU/Cz3C4aDL1Se7Nu7YemBoD3F0wdSn/AO7rdXyja7GlK48fDKYDbMZdUotxuKj7YOh+Ahh+biRZ0jGzWGfLlYe2ACKWU3nr0OOJCS4XHVNZWaNwHGAYRtwBgqe0qOWJPKWV1+G39iBgKcM/2+wr2xQdXZwSJCazjRHxweUgUBSx9guY8diU+uOgDjHwA4jIAPHH6IemyabPDl4dzA8D7Cwt/kskiYzIa5zt/PtPLOYH0RRbkIRMjzmiGz8vDud4OiqRZq5uygFTKDs3tN57hM8VLEzAMIi4CwJY0Ce/IaEnX+5kMQY6KpS96RXYWveGANnMEOZAjSAb4IIC3HcStFm40PadaH/QgjuAG6IOI9wBgpQXNQkZbtx9FEEs8BoD3G0xWEjVCRs9VVNq375qoDNAnMSNEKXyfKA3Qh4ywSEbgtu3sjITvxSh8n6gNMAgizupj+wDgVsRZQdf25/pYlnEnc8QCGwMMQvMIVyk7hB49nNNBDMehhnJNYGmAQWhTqjbDNQCY9dBUnNHByy9IdG+zdi5gb4A8aG5hDgAmyRxAv5s2HdnA5QrHdNPGSegxuwuSNIBgjtwa1nLEAC1HDNBmAOB/TNfLWwngbTAAAAAASUVORK5CYII=")
               2x
         )
         32 32,
      pointer;
}

.tilted-slideshow__touch-hint {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
   z-index: 5;
   font-size: var(--text-sm);
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
   color: var(--color-white);
   padding: var(--space-xxs) var(--space-sm);
   border-radius: 50em;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   cursor: default;
}
@media (pointer: fine) {
   .tilted-slideshow__touch-hint {
      display: none;
   }
}
.tilted-slideshow--interacted .tilted-slideshow__touch-hint {
   display: none;
}

/* -------------------------------- 

File#: _1_toast
Title: Toast
Descr: Notification message
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --toast-width: 400px;
   --toast-gap: var(--space-xs);
   --toast-transition-duration: 0.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_todo-list
Title: Todo List
Descr: A list of tasks
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --todo-list-checkbox-size: 20px; /* checkbox size */
   --todo-list-checkbox-icon-size: 16px; /* checkbox icon size */
   --todo-list-checkbox-margin-right: var(--space-xxs); /* gap between custom input and content */
}

.todo__item {
   display: inline-block;
   position: relative;
   padding-left: calc(var(--todo-list-checkbox-size) + var(--todo-list-checkbox-margin-right));
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
@media (hover: hover) {
   .todo__item:hover {
      cursor: pointer;
   }
   .todo__item:hover .todo__checkbox {
      box-shadow: inset 0 0 0 2px
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.3);
   }
   .todo__item:hover .todo__input:checked ~ .todo__checkbox,
   .todo__item:hover .todo__input:focus ~ .todo__checkbox {
      box-shadow: inset 0 0 0 2px var(--color-primary-darker);
   }
   .todo__item:hover .todo__input:checked:focus ~ .todo__checkbox {
      box-shadow:
         inset 0 0 0 2px hsl(var(--color-primary-h), var(--color-primary-s), calc(var(--color-primary-l) * 0.95)),
         0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   }
}

/* native checkbox input */
.todo__input {
   position: absolute;
   padding: 0;
   margin: 0;
   opacity: 0;
   pointer-events: none;
}

/* custom checkbox */
.todo__checkbox {
   display: inline-flex;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
   );
   width: var(--todo-list-checkbox-size);
   height: var(--todo-list-checkbox-size);
   border-radius: 4px;
   position: relative;
   vertical-align: middle;
   top: -0.1em;
   margin-left: calc(-1 * (var(--todo-list-checkbox-size) + var(--todo-list-checkbox-margin-right)));
   margin-right: var(--todo-list-checkbox-margin-right);
   transition:
      background-color 0.2s,
      transform 0.2s,
      box-shadow 0.2s;
}
.todo__checkbox .icon {
   display: block;
   margin: auto;
   color: var(--color-white); /* icon color */
   font-size: var(--todo-list-checkbox-icon-size);
}
.todo__checkbox .icon > * {
   transition: stroke-dashoffset 0.3s;
   stroke-dasharray: 18;
   stroke-dashoffset: 18;
}

.todo__input:focus ~ .todo__checkbox {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
}

.todo__input:checked ~ .todo__checkbox {
   background-color: var(--color-primary);
}
.todo__input:checked ~ .todo__checkbox .icon > * {
   stroke-dasharray: 18;
   stroke-dashoffset: 0;
}

.todo__input:checked:focus ~ .todo__checkbox {
   box-shadow:
      inset 0 0 0 0 hsl(var(--color-primary-h), var(--color-primary-s), calc(var(--color-primary-l) * 0.75)),
      0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.todo__input:active ~ .todo__checkbox {
   transform: scale(0.9);
}

.todo__label {
   background-repeat: no-repeat;
   will-change: background-size;
   background-size: 0% 100%;
   background-image: linear-gradient(
      transparent 50%,
      currentColor 50%,
      currentColor calc(50% + 1px),
      transparent calc(50% + 1px)
   );
   transition:
      background-size 0.3s var(--ease-in-out),
      color 0.3s;
}

.todo__input:checked ~ .todo__label {
   background-size: 100% 100%;
   color: var(--color-contrast-medium);
}

/* -------------------------------- 

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#: _1_tree
Title: Tree
Descr: Multi-level directory of editable items
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --tree-item-padding-x: var(--space-xxxs);
   --tree-item-padding-y: var(--space-xxxs);
   --tree-arrow-icon-size: 16px;
   --tree-arrow-icon-margin-right: 2px;
   --tree-label-icon-size: 16px;
   --tree-label-icon-margin-right: 6px;
   --tree-arrow-btn-size: 16px;
   --tree-arrow-btn-margin-right: 4px;
}

.tree {
   position: relative;
   z-index: 1;
}

.tree__nodes .tree__nodes {
   display: none;
}

.tree__nodes .tree__nodes .tree__item {
   padding-left: calc(
      var(--tree-item-padding-x) +
         (
            var(--tree-arrow-icon-size) + var(--tree-arrow-icon-margin-right) + var(--tree-label-icon-size) +
               var(--tree-label-icon-margin-right)
         ) * 1
   );
}

.tree__nodes .tree__nodes .tree__nodes .tree__item {
   padding-left: calc(
      var(--tree-item-padding-x) +
         (
            var(--tree-arrow-icon-size) + var(--tree-arrow-icon-margin-right) + var(--tree-label-icon-size) +
               var(--tree-label-icon-margin-right)
         ) * 2
   );
}

.tree__nodes .tree__nodes .tree__nodes .tree__nodes .tree__item {
   padding-left: calc(
      var(--tree-item-padding-x) +
         (
            var(--tree-arrow-icon-size) + var(--tree-arrow-icon-margin-right) + var(--tree-label-icon-size) +
               var(--tree-label-icon-margin-right)
         ) * 3
   );
}

.tree__node--expanded > .tree__nodes {
   display: block;
}

.tree__item {
   display: flex;
   align-items: center;
   width: 100%;
   padding: calc(var(--tree-item-padding-y) / 2) var(--tree-item-padding-x);
   border-radius: var(--radius-md);
   text-align: left;
   line-height: 1;
   color: inherit;
   text-decoration: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   cursor: pointer;
   transition: 0.2s;
}
.tree__item:hover:not(.tree__item--selected) {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.05
   );
}
.tree__item:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}
.tree__item:focus:hover {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.tree__item--selected {
   background-color: var(--color-primary);
   color: var(--color-white);
}
.tree__item--selected .icon {
   color: var(--color-white);
}

.tree__item--editing {
   background-color: var(--color-bg);
   box-shadow: inset 0 0 0 2px var(--color-primary);
   color: var(--color-contrast-high);
   -webkit-user-select: auto;
   -moz-user-select: auto;
   user-select: auto;
}
.tree__item--editing .icon {
   color: inherit;
}
.tree__item--editing .tree__label:focus {
   box-shadow: none;
}

.tree__arrow-icon,
.tree__arrow-icon-spacer {
   width: var(--tree-arrow-icon-size);
   height: var(--tree-arrow-icon-size);
   margin-right: var(--tree-arrow-icon-margin-right);
   transition: transform 0.2s;
}

.tree__node--expanded > .tree__item .tree__arrow-icon {
   transform: rotate(90deg);
}

.tree__label-icon {
   width: var(--tree-label-icon-size);
   height: var(--tree-label-icon-size);
   margin-right: var(--tree-label-icon-margin-right);
}

.tree__arrow-btn {
   display: inline-flex;
   width: var(--tree-arrow-btn-size);
   height: var(--tree-arrow-btn-size);
   margin-right: var(--tree-arrow-btn-margin-right);
   border-radius: 50%;
   transition: 0.2s;
}
.tree__arrow-btn .tree__arrow-icon {
   margin: auto !important;
}
.tree__arrow-btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
   );
}

.tree__label {
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   flex-grow: 1;
   height: 100%;
   padding: calc(var(--tree-item-padding-y) / 2) 0;
}

/* -------------------------------- 

File#: _1_user-cell
Title: User Cell
Descr: Profile card containing profile image + metadata
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --user-cell-img-size: 64px;
}

.user-cell {
   --space-unit: 1rem;
   font-size: 1rem;
   background: hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0.5);
   padding: var(--space-sm);
   border-radius: var(--radius-md);
}

.user-cell__img {
   display: block;
   border-radius: 50%;
   width: var(--user-cell-img-size);
   height: var(--user-cell-img-size);
   margin-bottom: var(--space-sm);
}

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

.user-cell__social-icon {
   --size: 52px;
   width: var(--size);
   height: var(--size);
   display: flex;
   border-radius: 50%;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-xs);
   transition: 0.2s;
}
.user-cell__social-icon .icon {
   display: block;
   margin: auto;
   color: var(--color-contrast-medium);
   transition: color 0.2s;
}
.user-cell__social-icon:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-sm);
}
.user-cell__social-icon:hover .icon {
   color: var(--color-contrast-higher);
}

@supports (grid-area: auto) {
   .user-cell {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      grid-gap: var(--space-xxs);
   }
   .user-cell__body {
      display: grid;
      grid-template-columns: var(--user-cell-img-size) 1fr;
      align-items: center;
      grid-gap: var(--space-xs);
   }
   .user-cell__img,
   .user-cell__content {
      margin-bottom: 0;
   }
}
/* -------------------------------- 

File#: _1_vertical-steps
Title: Vertical Steps
Descr: Vertical, multi-step navigation
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --v-steps-gap: var(--space-lg); /* gap between two steps */
   --v-steps-vertical-line-width: 4px; /* width of the line between markers */
   --v-steps-marker-size: 24px; /* circle size */
   --v-steps-marker-icon-size: 12px; /* check icon size */
   --v-steps-marker-margin-right: 10px; /* margin right */
   --v-steps-title-line-height: 1.2; /* step title line-height */
}

.v-steps__item:not(:last-child) {
   position: relative;
   padding-bottom: var(--v-steps-gap);
}
.v-steps__item:not(:last-child)::before {
   content: "";
   position: absolute;
   left: calc(var(--v-steps-marker-size) / 2 - var(--v-steps-vertical-line-width) / 2);
   top: calc(var(--v-steps-marker-size) / 2);
   width: var(--v-steps-vertical-line-width);
   height: 100%;
   background: var(--color-contrast-lower);
}
.v-steps__item:not(:last-child).v-steps__item--completed::before {
   background: var(--color-primary);
}

.v-steps__header {
   display: flex;
}

.v-steps__marker {
   position: relative;
   z-index: 1;
   display: flex;
   width: var(--v-steps-marker-size);
   height: var(--v-steps-marker-size);
   border-radius: 50%;
   background-color: var(--color-bg);
   box-shadow:
      inset 0 0 0 var(--v-steps-vertical-line-width) var(--color-contrast-lower),
      0 0 0 2px var(--color-bg);
   margin-right: var(--v-steps-marker-margin-right);
   flex-shrink: 0;
}
.v-steps__marker .icon {
   margin: auto;
   font-size: var(--v-steps-marker-icon-size);
   color: var(--color-white); /* icon color */
   display: none;
}
.v-steps__item--completed .v-steps__marker,
.v-steps__item--current .v-steps__marker {
   background-color: var(--color-primary);
   box-shadow: 0 0 0 2px var(--color-bg);
}
.v-steps__item--completed .v-steps__marker .icon,
.v-steps__item--current .v-steps__marker .icon {
   display: block;
}

.v-steps__title {
   position: relative;
   top: calc((var(--v-steps-marker-size) - 1em * var(--v-steps-title-line-height)) / 2);
   line-height: var(--v-steps-title-line-height);
   font-weight: 600;
   color: var(--color-contrast-higher);
}

.v-steps__body {
   padding-left: calc(var(--v-steps-marker-size) + var(--v-steps-marker-margin-right));
   margin-top: var(--space-xxxs);
}

/* -------------------------------- 

File#: _1_vertical-timeline
Title: Vertical Timeline
Descr: A vertical timeline used to display a sequence of events/steps
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --v-timeline-marker-size: 16px;
   --v-timeline-track-width: 2px;
   --v-timeline-triangle-size: 12px;
   --v-timeline-sections-gap: var(--space-lg);
   --v-timeline-items-gap: var(--space-sm);
}

.v-timeline {
   position: relative;
   padding: var(--space-lg) 0;
}
.v-timeline::before {
   content: "";
   position: absolute;
   top: 0;
   left: calc((var(--v-timeline-marker-size) - var(--v-timeline-track-width)) * 0.5);
   height: 100%;
   width: var(--v-timeline-track-width);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}

.v-timeline__section {
   position: relative;
   display: flex;
}
.v-timeline__section:not(:last-of-type) {
   margin-bottom: var(--v-timeline-sections-gap);
}

.v-timeline__marker {
   flex-shrink: 0;
   justify-content: center;
   align-items: center;
   display: flex;
   position: relative;
   height: var(--v-timeline-marker-size);
   width: var(--v-timeline-marker-size);
   border-radius: 50%;
   margin-right: calc(var(--v-timeline-triangle-size) + var(--space-xxs));
}

.v-timeline__item {
   position: relative;
   top: calc(0.5 * var(--v-timeline-marker-size));
   flex-grow: 1;
}
.v-timeline__item::before {
   content: "";
   position: absolute;
   top: 0;
   left: calc(-1 * var(--v-timeline-triangle-size) + 1px);
   height: var(--v-timeline-triangle-size);
   width: var(--v-timeline-triangle-size);
   background-color: inherit;
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
.v-timeline__item:not(:last-child) {
   margin-bottom: var(--v-timeline-items-gap);
}
.v-timeline__item:not(:first-child) .v-timeline__date {
   display: none;
}
.v-timeline__item:not(:first-child)::before {
   display: none;
}

.v-timeline__date-value {
   color: var(--color-contrast-medium);
   font-size: var(--text-sm);
   text-transform: uppercase;
   letter-spacing: 0.1em;
}

@media not all and (min-width: 64rem) {
   .v-timeline__item:first-child {
      border-top-left-radius: 0;
   }
}
@media (min-width: 64rem) {
   .v-timeline::before {
      left: calc(50% - var(--v-timeline-track-width) / 2);
   }
   .v-timeline__section {
      width: calc(50% + var(--v-timeline-marker-size) / 2);
   }
   .v-timeline__section:nth-child(odd) {
      flex-direction: row-reverse;
   }
   .v-timeline__section:nth-child(odd) .v-timeline__marker {
      margin-right: 0;
      margin-left: calc(var(--v-timeline-triangle-size) + var(--space-xxs));
   }
   .v-timeline__section:nth-child(odd) .v-timeline__item::before {
      left: auto;
      right: calc(-1 * var(--v-timeline-triangle-size) + 1px);
      transform: scaleX(-1);
   }
   .v-timeline__section:nth-child(odd) .v-timeline__item:first-child {
      border-top-right-radius: 0;
   }
   .v-timeline__section:nth-child(odd) .v-timeline__date {
      right: calc(-2 * (var(--v-timeline-triangle-size) + var(--space-xxs)) - var(--v-timeline-marker-size));
      transform: translateX(100%) translateY(-50%);
   }
   .v-timeline__section:nth-child(even) {
      margin-left: auto;
   }
   .v-timeline__section:nth-child(even) .v-timeline__item:first-child {
      border-top-left-radius: 0;
   }
   .v-timeline__section:nth-child(even) .v-timeline__date {
      left: calc(-2 * (var(--v-timeline-triangle-size) + var(--space-xxs)) - var(--v-timeline-marker-size));
      transform: translateX(-100%) translateY(-50%);
   }
   .v-timeline__section--is-hidden {
      opacity: 0;
   }
   .v-timeline__date {
      position: absolute;
      top: 0;
      white-space: nowrap;
   }
   .v-timeline[data-animation="on"] .v-timeline__marker {
      opacity: 0;
      transform: scale(0.5);
      transition:
         transform 0.6s var(--ease-out),
         opacity 0.6s;
   }
   .v-timeline[data-animation="on"] .v-timeline__item {
      opacity: 0;
      transition:
         transform 0.6s var(--ease-out),
         opacity 0.6s;
   }
   .v-timeline[data-animation="on"] .v-timeline__section:nth-child(odd) .v-timeline__item {
      transform: translateX(-50px);
   }
   .v-timeline[data-animation="on"] .v-timeline__section:nth-child(even) .v-timeline__item {
      transform: translateX(50px);
   }
   .v-timeline[data-animation="on"] .v-timeline__section--animate .v-timeline__item {
      transform: translateX(0) !important;
      opacity: 1;
   }
   .v-timeline[data-animation="on"] .v-timeline__section--animate .v-timeline__marker {
      transform: scale(1);
      opacity: 1;
   }
}
.v-timeline--icons {
   --v-timeline-marker-size: 3em;
}

/* -------------------------------- 

File#: _1_video-background
Title: Responsive Video Background
Descr: A full-width responsive video background
Usage: codyhouse.co/license

-------------------------------- */
.video-bg__media {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   overflow: hidden;
}
.video-bg__media video {
   position: relative;
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
   min-height: 100%;
   min-width: 100%;
   height: auto;
   width: auto;
   max-width: none;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
   .video-bg__media video {
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%;
   }
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) and (-ms-ime-align: auto) {
   .video-bg__media video {
      height: auto;
      width: auto;
   }
}
.video-bg__media img {
   display: none;
}
@media (prefers-reduced-motion: reduce) {
   .video-bg__media video {
      visibility: hidden;
   }
   .video-bg__media img {
      display: block;
      position: absolute;
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%;
   }
}

/* -------------------------------- 

File#: _1_video-feature
Title: Video Feature
Descr: A CTA box over a background video
Usage: codyhouse.co/license

-------------------------------- */
.video-feature {
   position: relative;
   z-index: 1;
   overflow: hidden;
}

.video-feature__box-wrapper {
   position: relative;
   z-index: 2;
}

.video-feature__box {
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.98);
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
   .video-feature__box {
      background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.8);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
   }
}

.video-feature__video-wrapper {
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
}
.video-feature__video-wrapper img,
.video-feature__video-wrapper video {
   position: absolute;
   top: 0;
   left: 0;
   -o-object-fit: cover;
   object-fit: cover;
   height: 100%;
   width: 100%;
}
.video-feature__video-wrapper img {
   display: none;
}
@media (prefers-reduced-motion: reduce) {
   .video-feature__video-wrapper video {
      visibility: hidden;
   }
   .video-feature__video-wrapper img {
      display: block;
   }
}

.video-feature__link {
   --transition-duration: 0.4s;
   position: relative;
   z-index: 1;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: space-between;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
   border-radius: inherit;
   border-top-left-radius: 0;
   border-top-right-radius: 0;
   color: var(--color-contrast-higher);
   text-decoration: none;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   transition: var(--transition-duration);
}
.video-feature__link > * {
   position: relative;
   z-index: 2;
}
.video-feature__link::before {
   content: "";
   position: absolute;
   bottom: -20%;
   left: -5%;
   width: 110%;
   height: 140%;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.9
   );
   will-change: transform;
   transform: scaleY(0) skewY(10deg);
   transform-origin: center bottom;
   transition: transform var(--transition-duration) var(--ease-in-out);
}
.video-feature__link:hover {
   color: var(--color-bg);
}
.video-feature__link:hover::before {
   transform: scaleY(1) skewY(0deg);
}
.video-feature__link:hover .video-feature__link-icon > *:first-child {
   transform: rotate(-180deg);
}
.video-feature__link:hover .video-feature__link-icon > *:last-child {
   transform: rotate(180deg);
}

.video-feature__link-icon > * {
   will-change: transform;
   transition: transform var(--transition-duration) var(--ease-in-out);
}
.video-feature__link-icon > *:first-child {
   transform-origin: 8px 5px;
}
.video-feature__link-icon > *:last-child {
   transform-origin: 8px 11px;
}

/* -------------------------------- 

File#: _2_accordion-v2
Title: Accordion v2
Descr: Stacked, expandable content sections
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --accordion-v2-icon-size: 20px;
   --accordion-v2-icon-stroke-width: 2px;
}

.accordion-v2__item {
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow-top), var(--shadow-sm);
   border-radius: var(--radius-md);
   transition: 0.3s;
}
.accordion-v2__item:hover {
   box-shadow: var(--inner-glow-top), var(--shadow-md);
}

.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 .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_adv-custom-select
Title: Advanced Custom Select
Descr: Custom select with advanced structure options
Usage: codyhouse.co/license

-------------------------------- */
.adv-select-popover {
   --space-unit: 1rem;
   --text-unit: 1rem;
   font-size: var(--text-unit);
}
.adv-select-popover.popover {
   --popover-width: 250px;
   --popover-control-gap: 4px;
   --popover-viewport-gap: 20px;
   --popover-transition-duration: 0.2s;
}
@media (min-width: 64rem) {
   .adv-select-popover.popover {
      --popover-width: 320px;
   }
}

.adv-select-popover__optgroup:not(:first-of-type) {
   padding-top: var(--space-xxs);
}

.adv-select-popover__optgroup:not(:last-of-type) {
   border-bottom: 1px solid
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
   padding-bottom: var(--space-xxs);
}

.adv-select-popover__check {
   display: none;
}

.adv-select-popover__option {
   position: relative;
   cursor: pointer;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   transition: 0.2s;
}
.adv-select-popover__option:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.adv-select-popover__option:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}
.adv-select-popover__option[aria-selected="true"] {
   background-color: var(--color-primary);
   color: var(--color-white);
}
.adv-select-popover__option[aria-selected="true"] .adv-select-popover__check {
   display: block;
}
.adv-select-popover__option[aria-selected="true"]:focus {
   box-shadow: inset 0 0 0 2px var(--color-primary-dark);
}

/* -------------------------------- 

File#: _2_adv-gallery-v3
Title: Advanced Gallery v3
Descr: Advanced image gallery template
Usage: codyhouse.co/license

-------------------------------- */
@media (min-width: 64rem) {
   .adv-gallery-v3__title {
      border-top: 1px solid var(--color-contrast-lower);
      padding-top: var(--space-xs);
   }
}
.adv-gallery-v3__img-link {
   position: relative;
   display: block;
   text-decoration: none;
   color: inherit;
}
.adv-gallery-v3__img-link::before,
.adv-gallery-v3__img-link::after {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   width: 48px;
   height: 48px;
}
.adv-gallery-v3__img-link::before {
   clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
   transition: clip-path 0.2s var(--ease-out);
}
.adv-gallery-v3__img-link::after {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpolyline points='4 2 14 2 14 12' fill='none' stroke='%23FFF' stroke-miterlimit='10' stroke-width='2'/%3E%3Cline x1='14' y1='2' x2='2' y2='14' fill='none' stroke='%23FFF' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: center;
   transform: scale(0.5) translateX(-5px) translateY(5px);
   will-change: transform;
   opacity: 0;
   transition:
      opacity 0.2s,
      transform 0.2s var(--ease-out);
}
.adv-gallery-v3__img-link:hover::before {
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.adv-gallery-v3__img-link:hover::after {
   transform: scale(1) translateX(0) translateY(0);
   opacity: 1;
}

/* -------------------------------- 

File#: _2_adv-gallery-v4
Title: Advanced Gallery v4
Descr: Advanced image gallery template
Usage: codyhouse.co/license

-------------------------------- */
.adv-gallery-v4 {
   position: relative;
   z-index: 1;
}
.adv-gallery-v4.masonry {
   --masonry-grid-gap: 0px;
   --masonry-col-auto-size: 400px;
}

/* -------------------------------- 

File#: _2_adv-gallery-v6
Title: Advanced Gallery v6
Descr: Advanced image gallery template
Usage: codyhouse.co/license

-------------------------------- */
.adv-gallery-v6 {
   width: 100%;
   overflow: hidden;
}

.adv-gallery-v6__inner {
   width: 240%;
   margin-left: -70%;
   transition: opacity 0.3s;
}

.adv-gallery-v6__card {
   position: relative;
   background: var(--color-bg);
   display: block;
   border-radius: var(--radius-md);
   overflow: hidden;
   filter: grayscale(90%);
   aspect-ratio: 16/9;
   transition:
      transform 0.3s,
      filter 0.3s;
}
.adv-gallery-v6__card:hover {
   filter: grayscale(0%);
   transform: translateY(-2px);
}
.adv-gallery-v6__card:active {
   transform: translateY(2px);
}

.adv-gallery-v6__img {
   display: block;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

@media (min-width: 48rem) {
   .adv-gallery-v6__inner {
      width: 160%;
      margin-left: -30%;
   }
}
@media (min-width: 90rem) {
   .adv-gallery-v6 {
      display: flex;
      justify-content: center;
   }
   .adv-gallery-v6__inner {
      width: 2304px;
      flex-shrink: 0;
      margin: 0 auto;
   }
}
/* -------------------------------- 

File#: _2_alert-message
Title: Alert Message
Descr: An alert message displayed in a modal window
Usage: codyhouse.co/license

-------------------------------- */
.alert-msg {
   --modal-transition-duration: 0.2s;
}

.alert-msg__close-btn {
   display: inline-flex;
   align-items: center;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.9
   );
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   padding: var(--space-xxs) var(--space-sm);
   color: var(--color-bg);
   line-height: 1;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   transition: 0.2s;
}
.alert-msg__close-btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      1
   );
}

/* -------------------------------- 

File#: _2_anim-cards
Title: Animated Cards
Descr: A collection of cards that slides over time
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --anim-cards-width: 280px;
   --anim-cards-gap: var(--space-md);
}

@supports (--css: variables) {
   @media (min-width: 48rem) {
      :root {
         --anim-cards-width: 400px;
      }
   }
   @media (min-width: 64rem) {
      :root {
         --anim-cards-width: 550px;
      }
   }
}
.anim-cards {
   overflow: hidden;
   margin-top: var(--anim-cards-gap);
   margin-bottom: var(--anim-cards-gap);
}

.anim-cards__list {
   display: flex;
   overflow: auto;
}

.anim-cards__item {
   float: left;
   width: var(--anim-cards-width);
   flex-shrink: 0;
   margin-right: var(--anim-cards-gap);
}

.anim-cards-control {
   display: inline-flex;
   width: 40px;
   height: 40px;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.75
   );
   border-radius: 50%;
   transition: 0.2s;
}
.anim-cards-control i {
   position: relative;
   display: block;
   width: 16px;
   height: 16px;
   margin: auto;
   color: var(--color-bg);
}
.anim-cards-control i::before,
.anim-cards-control i::after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background-color: currentColor;
   transition: clip-path 0.2s var(--ease-out);
}
.anim-cards-control i::before {
   clip-path: polygon(1px 1px, 5px 1px, 5px calc(100% - 1px), 1px calc(100% - 1px));
}
.anim-cards-control i::after {
   clip-path: polygon(
      calc(100% - 5px) 1px,
      calc(100% - 1px) 1px,
      calc(100% - 1px) calc(100% - 1px),
      calc(100% - 5px) calc(100% - 1px)
   );
}
.anim-cards-control:hover {
   cursor: pointer;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.95
   );
}
.anim-cards-control[aria-pressed="true"] i::before {
   clip-path: polygon(2px 0%, 100% 50%, 100% 50%, 2px 100%);
}
.anim-cards-control[aria-pressed="true"] i::after {
   clip-path: polygon(
      calc(100% - 5px) calc(100% - 1px),
      calc(100% - 1px) calc(100% - 1px),
      calc(100% - 1px) calc(100% - 1px),
      calc(100% - 5px) calc(100% - 1px)
   );
}

.anim-cards:not(.anim-cards--anim-off) .anim-cards__list {
   overflow: visible;
   will-change: transform;
   transform: translateZ(0);
   backface-visibility: hidden;
}

.anim-cards--reverse:not(.anim-cards--anim-off) .anim-cards__list {
   flex-direction: row-reverse;
}

/* -------------------------------- 

File#: _2_article-gallery-v2
Title: Article Gallery v2
Descr: A gallery of blog articles
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_article-gallery-v4
Title: Article Gallery v4
Descr: A gallery of blog articles
Usage: codyhouse.co/license

-------------------------------- */
.articles-v4.masonry {
   --masonry-grid-gap: var(--space-sm);
   --masonry-col-auto-size: 320px;
}

/* -------------------------------- 

File#: _2_article-gallery
Title: Article Gallery
Descr: A gallery of blog articles
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_article-preview-v4
Title: Article Preview v4
Descr: Blog post excerpt, containing a link to the article page and a preview image
Usage: codyhouse.co/license

-------------------------------- */
.story-v4 {
   position: relative;
   z-index: 1;
}

.story-v4__title {
   color: var(--color-contrast-higher);
   -webkit-text-decoration-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
   text-decoration-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
   transition: 0.2s;
}
.story-v4__title:hover {
   -webkit-text-decoration-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      1
   );
   text-decoration-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      1
   );
}

.story-v4__img-link {
   display: block;
}
.story-v4__img-link img {
   display: block;
   width: 100%;
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
   transition: 0.3s var(--ease-out);
}
.story-v4__img-link:hover img {
   clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%);
}

/* -------------------------------- 

File#: _2_article-v2
Title: Article v2
Descr: Article template
Usage: codyhouse.co/license

-------------------------------- */
.t-article-v2__cover {
   height: 200px;
   background-color: var(--color-contrast-low);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
}
@media (min-width: 64rem) {
   .t-article-v2__cover {
      height: 400px;
   }
}

.t-article-v2__intro {
   background-color: var(--color-bg);
   padding: var(--space-md);
   margin-top: calc(-1 * var(--space-xxl));
}

.t-article-v2__divider {
   display: flex;
   align-items: center;
}
.t-article-v2__divider span {
   display: block;
   margin: 0 var(--space-xs);
   height: 10px;
   width: 10px;
   transform: rotate(45deg);
   background-color: var(--color-contrast-low);
}
.t-article-v2__divider::before,
.t-article-v2__divider::after {
   content: "";
   display: block;
   height: 1px;
   width: auto;
   flex-grow: 1;
   background-color: var(--color-contrast-lower);
}

/* -------------------------------- 

File#: _2_article-v4
Title: Article v4
Descr: Article template
Usage: codyhouse.co/license

-------------------------------- */
.t-article-v4__divider {
   display: flex;
   align-items: center;
}
.t-article-v4__divider span {
   display: block;
   margin: 0 var(--space-xs);
   height: 10px;
   width: 10px;
   transform: rotate(45deg);
   background-color: var(--color-contrast-lower);
}
.t-article-v4__divider::before,
.t-article-v4__divider::after {
   content: "";
   display: block;
   height: 1px;
   width: auto;
   flex-grow: 1;
   background-color: var(--color-contrast-lower);
}

/* --------------------------------

File#: _2_article
Title: Article
Descr: Article template
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_autocomplete
Title: Autocomplete
Descr: Autocomplete plugin for input elements
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --autocomplete-dropdown-vertical-gap: 4px; /* gap between input and results list */
   --autocomplete-dropdown-max-height: 150px;
   --autocomplete-dropdown-scrollbar-width: 6px; /* custom scrollbar width - webkit browsers */
}

.autocomplete__loader {
   /* loader visible while searching */
   /* CSS variables inherited from the circle-loader component */
   --circle-loader-v1-size: 1em;
   --circle-loader-v1-stroke-width: 2px;
}

.autocomplete:not(.autocomplete--searching) .autocomplete__loader {
   /* .autocomplete--searching is used to show the loader element - added in JS */
   display: none;
}

/* results dropdown  */
.autocomplete__results {
   position: absolute;
   z-index: var(--z-index-popover, 5);
   width: 100%;
   left: 0;
   top: calc(100% + var(--autocomplete-dropdown-vertical-gap));
   transform: translateY(4px); /* slide in animation */
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-md);
   border-radius: var(--radius-md);
   opacity: 0;
   visibility: hidden;
   transition:
      opacity 0.3s,
      visibility 0s 0.3s,
      transform 0.3s var(--ease-in);
   overflow: hidden;
}
.autocomplete--results-visible .autocomplete__results {
   opacity: 1;
   visibility: visible;
   transition:
      opacity 0.3s,
      transform 0.3s var(--ease-out);
   transform: translateY(0);
}

.autocomplete__list {
   max-height: var(--autocomplete-dropdown-max-height);
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   /* custom scrollbar */
}
.autocomplete__list::-webkit-scrollbar {
   /* scrollbar width */
   width: var(--autocomplete-dropdown-scrollbar-width);
}
.autocomplete__list::-webkit-scrollbar-track {
   /* progress bar */
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.08
   );
   border-radius: 0;
}
.autocomplete__list::-webkit-scrollbar-thumb {
   /* handle */
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.12
   );
   border-radius: 0;
}
.autocomplete__list::-webkit-scrollbar-thumb:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
}

/* single result item */
.autocomplete__item {
   cursor: pointer;
   transition: 0.2s;
}
.autocomplete__item:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.autocomplete__item:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}

/* -------------------------------- 

File#: _2_card-v13
Title: Card v13
Descr: Container of information used as teaser for further content exploration
Usage: codyhouse.co/license

-------------------------------- */
.card-v13 {
   --transition-duration: 0.3s;
}

.card-v13__figure-wrapper {
   display: block;
}

.card-v13__figure {
   clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
   transition: clip-path var(--transition-duration) var(--ease-out);
}
.card-v13__figure img {
   display: block;
   width: 100%;
   transform: scale(1.1);
   filter: grayscale(100%);
   transition:
      transform var(--transition-duration) var(--ease-out),
      filter var(--transition-duration);
}
.card-v13__figure-wrapper:hover .card-v13__figure {
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.card-v13__figure-wrapper:hover .card-v13__figure img {
   transform: scale(1);
   filter: grayscale(0%);
}

.card-v13__separator {
   display: block;
   width: 40px;
   height: 3px;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}

/* -------------------------------- 

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_carousel
Title: Carousel
Descr: Display and cycle through a collection of items
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --carousel-grid-gap: var(--space-xs);
   --carousel-item-auto-size: 260px;
   --carousel-transition-duration: 0.5s;
}

.carousel {
   position: relative;
}

.carousel__list {
   display: flex;
   flex-wrap: nowrap;
   will-change: transform;
}

.carousel__item {
   flex-shrink: 0;
   width: var(--carousel-item-auto-size);
   margin-right: var(--carousel-grid-gap);
   margin-bottom: var(--carousel-grid-gap);
}

.carousel__list--animating {
   transition-property: transform;
   transition-duration: var(--carousel-transition-duration);
   transition-timing-function: var(--ease-out);
}

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

.modils-carousel .carousel__item {
  flex: 1;
}

.carousel--loaded .carousel__item {
   opacity: 1;
}

.carousel:not(.carousel--is-dragging)
   .carousel__list:not(.carousel__list--animating)
   .carousel__item[tabindex="-1"]
   > * {
   visibility: hidden;
}

.carousel[data-drag="on"] .carousel__item {
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.carousel[data-drag="on"] .carousel__item img {
   pointer-events: none;
}

.carousel__control {
   --size: 40px;
   width: 40px;
   height: 40px;
   display: flex;
   background-color: var(--color-bg-light);
   border-radius: 50%;
   box-shadow: var(--inner-glow), var(--shadow-sm);
   z-index: 1;
   transition: 0.2s;
}
.carousel__control:active {
   transform: translateY(1px);
}
.carousel__control:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-md);
}
.carousel__control[disabled] {
   pointer-events: none;
   opacity: 0.5;
   box-shadow: none;
}
.carousel__control .icon {
   --size: 20px;
   display: block;
   margin: auto;
}

.carousel__navigation {
   width: 100%;
   display: grid;
   grid-template-columns: repeat(auto-fit, 10px);
   gap: var(--space-xs);
   justify-content: center;
   align-items: center;
   margin-top: var(--space-sm);
}

.carousel__nav-item {
   display: inline-block;
   margin: 0 var(--space-xxxs);
}
@supports (grid-area: auto) {
   .carousel__nav-item {
      margin: 0;
   }
}
.carousel__nav-item button {
   display: block;
   position: relative;
   font-size: 10px;
   height: 1em;
   width: 1em;
   border-radius: 50%;
   background-color: var(--color-contrast-high);
   opacity: 0.4;
   cursor: pointer;
   transition: background 0.3s;
}
.carousel__nav-item button::before {
   content: "";
   position: absolute;
   top: calc(50% - 0.5em);
   left: calc(50% - 0.5em);
   font-size: 16px;
   height: 1em;
   width: 1em;
   border-radius: inherit;
   border: 1px solid var(--color-contrast-high);
   opacity: 0;
   transform: scale(0);
   transition: 3s;
}
.carousel__nav-item button:focus {
   outline: none;
}
.carousel__nav-item button:focus::before {
   opacity: 1;
   transform: scale(1);
}

.carousel__nav-item--selected button {
   opacity: 1;
}

.carousel__navigation--pagination {
   grid-template-columns: repeat(auto-fit, 24px);
}
.carousel__navigation--pagination .carousel__nav-item button {
   width: 24px;
   height: 24px;
   color: var(--color-bg);
   font-size: 12px;
   line-height: 24px;
   border-radius: var(--radius-md);
   text-align: center;
}
.carousel__navigation--pagination .carousel__nav-item button:focus {
   outline: 1px solid var(--color-primary);
   outline-offset: 2px;
}

.carousel--hide-controls .carousel__navigation,
.carousel--hide-controls .carousel__control {
   display: none;
}

/* -------------------------------- 

File#: _2_cart-drawer
Title: Cart Drawer
Descr: A cart template in a drawer panel
Usage: codyhouse.co/license

-------------------------------- */
.dr-cart__product {
   display: grid;
   grid-template-columns: 80px 1fr auto;
   grid-gap: var(--space-xs);
   align-items: start;
   padding: var(--space-sm) 0;
}
.dr-cart__product:not(:last-child) {
   border-bottom: 1px solid var(--color-contrast-lower);
}

.dr-cart__img {
   display: block;
   overflow: hidden;
   border-radius: var(--radius-md);
   transition: 0.2s;
}
.dr-cart__img img {
   display: block;
}
.dr-cart__img:hover {
   opacity: 0.85;
}

.dr-cart__select {
   --select-icon-size: 0.85em;
   --select-icon-right-margin: var(--space-xxs);
   font-size: 0.875em;
   width: 3.6em;
}
.dr-cart__select .select__input {
   padding: var(--space-xxxxs) var(--space-xxxs);
}

.dr-cart__remove-btn {
   background-color: transparent;
   padding: 0;
   border: 0;
   border-radius: 0;
   color: inherit;
   line-height: inherit;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   font-size: var(--text-sm);
   color: var(--color-primary);
   cursor: pointer;
}
.dr-cart__remove-btn:hover {
   text-decoration: underline;
}
.dr-cart__remove-btn:focus {
   outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   outline-offset: 2px;
}

/* -------------------------------- 

File#: _2_cart
Title: Cart
Descr: Cart template
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --cart-product-image-size: 96px;
}
@media (min-width: 64rem) {
   :root {
      --cart-product-image-size: 128px;
   }
}

.cart {
   position: relative;
   z-index: 1;
}

.cart__product {
   border-bottom: 1px solid var(--color-contrast-lower);
}
.cart__product:first-child {
   border-top: 1px solid var(--color-contrast-lower);
}

.cart__product-img {
   width: var(--cart-product-image-size);
   flex-shrink: 0;
}
.cart__product-img a,
.cart__product-img img {
   display: block;
   width: 100%;
}
.cart__product-img a {
   overflow: hidden;
   transition: opacity 0.2s;
}
.cart__product-img a:hover {
   opacity: 0.85;
}

.cart__product-info {
   flex-grow: 1;
   display: grid;
   grid-gap: var(--space-xs);
}

.cart__product-tot {
   display: grid;
   grid-gap: var(--space-xs);
}

.cart__select {
   --select-icon-size: 12px;
   --select-icon-right-margin: var(--space-sm);
   --select-text-icon-gap: var(--space-xxxs);
   font-size: var(--text-sm);
   width: 6em;
}

.cart__remove-btn {
   background-color: transparent;
   padding: 0;
   border: 0;
   border-radius: 0;
   color: inherit;
   line-height: inherit;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   font-size: var(--text-sm);
   color: var(--color-primary);
   cursor: pointer;
}
.cart__remove-btn:hover {
   text-decoration: underline;
}
.cart__remove-btn:focus {
   outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   outline-offset: 2px;
}

.cart__gift-message {
   width: 100%;
   margin-top: var(--space-xxs);
   margin-bottom: var(--space-sm);
   display: none;
}

.cart__gift .radio:checked ~ .cart__gift-message {
   display: block;
}

@media (min-width: 32rem) {
   .cart__product-info {
      grid-template-columns: 1fr auto;
      grid-gap: var(--space-md);
      justify-content: space-between;
      align-items: start;
   }
   .cart__product-tot {
      text-align: right;
   }
   .cart__select {
      margin-left: auto;
   }
}
@media (min-width: 48rem) {
   .cart__product,
   .cart__product-info {
      align-items: center;
   }
   .cart__product-tot {
      grid-template-columns: auto minmax(6em, auto);
      grid-gap: var(--space-sm);
   }
   .cart__select {
      align-self: start;
   }
}
@media (min-width: 64rem) {
   .cart__subtotal {
      position: sticky;
      top: var(--space-md);
      background-color: var(--color-bg-light);
      box-shadow: var(--inner-glow), var(--shadow-sm);
      border-radius: var(--radius-md);
      padding: var(--space-sm);
   }
}
/* -------------------------------- 

File#: _2_changelog
Title: Changelog
Descr: A list of updates, grouped by release date
Usage: codyhouse.co/license

-------------------------------- */
@media (min-width: 64rem) {
   .changelog__metadata {
      position: sticky;
      top: var(--space-sm);
   }
}

.changelog__separator {
   height: 1px;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
   );
   margin: var(--space-lg) 0;
}

/* -------------------------------- 

File#: _2_chart
Title: Chart
Descr: A plugin to create custom SVG charts
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --chart-height: 360px;
   --chart-data-line-stroke-width: 2px;
   --chart-marker-size: 4px;
   --chart-axis-stroke-width: 1px;
   --chart-guides-stroke-width: 1px;
   --chart-y-indicator-dash: 3px;
   --chart-y-indicator-stroke-width: 1px;
   --chart-data-color: var(--color-primary);
   --chart-data-fill-opacity: 0.2;
   --chart-legend-bullet-size: 10px;
}

.chart__area {
   position: relative;
   height: var(--chart-height);
}

.chart__svg {
   display: block;
   position: absolute;
   top: 0;
   left: 0;
}
.chart__svg text {
   fill: var(--color-contrast-high);
}

.chart__tooltip {
   position: absolute;
   font-size: var(--text-xs);
   background-color: var(--color-contrast-lower);
   padding: var(--space-sm);
   pointer-events: none;
   white-space: nowrap;
}

.chart__bullet {
   display: block;
   width: var(--chart-legend-bullet-size);
   height: var(--chart-legend-bullet-size);
   border-radius: 50%;
   flex-shrink: 0;
}

.chart__axis-legend {
   font-size: var(--text-xs);
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}

.chart__axis-label {
   font-size: var(--text-xs);
   pointer-events: none;
}

.chart__axis {
   pointer-events: none;
   stroke: var(--color-contrast-low);
   stroke-width: var(--chart-axis-stroke-width);
}

.chart__tick {
   stroke-width: var(--chart-axis-stroke-width);
   stroke: var(--color-contrast-low);
}

.chart__guides {
   fill: transparent;
   stroke-width: var(--chart-guides-stroke-width);
   stroke: var(--color-contrast-lower);
}

.chart__dataset {
   pointer-events: none;
}

.chart__data-line {
   fill: none;
   stroke-width: var(--chart-data-line-stroke-width);
   stroke-linecap: round;
   stroke-linejoin: round;
   stroke: var(--chart-data-color);
}

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

.chart--area .chart__data-fill {
   fill: var(--chart-data-color);
   opacity: var(--chart-data-fill-opacity);
}

.chart__marker {
   r: var(--chart-marker-size);
   opacity: 0;
   fill: var(--chart-data-color);
}

.chart__marker--selected {
   opacity: 1;
}

.chart__y-indicator {
   stroke-width: var(--chart-y-indicator-stroke-width);
   stroke: var(--color-contrast-low);
   stroke-dasharray: var(--chart-y-indicator-dash);
   pointer-events: none;
}

.chart__data-bar {
   pointer-events: none;
   fill: var(--chart-data-color);
}

.chart--column .chart__marker {
   visibility: hidden;
}
.chart--column .chart__y-indicator {
   display: none;
}

/* -------------------------------- 

File#: _2_checkout-v2
Title: Checkout v2
Descr: Checkout template
Usage: codyhouse.co/license

-------------------------------- */
.checkout-v2__billing-checkbox {
   display: none;
}

.checkout-v2__billing-checkbox {
   display: block;
}

.checkout-v2__billing-info {
   display: none;
}

/* -------------------------------- 

File#: _2_checkout
Title: Checkout
Descr: Checkout template
Usage: codyhouse.co/license

-------------------------------- */
.checkout {
   position: relative;
   z-index: 1;
}

.checkout__billing-checkbox {
   display: none;
}

@media (min-width: 80rem) {
   .checkout .order-summary {
      position: sticky;
      top: var(--space-sm);
      max-height: calc(100vh - var(--space-sm));
      overflow: auto;
      -webkit-overflow-scrolling: touch;
   }
}
.checkout__billing-checkbox {
   display: block;
}

.checkout__billing-info {
   display: none;
}

/* -------------------------------- 

File#: _2_circular-progress-card
Title: Circular Progress Card
Descr: Circular progress bar card for app UI
Usage: codyhouse.co/license

-------------------------------- */
.c-progress-bar-card .c-progress-bar {
   --c-progress-bar-size: 200px;
   --c-progress-bar-stroke-width: 6;
}

/* -------------------------------- 

File#: _2_coming-soon-v2
Title: Coming Soon v2
Descr: Coming soon template
Usage: codyhouse.co/license

-------------------------------- */
.coming-soon-v2 {
   position: relative;
   z-index: 1;
}

.coming-soon-v2__social-btn {
   position: relative;
   --btn-size: 32px;
   width: var(--btn-size);
   height: var(--btn-size);
   display: inline-flex;
}
.coming-soon-v2__social-btn .icon {
   position: relative;
   z-index: 2;
   display: block;
   margin: auto;
   font-size: 16px;
   color: var(--color-contrast-high);
   transition: 0.3s;
}
.coming-soon-v2__social-btn::before {
   content: "";
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: 50%;
   background-color: var(--color-contrast-higher);
   opacity: 0;
   transform: scale(0.5);
   transition:
      opacity 0.3s,
      transform 0.3s var(--ease-out);
}
.coming-soon-v2__social-btn:hover .icon {
   color: var(--color-bg);
}
.coming-soon-v2__social-btn:hover::before {
   opacity: 1;
   transform: scale(1);
}

/* -------------------------------- 

File#: _2_coming-soon
Title: Coming Soon
Descr: Coming soon template
Usage: codyhouse.co/license

-------------------------------- */
.coming-soon {
   position: relative;
   z-index: 1;
}

.coming-soon__figure {
   position: relative;
   height: 40vh;
}
.coming-soon__figure img {
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.coming-soon__social-btn {
   --btn-size: 32px;
   --icon-size: 16px;
   position: relative;
   width: var(--btn-size);
   height: var(--btn-size);
   display: inline-flex;
}
.coming-soon__social-btn .icon {
   position: relative;
   z-index: 2;
   display: block;
   margin: auto;
   font-size: var(--icon-size);
   color: var(--color-contrast-high);
}
.coming-soon__social-btn::before {
   content: "";
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: 50%;
   transform: scale(0.5);
   transition: 0.3s var(--ease-out);
}
.coming-soon__social-btn:hover::before {
   background-color: var(--color-contrast-lower);
   transform: scale(1);
}

@media (min-width: 64rem) {
   .coming-soon__figure {
      height: auto;
      clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
      animation: coming-soon-figure-anim 0.6s var(--ease-out) forwards;
   }
}
@keyframes coming-soon-figure-anim {
   from {
      clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
   }
   to {
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
   }
}
/* -------------------------------- 

File#: _2_comments
Title: Comments
Descr: Threaded comments template
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --comments-author-img-size: 2.6em;
   --comments-author-content-gap: var(--space-xs);
   --comments-gap: var(--space-md);
}

.comments__sorting-label {
   position: absolute;
   left: 0;
   top: 0;
   margin: 0 !important;
   padding: 0 !important;
   opacity: 0;
   height: 0;
   width: 0;
   pointer-events: none;
}
.comments__sorting-label + label {
   color: var(--color-contrast-medium);
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.comments__sorting-label + label:hover {
   color: var(--color-contrast-high);
}
.comments__sorting-label:checked + label {
   color: var(--color-contrast-higher);
   text-decoration: underline;
}
.comments__sorting-label:focus + label {
   outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   outline-offset: 2px;
}

.comments__comment:not(:last-child) {
   margin-bottom: var(--comments-gap);
}

.comments__author-img {
   display: block;
   flex-shrink: 0;
   border-radius: 50%;
   overflow: hidden;
   margin-right: var(--comments-author-content-gap);
   transition: opacity 0.2s;
}
.comments__author-img img {
   display: block;
   width: var(--comments-author-img-size);
   height: var(--comments-author-img-size);
}
.comments__author-img:hover {
   opacity: 0.75;
}

.comments__author-name {
   font-weight: bold;
   text-decoration: none;
   color: var(--color-contrast-higher);
}
.comments__author-name:hover {
   text-decoration: underline;
}

.comments__readmore-btn {
   background-color: transparent;
   padding: 0;
   border: 0;
   border-radius: 0;
   color: inherit;
   line-height: inherit;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   color: var(--color-contrast-medium);
}
.comments__readmore-btn:hover {
   cursor: pointer;
   color: var(--color-contrast-higher);
   text-decoration: underline;
}

.comments__vote-btn {
   display: inline-flex;
   align-items: center;
   color: var(--color-contrast-medium);
}
.comments__vote-btn:hover {
   color: var(--color-contrast-higher);
   cursor: pointer;
}

.comments__vote-btn--pressed {
   color: var(--color-accent);
}
.comments__vote-btn--pressed:hover {
   color: var(--color-accent);
}
.comments__vote-btn--pressed .comments__vote-icon-wrapper .icon {
   animation: comments-vote-icon 0.3s;
}
.comments__vote-btn--pressed .comments__vote-icon-wrapper::before {
   animation: comments-vote-icon-circle 0.6s;
}

.comments__vote-icon-wrapper {
   position: relative;
}
.comments__vote-icon-wrapper .icon {
   position: relative;
   z-index: 2;
   transition: transform 0.3s;
}
.comments__vote-icon-wrapper::before {
   content: "";
   width: 2em;
   height: 2em;
   border-radius: 50%;
   position: absolute;
   z-index: 1;
   top: calc(50% - 1em);
   left: calc(50% - 1em);
   background-color: currentColor;
   opacity: 1;
   transform: scale(0);
   pointer-events: none;
}

@keyframes comments-vote-icon {
   0%,
   100% {
      transform: scale(1);
   }
   30% {
      transform: scale(0.8);
   }
}
@keyframes comments-vote-icon-circle {
   from {
      opacity: 1;
      transform: scale(0);
   }
   to {
      opacity: 0;
      transform: scale(1);
   }
}
.comments__label-btn {
   color: var(--color-contrast-medium);
}
.comments__label-btn:hover {
   color: var(--color-contrast-higher);
   cursor: pointer;
   text-decoration: underline;
}

.comments__time {
   color: var(--color-contrast-medium);
}

.comments__inline-divider {
   width: 4px;
   height: 4px;
   border-radius: 50%;
   background-color: var(--color-contrast-low);
}

.comments__details {
   margin-top: var(--space-sm);
   margin-left: calc(var(--comments-author-img-size) + var(--comments-author-content-gap));
   padding-left: var(--comments-author-content-gap);
   border-left: 3px solid var(--color-contrast-lower);
}
.comments__details .details__content > ul {
   margin-top: var(--space-sm);
}

.comments--no-profile-img {
   --comments-author-img-size: 0;
}
.comments--no-profile-img .comments__author-img {
   display: none;
}

/* -------------------------------- 

File#: _2_contact-v2
Title: Contact v2
Descr: Contact block w/ info about how to get in touch
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_contact
Title: Contact
Descr: Contact block w/ info about how to get in touch
Usage: codyhouse.co/license

-------------------------------- */
@media (min-width: 64rem) {
   .contact .google-maps {
      height: auto;
      padding-bottom: 0;
   }
}
/* -------------------------------- 

File#: _2_content-rating
Title: Content Rating
Descr: A like/dislike feedback rating widget
Usage: codyhouse.co/license

-------------------------------- */
.rate-cont__custom-input {
   display: inline-flex;
   align-items: center;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
   );
   padding: var(--space-xxs) var(--space-xs);
   border-radius: var(--radius-md);
   color: var(--color-contrast-high);
   line-height: 1;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   cursor: pointer;
   transition:
      background 0.2s,
      color 0.2s,
      box-shadow 0.2s;
}
.rate-cont__custom-input:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.2
   );
}
.rate-cont__native-input:checked + .rate-cont__custom-input {
   background-color: var(--color-contrast-higher);
   color: var(--color-bg);
}
.rate-cont__native-input:focus + .rate-cont__custom-input {
   box-shadow: 0 0 0 3px
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
}

.rate-cont__icon {
   margin-right: var(--space-xxs);
}
.rate-cont__native-input:checked + .rate-cont__custom-input--yes .rate-cont__icon,
.rate-cont__native-input:checked + .rate-cont__custom-input--no .rate-cont__icon {
   animation-duration: 0.6s;
   animation-fill-mode: forwards;
   will-change: transform;
   transform-origin: left center;
}
.rate-cont__native-input:checked + .rate-cont__custom-input--yes .rate-cont__icon {
   animation-name: rate-cont-anim-yes;
}
.rate-cont__native-input:checked + .rate-cont__custom-input--no .rate-cont__icon {
   animation-name: rate-cont-anim-no;
}

@keyframes rate-cont-anim-yes {
   0% {
      transform: rotate(0) scale(1);
   }
   20% {
      transform: rotate(10deg) scale(1.1);
   }
   50% {
      transform: rotate(-25deg) scale(1.2);
   }
   80% {
      transform: rotate(5deg) scale(1.2);
   }
   100% {
      transform: rotate(0) scale(1.2);
   }
}
@keyframes rate-cont-anim-no {
   0% {
      transform: rotate(0) scale(1);
   }
   20% {
      transform: rotate(-10deg) scale(1.1);
   }
   50% {
      transform: rotate(25deg) scale(1.2);
   }
   80% {
      transform: rotate(-5deg) scale(1.2);
   }
   100% {
      transform: rotate(0) scale(1.2);
   }
}
/* -------------------------------- 

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_date-range
Title: Date Range
Descr: A controller for choosing date ranges
Usage: codyhouse.co/license

-------------------------------- */
.date-range,
.date-range__wrapper {
   position: relative;
}

.date-range__input {
   display: none;
}

/* -------------------------------- 

File#: _2_deal-feature
Title: Deal Feature
Descr: Section displaying an active deal
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_device-group
Title: Device Group
Descr: A group of devices
Usage: codyhouse.co/license

-------------------------------- */
.device-group-1 {
   position: relative;
   z-index: 1;
   display: grid;
   align-items: center;
   grid-template-columns: repeat(10, 1fr);
}
.device-group-1 > * {
   position: relative;
   grid-row: 1/-1;
}
.device-group-1 > *:nth-child(1),
.device-group-1 > *:nth-child(3) {
   z-index: 1;
}
.device-group-1 > *:nth-child(1) {
   grid-column: 1/5;
}
.device-group-1 > *:nth-child(2) {
   z-index: 2;
   grid-column: 4/8;
}
.device-group-1 > *:nth-child(3) {
   grid-column: 7/11;
}
.device-group-1 .dev-phone-3d-wrapper {
   perspective: 1000px;
}
.device-group-1 .dev-phone-3d-wrapper:first-child .dev-phone,
.device-group-1 .dev-phone-3d-wrapper:last-child .dev-phone {
   transition: transform 0.5s;
}
.device-group-1 .dev-phone-3d-wrapper:first-child .dev-phone {
   transform: rotateY(30deg);
   transform-origin: left center;
}
.device-group-1 .dev-phone-3d-wrapper:last-child .dev-phone {
   transform: rotateY(-30deg);
   transform-origin: right center;
}
.device-group-1:hover .dev-phone-3d-wrapper:first-child .dev-phone {
   transform: rotateY(20deg);
}
.device-group-1:hover .dev-phone-3d-wrapper:last-child .dev-phone {
   transform: rotateY(-20deg);
}

.device-group-2 {
   position: relative;
   z-index: 1;
   display: grid;
   align-items: end;
   grid-template-columns: repeat(12, 1fr);
   padding-bottom: 2.5%;
}
.device-group-2 > * {
   position: relative;
   grid-row: 1/-1;
}
.device-group-2 .dev-phone {
   z-index: 2;
   grid-column: 1/4;
   bottom: -5%;
}
.device-group-2 .dev-laptop {
   z-index: 1;
   grid-column: 2/13;
}

.device-group-3 {
   position: relative;
   z-index: 1;
   display: grid;
   align-items: end;
   grid-template-columns: repeat(12, 1fr);
   padding-bottom: 3.75%;
}
.device-group-3 > * {
   position: relative;
   grid-row: 1/-1;
}
.device-group-3 .dev-phone {
   z-index: 2;
   grid-column: 1/4;
   bottom: -5%;
}
.device-group-3 .dev-desktop {
   z-index: 1;
   grid-column: 2/13;
}

.device-group-4 {
   position: relative;
   z-index: 1;
   display: grid;
   align-items: end;
   grid-template-columns: repeat(12, 1fr);
   padding-bottom: 2.75%;
}
.device-group-4 > * {
   position: relative;
   grid-row: 1/-1;
}
.device-group-4 .dev-phone {
   z-index: 2;
   grid-column: 1/3;
   bottom: -5%;
}
.device-group-4 .dev-desktop {
   z-index: 1;
   grid-column: 2/10;
}
.device-group-4 .dev-laptop {
   z-index: 2;
   bottom: -5%;
   grid-column: 6/13;
}

/* -------------------------------- 

File#: _2_diagonal-animated-divider
Title: Diagonal Animated Divider
Descr: A diagonal section divider that animates on scroll
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_drag-drop-file
Title: Drag and Drop File
Descr: Drag files over a droppable area to upload them
Usage: codyhouse.co/license

-------------------------------- */
.ddf__area {
   position: relative;
   overflow: hidden;
   border-radius: var(--radius-md);
   border: 2px dashed var(--color-contrast-low);
   background-color: var(--color-bg-dark);
   transition: 0.3s;
}
.ddf__area:hover {
   border-color: var(--color-contrast-medium);
}

.ddf__label {
   cursor: pointer;
}
.ddf__label::before {
   /* this element triggers (onClick) dialog to select files */
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   cursor: inherit;
}

.ddf__icon-cloud *:nth-child(2) {
   transition: fill 0.3s;
   fill: var(--color-bg-dark);
}

.ddf__label-end {
   /* message visible when files have been dropped */
   display: none;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   justify-content: center;
   align-items: center;
   pointer-events: none;
}

.ddf__label-inner,
.ddf__label-end-inner {
   transition:
      opacity 0.3s,
      transform 0.3s var(--ease-out);
}

.ddf__label-end-inner {
   opacity: 0;
   transform: translateY(25px);
}

.ddf__icon-file {
   /* file icon */
}
.ddf__icon-file *:nth-child(1),
.ddf__icon-file *:nth-child(2) {
   /* file icons in the back */
   transform-origin: 32px 50px;
   opacity: 0;
   transition:
      opacity 0.3s,
      transform 0.5s var(--ease-out);
}
.ddf__icon-file *:nth-child(1) {
   /* file - left */
   transform: rotate(15deg);
}
.ddf__icon-file *:nth-child(2) {
   /* file - right */
   transform: rotate(-15deg);
}

/* files over drop area */
.ddf__area--file-hover,
.ddf__area:focus-within {
   border-color: var(--color-primary);
   background-color: var(--color-bg);
}
.ddf__area--file-hover .ddf__icon-cloud,
.ddf__area:focus-within .ddf__icon-cloud {
   color: var(--color-primary);
}
.ddf__area--file-hover .ddf__icon-cloud *:nth-child(2),
.ddf__area:focus-within .ddf__icon-cloud *:nth-child(2) {
   fill: var(--color-bg);
}

.ddf__area--file-hover .ddf__icon-cloud *:nth-child(2) {
   animation: ddf-icon-cloud 1s infinite;
   transform-origin: 32px 32px;
}

/* files dropped */
.ddf__area--file-dropped {
   /* files have been selected */
}
.ddf__area--file-dropped .ddf__label-inner {
   opacity: 0;
   transform: translateY(-25px);
}
.ddf__area--file-dropped .ddf__label-end-inner {
   opacity: 1;
   transform: translateY(0px);
}
.ddf__area--file-dropped .ddf__icon-file *:nth-child(1),
.ddf__area--file-dropped .ddf__icon-file *:nth-child(2) {
   /* file icons in the back */
   opacity: 0.7;
   transform: rotate(0deg);
}

/* files list */
.ddf__item {
   display: flex;
   align-items: center;
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   padding: var(--space-xs);
}
.ddf__item:not(:last-child) {
   margin-bottom: var(--space-xs);
}

.ddf__file-name {
   font-size: var(--text-sm);
   margin-right: var(--space-xs);
}

.ddf__remove-btn {
   background-color: var(--color-contrast-lower);
   width: 24px;
   height: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   transition: background 0.2s;
   margin-left: auto;
   flex-shrink: 0;
}
.ddf__remove-btn:hover {
   background-color: hsl(
      var(--color-contrast-lower-h),
      var(--color-contrast-lower-s),
      calc(var(--color-contrast-lower-l) * 0.95)
   );
}
.ddf__remove-btn:focus {
   outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
   outline-offset: 2px;
}

/* circle progress animation */
.ddf__progress {
   --c-progress-bar-size: 24px;
   color: var(--color-primary);
   flex-shrink: 0;
}

.ddf__progress-circle-mask {
   fill: var(--color-bg);
   stroke: none;
   transform-origin: 12px 12px;
}

.ddf__progress-circle {
   opacity: 0;
   fill: currentColor;
}

.ddf__progress-check {
   opacity: 0;
   stroke: var(--color-white);
   stroke-dashoffset: 16;
   stroke-dasharray: 17;
}

.ddf__progress--complete {
   /* added in JS when progress = 100% */
}
.ddf__progress--complete .c-progress-bar__bg,
.ddf__progress--complete .c-progress-bar__fill {
   opacity: 0;
}
.ddf__progress--complete .ddf__progress-circle {
   opacity: 1;
}
.ddf__progress--complete .ddf__progress-circle-mask {
   transform: scale(0);
   transition: transform 0.4s;
}
.ddf__progress--complete .ddf__progress-check {
   opacity: 1;
   stroke-dashoffset: 0;
   transition:
      stroke-dashoffset 0.3s 0.4s,
      opacity 0s 0.4s;
}

/* circle progress animation - files list not visible */
.ddf__area .ddf__progress {
   --c-progress-bar-size: 32px;
}
.ddf__area .ddf__progress-circle-mask {
   fill: var(--color-bg-dark); /* use same bg color of .ddf__area element */
}

.ddf__label-end {
   display: flex;
}

@keyframes ddf-icon-cloud {
   0%,
   100% {
      transform: translateY(0px);
   }
   50% {
      transform: translateY(-4px);
   }
}
/* -------------------------------- 

File#: _2_draggable-img-gallery
Title: Draggable Image Gallery
Descr: A gallery of images that can be dragged to reveal new items
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --drag-gallery-img-width: 260px;
   --drag-gallery-img-gap: var(--space-lg);
}

@supports (--css: variables) {
   @media (min-width: 48rem) {
      :root {
         --drag-gallery-img-width: 400px;
      }
   }
   @media (min-width: 64rem) {
      :root {
         --drag-gallery-img-width: 520px;
      }
   }
}
.drag-gallery {
   position: relative;
   overflow: hidden;
}
.drag-gallery:focus {
   outline: none;
}

.drag-gallery__list {
   display: flex;
   align-items: center;
   overflow: auto;
   padding: 0 var(--component-padding);
}
.drag-gallery__list::after {
   display: block;
   content: "";
   height: 1px;
   padding-right: inherit;
}

.drag-gallery__item {
   float: left;
   width: var(--drag-gallery-img-width);
   flex-shrink: 0;
   margin-right: var(--drag-gallery-img-gap);
}
.drag-gallery__item:last-child {
   margin-right: 0;
}
.drag-gallery__item img {
   display: block;
}

.drag-gallery__gesture-hint {
   width: 4em;
   height: 4em;
   background-color: rgba(0, 0, 0, 0.95);
   border-radius: 50%;
   position: absolute;
   top: calc(50% - 2em);
   left: calc(50% - 2em);
   display: none;
}

.drag-gallery {
   cursor: grab;
}

.drag-gallery--is-dragging {
   cursor: grabbing;
}

.drag-gallery__list {
   overflow: visible;
   will-change: transform;
   transform: translateZ(0);
   backface-visibility: hidden;
}

.drag-gallery__item {
   opacity: 0;
   transition: opacity 1.5s;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.drag-gallery__item img {
   pointer-events: none;
}

.drag-gallery__item--visible {
   opacity: 1;
}

.drag-gallery--anim-off .drag-gallery__item {
   opacity: 1;
}

.drag-gallery__gesture-hint {
   display: block;
   opacity: 0;
   transform: translateX(0) scale(1);
}

.drag-gallery__gesture-hint--animate {
   animation: drag-gallery-gesture-hint 2.8s;
}

@keyframes drag-gallery-gesture-hint {
   0%,
   60% {
      opacity: 0;
      transform: translateX(0) scale(1);
   }
   5%,
   65% {
      opacity: 1;
      transform: translateX(0) scale(1);
   }
   10%,
   70% {
      opacity: 1;
      transform: translateX(0) scale(0.8);
   }
   30%,
   90% {
      opacity: 1;
      transform: translateX(-200%) scale(0.8);
      animation-timing-function: var(--ease-in-out);
   }
   35%,
   95% {
      opacity: 1;
      transform: translateX(-200%) scale(1);
   }
   40%,
   100% {
      opacity: 0;
      transform: translateX(-200%) scale(1);
   }
}
/* -------------------------------- 

File#: _2_drawer-navigation
Title: Drawer Navigation
Descr: Header template with drawer navigation
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --dr-nav-header-height: 54px;
   --dr-nav-logo-size: 48px;
}

@media (min-width: 64rem) {
   :root {
      --dr-nav-header-height: 70px;
      --dr-nav-logo-size: 54px;
   }
}
.dr-nav-header {
   height: var(--dr-nav-header-height);
   position: relative;
   z-index: var(--z-index-header, 3);
}
.dr-nav-header .radio-switch {
   --radio-switch-width: 72px;
   --radio-switch-height: 32px;
   --radio-switch-padding: 3px;
   --radio-switch-radius: 50em;
   --radio-switch-animation-duration: 0.3s;
}
.dr-nav-header .radio-switch__marker {
   background-color: var(--color-contrast-high);
}
.dr-nav-header .radio-switch__input:checked ~ .radio-switch__label {
   color: var(--color-bg);
}

.dr-nav-header__logo {
   display: block;
   position: absolute;
   left: calc(50% - var(--dr-nav-logo-size) / 2);
   top: calc(50% - var(--dr-nav-logo-size) / 2);
   width: var(--dr-nav-logo-size);
   height: var(--dr-nav-logo-size);
   text-decoration: none;
   color: var(--color-contrast-high);
   transition: 0.3s;
}
.dr-nav-header__logo svg {
   display: block;
   width: inherit;
   height: inherit;
}
.dr-nav-header__logo:hover {
   color: var(--color-contrast-higher);
}

.dr-nav-control-wrapper {
   position: fixed;
   z-index: var(--z-index-overlay, 15);
   top: 0;
   left: 0;
   height: var(--dr-nav-header-height);
   width: 100%;
   pointer-events: none;
}

.dr-nav-control {
   --anim-menu-btn-size: 48px;
   --anim-menu-btn-icon-size: 24px;
   --anim-menu-btn-icon-stroke: 2px;
   pointer-events: auto;
   position: relative;
   cursor: pointer;
   border-radius: 50%;
   transition: transform 0.3s var(--ease-in-out);
   color: var(--color-contrast-high);
}
.dr-nav-control circle {
   display: none;
}
.dr-nav-control.anim-menu-btn--state-b {
   transform: rotate(180deg);
}
.dr-nav-control:hover .dr-nav-control__bg {
   fill: var(--color-contrast-lower);
   opacity: 1;
}

.dr-nav-control__bg {
   display: block;
   fill: var(--color-bg);
   stroke-width: 1.5;
   stroke: var(--color-contrast-low);
   opacity: 0.95;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transition: 0.2s;
}

.dr-nav-control--ready-to-animate circle {
   display: block;
   transition: stroke-dashoffset 0.3s 0s;
}

.dr-nav-control.anim-menu-btn--state-b circle {
   stroke-dashoffset: 0;
   transition-delay: 0.3s;
}

.dr-nav-drawer-header {
   display: flex;
   align-items: center;
   flex-shrink: 0;
   height: var(--dr-nav-header-height);
}

.dr-nav__link {
   display: flex;
   align-items: center;
   justify-content: space-between;
   text-decoration: none;
   padding: var(--space-xxxs) 0;
   color: var(--color-contrast-medium);
   transition: 0.3s;
}
.dr-nav__link :nth-child(2)::before {
   content: "";
   display: inline-block;
   height: 1px;
   width: 32px;
   margin-right: var(--space-xs);
   background-color: currentColor;
   vertical-align: middle;
   transform: scaleX(0);
   transform-origin: right center;
   transition: transform 0.3s var(--ease-out);
}
.dr-nav__link:hover {
   color: var(--color-contrast-high);
}
.dr-nav__link:hover :nth-child(2)::before {
   transform: scaleX(1);
}

/* -------------------------------- 

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 0s,
      visibility 0s 0s;
}

@media (pointer: fine) {
   .dropdown__wrapper:hover > .dropdown__menu,
   .dropdown__sub-wrapper:hover > .dropdown__menu {
      opacity: 1;
      visibility: visible;
      transition: opacity 0s;
   }
   .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 0s;
   }
}
.dropdown__menu--is-hidden {
   opacity: 0;
   visibility: hidden;
   transition:
      opacity 0s,
      visibility 0s 0s;
}

.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_feature-v13
Title: Feature v13
Descr: Feature content with diamond grid
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_feature-v15
Title: Feature v15
Descr: Feature content with text overlapping a background image
Usage: codyhouse.co/license

-------------------------------- */
.feature-v15 {
   --feature-v15-cursor-fx-delta: 50px; /* max translate value of the background image effect */
   position: relative;
   z-index: 1;
   overflow: hidden;
}

.feature-v15__content {
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.8);
   border-radius: var(--radius-lg);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   overflow: hidden;
}
@media (min-width: 64rem) {
   .feature-v15__content {
      border-radius: 0;
   }
}

.feature-v15__bg {
   position: absolute;
   z-index: 1;
   inset: calc(-1 * var(--feature-v15-cursor-fx-delta));
   overflow: hidden;
   height: calc(100% + 2 * var(--feature-v15-cursor-fx-delta));
   width: calc(100% + 2 * var(--feature-v15-cursor-fx-delta));
}

.feature-v15__bg-asset {
   position: absolute;
   height: 100%;
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   transition: transform 0.3s var(--ease-out);
}

.feature-v15__link {
   display: flex;
   gap: var(--space-xs);
   align-items: center;
   background: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0.5);
   border-top: 1px solid var(--color-bg-light);
   color: var(--color-contrast-higher);
   text-decoration: none;
   transition: 0.2s;
}
@media (hover: hover) {
   .feature-v15__link:hover {
      background-color: var(--color-primary);
      color: var(--color-white);
   }
   .feature-v15__link:hover .feature-v15__icon line:nth-child(1),
   .feature-v15__link:hover .feature-v15__icon line:nth-child(2) {
      opacity: 1;
      transform: rotate(0deg);
      transition:
         opacity 0s 0.2s,
         transform 0.2s 0.2s var(--ease-in-out);
   }
   .feature-v15__link:hover .feature-v15__icon line:nth-child(3) {
      stroke-dashoffset: 96;
      transition: stroke-dashoffset 0.2s var(--ease-in-out);
   }
   .feature-v15__link:hover .feature-v15__link-text {
      transform: translateX(0px);
      transition-delay: 0s;
   }
}

.feature-v15__icon {
   font-size: 48px; /* icon size */
}
.feature-v15__icon line:nth-child(1),
.feature-v15__icon line:nth-child(2) {
   transform-origin: 47px 24px;
   opacity: 0;
   transition:
      opacity 0s 0.2s,
      transform 0.2s var(--ease-in-out);
}
.feature-v15__icon line:nth-child(1) {
   transform: rotate(-45deg);
}
.feature-v15__icon line:nth-child(2) {
   transform: rotate(45deg);
}
.feature-v15__icon line:nth-child(3) {
   stroke-dasharray: 48;
   stroke-dashoffset: 72;
   transition: stroke-dashoffset 0.2s 0.2s var(--ease-in-out);
}

.feature-v15__link-text {
   transform: translateX(-24px);
   transition: transform 0.2s var(--ease-in-out) 0.2s;
}

/* -------------------------------- 

File#: _2_feature-v16
Title: Feature v16
Descr: A gallery of images linking to different pages
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_feature-v17
Title: Feature v17
Descr: A text section with a single CTA link
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_feature-v18
Title: Feature v18
Descr: A gallery of cards over a background image
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_feature-v19
Title: Feature v19
Descr: Feature content with a tilted image slideshow
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_feature-v8
Title: Feature v8
Descr: A section containing a list of features
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --feature-v8-gap: var(--space-xl);
}

.feature-v8 {
   position: relative;
   z-index: 1;
}

.feature-v8__main-content {
   padding-bottom: calc(var(--feature-v8-gap) * 2);
}

.feature-v8__sub-content {
   margin-top: calc(var(--feature-v8-gap) * -1);
}

/* -------------------------------- 

File#: _2_flexi-header
Title: Flexi Header
Descr: Customizable header template
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --f-header-height: 50px;
   --f-header-logo-width: 104px;
}
@media (min-width: 64rem) {
   :root {
      --f-header-height: 70px;
   }
}

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

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link {
   display: flex;
   align-items: center;
   color: var(--color-contrast-high);
   text-decoration: none;
   padding: var(--space-xs) 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-xs); /* 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_flexi-sub-navigation
Title: Flexi Sub Navigation
Descr: Secondary navigation template
Usage: codyhouse.co/license

-------------------------------- */
.flexi-subnav__social {
   --size: 2em;
   width: var(--size);
   height: var(--size);
   display: flex;
   border-radius: 50%;
   background-color: var(--color-bg-dark);
   text-decoration: none;
   color: var(--color-contrast-medium);
   transition: 0.2s;
}
.flexi-subnav__social .icon {
   --size: 1em;
   margin: auto;
}
.flexi-subnav__social:hover {
   background-color: var(--color-bg-light);
   box-shadow: var(--shadow-md);
   color: var(--color-contrast-higher);
}

/* -------------------------------- 

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#: _2_floating-navigation
Title: Floating Navigation
Descr: A header that auto-hides and controls an expanded modal navigation
Usage: codyhouse.co/license

-------------------------------- */
/* #region (Header) */
.float-nav-header {
   background-color: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0.98);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   border-radius: calc(var(--radius-lg) * 1.2);
   padding: var(--space-xs);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   display: flex;
   align-items: center;
   justify-content: space-between;
   transition: box-shadow var(--hide-nav-transition-duration, 0.3s);
}
.hide-nav--off-canvas .float-nav-header {
   box-shadow: var(--inner-glow);
}

.float-nav-header__logo {
   display: block;
   color: var(--color-contrast-higher);
   transition: 0.2s;
}
.float-nav-header__logo:hover {
   color: var(--color-primary);
}

.float-nav-header__link {
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.8);
   text-decoration: none;
   font-size: var(--text-xs);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   transition: color 0.2s;
}
.float-nav-header__link:hover {
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 1);
}

.float-nav-header__menu-btn {
   display: inline-flex;
   align-items: center;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   padding: var(--space-xs) var(--space-sm);
   border-radius: var(--radius-lg);
   transition: 0.2s;
}
.float-nav-header__menu-btn .icon {
   font-size: 13px;
}
.float-nav-header__menu-btn: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);
   cursor: pointer;
}
@media (min-width: 64rem) {
   .float-nav-header__menu-btn {
      font-size: var(--text-sm);
   }
}

/* #endregion */
/* #region (Modal Window) */
.float-nav-modal__close-btn {
   height: 40px;
   width: 40px;
   border-radius: 50%;
   border: 2px solid
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
   display: flex;
   flex-shrink: 0;
   cursor: pointer;
   transition: 0.2s;
}
.float-nav-modal__close-btn .icon {
   display: block;
   margin: auto;
   font-size: 20px;
}
.float-nav-modal__close-btn:hover {
   color: var(--color-contrast-higher);
   border-color: currentColor;
}
.float-nav-modal__close-btn:hover .float-nav-modal__close-icon-g > * {
   stroke-dashoffset: 48;
}

.float-nav-modal__close-icon-g > * {
   transform-origin: 50% 50%;
   stroke-dashoffset: 0;
   stroke-dasharray: 24;
   transition: stroke-dashoffset 0.5s var(--ease-in-out);
}
.float-nav-modal__close-icon-g > *:last-child {
   transition-delay: 0.1s;
}

.float-nav-modal__list {
   counter-reset: list-items;
}
.float-nav-modal__list li {
   counter-increment: list-items;
}

.float-nav-modal__link {
   display: inline-flex;
   padding: var(--space-xxxxs) 0;
   color: var(--color-contrast-higher);
   text-decoration: none;
   font-size: var(--text-xl);
   line-height: 1;
   transition: 0.2s;
}
.float-nav-modal__link::before {
   content: "0" counter(list-items) "";
   width: 2em;
   margin-right: var(--space-md);
   color: var(--color-contrast-medium);
   font-size: 0.3em;
   font-variant-numeric: slashed-zero;
   font-feature-settings: "tnum";
   line-height: inherit;
   transition: inherit;
   transform: translateY(0.3em);
   display: none;
}
.float-nav-modal__link:hover {
   color: var(--color-primary);
}
.float-nav-modal__link:hover span {
   color: currentColor;
}
@media (min-width: 32rem) {
   .float-nav-modal__link {
      font-size: var(--text-xl);
   }
}
@media (min-width: 64rem) {
   .float-nav-modal__link {
      font-size: var(--text-xxl);
   }
   .float-nav-modal__link::before {
      display: inline;
   }
}

.float-nav-modal__social-btn {
   color: var(--color-contrast-medium);
   transition: 0.2s;
}
.float-nav-modal__social-btn .icon {
   display: block;
   font-size: 16px;
}
.float-nav-modal__social-btn:hover {
   color: var(--color-contrast-higher);
}

/* #endregion */
/* -------------------------------- 

File#: _2_floating-side-nav
Title: Floating Side Navigation
Descr: A floating, side navigation to quickly browse through different page sections
Usage: codyhouse.co/license

-------------------------------- */
.float-sidenav {
   position: fixed;
   z-index: var(--z-index-overlay, 15);
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
   visibility: hidden;
   opacity: 0;
}

.float-sidenav--is-visible {
   visibility: visible;
   opacity: 1;
   transition: opacity 0.3s;
}
.float-sidenav--is-visible .float-sidenav__nav {
   transform: translateY(0);
   transition: transform 0.3s;
}

.float-sidenav__nav {
   background-color: var(--color-bg);
   padding: var(--space-xs) 0 var(--space-md);
   max-height: 100%;
   overflow: auto;
   box-shadow: var(--shadow-md);
   transform: translateY(-1em);
}

.float-sidenav__link {
   display: block;
   padding: var(--space-xxs) var(--space-md);
   font-size: var(--text-md);
   color: var(--color-contrast-high);
   text-decoration: none;
}

.float-sidenav__link--selected {
   color: var(--color-primary);
}

.float-sidenav__close-btn {
   --size: 40px;
   width: var(--size);
   height: var(--size);
   position: sticky;
   margin: 0 var(--space-xs) 0 auto;
   top: 0;
   display: flex;
   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;
}
.float-sidenav__close-btn:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-md);
}
.float-sidenav__close-btn .icon {
   display: block;
}

@media (min-width: 64rem) {
   .float-sidenav {
      visibility: visible;
      opacity: 1;
      width: auto;
      height: auto;
      background-color: transparent;
      right: 0;
      left: auto;
      top: 0;
      bottom: 0;
      pointer-events: none;
      overflow: visible;
      display: flex;
      align-items: center;
   }
   .float-sidenav__nav {
      background-color: transparent;
      overflow: visible;
      box-shadow: none;
      transform: translateY(0);
      padding: var(--space-sm) var(--space-md);
      border-radius: var(--radius-md) 0 0 var(--radius-md);
      transition:
         box-shadow 0.2s,
         background-color 0.2s;
      pointer-events: auto;
   }
   .float-sidenav__nav:hover {
      background-color: var(--color-bg-light);
      box-shadow: var(--inner-glow), var(--shadow-md);
      transition:
         box-shadow 0.2s,
         background-color 0.2s;
   }
   .float-sidenav__link {
      display: flex;
      align-items: center;
      text-align: right;
      white-space: nowrap;
      padding: var(--space-xxxs) 0;
      font-size: var(--text-sm);
      color: var(--color-contrast-high);
   }
   .float-sidenav__marker {
      display: inline-block;
      flex-shrink: 0;
      height: 6px;
      width: 6px;
      border-radius: 50%;
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.2
      );
      box-shadow: 0 0 0 1px hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.25);
   }
   .float-sidenav__label {
      width: 0;
      opacity: 0;
      padding-right: 0;
      line-height: 1.2;
      transition:
         opacity 0.2s 0s,
         width 0s 0.2s,
         padding 0.2s;
   }
   .float-sidenav__nav:hover .float-sidenav__label {
      opacity: 1;
      width: 100%;
      padding-right: var(--space-xs);
      transition: opacity 0.2s;
   }
   .float-sidenav__link--selected {
      color: var(--color-primary);
   }
   .float-sidenav__link--selected .float-sidenav__marker {
      background-color: var(--color-primary);
   }
   .float-sidenav__link:hover {
      color: var(--color-primary);
   }
   .float-sidenav__close-btn {
      display: none;
   }
}
/* -------------------------------- 

File#: _2_footnotes
Title: Footnotes
Descr: A list of notes placed at the bottom of a text component, and linked to elements within the article for quick access
Usage: codyhouse.co/license

-------------------------------- */
.text-component--has-footnotes {
   counter-reset: footnotes;
}

.footnotes {
   border-top: 1px solid var(--color-contrast-lower);
}

.footnotes-link,
.footnotes__back-link {
   counter-increment: footnotes;
   font-size: 0.75em;
   vertical-align: super;
}

.footnotes-link::before {
   content: "[" counter(footnotes) "]";
}

.footnotes__back-link::before {
   content: "[";
}
.footnotes__back-link::after {
   content: "]";
}

.footnotes-link:target,
.footnotes__item:target {
   outline: 2px solid var(--color-primary);
   outline-offset: 2px;
}

/* -------------------------------- 

File#: _2_form-template-v3
Title: Form Template v3
Descr: Form template example
Usage: codyhouse.co/license

-------------------------------- */
@media (min-width: 64rem) {
   .form-template-v3 .form-label {
      font-size: 1em;
   }
}
/* -------------------------------- 

File#: _2_form-template
Title: Form Template
Descr: Form template example
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_full-screen-search
Title: Full Screen Search
Descr: A full-screen window w/ a search input element
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --fs-search-btn-size: 1.5em;
   --fs-search-border-bottom-width: 2px;
}

.full-screen-search {
   position: relative;
   font-size: var(--text-xl);
   background-image: linear-gradient(
      transparent calc(100% - var(--fs-search-border-bottom-width) * 2),
      var(--color-contrast-low) calc(100% - var(--fs-search-border-bottom-width) * 2),
      var(--color-contrast-low) calc(100% - var(--fs-search-border-bottom-width)),
      transparent var(--fs-search-border-bottom-width)
   );
}

.full-screen-search__input {
   background: transparent;
   width: 100%;
   padding: var(--space-sm) var(--space-xs);
   padding-right: calc(var(--space-xs) + var(--fs-search-btn-size));
   background-image: linear-gradient(
      transparent calc(100% - var(--fs-search-border-bottom-width) * 2),
      var(--color-primary) calc(100% - var(--fs-search-border-bottom-width) * 2),
      var(--color-primary) calc(100% - var(--fs-search-border-bottom-width)),
      transparent var(--fs-search-border-bottom-width)
   );
   background-size: 0% 100%;
   background-repeat: no-repeat;
}
.full-screen-search__input:focus {
   outline: none;
   background-size: 100% 100%;
}

.full-screen-search__input::-webkit-search-decoration,
.full-screen-search__input::-webkit-search-cancel-button,
.full-screen-search__input::-webkit-search-results-button,
.full-screen-search__input::-webkit-search-results-decoration {
   display: none;
}

.full-screen-search__btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   right: var(--space-xs);
   height: var(--fs-search-btn-size);
   width: var(--fs-search-btn-size);
   background-color: var(--color-primary);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
}
.full-screen-search__btn .icon {
   display: block;
   color: var(--color-white);
   font-size: 20px;
   transition: transform 0.2s;
}
.full-screen-search__btn:hover .icon {
   transform: scale(1.1);
}

@media (prefers-reduced-motion: no-preference) {
   .modal--search .full-screen-search__input {
      transition: background-size 0.4s var(--ease-out);
   }
   .modal--search .full-screen-search__btn {
      transform: translateY(-30%) scale(0.6);
      opacity: 0;
      transition:
         opacity 0.4s,
         transform 0.4s var(--ease-out);
   }
   .modal--search.modal--is-visible .full-screen-search__btn {
      transform: translateY(-50%) scale(1);
      opacity: 1;
   }
}
/* -------------------------------- 

File#: _2_full-screen-select
Title: Full Screen Select
Descr: A full-screen window w/ a list of options
Usage: codyhouse.co/license

-------------------------------- */
.full-screen-select__option {
   display: block;
   font-size: var(--text-lg);
   color: var(--color-contrast-high);
   padding: var(--space-xxxs) var(--space-sm);
   border-radius: var(--radius-md);
   transition: 0.2s;
}
.full-screen-select__option:hover:not(.full-screen-select__option--selected) {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}

.full-screen-select__option--selected {
   color: var(--color-white);
   background-color: var(--color-primary);
   box-shadow: var(--shadow-sm);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

/* -------------------------------- 

File#: _2_gallery-v2
Title: Gallery v2
Descr: A gallery of card components with an additional text element
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --gallery-v2-offset: 100px; /* grid items offset value */
}

.gallery-v2 {
   position: relative;
   z-index: 1;
}

.gallery-v2__content {
   padding-bottom: var(--gallery-v2-offset);
}

.gallery-v2__gallery {
   margin-top: calc(-1 * var(--gallery-v2-offset));
   padding-bottom: 1px; /* fix issue with collapsing margins */
}

.gallery-v2__img-wrapper {
   display: block;
   position: relative;
   border-radius: var(--radius-lg);
   overflow: hidden;
}
.gallery-v2__img-wrapper::after {
   /* inner glow */
   content: "";
   position: absolute;
   inset: 0;
   box-shadow: var(--inner-glow);
   border-radius: inherit;
   z-index: 2;
}
@media (hover: hover) {
   .gallery-v2__img-wrapper:hover .gallery-v2__overlay {
      opacity: 1;
      background: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.95
      );
   }
   .gallery-v2__img-wrapper:hover .gallery-v2__icon-bg {
      opacity: 1;
      transform: scale(1);
   }
   .gallery-v2__img-wrapper:hover .gallery-v2__icon {
      opacity: 1;
      transform: translateX(0px) rotate(0deg);
   }
   .gallery-v2__img-wrapper:hover .gallery-v2__icon-group > *:nth-child(2) {
      transform: rotate(0deg);
   }
   .gallery-v2__img-wrapper:hover .gallery-v2__icon-group > *:nth-child(3) {
      transform: rotate(0deg);
   }
}

.gallery-v2__img {
   width: 100%;
}

.gallery-v2__overlay {
   /* overlay layers */
   position: absolute;
   inset: 0;
   z-index: 1;
   padding: var(--space-sm);
   background: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0);
   border-radius: inherit;
   opacity: 0;
   transition-duration: 0.3s;
   transition-property: opacity, background;
}

.gallery-v2__icon-bg {
   --size: 72px;
   position: absolute;
   width: var(--size);
   height: var(--size);
   border-radius: 50%;
   top: calc(50% - var(--size) / 2);
   left: calc(50% - var(--size) / 2);
   background-color: var(--color-contrast-high);
   opacity: 0;
   transform: scale(0.5);
   transition:
      opacity 0.3s,
      transform 0.3s var(--ease-out);
}

.gallery-v2__icon {
   --size: 48px;
   position: absolute;
   top: calc(50% - var(--size) / 2);
   left: calc(50% - var(--size) / 2);
   color: var(--color-bg);
   opacity: 0;
   transform: translateX(-5px) rotate(-10deg);
   transition:
      opacity 0.3s,
      transform 0.3s var(--ease-out);
}

.gallery-v2__icon-group > *:is(:nth-child(2), :nth-child(3)) {
   transform-origin: 43px 24px;
   transition: transform 0.3s var(--ease-out);
}

.gallery-v2__icon-group > *:nth-child(2) {
   transform: rotate(-45deg);
}

.gallery-v2__icon-group > *:nth-child(3) {
   transform: rotate(45deg);
}

@media (min-width: 48rem) {
   .gallery-v2__gallery {
      padding-bottom: calc(0.5 * var(--gallery-v2-offset));
   }
   .gallery-v2__item:nth-child(2n) {
      position: relative;
      top: calc(0.5 * var(--gallery-v2-offset));
   }
}
/* -------------------------------- 

File#: _2_gallery
Title: Gallery
Descr: A gallery of card components
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_grid-switch
Title: Grid Switch
Descr: A grid/list layout switcher
Usage: codyhouse.co/license

-------------------------------- */
.grid-switch .btns {
   --btns-button-radius: var(--radius-md);
   --btns-button-padding-x: var(--space-xs);
   --btns-button-padding-y: var(--space-xs);
}

.grid-switch {
   opacity: 0;
   transition: opacity 0.5s;
}

.grid-switch--is-visible {
   opacity: 1;
}

/* -------------------------------- 

File#: _2_hash-link
Title: Hash Link
Descr: Add a hash anchor to heading elements
Usage: codyhouse.co/license

-------------------------------- */
.hash-link__anchor {
   opacity: 0;
   text-decoration: none;
   color: var(--color-contrast-low);
}

.hash-link:hover .hash-link__anchor,
.hash-link__anchor:focus {
   opacity: 1;
}

.hash-link--visible .hash-link__anchor {
   opacity: 1;
}

.hash-link--left {
   position: relative;
}
.hash-link--left .hash-link__anchor {
   position: absolute;
   left: 0%;
   transform: translateX(-100%);
   padding: 0 var(--space-xxxxs);
}

/* -------------------------------- 

File#: _2_hero-boxed
Title: Boxed Hero
Descr: Hero section variation displaying a content background wrapper
Usage: codyhouse.co/license

-------------------------------- */
.boxed-hero__cursor-follower-wrapper {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   /* the clip-path radius should be equal to the border radius of the content element */
   clip-path: inset(0% 0% 0% 0% round var(--radius-lg));
}

.boxed-hero__cursor-follower {
   opacity: 0;
   pointer-events: none;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 1;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   background: radial-gradient(
      closest-side,
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.4),
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0)
   );
   transition: opacity 0.3s;
}

.boxed-hero__target:hover .boxed-hero__cursor-follower {
   opacity: 1;
}

/* -------------------------------- 

File#: _2_image-comparison-slider
Title: Image Comparison Slider
Descr: A draggable image slider used to compare two versions of the same image
Usage: codyhouse.co/license

-------------------------------- */
.compare-slider {
   position: relative;
}
.compare-slider img {
   display: block;
   width: 100%;
   pointer-events: none;
}

.compare-slider__inner {
   position: relative;
}

.compare-slider__img {
   position: relative;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   overflow: hidden;
}

.compare-slider__caption {
   position: absolute;
   bottom: 0;
   font-size: var(--text-sm);
   padding: var(--space-sm);
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.75);
   color: var(--color-white);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   transition:
      opacity 0.3s,
      visibility 0.3s,
      transform 0.3s;
}

.compare-slider__img--original .compare-slider__caption {
   right: 0;
}

.compare-slider__img--modified .compare-slider__caption {
   left: 0;
}

.compare-slider__handle {
   display: none;
   position: absolute;
   top: 50%;
   left: 50%;
   height: 44px;
   width: 44px;
   border-radius: 50%;
   color: var(--color-contrast-higher);
   background-color: var(--color-bg);
   box-shadow: var(--shadow-sm);
   cursor: grab;
   will-change: left;
   align-items: center;
   justify-content: center;
   transform: translateY(-50%) translateX(-50%) scale(0);
   margin-left: -1px;
}

.compare-slider--is-dragging .compare-slider__handle {
   cursor: grabbing;
   box-shadow:
      var(--shadow-sm),
      0 0 0 4px
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
}

.compare-slider__input-handle {
   display: none;
   position: absolute;
   top: 0;
   left: 0;
   pointer-events: none;
   opacity: 0;
}

.compare-slider__input-handle:focus + .compare-slider__handle {
   color: var(--color-primary);
   box-shadow:
      var(--shadow-sm),
      0 0 0 4px
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
}

.compare-slider__img--modified {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 0%;
   transform: translateZ(0);
   border-right: 2px solid var(--color-bg);
   will-change: width;
}
.compare-slider__img--modified img {
   height: 100%;
   width: auto;
   max-width: none;
}

.compare-slider--in-viewport .compare-slider__img--modified {
   width: 50%;
   animation: compare-slider-bounce-in 0.7s;
}

.compare-slider__caption {
   opacity: 0;
   transform: translateY(20px);
}

.compare-slider--in-viewport .compare-slider__caption {
   opacity: 1;
   transform: translateY(0);
}

.compare-slider--in-viewport .compare-slider__caption--is-hidden {
   opacity: 0;
   visibility: hidden;
}

.compare-slider__img--original .compare-slider__caption--is-hidden {
   transform: translateX(30px);
}

.compare-slider__img--modified .compare-slider__caption--is-hidden {
   transform: translateX(-30px);
}

.compare-slider__handle {
   display: block;
   display: flex;
   opacity: 0;
}

.compare-slider--in-viewport .compare-slider__handle {
   transition:
      transform 0.3s 0.7s,
      opacity 0s 0.7s;
   transform: translateY(-50%) translateX(-50%) scale(1);
   opacity: 1;
}

.compare-slider__input-handle {
   display: block;
}

.compare-slider--reduced-motion .compare-slider__img--modified {
   animation: none;
}

.compare-slider--reduced-motion .compare-slider__handle,
.compare-slider--reduced-motion .compare-slider__caption {
   transition: none;
}

@keyframes compare-slider-bounce-in {
   0% {
      width: 0%;
   }
   60% {
      width: 55%;
   }
   100% {
      width: 50%;
   }
}
/* -------------------------------- 

File#: _2_points-of-interest
Title: Points Of Interest
Descr: Highlight the points of interest of an image and provide additional details for each one.
Usage: codyhouse.co/license

-------------------------------- */
.poi {
   pointer-events: none;
}

.poi__item {
   position: absolute;
   pointer-events: auto;
}

.poi__btn {
   display: flex;
   align-items: center;
   justify-content: center;
   --size: 32px;
   height: var(--size);
   width: var(--size);
   border-radius: 50%;
   background-color: var(--color-accent);
   box-shadow: var(--inner-glow-top), var(--shadow-sm);
   cursor: pointer;
   transition: 0.2s;
}
.poi__btn::after {
   /* pulse ring */
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   border-radius: inherit;
   pointer-events: none;
   box-shadow: inset 0 0 1px 1px var(--color-accent);
   animation: poi-pulse 2s infinite;
}
.poi__btn .icon {
   color: var(--color-white); /* icon color */
   --size: 12px;
   transition: transform 0.3s var(--ease-out-back);
}
.poi__btn:hover .icon {
   transform: scale(1.1);
}

.poi__item--visited button {
   /* style of clicked button */
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.95);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
}
.poi__item--visited button::after {
   display: none;
}

@keyframes poi-pulse {
   0% {
      transform: scale(1);
      opacity: 1;
   }
   50% {
      opacity: 1;
   }
   100% {
      transform: scale(1.6);
      opacity: 0;
   }
}
/* -------------------------------- 

File#: _2_image-zoom
Title: Image Zoom
Descr: A lightbox plugin to zoom on an image on click
Usage: codyhouse.co/license

-------------------------------- */
.image-zoom__preview {
   display: block;
   width: 100%;
}

.image-zoom {
   position: relative;
}

.image-zoom__preview {
   cursor:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Ctitle%3EArtboard 1icon-1%3C/title%3E%3Cg opacity='0.9'%3E%3Ccircle cx='24' cy='24' r='24'/%3E%3C/g%3E%3Cpolygon points='34 23 25 23 25 14 23 14 23 23 14 23 14 25 23 25 23 34 25 34 25 25 34 25 34 23' fill='%23fff'/%3E%3C/svg%3E")
         24 24,
      zoom-in;
   cursor:
      -webkit-image-set(
            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsSAAALEgHS3X78AAACGklEQVRogeWaO27CQBCG/9meCxDqHAEOQHoEfbgBPRI1Unpu4PSg9PgA+AZJTbgAB5horbGDn/jtXfgkROHX/+9jdj1jYmbUhYjGACYA9P8IwDDjlhcAZwAegBMze7WfXdWAiF4AeAMwqPj8K4AjgH1VM6UNiPCVtHaTaAO7skYKGyCiFwAbANOGhcdxAWyZ+beQriIGiEgPk48aQ6UsemitmflY2wAR6VZfdiQ8jsPM27wTcg0QkW71ecsi73Fg5nXWOSrrgCHiNXPRkkqqARk2JogPmIumBAkDMmH7GvN5LEVbhMgckFD51WG0KYuOTrPbEBvvgY3B4iHaIkMpNCArbNuLVBNMRWvUgGwPbGEVMSCOmt7bgJlf9a+FRhkHvRD0wKKFh7TN4tZAIjxZgK9ZSVeYHHmyGGjtSt6kbGWi2pi8HeL3wMhiAyOV8wJuA8PM7bQtEIDvKlqbXqCI6KfKdc/bA0UIeqlq6xbB+h5Qku6zlYuSXKWtnJWk9GzF0wZOFhs4KUmmXg0QU5ar1h5Eobs5SAPxNQcG9hYa8DWHeSEi+rRoa+0x8ztiC9muPz2lCbWGBmQyuxaId2+rOI+VWpQDmbl4A1jHS0+JzZyUdRwDxTtpJafMCo1BBQ7kVWkyt9NywaFVWcWoVmLCv4k+h5OTJx6PUGYt9EYmN5p1tE64EioL7c+e51ODxIW2fuyRepO+PrcB8AcU++0TpkKrvQAAAABJRU5ErkJggg==")
               1x,
            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAABYlAAAWJQFJUiTwAAAEqUlEQVR4nO2dS07cQBCGq0bZkgMA64gcIMM6UfYI9sABEGtAWUcha8QBBvYzYo+SNZMDhGQ9zAHiA1TUQ9nyYzxut9vdbbs+CY2QwI//n+qHu12FRAQhgohjAHgPAG8BYMyXONa81Hnq8wUAFkQ0r/gfLwRjAAu+zyLrCl2XOf88hWKIVwNY9CMA+AwAW45PHwHAIwBMfZrh3ABEVE3KKQu/7fTk5SyVEQAwIaJ/Lk/szABE3AGAcwA4dHJCc2YAcENELy5O1roBHRI+jxMjWjUAEc+5uXHdvtsi4mbppq0TtGIAd67fA2rjm6L6iIs2OmvrBiDiFwA4sXrQcLgjoq82r8aaAYioJk3XALBn5YDh8gwAl0T028YVjmwcBBHVOP5+AOID3+M933NjGhuAiKqTve1wR2uCutdbRDxqeqBGTRAiXndweGmbGRFdmh7TOAJE/IRD1sIIIwNE/ALGJtQ2QMQvxciEWgZwhyvil3NYt2PW7oR52HVr9XL7yxkRPWrpqmMAT7LuBzbUbIJ6hnSsM1nTNeBhIJMsmzwT0UHV8Sr7AH62I+LXZ4+128hGA/ipZl8frLnghDUsZWMThIg/e/RI2RdLIvpYdu7SCODFFBG/Odus5VrWRgAvIz7IqMcaalR0sG55sywCzkV8q2yxpgUKEcDf/h9dvtuA+ZSPgnURUNpeCY0paJuJAN409asLOhPRu/TviPjX39XU4kN681c+Ak7Dve7ekNE4b0DjJTahkozGiQE8Y5Nxf/tsp2fH6QiQb787Eq3TBljZZiFokWi9MoBDQiZe7tiKm6E4AvYHcNOhsdI8NqCtV4KEcjIRIAa459WAqgUDoT2U9iN+FVTww+6I38MV/LAzkvbfK2Mr7wcI5kgE+EUiwDdigGcQAP64vIT8SlZouF5ZkwjwjBjgGTHAM877AFt0eFdEBokAz4gBnhmlEtwJ7plLBHhGIsAvqwhwkhtNWMuLMmAh2nhjMQo1o+wQUNrHnbCY4J6V5mKAPzIGPA1QAN+sNF8ZwP1ANGQ1HBPFfW96IqaV3UOwQqJ12oCpaOuMROvEAA6JZa9vOwyW6aF//lmQREH7ZDTOGzDp0Y2GSkbjN+lf1PuriDjrQl64jq6AzfIFIiRVgVuqUxXwH8z6ef9emdXJlnIjEzOrRKxpgbUGsFPSIdtjUlYKRVKWtY9ZyjLmonO3Gx4bNdxoAM/Y7vqtT6vcVS14SeLW9rCTuJW5lFFRLSLWrBItAzgHsnGViAGiXeRHe2MWZwO/GrqyGlzpZk6HuntDiWgqs+SNzFgjbWpvTeSCNWJCEaNiPkZ7Q8WEAsaVlIw354oJCY3KWDUuZcg1U741Okh3uarb5udpvD2dL+BsYPOEiOvENF7CtfJ+AA+7jrnQZd955vowVrbxWHtBQ008eOrd52dH6tnOga1KqiAFnbXpTkHnzMGlpHklUtS/nO4X9c+cqDtGOBE+xpkByQlfaxSccv7kUPqIJe9Ym+T37bSNcwPScGd9xLmUXfcTEe9Snvp8TcurAWnYjH1OodZWGrU5/zyF8m5cMAbkYUN2VWrHlCG6xsTiqk/Vli+CfBkRAP4DaXHfN1Q11JEAAAAASUVORK5CYII=")
               2x
         )
         24 24,
      zoom-in;
}

.image-zoom__lightbox {
   /* modal element for the zoomed image - created in js */
   visibility: hidden;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   z-index: var(--z-index-overlay, 15);
   overflow-x: hidden;
   cursor:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Ctitle%3EArtboard 1icon-2%3C/title%3E%3Cg opacity='0.9'%3E%3Ccircle cx='24' cy='24' r='24'/%3E%3C/g%3E%3Crect x='23' y='14' width='2' height='20' transform='translate(48) rotate(90)' fill='%23fff'/%3E%3C/svg%3E")
         24 24,
      zoom-out;
   cursor:
      -webkit-image-set(
            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsSAAALEgHS3X78AAACEklEQVRoge2ay23CQBCG/7FypYGEcyqIoAByR1AAHXBH4oyUOx24AFDuuACsNJCcCQ1QwERrjQl+4ifeIfkuHPDj/727s+MZEzOjLkQ0ADAEYH77AB4zLnkEcADgA9gzs1/73lUNiOgpgFcAvYr3PwHYAdhUNVPagAify9NuEmNgXdZIYQNE9ARgCWDUsPA4HoAVM38X0lXEABGZafJWY6qUxUytBTPvahsgIvPUZzcSHsdl5lXeAbkGiMg89UnLIq+xZeZF1jFO1h+WiDdMREsqqQZk2tggPmQimhIkDMiC7WrO5zETbREia0BC5fsNo01ZTHQaX4bY+AgsLRYP0RaZSmcDssO2vUk1wUi0Rg1IeqCFecSAOGo6t2mTQTgK4QhMFYkPCTSHBhLhSQGBZkeGwubIk0XPaHfkTUorQ0fZ4o0TjEDfLk2l6BOAT0WCE2Sm01p4qKqTmZ+b9EhEX1XOUz8C/2ugaxwp92nl6EitUisHR0p6WvGNgb1iA/vgpZ6IPhRmpCdmfgmj0NUapIUEmkMDG4UGAs2BAanJa1rMfthHuNzI1t3pKc1Z69mAOPIUiPcuuzj3VVqUPzJr8RawiLeeEsmctHVcC8W7aS2nzA6NRQ0O5HVpMtNpOWHbqqxiVGsx4ddEl9PJzROPe2izFnojkwuNb7RPeBIqC+Vnf+dTg8SJWj/2SL1IV5/bAPgBdRHiSVcA3vQAAAAASUVORK5CYII=")
               1x,
            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAABYlAAAWJQFJUiTwAAAEmElEQVR4nO2dvU7cQBDHZ05pyQMAdUL65KgTpUfQAw+AqAGljkJqxAMc9HeiR0nNJX1IargHyD3AROvMWbbvfF6v98v2/KQTBeC1//+b/bDXM0hEECOIOASANwDwEgCGfIpDzVOdZn4+A8ATEU0r/icI0RjAgu+yyLpC12XKn4dYDAlqAIt+AAAfAWDDc/NzALgHgHFIM7wbgIiqSzlm4Te9Nl7OTBkBACMi+uuzYW8GIOIWAJwCwL6XBs2ZAMAVET37aMy5AS0SvogXI5wagIin3N347t9tMedu6cpVA04M4MH1a0R9fFPUGHHmYrC2bgAifgKAI6sHjYcbIvps82ysGYCIatF0CQA7Vg4YL48AcE5Ev2yc4cDGQRBRzeNveyA+8DXe8jU3prEBiKgG2esWD7QmqGu9RsSDpgdq1AUh4mULp5e2mRDRuekxjSNAxE/ZZy2MMDJAxF/C2ITaBoj4pRiZUMsAHnBF/HL26w7M2oMwT7uurZ5udzkhonstXXUM4EXWbc+mmk1Q95AOdRZrugbc9WSRZZNHItqrOl7lGMD3dkT8+uywdmtZawDf1ezqjTUfHLGGpaztghDxe4duKYdiRkTvy9oujQB+mCLiN2eTtVzJygjgx4h3MuuxhpoV7a16vFkWAacivlU2WNMlliKAv/3f2ny1EfOhGAWrIqC0vxIas6RtLgJ409QP0dkp77Kbv4oRcNyd64yWnMZFAxo/YhMqyWmcGsArNpn3u2czuzrORoB8+/2Rap01wMo2C0GLVOvEAA4JWXj5Y2PRDS0iYLcHFx0bieYLA1y9EiSUk2ieLMQQ8bcI5R8iej2oemAguENpP+BXQYUwbA/4PVwhDFsDGYCDMrTyfoBgDgKAzIACIhEQGDEgMC98N09Er2ITIQsi/vHZnkRAYMSAwIgBgZFpaGAkAgIjBgRmkElwJ/hnKhEQGImAsCQR4CU3mrCSZ2XAk2gTjCd5KB+Q5KE8Ny/jgH8SzcWAcOQMeOihAKFJNE/fkEHEn7I/1BtzInoLhVsRWtk9BCukWmcNGIu23ki1Tg3grLCzTl92HMyyGXiL94IkCtyT01heU/VP+Wuq/ItJ9zUIxqRYIEJSFfilOlUB/4FEgX0mdbKlXHGKFcEOc9Z0iZUGsFMjEd8ao7JSKJKyzD1mKcuYs9Zdbnys1XCtAbxiu+m2Pk65qao7I4lb3WEncStzLrOiWsxZs0q0DOAcyMZVInqIdpEf7Y1ZnA38ou/KanChmzkd6u4NJaKxrJLXMmGNtKm9NZEL1ogJyxgV8zHaGyomLGFcScl4c66YkNKojFXjUoZcM+VLo4O0l4u6fX6RxtvT+QROerZOmHOdmMaPcK28H8DTrkMudNl1Hrk+jJVtPNZe0FALD156d/nekbq3s2erkipIQWdt2lPQOXdwKWleiRT1L6f9Rf1zDbXHCC/CL/BmQNrg/81fx5w/OZYxYsY71kbFfTuu8W5AFh6sDziXsu9xYs67lMcuBlddghqQhc3Y5SSCrhIJTvnzEFL0LNEYUIQN2VapHTOG6BqzEFf9VH35UyyC5wCAfxBt4NqKekAOAAAAAElFTkSuQmCC")
               2x
         )
         24 24,
      zoom-out;
}
.image-zoom__lightbox img {
   display: block;
   position: relative;
   z-index: 1;
   width: 100%;
   transform-origin: top left;
   pointer-events: none;
}
.image-zoom__lightbox::before {
   /* lightbox background */
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: var(--color-bg);
   opacity: 0;
}

.image-zoom__lightbox--is-visible {
   visibility: visible;
}
.image-zoom__lightbox--is-visible img {
   transition: transform 0.3s;
}
.image-zoom__lightbox--is-visible::before {
   transition: opacity 0.3s;
}

.image-zoom__lightbox--animate-bg::before {
   /* animate lightbox background when lightbox is visible */
   opacity: 1;
}

.image-zoom__lightbox--no-transition {
   /* remove lightbox transitions */
}
.image-zoom__lightbox--no-transition img,
.image-zoom__lightbox--no-transition::before {
   transition: none;
}

/* keyboard accessibility - use keyboard to toggle lightbox */
.image-zoom__input {
   /* never visible - created in js */
   position: absolute;
   top: 0;
   left: 0;
   pointer-events: none;
   opacity: 0;
}

.image-zoom__input:focus ~ .image-zoom__preview {
   box-shadow:
      0 0 0 2px var(--color-bg),
      0 0 0 5px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
}

/* -------------------------------- 

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_markdown-editor
Title: Markdown Editor
Descr: Editor to create markdown content
Usage: codyhouse.co/license

-------------------------------- */
.md-editor {
   --md-editor-btn-size: 40px;
   --md-editor-btn-icon-size: 16px;
}

.md-editor__btn {
   position: relative;
   display: flex;
   width: var(--md-editor-btn-size);
   height: var(--md-editor-btn-size);
   cursor: pointer;
   transition: transform 0.2s;
}
.md-editor__btn::before {
   content: "";
   position: absolute;
   z-index: 1;
   inset: 0;
   background: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   border-radius: var(--radius-sm);
   transform: scale(0.85);
   opacity: 0;
   transition: 0.2s;
}
.md-editor__btn:hover::before {
   transform: scale(1);
   opacity: 1;
}
.md-editor__btn:active {
   transform: translateY(2px);
}

.md-editor__btn-separator {
   height: calc(var(--md-editor-btn-size) / 2);
   width: 1px;
   margin: 0 var(--space-xxs);
   position: relative;
   top: calc(var(--md-editor-btn-size) / 4);
   background-color: var(--color-contrast-lower);
}

.md-editor__icon {
   position: relative;
   z-index: 2;
   display: block;
   margin: auto;
   --size: var(--md-editor-btn-icon-size);
}

/* -------------------------------- 

File#: _2_menu-bar
Title: Menu Bar
Descr: Application menu with a list of common actions that users can perform
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --menu-bar-button-size: 2.5em;
   --menu-bar-icon-size: 1em;
   --menu-bar-horizontal-gap: var(--space-xxs);
   --menu-bar-vertical-gap: 4px;
   --menu-bar-label-size: var(--text-xs);
}

.menu-bar {
   list-style: none;
   display: inline-flex;
   align-items: center;
}

.menu-bar__item {
   position: relative;
   display: inline-block;
   display: flex;
   align-items: center;
   justify-content: center;
   height: var(--menu-bar-button-size);
   width: var(--menu-bar-button-size);
   border-radius: 50%;
   cursor: pointer;
   transition: background-color 0.2s;
}
.menu-bar__item:not(:last-child) {
   margin-right: var(--menu-bar-horizontal-gap);
}
.menu-bar__item:hover,
.menu-bar__item.menu-control--active {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.menu-bar__item:hover > .menu-bar__icon,
.menu-bar__item.menu-control--active > .menu-bar__icon {
   color: var(--color-contrast-higher);
}
.menu-bar__item:hover > .menu-bar__label,
.menu-bar__item.menu-control--active > .menu-bar__label {
   clip: auto;
   clip-path: none;
   height: auto;
   width: auto;
}
.menu-bar__item:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.1);
}
.menu-bar__item:active {
   background-color: var(--color-contrast-low);
}
.menu-bar__item:focus:active {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.menu-bar__item--trigger {
   display: none;
}

.menu-bar__icon {
   display: block;
   color: var(--color-contrast-high);
   font-size: var(--menu-bar-icon-size);
   transition: color 0.2s;
}

.menu-bar__label {
   position: absolute;
   z-index: var(--z-index-popover, 5);
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
   width: 1px;
   height: 1px;
   overflow: hidden;
   white-space: nowrap;
   top: 100%;
   left: 50%;
   transform: translateX(-50%) translateY(var(--menu-bar-vertical-gap));
   padding: var(--space-xxs) var(--space-xs);
   color: var(--color-bg);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.95
   );
   border-radius: var(--radius-md);
   font-size: var(--menu-bar-label-size);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   pointer-events: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}

.menu-bar--collapsed .menu-bar__item--hide {
   display: none;
}
.menu-bar--collapsed .menu-bar__item--trigger {
   display: inline-block;
   display: flex;
}

.menu-bar {
   opacity: 0;
}
.menu-bar::before {
   display: none;
   content: "collapsed";
}

.menu-bar--loaded {
   opacity: 1;
}

@media (min-width: 32rem) {
   .menu-bar--expanded\@xs::before {
      content: "expanded";
   }
}

@media (min-width: 48rem) {
   .menu-bar--expanded\@sm::before {
      content: "expanded";
   }
}

@media (min-width: 64rem) {
   .menu-bar--expanded\@md::before {
      content: "expanded";
   }
}

@media (min-width: 80rem) {
   .menu-bar--expanded\@lg::before {
      content: "expanded";
   }
}

@media (min-width: 90rem) {
   .menu-bar--expanded\@xl::before {
      content: "expanded";
   }
}

/* -------------------------------- 

File#: _2_modal-video
Title: Modal Video
Descr: A modal window used to display a responsive video
Usage: codyhouse.co/license

-------------------------------- */
/* --------------------------------

File#: _2_modal-window-full-screen
Title: Full Screen Modal Window
Descr: A full screen modal window
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_morphing-image-modal
Title: Morphing Image Modal
Descr: An image morphing into a modal window, showing additional details
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --morph-img-modal-transition-duration: 0.35s;
}

.morph-img-modal.modal {
   --modal-transition-duration: var(--morph-img-modal-transition-duration);
}
.morph-img-modal::before {
   display: none;
   content: "mobile";
}

.morph-img-modal__content {
   height: 100%;
   width: 100%;
   overflow: auto;
}

.morph-img-modal__img {
   display: block;
   height: 100%;
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.morph-img-modal__info {
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   overscroll-behavior: contain;
   transition: opacity 0.2s;
}

.morph-img-bg,
.morph-img-clone {
   position: fixed;
   z-index: var(--z-index-overlay, 15);
   transform-origin: left top;
   backface-visibility: hidden;
   will-change: transform;
}

.morph-img-clone {
   overflow: hidden;
}
.morph-img-clone svg,
.morph-img-clone rect,
.morph-img-clone image {
   height: 100%;
   width: 100%;
}

.morph-img-close-btn {
   position: fixed;
   top: var(--space-sm);
   right: var(--space-sm);
   z-index: var(--z-index-overlay, 15);
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
   flex-shrink: 0;
   display: flex;
   opacity: 0;
   visibility: hidden;
   transition:
      background 0.2s,
      opacity var(--morph-img-modal-transition-duration),
      visibility 0s var(--morph-img-modal-transition-duration);
}
.morph-img-close-btn:hover {
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 1);
}
.morph-img-close-btn .icon {
   color: var(--color-white);
   display: block;
   margin: auto;
}

.morph-img-close-btn--is-visible {
   opacity: 1;
   visibility: visible;
   transition:
      background 0.2s,
      opacity var(--morph-img-modal-transition-duration);
}

@media (min-width: 64rem) {
   .morph-img-modal {
      padding: 0 var(--space-md);
   }
   .morph-img-modal::before {
      content: "dekstop";
   }
   .morph-img-modal__content {
      height: calc(100% - 96px - var(--space-md) * 2);
      max-height: 680px;
      overflow: hidden;
      display: flex;
   }
   .morph-img-modal__content > * {
      flex-basis: 50%;
      height: 100%;
      max-height: 100%;
      min-width: 0;
   }
   .morph-img-bg {
      background-image: linear-gradient(to right, transparent 0 30%, var(--color-bg) 30% 100%);
   }
}
/* -------------------------------- 

File#: _2_morphing-navigation
Title: Morphing Navigation
Descr: Header Template with a morphing dropdown
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --morph-nav-height: 50px;
}
@media (min-width: 64rem) {
   :root {
      --morph-nav-height: 70px;
   }
}

.morph-nav {
   z-index: var(--z-index-header);
   height: var(--morph-nav-height);
}
.morph-nav > * {
   height: 100%;
}

.morph-nav__logo {
   display: block;
   width: 104px;
   height: 30px;
}

.morph-nav__link {
   display: flex;
   align-items: center;
}

.morph-nav__link-figure {
   flex-shrink: 0;
   height: 48px;
   width: 48px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: var(--space-sm);
}

.morph-nav__link-title {
   color: var(--color-contrast-higher);
   font-weight: 500;
}
.morph-nav__link-title .icon {
   opacity: 0;
   transform: translateX(-0.5em);
   transition:
      opacity 0.2s,
      transform 0.2s;
}
.morph-nav__link:hover .morph-nav__link-title .icon {
   opacity: 1;
   transform: translateX(0);
}

.morph-nav__link-description {
   color: var(--color-contrast-low);
}

.morph-nav__social-link {
   display: flex;
   align-items: center;
   color: var(--color-contrast-higher);
   font-weight: 500;
   transition: color 0.2s;
}
.morph-nav__social-link .icon {
   margin-right: var(--space-xs);
}
.morph-nav__social-link:hover {
   color: var(--color-primary);
}

/* #region (mobile only) */
.morph-nav__sm-nav {
   position: relative;
   z-index: 2;
   height: 100%;
}

.morph-nav__sm-menu-toggle {
   color: var(--color-contrast-higher);
   --anim-menu-btn-size: 40px;
   /* ������ icon */
   --anim-menu-btn-icon-size: 28px;
   --anim-menu-btn-icon-stroke: 2px;
}

.morph-nav__sm-dropdown {
   position: absolute;
   z-index: 1;
   padding-top: var(--morph-nav-height);
   top: 0;
   left: 0;
   width: 100%;
   background-color: var(--color-bg-light);
   box-shadow: var(--shadow-sm);
   transform: scale(0.95);
   transform-origin: top center;
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0s 0.3s,
      opacity 0.3s,
      transform 0.3s var(--ease-out);
}
.morph-nav__sm-dropdown a {
   color: inherit;
   text-decoration: none;
}

.morph-nav__sm-dropdown--is-visible {
   transform: scale(1);
   visibility: visible;
   opacity: 1;
   transition:
      visibility 0s,
      opacity 0.3s,
      transform 0.3s var(--ease-out);
}

.morph-nav__sm-dropdown-innner {
   max-height: calc(100vh - var(--morph-nav-height));
   overflow: auto;
}

.morph-nav__sm-label {
   font-size: var(--text-xs);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--color-contrast-low);
   margin-bottom: var(--space-md);
}

/* #endregion */
/* #region (desktop only) */
.morph-nav__lg-nav-list {
   display: flex;
   height: 100%;
}

.morph-nav__lg-nav-item {
   height: 100%;
   transition: opacity 0.3s;
}

.morph-nav__lg-nav-list:hover .morph-nav__lg-nav-item:not(:hover) {
   opacity: 0.5;
}

.morph-nav__lg-main-nav-link {
   display: block;
   height: 100%;
   line-height: var(--morph-nav-height);
   color: var(--color-contrast-higher);
   font-size: var(--text-sm);
   font-weight: 500;
   text-decoration: none;
   padding: 0 var(--space-md);
}

.morph-nav__lg-subnav {
   position: absolute;
   top: 100%;
   left: 0;
   transform: translateY(20px);
   pointer-events: none;
   transition: transform 0.3s var(--ease-out);
}

.morph-nav__lg-subnav--is-visible {
   transform: translateY(0px);
   pointer-events: auto;
}

.morph-nav__lg-dropdown-wrapper {
   position: absolute;
   top: 0;
   left: 0;
   width: 1px;
   height: 1px;
   visibility: hidden;
   will-change: height, width, transform, visibility;
   transition: visibility 0.3s;
}

.morph-nav__lg-subnav--is-visible .morph-nav__lg-dropdown-wrapper {
   visibility: visible;
}

.morph-nav__lg-dropdown-list {
   position: relative;
   z-index: 2;
   height: 100%;
   width: 100%;
   overflow: hidden;
}

.morph-nav__lg-dropdown-item {
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
   visibility: hidden;
   opacity: 0;
   transition:
      opacity 0.2s var(--ease-out),
      visibility 0s 0.3s;
}

.morph-nav__lg-dropdown-item--is-visible {
   opacity: 1;
   visibility: visible;
   z-index: 2;
   transition: opacity 0.3s var(--ease-out);
}

.morph-nav__lg-dropdown-bg {
   display: block;
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   box-shadow: var(--inner-glow), var(--shadow-md);
   will-change: visibility, opacity;
   /* hide */
   pointer-events: none;
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0.3s,
      opacity 0.3s var(--ease-out);
   /* triangle marker */
}
.morph-nav__lg-dropdown-bg::before {
   --size: 14px;
   content: "";
   display: block;
   height: var(--size);
   width: var(--size);
   background-color: inherit;
   border: inherit;
   position: absolute;
   z-index: 1;
   top: calc(-1 * var(--size) / 2);
   left: calc(50% - var(--size) / 2);
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
   transform: translateY(1px) rotate(-45deg);
   border-radius: 0 4px 0 0;
   box-shadow: var(--inner-glow);
}

.morph-nav__lg-dropdown-bg--is-visible {
   opacity: 1;
   visibility: visible;
}

.morph-nav__lg-dropdown a {
   text-decoration: none;
}

.morph-nav__lg-dropdown--1 {
   width: 580px;
}

.morph-nav__lg-dropdown--2 {
   width: 280px;
}

.morph-nav__lg-dropdown--3 {
   width: 460px;
}

/* #endregion */
/* -------------------------------- 

File#: _2_multiple-custom-select-v2
Title: Multiple Custom Select v2
Descr: A list of filterable checkbox inputs
Usage: codyhouse.co/license

-------------------------------- */
.multi-select-v2__label {
   display: flex;
   align-items: center;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.multi-select-v2__label:hover {
   transition: background-color 0.2s;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.multi-select-v2__label.multi-select-v2__label--checked {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}
.multi-select-v2__label.multi-select-v2__label--checked:hover {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.multi-select-v2__checkbox {
   --custom-checkbox-size: 18px;
   --custom-checkbox-marker-size: 16px;
   width: var(--custom-checkbox-size);
   height: var(--custom-checkbox-size);
}

/* -------------------------------- 

File#: _2_multiple-custom-select
Title: Multiple Custom Select
Descr: Custom Select Input where multiple options can be selected
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --multi-select-dropdown-gap: 4px;
}

.multi-select {
   position: relative;
}

.multi-select__button {
   width: 100%;
}

.multi-select__label {
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.multi-select__dropdown {
   position: absolute;
   left: 0;
   top: 100%;
   min-width: 200px;
   max-height: 1px;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   padding: var(--space-xxxs) 0;
   border-radius: var(--radius-md);
   z-index: var(--z-index-popover, 5);
   margin-top: var(--multi-select-dropdown-gap);
   margin-bottom: var(--multi-select-dropdown-gap);
   overflow: auto;
   --space-unit: 1rem;
   --text-unit: 1rem;
   font-size: var(--text-unit);
   visibility: hidden;
   opacity: 0;
   transition:
      visibility 0s 0.2s,
      opacity 0.2s;
}

.multi-select__dropdown--right {
   right: 0;
   left: auto;
}

.multi-select__dropdown--up {
   bottom: 100%;
   top: auto;
}

.multi-select__button[aria-expanded="true"] + .multi-select__dropdown {
   visibility: visible;
   opacity: 1;
   transition:
      visibility 0s,
      opacity 0.2s;
}

.multi-select__list:not(:first-of-type) {
   padding-top: var(--space-xxxs);
}

.multi-select__list:not(:last-of-type) {
   border-bottom: 1px solid var(--color-contrast-lower);
   padding-bottom: var(--space-xxxs);
}

.multi-select__item {
   position: relative;
   display: block;
   padding: var(--space-xxxs) var(--space-sm);
   color: var(--color-contrast-high);
   width: 100%;
   text-align: left;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.multi-select__item--optgroup {
   font-size: var(--text-sm);
   color: var(--color-contrast-medium);
}

.checkbox + .multi-select__item--option {
   --checkbox-radio-gap: var(--space-xxs);
   display: block;
   cursor: pointer;
   transition: 0.2s;
   padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap) + var(--space-sm));
}
.checkbox + .multi-select__item--option:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.checkbox + .multi-select__item--option span {
   text-overflow: ellipsis;
   white-space: nowrap;
   overflow: hidden;
}

.multi-select__term + .multi-select__details::before {
   content: ": ";
}

/* -------------------------------- 

File#: _2_notifications-popover
Title: Notifications Popover
Descr: A popover containing a list of notification items
Usage: codyhouse.co/license

-------------------------------- */
.notif-popover.popover {
   --popover-width: 280px;
}
.notif-popover .notif {
   --notif-figure-size: 40px;
}

@media (min-width: 64rem) {
   .notif-popover.popover {
      --popover-width: 360px;
   }
}
.notif-popover-control {
   height: 2.6em;
   width: 2.6em;
   border-radius: 50%;
   display: inline-flex;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   transition: 0.3s;
}
.notif-popover-control .icon {
   margin: auto;
   font-size: 20px;
   display: block;
}
.notif-popover-control:active {
   transform: translateY(2px);
}
.notif-popover-control:hover {
   cursor: pointer;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.notif-popover-control.popover-control--active {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
   color: var(--color-primary);
}

/* -------------------------------- 

File#: _2_off-canvas-navigation
Title: Off-Canvas Navigation
Descr: An off-canvas section containing the main navigation
Usage: codyhouse.co/license

-------------------------------- */
.offnav-control {
   --anim-menu-btn-size: 48px;
   --anim-menu-btn-icon-size: 24px;
   --anim-menu-btn-icon-stroke: 2px;
   position: fixed;
   top: var(--space-sm);
   left: var(--space-sm);
   z-index: var(--z-index-fixed-element, 10);
   border-radius: 50%;
   transition: transform 0.3s var(--ease-in-out);
   color: var(--color-contrast-high);
}
.offnav-control.anim-menu-btn--state-b {
   transform: rotate(180deg);
}

.offnav-control__bg {
   display: block;
   fill: var(--color-bg-light);
   stroke-width: 1.5;
   stroke: var(--color-contrast-lower);
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.offnav-control--ready-to-animate circle {
   transition: stroke-dashoffset 0.3s 0s;
}

.anim-menu-btn--state-b.offnav-control circle {
   stroke-dashoffset: 0;
   transition-delay: 0.3s;
}

.offnav__link {
   color: var(--color-contrast-higher);
   text-decoration: none;
   background-size: 0% 100%;
   background-repeat: no-repeat;
   background-image: linear-gradient(
      transparent 60%,
      hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2) 60%
   );
   will-change: background-size;
   transition:
      background-size 0.3s var(--ease-in-out),
      color 0.3s;
}
.offnav__link:hover,
.offnav__link[aria-current="page"],
.offnav__link.offnav__link--current {
   color: var(--color-primary);
}
.offnav__link:hover {
   background-size: 100% 100%;
}

.offnav__a11y-close-btn {
   position: absolute;
   top: 0;
   right: 0;
   z-index: var(--z-index-fixed-element, 10);
   background-color: var(--color-contrast-lower);
   padding: var(--space-sm) var(--space-md);
   box-shadow: var(--shadow-lg);
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}
.offnav__a11y-close-btn:focus {
   clip: auto;
   clip-path: none;
   outline: 3px solid var(--color-primary);
}

@media (min-width: 64rem) {
   .offnav__label::before {
      content: "";
      display: inline-block;
      width: 2em;
      height: 1px;
      background-color: currentColor;
      vertical-align: middle;
      margin-right: 0.5em;
   }
   .offnav__subnav {
      border-top: 1px solid var(--color-contrast-lower);
   }
}
/* -------------------------------- 

File#: _2_page-transition-v1
Title: Page Transition v1
Descr: Page transition effect
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --page-trans-v1-anim-duration: 0.4s;
   --page-trans-v1-loader-scale: 1;
}

.page-trans-v1 {
   position: fixed;
   overflow: hidden;
   z-index: var(--z-index-fixed-element, 10);
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0;
   visibility: hidden;
   transition:
      opacity 0s var(--page-trans-v1-anim-duration),
      visibility 0s var(--page-trans-v1-anim-duration);
}

.page-trans-v1--is-visible {
   opacity: 1;
   visibility: visible;
   transition: none;
}
.page-trans-v1--is-visible .page-trans-v1__overlay {
   opacity: 1;
}
.page-trans-v1--is-visible .page-trans-v1__block--left,
.page-trans-v1--is-visible .page-trans-v1__block--right {
   transform: translateX(0);
}
.page-trans-v1--is-visible .page-trans-v1__loader {
   opacity: 1;
}

.page-trans-v1__overlay,
.page-trans-v1__block,
.page-trans-v1__loader {
   position: absolute;
   top: 0;
   height: 100%;
}

.page-trans-v1__overlay {
   left: 0;
   width: 100%;
   opacity: 0;
   transition: opacity var(--page-trans-v1-anim-duration);
}

.page-trans-v1__block {
   width: 50%;
   transition: transform var(--page-trans-v1-anim-duration) var(--ease-in-out);
}

.page-trans-v1__block--left {
   left: 0;
   transform: translateX(-100%);
}
.page-trans-v1__block--left .page-trans-v1__loader {
   right: -1px;
}

.page-trans-v1__block--right {
   right: 0;
   transform: translateX(100%);
}
.page-trans-v1__block--right .page-trans-v1__loader {
   left: -1px;
}

.page-trans-v1__loader {
   opacity: 0;
   width: 2px;
   transform: scaleY(var(--page-trans-v1-loader-scale));
   transition: opacity var(--page-trans-v1-anim-duration);
}

/* -------------------------------- 

File#: _2_parallax-button
Title: Parallax Button
Descr: A button displaying a parallax image on hover
Usage: codyhouse.co/license

-------------------------------- */
.parallax-btn {
   --parallax-btn-cursor-fx-delta: 50px; /* max translate value of the background image effect */
   position: relative;
   display: inline-block;
   text-decoration: none;
   border-radius: 50em;
   padding: var(--space-xxs) var(--space-sm);
   cursor: pointer;
   perspective: 4000px;
}
.parallax-btn:focus {
   outline: none;
}

.parallax-btn__content {
   position: relative;
   display: inline-flex;
   z-index: 2;
   color: var(--color-white);
   font-weight: 500;
   backface-visibility: hidden;
}

.parallax-btn__bg {
   position: absolute;
   z-index: 1;
   inset: 0;
   border-radius: inherit;
   box-shadow: 0 0 8px
      hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.2);
   transform: translateZ(-5px);
   transform-style: preserve-3d;
   transition: transform 0.5s var(--ease-out-back);
   will-change: transform;
}
.parallax-btn:hover .parallax-btn__bg,
.parallax-btn:focus .parallax-btn__bg {
   outline: none;
   transform: scale(1.1) rotateX(-180deg) translateZ(5px);
   box-shadow:
      0 0 0 1px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.2),
      0 0 16px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.2);
}

.parallax-btn__bg-front,
.parallax-btn__bg-back {
   position: absolute;
   inset: 0;
   backface-visibility: hidden;
   border-radius: inherit;
}

.parallax-btn__bg-front {
   background-color: var(--color-primary);
}

.parallax-btn__bg-back {
   background-color: var(--color-black);
   transform: rotateX(180deg);
   overflow: hidden;
}

.parallax-btn__bg-img {
   position: absolute;
   display: block;
   height: calc(100% + 2 * var(--parallax-btn-cursor-fx-delta));
   max-width: none;
   width: calc(100% + 2 * var(--parallax-btn-cursor-fx-delta));
   inset: calc(-1 * var(--parallax-btn-cursor-fx-delta));
   -o-object-fit: cover;
   object-fit: cover;
   transition: transform 0.4s var(--ease-out);
}

/* -------------------------------- 

File#: _2_password-strength
Title: Password Strength Indicator
Descr: Password requirements and strength indicator
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --password-strength-meter-height: 8px;
   --password-strength-meter-radius: 50em;
   --password-strength-icon-size: 16px;
   --password-strength-icon-margin-right: 4px;
   --password-strength-icon-stroke-width: 2px;
}

.password-strength__req {
   line-height: 1.2;
   margin-bottom: var(--space-xxxxs);
   display: flex;
   align-items: center;
}
.password-strength__req .icon {
   font-size: var(--password-strength-icon-size);
   margin-right: var(--password-strength-icon-margin-right);
}

.password-strength__icon-group {
   stroke-width: var(--password-strength-icon-stroke-width);
}
.password-strength__icon-group * {
   transition:
      transform 0.3s var(--ease-out-back),
      stroke-dashoffset 0.3s var(--ease-out-back);
   transform-origin: 8px 8px;
   stroke-dasharray: 16;
}
.password-strength__icon-group *:first-child {
   stroke-dashoffset: 24;
}
.password-strength__icon-group *:last-child {
   stroke-dashoffset: 10;
}

.password-strength__req--met {
   color: var(--color-success-darker);
   transition: color 0.3s;
}
.password-strength__req--met .password-strength__icon-group *:first-child {
   stroke-dashoffset: 23;
   transform: translateX(-2px) translateY(4px) rotate(45deg);
}
.password-strength__req--met .password-strength__icon-group *:last-child {
   stroke-dashoffset: 5;
   transform: translateX(-2px) translateY(4px) rotate(-45deg);
}

.password-strength__req--no-met {
   color: var(--color-error);
}
.password-strength__req--no-met .password-strength__icon-group *:first-child {
   stroke-dashoffset: 32;
   transform: translateX(5px) translateY(5px) rotate(45deg);
}
.password-strength__req--no-met .password-strength__icon-group *:last-child {
   stroke-dashoffset: 2;
   transform: translateX(-5px) translateY(5px) rotate(-45deg);
}

.password-strength__meter {
   height: var(--password-strength-meter-height);
   border-radius: var(--password-strength-meter-radius);
   overflow: hidden;
}
.password-strength__meter * {
   will-change: width;
   transition:
      width 0.3s var(--ease-in-out),
      background-color 0.3s;
}

.password-strength__meter--fill-1 * {
   background-color: var(--color-error);
}

.password-strength__meter--fill-2 * {
   background-color: var(--color-warning);
}

.password-strength__meter--fill-3 * {
   background-color: var(--color-success);
}

.password-strength__meter--fill-4 * {
   background-color: var(--color-success);
}

/* -------------------------------- 

File#: _2_percentage-bar-card
Title: Percentage Bar Card
Descr: Percentage bar card for app UI
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_pie-chart-card
Title: Pie Chart Card
Descr: Pie chart card for app UI
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_pricing-table-v2
Title: Pricing Table v2
Descr: A table used to compare prices and features of different products
Usage: codyhouse.co/license

-------------------------------- */
.p-table-v2 *[data-plan="month"] {
   display: none;
}

.p-table-v2--monthly-plan *[data-plan="year"] {
   display: none;
}
.p-table-v2--monthly-plan *[data-plan="month"] {
   display: inline;
}

/* -------------------------------- 

File#: _2_pricing-table
Title: Pricing Table
Descr: A table used to compare prices and features of different products
Usage: codyhouse.co/license

-------------------------------- */
.p-table__item {
   background-color: var(--color-bg-dark);
   border-radius: var(--radius-lg);
   box-shadow: var(--inner-glow);
   padding: var(--space-md);
   display: flex;
   flex-direction: column;
}

.p-table__item--popular {
   background-color: var(--color-bg-light);
   box-shadow:
      0 0 0 2px var(--color-primary),
      var(--shadow-md);
}

.p-table__badge {
   font-size: var(--text-sm);
   background-color: var(--color-contrast-high);
   color: var(--color-bg);
   padding: var(--space-xxxs) var(--space-xxs);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   vertical-align: middle;
   border-radius: var(--radius-md);
}

.p-table__price span {
   font-size: var(--text-xxxl);
   font-weight: bold;
}
.p-table__price i {
   color: var(--color-contrast-low);
}

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

.p-table__switch {
   display: none;
}

.p-table--has-switch .p-table__price-wrapper {
   position: relative;
   overflow: hidden;
}
.p-table--has-switch .p-table__price {
   will-change: transform;
   transition:
      transform 0.3s,
      opacity 0.3s;
   transition-timing-function: var(--ease-out);
}
.p-table--has-switch .p-table__price[data-transition-delay="2nd"] {
   transition-delay: 0.1s;
}
.p-table--has-switch .p-table__price[data-transition-delay="3rd"] {
   transition-delay: 0.2s;
}
.p-table--has-switch .p-table__price--month {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
}
.p-table--has-switch .p-table__price--year {
   pointer-events: none;
   opacity: 0;
   transform: translateY(100%);
}

.p-table--yearly .p-table__price--month {
   pointer-events: none;
   opacity: 0;
   transform: translateY(-100%);
}
.p-table--yearly .p-table__price--year {
   pointer-events: auto;
   opacity: 1;
   transform: translateY(0);
}

/* -------------------------------- 

File#: _2_product-card-v2
Title: Product Card v2
Descr: A selection of product information used as a teaser for further content
Usage: codyhouse.co/license

-------------------------------- */
.prod-card-v2 {
   --rating-icon-size: 28px;
   position: relative;
}

.prod-card-v2__img-link {
   display: block;
   position: relative;
   overflow: hidden;
}
.prod-card-v2__img-link img {
   display: block;
   width: 100%;
   transition: 0.3s;
}
.prod-card-v2__img-link img:nth-child(2) {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   opacity: 0;
}
.prod-card-v2__img-link:hover img:nth-child(1) {
   opacity: 0.85;
}
.prod-card-v2__img-link:hover img:nth-child(2) {
   opacity: 1;
}

.prod-card-v2__badge {
   position: absolute;
   z-index: 1;
   top: var(--space-sm);
   right: var(--space-sm);
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
   padding: var(--space-xxs) var(--space-sm);
   border-radius: var(--radius-md);
   pointer-events: none;
   font-size: var(--text-sm);
   color: var(--color-white);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

.product-card-v2__title {
   color: var(--color-contrast-higher);
   text-decoration: none;
   font-weight: bold;
}
.product-card-v2__title:hover {
   text-decoration: underline;
}

.prod-card-v2__price {
   text-decoration: none;
}

.prod-card-v2__old-price {
   color: var(--color-contrast-medium);
   text-decoration: line-through;
}
.prod-card-v2__old-price::before {
   content: "original price";
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
}

/* -------------------------------- 

File#: _2_product-v3
Title: Product v3
Descr: Product info section with CTA
Usage: codyhouse.co/license

-------------------------------- */
.product-v3__panel {
   position: sticky;
   top: var(--space-md);
}

.product-v3__cta-clone {
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   padding: var(--space-sm) var(--space-md);
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.9);
   -webkit-backdrop-filter: blur(5px);
   backdrop-filter: blur(5px);
   box-shadow: var(--shadow-lg);
   z-index: var(--z-index-fixed-element, 10);
   transform: translateY(100%);
   visibility: hidden;
   transition:
      transform 0.3s,
      visibility 0s 0.3s;
}

.product-v3__cta-clone--is-visible {
   transform: translateY(0);
   visibility: visible;
   transition: transform 0.3s;
}

/* -------------------------------- 

File#: _2_products-gallery
Title: Products Gallery
Descr: A gallery of product cards
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_radial-bar-card
Title: Radial Bar Card
Descr: Radial bar card for app UI
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_related-articles
Title: Related Articles
Descr: A list of related stories
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_settings-table
Title: Settings Table
Descr: A table containing a list of options that can be enabled/disabled
Usage: codyhouse.co/license

-------------------------------- */
.settings-tbl .switch {
   --switch-width: 48px;
   --switch-height: 24px;
   --switch-padding: 2px;
   --switch-animation-duration: 0.2s;
}

/* -------------------------------- 

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: 50px;
}

@media not all and (min-width: 64rem) {
   .side-template-v3 .sidebar {
      --space-unit: 1.2rem;
      --text-unit: 1.2rem;
      font-size: var(--text-unit);
   }
}

/* mobile header - hidden on bigger screens */
.side-template-v3__mobile-header {
   background: var(--color-bg-light);
   height: var(--side-template-mobile-header-height);
   box-shadow: var(--shadow-xs), var(--shadow-sm);
   position: relative;
   z-index: var(--z-index-header);
}

.side-template-v3__logo {
   display: block;
   width: 104px;
   flex-shrink: 0;
   text-decoration: none;
}
.side-template-v3__logo svg,
.side-template-v3__logo img {
   display: block;
   width: inherit;
}

/* main */
.side-template-v3__main {
   background-color: var(--color-bg);
}

@media (min-width: 64rem) {
   .side-template-v3 {
      background: linear-gradient(
         to right,
         hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0.3) 50%,
         var(--color-bg) 50%
      );
   }
   .side-template-v3__mobile-header {
      display: none;
   }
   .side-template-v3__main {
      min-height: 100vh;
   }
}
/* -------------------------------- 

File#: _2_side-navigation-v4
Title: Side Navigation v4
Descr: Main, side navigation
Usage: codyhouse.co/license

-------------------------------- */
.sidenav-v4 {
   --sidenav-v4-icon-size: 20px;
   --sidenav-v4-icon-margin-right: var(--space-xxs);
}

.sidenav-v4__item {
   position: relative;
}

.sidenav-v4__link,
.sidenav-v4__sub-link,
.sidenav-v4__separator {
   padding: var(--space-sm);
}

.sidenav-v4__link,
.sidenav-v4__sub-link {
   display: flex;
   align-items: center;
   width: 100%;
   border-radius: var(--radius-md);
   text-decoration: none;
   color: inherit;
   line-height: 1;
   font-size: var(--text-md);
   transition: 0.2s;
}
.sidenav-v4__link:hover,
.sidenav-v4__sub-link:hover {
   color: var(--color-primary);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.sidenav-v4__link[aria-current="page"],
.sidenav-v4__sub-link[aria-current="page"] {
   color: var(--color-primary);
}

.sidenav-v4__sub-link {
   position: relative;
   color: var(--color-contrast-medium);
   /* dot indicator */
}
.sidenav-v4__sub-link::before {
   content: "";
   display: block;
   --size: 6px;
   width: var(--size);
   height: var(--size);
   background: currentColor;
   border-radius: 50%;
   margin-left: calc(var(--sidenav-v4-icon-size) / 2 - var(--size) / 2);
   margin-right: calc(var(--sidenav-v4-icon-size) / 2 - var(--size) / 2 + var(--sidenav-v4-icon-margin-right));
   opacity: 0; /* visible only if current */
}
.sidenav-v4__sub-link[aria-current="page"]::before {
   /* show dot indicator */
   opacity: 1;
}

.sidenav-v4__notification-marker {
   margin-left: auto;
   background-color: var(--color-accent);
   border-radius: var(--radius-md);
   height: 16px;
   line-height: 16px;
   padding: 0 4px;
   color: var(--color-white);
   font-size: 12px;
   /* hide - visible only on desktop */
   display: none;
}

/* label icon */
.sidenav-v4__icon {
   --size: var(--sidenav-v4-icon-size);
   margin-right: var(--sidenav-v4-icon-margin-right);
}

/* arrow icon - visible on mobile if item is expandable */
.sidenav-v4__arrow-icon {
   --size: 20px;
   /* hide icon for links - show only for buttons created in JS */
}
.sidenav-v4__arrow-icon .icon__group {
   will-change: transform;
   transform-origin: 50% 50%;
   transform: rotate(-90deg);
   transition: transform 0.3s var(--ease-out);
}
.sidenav-v4__arrow-icon .icon__group > * {
   transform-origin: 50% 50%;
   stroke-dasharray: 20;
   stroke-dashoffset: 0;
   transform: translateY(0px);
   transition:
      transform 0.3s,
      stroke-dashoffset 0.3s;
   transition-timing-function: var(--ease-out);
}
.sidenav-v4__item--collapsed .sidenav-v4__arrow-icon .icon__group {
   transform: rotate(0deg);
}
.sidenav-v4__item--collapsed .sidenav-v4__arrow-icon .icon__group > * {
   transform: translateY(4px);
}
.sidenav-v4__item--collapsed .sidenav-v4__arrow-icon .icon__group > *:first-child {
   stroke-dashoffset: 10.15;
}
.sidenav-v4__item--collapsed .sidenav-v4__arrow-icon .icon__group > *:last-child {
   stroke-dashoffset: 10.15;
}
.sidenav-v4__link--href .sidenav-v4__arrow-icon {
   display: none;
}

/* current item */
.sidenav-v4__item--current .sidenav-v4__sub-list {
   display: block; /* show sublist */
}

/* separator */
.sidenav-v4__separator span {
   display: block;
   width: var(--sidenav-v4-icon-size);
   height: 1px;
   background-color: var(--color-contrast-lower);
}

/* mobile only */
@media not all and (min-width: 64rem) {
   .sidenav-v4__item--collapsed .sidenav-v4__sub-list {
      display: none;
   }
   .sidenav-v4__link--href {
      display: none; /* hide link -> show button */
   }
}
/* desktop */
@media (min-width: 64rem) {
   .sidenav-v4__sub-list {
      display: none;
   }
   .sidenav-v4__link,
   .sidenav-v4__sub-link,
   .sidenav-v4__separator {
      padding: var(--space-xs);
   }
   .sidenav-v4__link,
   .sidenav-v4__sub-link {
      font-size: var(--text-sm);
   }
   .sidenav-v4__link--btn {
      display: none; /* hide button -> show link */
   }
   /* tooltip */
   .sidenav-v4__item:not(.sidenav-v4__item--current) .sidenav-v4__sub-list {
      width: 220px;
      position: absolute;
      z-index: var(--z-index-overlay);
      left: 100%;
      top: 0;
      background-color: var(--color-bg-light);
      box-shadow: var(--inner-glow), var(--shadow-md);
      border-radius: var(--radius-md);
      overflow: hidden;
   }
   .sidenav-v4__item:not(.sidenav-v4__item--current) .sidenav-v4__sub-link {
      border-radius: 0;
      color: var(--color-contrast-high);
   }
   .sidenav-v4__item:not(.sidenav-v4__item--current) .sidenav-v4__sub-link::before {
      display: none; /* remove dot indicator */
   }
   .sidenav-v4__item:not(.sidenav-v4__item--current) .sidenav-v4__sub-link:hover {
      color: var(--color-primary);
   }
   .sidenav-v4__item:not(.sidenav-v4__item--current).sidenav-v4__item--hover .sidenav-v4__sub-list,
   .sidenav-v4__item:not(.sidenav-v4__item--current):focus-within .sidenav-v4__sub-list {
      display: block;
   }
   .sidenav-v4__item:not(.sidenav-v4__item--current):hover .sidenav-v4__link {
      /* highlight main link if tooltip is visible */
      color: var(--color-primary);
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.075
      );
   }
   /* notification marker */
   .sidenav-v4__notification-marker {
      display: block;
   }
}
/* -------------------------------- 

File#: _2_slider-multi-value
Title: Multi Value Slider
Descr: Slider element for choosing a minimum and maximum value in a specified range
Usage: codyhouse.co/license

-------------------------------- */
.slider--multi-value {
   position: relative;
}
.slider--multi-value .slider__range {
   pointer-events: none;
}

.slider--multi-value .slider__range:nth-of-type(1) {
   --slider-fill-value-start: 0%;
   --slider-fill-value-end: 100%;
}

.slider--multi-value .slider__range:nth-of-type(2) {
   position: absolute;
   top: 0;
   left: 0;
}

.slider--multi-value .slider__input::-webkit-slider-thumb {
   position: relative;
   z-index: 2;
   pointer-events: auto;
}
.slider--multi-value .slider__input::-moz-range-thumb {
   position: relative;
   z-index: 2;
   pointer-events: auto;
}
.slider--multi-value .slider__input::-webkit-slider-runnable-track {
   pointer-events: none;
   background-image: linear-gradient(
      to right,
      var(--color-contrast-lower) var(--slider-fill-value-start),
      var(--color-primary) var(--slider-fill-value-start),
      var(--color-primary) var(--slider-fill-value-end),
      var(--color-contrast-lower) var(--slider-fill-value-end)
   );
}
.slider--multi-value .slider__input::-moz-range-track {
   pointer-events: none;
   background-image: linear-gradient(
      to right,
      var(--color-contrast-lower) var(--slider-fill-value-start),
      var(--color-primary) var(--slider-fill-value-start),
      var(--color-primary) var(--slider-fill-value-end),
      var(--color-contrast-lower) var(--slider-fill-value-end)
   );
}
.slider--multi-value .slider__range:nth-of-type(2) .slider__input::-moz-range-track {
   background-image: none;
}

:not(*)::-ms-track,
.slider--multi-value.slider--ms-fallback {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

:not(*)::-ms-track,
.slider--multi-value.slider--ms-fallback .slider__range {
   pointer-events: auto;
   width: 48%;
}

:not(*)::-ms-track,
.slider--multi-value.slider--ms-fallback .slider__range:nth-of-type(2) {
   position: relative;
}

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

.slider--multi-value.slider--range-not-supported .slider__range {
   display: inline-block;
   width: 45%;
}
.slider--multi-value.slider--range-not-supported .slider__range:nth-of-type(2) {
   position: relative;
}

.slider--range-not-supported .slider__separator {
   display: none;
}

/* -------------------------------- 

File#: _2_slideshow-preview-mode
Title: Preview-Mode Slideshow
Descr: Show a collection of items one at a time with a preview of the next/previous elements
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --slideshow-pm-item-width: 80%;
   --slideshow-pm-item-gap: var(--space-sm);
}
@media (min-width: 64rem) {
   :root {
      --slideshow-pm-item-width: 66%;
   }
}

.slideshow-pm {
   overflow: hidden;
   opacity: 0;
}

.slideshow-pm--js-loaded {
   opacity: 1;
}

.slideshow-pm__content {
   position: relative;
}

.slideshow-pm__list {
   display: flex;
   flex-wrap: nowrap;
   overflow: auto;
   align-items: center;
   overflow: visible;
}

.slideshow-pm__list--has-transition {
   transition: transform 0.4s;
   will-change: transform;
}

.slideshow-pm__list--has-transition .slideshow-pm__item {
   transition: all 0.3s;
   will-change: transform, opacity;
}

.slideshow-pm__item {
   display: inline-flex;
   width: var(--slideshow-pm-item-width);
   flex-shrink: 0;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center center;
   transform: scale(0.95);
   opacity: 0.4;
}
.slideshow-pm__item:not(:last-of-type) {
   margin-right: var(--slideshow-pm-item-gap);
}
.slideshow-pm__item:focus {
   outline: none;
}

.slideshow-pm__item--selected {
   transform: scale(1);
   opacity: 1;
}

.slideshow-pm[data-swipe="on"] .slideshow-pm__content {
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.slideshow-pm[data-swipe="on"] .slideshow-pm__content img {
   pointer-events: none;
}

.slideshow-pm__control-wrapper {
   display: none;
}

.slideshow-pm[data-swipe="on"] .slideshow-pm__control-wrapper {
   display: none;
}

.slideshow-pm__control-wrapper {
   display: block;
   position: absolute;
   z-index: 4;
   top: 50%;
   opacity: 0;
   visibility: hidden;
   transition:
      opacity 0.2s,
      visibility 0s 0.2s;
}
.slideshow-pm__control-wrapper:first-of-type {
   left: calc((100% - var(--slideshow-pm-item-width)) * 0.25);
   transform: translateY(-50%) translateX(-50%);
}
.slideshow-pm__control-wrapper:last-of-type {
   right: calc((100% - var(--slideshow-pm-item-width)) * 0.25);
   transform: translateY(-50%) translateX(50%);
}

.slideshow-pm__control-wrapper--active {
   opacity: 1;
   visibility: visible;
   transition: opacity 0.2s;
}

.slideshow-pm__control {
   display: flex;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.8
   );
   height: 60px;
   width: 30px;
   border-radius: var(--radius-md);
   cursor: pointer;
   transition:
      background 0.2s,
      transform 0.2s;
}
.slideshow-pm__control:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.85
   );
}
.slideshow-pm__control:active {
   transform: translateY(2px);
}
.slideshow-pm__control .icon {
   --size: 30px;
   display: block;
   margin: auto;
   transition: color 0.2s;
   color: var(--color-bg);
}

@media (min-width: 64rem) {
   .slideshow-pm[data-swipe="on"] .slideshow-pm__control-wrapper {
      display: block;
   }
}
.slideshow-pm__navigation {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: var(--space-sm);
}

.slideshow-pm__nav-item {
   margin: 0 var(--space-xxxs);
}

.slideshow-pm__nav-btn {
   display: block;
   position: relative;
   --size: 8px;
   height: var(--size);
   width: var(--size);
   border-radius: 50%;
   background-color: currentColor;
   opacity: 0.4;
   cursor: pointer;
}
.slideshow-pm__nav-btn::before {
   content: "";
   position: absolute;
   top: -3px;
   left: -3px;
   height: calc(var(--size) + 6px);
   width: calc(var(--size) + 6px);
   border-radius: inherit;
   border: 1px solid currentColor;
   opacity: 0;
   transform: scale(0);
}
.slideshow-pm__nav-btn:focus-visible {
   outline: none;
}
.slideshow-pm__nav-btn:focus-visible::before {
   opacity: 1;
   transform: scale(1);
}

.slideshow-pm__nav-item--selected .slideshow-pm__nav-btn {
   opacity: 1;
}

/* -------------------------------- 

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_split-button
Title: Split Button
Descr: A button group with a default option an a list of alternative options
Usage: codyhouse.co/license

-------------------------------- */
.split-btn > *:first-child {
   height: 100%;
   border-top-right-radius: 0;
   border-bottom-right-radius: 0;
}
.split-btn > *:last-child {
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
}

.split-btn__separator {
   width: 1.5px; /* gap between buttons */
}

/* popover */
.split-btn-popover {
   width: 200px;
   background-color: var(--color-bg-light);
   padding: var(--space-xxs) 0;
   border-radius: var(--radius-md);
   box-shadow: var(--inner-glow), var(--shadow-md);
}

.split-btn-popover__list {
   list-style: none;
}

.split-btn-popover__item {
   display: flex;
   width: 100%;
   align-items: center;
   padding: var(--space-xxxs) var(--space-xs);
   text-decoration: none;
   color: var(--color-contrast-high);
   cursor: pointer;
   transition: 0.2s;
}
.split-btn-popover__item:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.split-btn-popover__item:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}

/* -------------------------------- 

File#: _2_sticky-sharebar
Title: Sticky Sharebar
Descr: Sticky social sharing bar
Usage: codyhouse.co/license

-------------------------------- */
.sticky-sharebar {
   display: flex;
   align-items: center;
   position: fixed;
   height: 100%;
   top: 0;
   right: var(--space-md);
   pointer-events: none;
   z-index: var(--z-index-fixed-element, 10);
   transition:
      visibility 0s 0.3s,
      opacity 0.3s,
      transform 0.3s var(--ease-in-out);
   transform: translateX(10%);
   opacity: 0;
   visibility: hidden;
}

.sticky-sharebar--on-target {
   transition:
      visibility 0s,
      opacity 0.3s,
      transform 0.3s var(--ease-in-out);
   transform: translateX(0);
   opacity: 1;
   visibility: visible;
}

.sticky-sharebar__list {
   pointer-events: auto;
   background-color: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0.95);
   -webkit-backdrop-filter: blur(5px);
   backdrop-filter: blur(5px);
   border-radius: 50em;
   box-shadow: var(--inner-glow), var(--shadow-md);
   padding: 4px;
}

.sticky-sharebar__btn {
   --size: 2.2em;
   width: var(--size);
   height: var(--size);
   position: relative;
   display: flex;
   border-radius: 50%;
}
.sticky-sharebar__btn .icon {
   position: relative;
   color: var(--color-contrast-medium); /* icon color */
   display: block;
   margin: auto;
   z-index: 2;
   transition: color 0.2s;
}
.sticky-sharebar__btn::before {
   /* animated bg */
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
   border-radius: inherit;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   transform: scale(0);
   transition: transform 0.2s var(--ease-out);
}
.sticky-sharebar__btn:hover .icon {
   color: var(--color-contrast-higher);
}
.sticky-sharebar__btn:hover::before {
   transform: scale(1);
}

/* -------------------------------- 

File#: _2_svg-slideshow
Title: SVG Image Slideshow
Descr: Show a collection of images one at a time, using SVG clipping effects to transition between items
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --svg-slideshow-btn-width: 1.6em;
   --svg-slideshow-btn-height: 3.2em;
   --svg-slideshow-btn-icon-size: 1.6em;
   --svg-slideshow-btn-offset: var(--space-xs);
}

.svg-slideshow {
   position: relative;
   z-index: 1;
}

.svg-slideshow__control {
   display: none;
}

.svg-slideshow {
   opacity: 0;
   transition: opacity 0.2s;
}

.svg-slideshow--loaded {
   opacity: 1;
}

.svg-slideshow__item {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   z-index: 1;
   background-color: transparent;
   opacity: 0;
}
.svg-slideshow__item svg {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
}
.svg-slideshow__item img {
   display: block;
   opacity: 0;
}
.svg-slideshow__item svg image {
   opacity: 1;
}

.svg-slideshow__item--selected {
   position: relative;
   z-index: 2;
   opacity: 1;
}

.svg-slideshow__item--animating {
   z-index: 3;
   opacity: 1;
}

.svg-slideshow[data-swipe="on"] .svg-slideshow__item {
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.svg-slideshow[data-swipe="on"] .svg-slideshow__item image {
   pointer-events: none;
}

.svg-slideshow[data-swipe="on"] .svg-slideshow__control {
   display: none;
}

.svg-slideshow__control {
   display: block;
   position: absolute;
   z-index: 4;
   top: 50%;
   transform: translateY(-50%);
}
.svg-slideshow__control:first-of-type {
   left: var(--svg-slideshow-btn-offset);
}
.svg-slideshow__control:last-of-type {
   right: var(--svg-slideshow-btn-offset);
}

@media (min-width: 64rem) {
   .svg-slideshow[data-swipe="on"] .svg-slideshow__control {
      display: block;
   }
}
.svg-slideshow__btn {
   display: block;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.75);
   height: var(--svg-slideshow-btn-height);
   width: var(--svg-slideshow-btn-width);
   border-radius: var(--radius-md);
   cursor: pointer;
   transition:
      background 0.2s,
      transform 0.2s;
}
.svg-slideshow__btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.85
   );
}
.svg-slideshow__btn:hover .icon {
   color: var(--color-bg);
}
.svg-slideshow:not(.svg-slideshow--is-animating) .svg-slideshow__btn:active {
   transform: scale(0.95);
}
.svg-slideshow__btn .icon {
   display: block;
   width: var(--svg-slideshow-btn-icon-size);
   height: var(--svg-slideshow-btn-icon-size);
   margin: 0 auto;
   transition: color 0.2s;
   color: var(--color-white);
}
@supports (grid-area: auto) {
   .svg-slideshow__btn {
      background-color: transparent;
   }
   .svg-slideshow__btn .icon {
      color: var(--color-contrast-higher);
   }
}

.svg-slideshow__navigation {
   position: absolute;
   z-index: 4;
   bottom: 0;
   width: 100%;
   height: 32px;
   display: flex;
   justify-content: center;
   align-items: center;
   background: transparent;
}

.svg-slideshow__nav-item {
   display: inline-block;
   margin: 0 var(--space-xxxs);
}
.svg-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;
}
.svg-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;
}
.svg-slideshow__nav-item button:focus {
   outline: none;
}
.svg-slideshow__nav-item button:focus::before {
   opacity: 1;
   transform: scale(1);
}

.svg-slideshow__nav-item--selected button {
   opacity: 1;
}

@media (min-width: 64rem) {
   .svg-slideshow__navigation {
      height: 40px;
   }
   .svg-slideshow__nav-item button {
      font-size: 10px;
   }
   .svg-slideshow__nav-item button::before {
      font-size: 16px;
   }
}
/* -------------------------------- 

File#: _2_switch-card
Title: Switch Card
Descr: Card element with an ON/OFF switch
Usage: codyhouse.co/license

-------------------------------- */
.switch-card {
   --switch-card-figure-size: 56px;
   /* switch */
   --switch-width: 54px;
   --switch-height: 28px;
}

.switch-card--on {
   /* card style when switcher = on */
   background-color: var(--color-bg-light);
}
.switch-card--on .switch-card__figure {
   filter: grayscale(0%);
}

.switch-card__figure {
   width: var(--switch-card-figure-size);
   height: var(--switch-card-figure-size);
   position: relative;
   filter: grayscale(100%);
}

.switch-card__img {
   display: block;
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   border-radius: inherit;
}

/* -------------------------------- 

File#: _2_tabbed-features-v2
Title: Tabbed Features v2
Descr: A list of features accessible one at a time using a tabbed navigation
Usage: codyhouse.co/license

-------------------------------- */
.tab-features-v2__controls-list {
   position: relative;
   display: flex;
   gap: var(--space-xs);
   overflow: auto;
}
.tab-features-v2__controls-list > * {
   flex: 1 0 180px;
}

.tab-features-v2__text-crop-gradient {
   /* gradient used to crop text */
   position: sticky;
   top: 0;
   right: 0;
   flex: 0 0 40px;
   background: linear-gradient(
      to right,
      hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0),
      hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 1)
   );
   pointer-events: none;
}

.tab-features-v2__control {
   display: block;
   color: inherit;
   text-decoration: none;
   height: 100%;
   padding: 0 0 var(--space-md);
   border: 0px solid
      hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
   border-bottom-width: 1px;
   transition: 0.2s;
}

.tab-features-v2__control-title {
   display: block;
   color: var(--color-contrast-medium);
   font-weight: 500;
   margin-bottom: var(--space-xxs);
   transition: color 0.2s;
}

.tab-features-v2__control-description {
   color: var(--color-contrast-medium);
   line-height: 1.4;
   font-size: var(--text-sm);
}

.tab-features-v2__control:hover {
   border-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.5
   );
}
.tab-features-v2__control:hover .tab-features-v2__control-title {
   color: var(--color-contrast-higher);
}

.tab-features-v2__control[aria-selected="true"] {
   border-color: var(--color-primary);
}
.tab-features-v2__control[aria-selected="true"] .tab-features-v2__control-title {
   color: var(--color-primary);
}

.tab-features-v2__panels {
   position: relative;
}

.tab-features-v2__panel {
   opacity: 0;
}

.tabs--no-interaction .tab-features-v2__panel {
   animation-duration: 0s;
   animation-delay: 0s;
}

.tab-features-v2__panel--display {
   animation: tab-features-v2-panel-entry-anim 0.5s 0.2s var(--ease-out) forwards;
}

.tab-features-v2__panel--hide {
   position: absolute;
   visibility: hidden;
   top: 0;
   width: 100%;
   transition:
      position 0s 0.5s,
      visibility 0s 0.5s;
   animation: tab-features-v2-panel-exit-anim 0.5s var(--ease-out);
}

@keyframes tab-features-v2-panel-entry-anim {
   0% {
      opacity: 0;
      transform: translateY(-20px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}
@keyframes tab-features-v2-panel-exit-anim {
   0% {
      opacity: 1;
      transform: translateY(0px);
   }
   100% {
      opacity: 0;
      transform: translateY(20px);
   }
}
@media (min-width: 64rem) {
   .tab-features-v2__controls-list {
      flex-direction: column;
      overflow: visible;
   }
   .tab-features-v2__controls-list > * {
      flex: 1 0 auto;
   }
   .tab-features-v2__text-crop-gradient {
      display: none;
   }
   .tab-features-v2__control {
      border-width: 0px;
      border-radius: var(--radius-md);
      padding: var(--space-sm) var(--space-md);
   }
   .tab-features-v2__control:hover,
   .tab-features-v2__control[aria-selected="true"] {
      background-color: var(--color-bg-light);
      box-shadow: var(--shadow-sm);
   }
}
/* -------------------------------- 

File#: _2_tabbed-features
Title: Tabbed Features 
Descr: A list of features filterable using a tabbed navigation
Usage: codyhouse.co/license

-------------------------------- */
.tab-features__controls-list {
   position: relative;
   display: flex;
   align-items: center;
   overflow: auto;
   counter-reset: tab-features-list;
}
.tab-features__controls-list::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: 0;
   width: 100%;
   height: 1px;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}

.tab-features__control-wrapper {
   counter-increment: tab-features-list;
}

.tab-features__control {
   position: relative;
   display: block;
   padding: var(--space-sm) var(--space-xl) var(--space-sm) var(--space-sm);
   color: var(--color-contrast-higher);
   text-decoration: none;
   font-weight: 500;
   transition: background 0.2s;
}
.tab-features__control::before {
   content: "0" counter(tab-features-list);
   font-size: var(--text-xs);
   display: block;
   color: var(--color-contrast-low);
   margin-bottom: var(--space-xxxxs);
}
.tab-features__control::after {
   content: "";
   position: absolute;
   bottom: 0px;
   left: 0;
   height: 1px;
   width: 100%;
}
.tab-features__control:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.025
   );
}
.tab-features__control[aria-selected="true"]::before {
   color: var(--color-primary);
}
.tab-features__control[aria-selected="true"]::after {
   background-color: var(--color-primary);
}

.tab-features__panels {
   position: relative;
}

.tab-features__panel {
   opacity: 0;
   padding-top: var(--space-md);
}

.tabs--no-interaction .tab-features__panel {
   animation-duration: 0s;
   animation-delay: 0s;
}

.tab-features__panel--display {
   opacity: 0;
   animation: tab-features-panel-entry-anim 0.5s 0.2s var(--ease-out) forwards;
}

.tab-features__panel--hide {
   position: absolute;
   visibility: hidden;
   top: 0;
   width: 100%;
   transition:
      position 0s 0.5s,
      visibility 0s 0.5s;
   animation: tab-features-panel-exit-anim 0.5s var(--ease-out);
   display: none;
}

@keyframes tab-features-panel-entry-anim {
   0% {
      opacity: 0;
      transform: translateY(-20px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}
@keyframes tab-features-panel-exit-anim {
   0% {
      opacity: 1;
      transform: translateY(0px);
   }
   100% {
      opacity: 0;
      transform: translateY(20px);
   }
}
/* -------------------------------- 

File#: _2_table-card
Title: Table Card
Descr: Table card for app UI
Usage: codyhouse.co/license

-------------------------------- */
.table-card .progress-bar {
   --progress-bar-width: 100px;
   --progress-bar-height: 6px;
   --progress-bar-radius: 50em;
}

/* -------------------------------- 

File#: _2_table-of-contents
Title: Table of Contents
Descr: A navigation with a list of links to the main sections of the page 
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --toc-border-width: 1px; /* static version only */
}

/* #region (style affecting collapsed + static versions) ������ */
.toc {
   --space-unit: 1rem;
   /* use rem units for spacing */
}

.toc__list {
   position: relative;
}
.toc__list .toc__list .toc__link {
   padding-left: calc(var(--space-sm) * 2); /* offset sub nav */
}

.toc__link,
.toc__label {
   padding: var(--space-xxxs) var(--space-sm);
}

.toc__link {
   position: relative;
   color: var(--color-contrast-medium);
   text-decoration: none;
}
.toc__link::before {
   /* left mark */
   content: "";
   width: var(--toc-border-width);
   height: 100%;
   position: absolute;
   left: 0;
   top: 0;
}
.toc__link:hover {
   color: var(--color-contrast-high);
}

.toc__link--selected {
   color: var(--color-primary);
}
.toc__link--selected:hover {
   color: var(--color-primary);
}

.toc__label {
   /* label style */
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-size: var(--text-sm);
}

.toc__control {
   /* control button */
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.toc__control-text {
   /* text inside control button */
   position: relative;
}
.toc__control-text > * {
   display: inline-block;
   transition:
      opacity 0.4s,
      transform 0.4s var(--ease-out);
}
.toc__control-text > *:last-child {
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   pointer-events: none;
   transform: translateY(-10px);
}

.toc__icon-arrow {
   /* arrow icon  */
}
.toc__icon-arrow .icon__group {
   will-change: transform;
   transform-origin: 8px 8px;
   transition: transform 0.3s var(--ease-out);
}
.toc__icon-arrow .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);
}
.toc__icon-arrow .icon__group > *:first-child {
   stroke-dashoffset: 10;
}
.toc__icon-arrow .icon__group > *:last-child {
   stroke-dashoffset: 10;
}

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

/* #endregion */
/* #region (collapsed version only - mobile ������) */
.toc:not(.toc--static) {
   border-radius: var(--radius-md);
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-sm);
   transition: 0.3s;
}
.toc:not(.toc--static):hover {
   box-shadow: var(--inner-glow), var(--shadow-md);
}
.toc:not(.toc--static) .toc__nav {
   /* navigation */
   display: none;
   margin: var(--space-xxs) 0;
}
.toc:not(.toc--static) .toc__list {
   padding-bottom: var(--space-xs);
}
.toc:not(.toc--static) .toc__label {
   display: none;
}
.toc:not(.toc--static) .toc__link {
   display: flex;
}
.toc:not(.toc--static).toc--expanded .toc__control-text > *:first-child {
   transform: translateY(10px);
   opacity: 0;
   pointer-events: none;
}
.toc:not(.toc--static).toc--expanded .toc__control-text > *:last-child {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
}
.toc:not(.toc--static).toc--expanded .toc__nav {
   display: block;
   animation: toc-entry-animation 0.4s var(--ease-out);
}
.toc:not(.toc--static).toc--expanded .toc__icon-arrow .icon__group {
   /* animate arrow icon */
   transform: rotate(-90deg);
}
.toc:not(.toc--static).toc--expanded .toc__icon-arrow .icon__group > *:first-child,
.toc:not(.toc--static).toc--expanded .toc__icon-arrow .icon__group *:last-child {
   stroke-dashoffset: 0;
   transform: translateY(0px);
}

/* #endregion */
/* #region (static version only - desktop ������) */
.toc--static {
   box-shadow: inset var(--toc-border-width) 0 0 var(--color-contrast-lower); /* left border */
}
.toc--static[class*="position-sticky"] {
   top: var(--space-md); /* used if position = sticky */
   max-height: calc(100vh - var(--space-md) * 2); /* set max height */
   overflow: auto;
   -webkit-overflow-scrolling: touch;
}
.toc--static .toc__label {
   font-size: var(--text-xs);
}
.toc--static .toc__link {
   display: inline-flex;
   font-size: var(--text-sm);
}
.toc--static .toc__link--selected::before {
   background-color: var(--color-primary);
}
.toc--static .toc__control {
   /* control - static version only */
   display: none;
}

.toc-content--toc-static *:target {
   animation: toc-target 2s; /* highlight section on target */
}

/* #endregion */
@keyframes toc-target {
   0%,
   50% {
      outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.5);
   }
   100% {
      outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0);
   }
}
@keyframes toc-entry-animation {
   from {
      opacity: 0;
      transform: translateY(-10px);
   }
   to {
      opacity: 1;
      transform: translateY(0px);
   }
}
/* used in JS - detect when the TOC needs to switch from a collapsed to a static version */
[class*="toc--static"]::before {
   display: none;
   content: "collapsed";
}

@media (min-width: 32rem) {
   .toc--static\@xs::before {
      content: "static";
   }
}
@media (min-width: 48rem) {
   .toc--static\@sm::before {
      content: "static";
   }
}
@media (min-width: 64rem) {
   .toc--static\@md::before {
      content: "static";
   }
}
@media (min-width: 80rem) {
   .toc--static\@lg::before {
      content: "static";
   }
}
@media (min-width: 90rem) {
   .toc--static\@xl::before {
      content: "static";
   }
}
/* -------------------------------- 

File#: _2_tabs-v2
Title: Tabs v2
Descr: Accessible tabbed content v2
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_tabs-v3
Title: Tabs v3
Descr: Accessible tabbed content v3
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --tabs-v3-border-width: 1px;
   --tabs-v3-radius: var(--radius-md);
   --tabs-v3-control-gap: var(--tabs-v3-border-width);
   --tabs-v3-control-radius: 0;
}

.tabs-v3 {
   border: var(--tabs-v3-border-width) solid var(--color-contrast-lower);
   padding: var(--component-padding);
   border-radius: var(--tabs-v3-radius);
   background-color: var(--color-bg);
}

.tabs-v3__controls {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: var(--space-xs);
}
.tabs-v3__controls li {
   display: inline-block;
   margin: 0 var(--space-xs) var(--space-xs) 0;
}

.tabs-v3__control {
   display: inline-flex;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   padding: var(--space-xs) var(--space-sm);
   white-space: nowrap;
   color: inherit;
   border-radius: var(--tabs-v3-control-radius);
}
.tabs-v3__control:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}

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

.tabs-v3__control {
   text-decoration: none;
}
.tabs-v3__control[aria-selected="true"] {
   background-color: var(--color-primary);
   color: var(--color-white);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
.tabs-v3__control[aria-selected="true"]:hover {
   background-color: var(--color-primary-light);
}

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

@media (min-width: 64rem) {
   .tabs-v3 {
      padding: 0;
      border: none;
      background-color: transparent;
   }
   .tabs-v3__controls {
      margin-bottom: 0;
   }
   .tabs-v3__controls li {
      margin-top: 0;
      margin-left: calc(-1 * var(--tabs-v3-border-width));
      margin-right: var(--tabs-v3-control-gap);
      margin-bottom: 0;
   }
   .tabs-v3__controls li:first-child {
      margin-left: 0;
   }
   .tabs-v3__controls li:first-child a {
      border-radius: var(--tabs-v3-radius) var(--tabs-v3-control-radius) 0 0;
   }
   .tabs-v3__controls li:last-child a {
      border-radius: var(--tabs-v3-control-radius) var(--tabs-v3-radius) 0 0;
   }
   .tabs-v3__control {
      height: 100%;
      border: var(--tabs-v3-border-width) solid transparent;
      border-bottom-width: 0;
      border-radius: var(--tabs-v3-control-radius) var(--tabs-v3-control-radius) 0 0;
   }
   .tabs-v3__control[aria-selected="true"] {
      background-color: var(--color-bg);
      color: var(--color-primary);
      position: relative;
      border-color: var(--color-contrast-low);
   }
   .tabs-v3__control[aria-selected="true"]:hover {
      background-color: inherit;
   }
   .tabs-v3__control[aria-selected="true"]::after {
      /* border bottom -> it covers the border of the panel element */
      content: "";
      position: absolute;
      left: 0;
      bottom: calc(-1 * var(--tabs-v3-border-width));
      width: 100%;
      height: var(--tabs-v3-border-width);
      background-color: var(--color-bg);
      z-index: 1;
   }
   .tabs-v3__panels {
      border: var(--tabs-v3-border-width) solid var(--color-contrast-low);
      border-radius: 0 var(--tabs-v3-radius) var(--tabs-v3-radius) var(--tabs-v3-radius);
      background-color: var(--color-bg);
   }
   .tabs-v3__panel {
      padding: var(--space-sm);
   }
}
/* -------------------------------- 

File#: _2_team-v2
Title: Team v2
Descr: A gallery of team members
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_team
Title: Team
Descr: A gallery of team members
Usage: codyhouse.co/license

-------------------------------- */
.team {
   position: relative;
   z-index: 1;
}

/* -------------------------------- 

File#: _2_testimonial-gallery
Title: Testimonial Gallery
Descr: A gallery of client quotations
Usage: codyhouse.co/license

-------------------------------- */
.test-gallery {
   --masonry-grid-gap: var(--space-md);
   --masonry-col-auto-size: 350px;
   position: relative;
   z-index: 1;
}

.test-gallery__inner {
   position: relative;
}
.test-gallery__inner::after {
   /* overlay gradient */
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 200px;
   background: linear-gradient(
      to top,
      hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 1) 25%,
      hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 0)
   );
   pointer-events: none;
}

.test-gallery__card {
   padding: var(--space-sm);
   border-radius: var(--radius-lg);
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-xs);
}

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

.test-gallery__profile-img {
   display: block;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   -o-object-fit: cover;
   object-fit: cover;
   margin-right: var(--space-xs);
}

.test-gallery__card-img {
   display: block;
   width: 100%;
   border-radius: var(--radius-md);
   margin-top: var(--space-sm);
}

.test-gallery__twitter-icon-wrapper {
   color: #1da1f2;
   display: block;
   flex-shrink: 0;
   margin-left: auto;
   transition: transform 0.3s var(--ease-out-back);
}
.test-gallery__twitter-icon-wrapper .icon {
   --size: 20px;
}
.test-gallery__twitter-icon-wrapper:hover {
   transform: scale(1.2);
}

/* -------------------------------- 

File#: _2_testimonials
Title: Testimonials
Descr: A gallery of testimonial cards
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _2_time-picker
Title: Time Picker
Descr: Time selector input
Usage: codyhouse.co/license

-------------------------------- */
.time-picker .btns {
   /* AM/PM switcher */
   --btns-button-padding-x: var(--form-control-padding-x);
   --btns-button-padding-y: var(--form-control-padding-y);
}

.time-picker__input {
   text-align: center;
   /* ������ you can ovveride this padding by using the padding utility classes on the element */
   /* hide native input arrows */
}
.time-picker__input:not([class^="padding-"]):not([class*=" padding-"]) {
   padding: var(--form-control-padding-y) var(--space-xxxs);
}
.time-picker__input:focus {
   outline: none;
}
.time-picker__input::-webkit-outer-spin-button,
.time-picker__input::-webkit-inner-spin-button {
   -webkit-appearance: none;
   margin: 0;
}
.time-picker__input[type="number"] {
   -moz-appearance: textfield;
}

/* native time input */
.time-picker-native::-webkit-calendar-picker-indicator {
   background: currentColor;
   /* custom icon */
   -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='currentColor'%3E%3Cpath d='M8,0a8,8,0,1,0,8,8A8.024,8.024,0,0,0,8,0ZM8,14a6,6,0,1,1,6-6A6.018,6.018,0,0,1,8,14Z'%3E%3C/path%3E%3Cpath d='M11.5,7H9V4.5a1,1,0,0,0-2,0V8A1,1,0,0,0,8,9h3.5a1,1,0,0,0,0-2Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
   mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='currentColor'%3E%3Cpath d='M8,0a8,8,0,1,0,8,8A8.024,8.024,0,0,0,8,0ZM8,14a6,6,0,1,1,6-6A6.018,6.018,0,0,1,8,14Z'%3E%3C/path%3E%3Cpath d='M11.5,7H9V4.5a1,1,0,0,0-2,0V8A1,1,0,0,0,8,9h3.5a1,1,0,0,0,0-2Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
   -webkit-mask-repeat: no-repeat;
   mask-repeat: no-repeat;
   -webkit-mask-position: center;
   mask-position: center;
}

/* -------------------------------- 

File#: _2_user-menu
Title: User Menu
Descr: A menu controlled by the user profile image
Usage: codyhouse.co/license

-------------------------------- */
.user-menu-control {
   --profile-figure-size: 40px;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   text-align: left;
}
.user-menu-control:hover .user-menu-control__img-wrapper {
   opacity: 0.8;
}
.user-menu-control:hover .user-menu__meta-title {
   color: var(--color-primary);
}
.user-menu-control:focus,
.user-menu-control.menu-control--active {
   outline: none;
}
.user-menu-control:focus .user-menu-control__img-wrapper::after,
.user-menu-control.menu-control--active .user-menu-control__img-wrapper::after {
   opacity: 1;
   transform: scale(1);
}

.user-menu-control__img-wrapper {
   width: var(--profile-figure-size);
   height: var(--profile-figure-size);
   position: relative;
   transition: opacity 0.2s;
}
.user-menu-control__img-wrapper::after {
   content: "";
   position: absolute;
   z-index: -1;
   left: -4px;
   top: -4px;
   width: 100%;
   height: 100%;
   border-radius: inherit;
   width: calc(var(--profile-figure-size) + 8px);
   height: calc(var(--profile-figure-size) + 8px);
   border: 2px solid var(--color-primary);
   pointer-events: none;
   opacity: 0;
   transform: scale(0.8);
   transition: all 0.2s;
}

.user-menu-control__img {
   display: block;
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   border-radius: inherit;
}

.user-menu__meta {
   max-width: 100px;
}

.user-menu__meta-title {
   transition: color 0.2s;
}

/* -------------------------------- 

File#: _2_weekly-schedule
Title: Weekly Schedule
Descr: A table displaying the events of the week
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --w-schedule-row-height: 50px;
   --w-schedule-row-nr: 0;
   --w-schedule-modal-anim-duration: 0.3s;
   --w-schedule-modal-close-btn-size: 48px;
   --w-schedule-color-1: hsl(27, 87%, 70%);
   --w-schedule-color-1-h: 27;
   --w-schedule-color-1-s: 87%;
   --w-schedule-color-1-l: 70%;
   --w-schedule-color-2: hsl(187, 13%, 28%);
   --w-schedule-color-2-h: 187;
   --w-schedule-color-2-s: 13%;
   --w-schedule-color-2-l: 28%;
   --w-schedule-color-3: hsl(304, 100%, 89%);
   --w-schedule-color-3-h: 304;
   --w-schedule-color-3-s: 100%;
   --w-schedule-color-3-l: 89%;
   --w-schedule-color-4: hsl(96, 67%, 87%);
   --w-schedule-color-4-h: 96;
   --w-schedule-color-4-s: 67%;
   --w-schedule-color-4-l: 87%;
}

.w-schedule {
   position: relative;
   z-index: 1;
}

/* #region (Mobile Navigation) */
.w-schedule__controls {
   display: flex;
   align-items: center;
}

.w-schedule__control-wrapper {
   flex-grow: 1;
   flex-basis: 0;
}
.w-schedule__control-wrapper:not(:last-child) {
   margin-right: var(--space-xxs);
}

.w-schedule__control {
   display: block;
   width: 100%;
   background-color: var(--color-contrast-lower);
   padding: 2vw 0;
   border-radius: var(--radius-md);
   color: inherit;
   text-decoration: none;
   text-align: center;
   transition: 0.2s;
}
.w-schedule__control:hover {
   background-color: var(--color-contrast-low);
}
.w-schedule__control:focus {
   outline: none;
   box-shadow: 0 0 0 2px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.w-schedule__control[aria-selected="true"] {
   background-color: var(--color-contrast-higher);
   color: var(--color-bg);
}

/* #endregion */
/* #region (Events) */
.w-schedule__days {
   position: relative;
   z-index: 2;
}

.w-schedule__day {
   position: relative;
   padding-top: var(--space-md);
}

.w-schedule__col-label {
   display: none;
}

.w-schedule__events {
   position: relative;
}

.w-schedule__event-wrapper:not(:last-child) {
   margin-bottom: var(--space-xs);
}

.w-schedule__event {
   color: inherit;
   text-decoration: none;
   display: block;
   padding: var(--space-md);
   border-radius: var(--radius-md);
   background-color: var(--w-schedule-color-1);
   border-left-width: 4px;
   border-left-style: solid;
   box-shadow: var(--shadow-sm);
   transition: 0.3s;
}
.w-schedule__event:hover {
   box-shadow: var(--shadow-md);
}

.w-schedule__event--1 {
   background-color: var(--w-schedule-color-1);
   border-color: hsl(var(--w-schedule-color-1-h), var(--w-schedule-color-1-s), calc(var(--w-schedule-color-1-l) * 0.8));
   color: var(--color-black);
}

.w-schedule__event--2 {
   background-color: var(--w-schedule-color-2);
   border-color: hsl(var(--w-schedule-color-2-h), var(--w-schedule-color-2-s), calc(var(--w-schedule-color-2-l) * 0.8));
   color: var(--color-white);
}

.w-schedule__event--3 {
   background-color: var(--w-schedule-color-3);
   border-color: hsl(var(--w-schedule-color-3-h), var(--w-schedule-color-3-s), calc(var(--w-schedule-color-3-l) * 0.8));
   color: var(--color-black);
}

.w-schedule__event--4 {
   background-color: var(--w-schedule-color-4);
   border-color: hsl(var(--w-schedule-color-4-h), var(--w-schedule-color-4-s), calc(var(--w-schedule-color-4-l) * 0.8));
   color: var(--color-black);
}

/* #endregion */
/* #region (Background Rows) */
.w-schedule__grid {
   display: none;
}

.w-schedule__grid-row-label {
   display: none;
}

/* #endregion */
/* #region (Modal Window) */
.w-schedule-modal {
   --modal-transition-duration: var(--w-schedule-modal-anim-duration);
   display: flex;
   justify-content: center;
   align-items: center;
   padding: var(--space-sm);
   padding-top: calc(var(--space-sm) * 2 + var(--w-schedule-modal-close-btn-size));
}

.w-schedule-modal__content {
   height: 100%;
   width: 100%;
   overflow: auto;
}

.w-schedule-modal__content--loaded > * {
   animation: w-schedule-body-entry-anim 0.4s;
}

@keyframes w-schedule-body-entry-anim {
   0% {
      opacity: 0;
   }
   100% {
      opacity: 1;
   }
}
.w-schedule-morph-bg {
   position: fixed;
   z-index: var(--z-index-overlay, 15);
   transform-origin: left top;
}

.w-schedule-close-btn {
   position: fixed;
   top: var(--space-sm);
   right: var(--space-sm);
   z-index: var(--z-index-overlay, 15);
   width: var(--w-schedule-modal-close-btn-size);
   height: var(--w-schedule-modal-close-btn-size);
   border-radius: 50%;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
   display: flex;
   opacity: 0;
   visibility: hidden;
   transition:
      background 0.2s,
      opacity var(--w-schedule-modal-anim-duration),
      visibility 0s var(--w-schedule-modal-anim-duration);
}
.w-schedule-close-btn:hover {
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 1);
}
.w-schedule-close-btn .icon {
   color: var(--color-white);
   display: block;
   margin: auto;
}

.w-schedule-close-btn--is-visible {
   opacity: 1;
   visibility: visible;
   transition:
      background 0.2s,
      opacity var(--w-schedule-modal-anim-duration);
}

.w-schedule-modal__figure {
   display: block;
}
.w-schedule-modal__figure img {
   display: block;
   height: 100%;
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

/* #endregion */
@media (min-width: 64rem) {
   /* #region (Mobile Navigation) */
   .w-schedule__controls {
      display: none;
   }
   /* #endregion */
   /* #region (Events) */
   .w-schedule__days {
      display: flex;
      height: calc(var(--w-schedule-row-nr) * var(--w-schedule-row-height));
   }
   .w-schedule__day {
      display: block !important;
      flex-grow: 1;
      flex-basis: 0;
      padding-top: 0;
      border: 0px solid
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
      border-left-width: 1px;
   }
   .w-schedule__day:last-child {
      border-right-width: 1px;
   }
   .w-schedule__col-label {
      display: flex;
      height: var(--w-schedule-row-height);
      justify-content: center;
      align-items: center;
      border-bottom: 1px solid
         hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
   }
   .w-schedule__event-wrapper {
      margin-bottom: 0 !important;
   }
   .w-schedule__event {
      height: var(--w-schedule-event-height, auto);
      padding: var(--space-xs);
      position: absolute;
      left: 0;
      top: var(--w-schedule-event-top, initial);
      width: 100%;
   }
   /* #endregion */
   /* #region (Background Rows) */
   .w-schedule__grid {
      display: block;
      position: absolute;
      z-index: 1;
      top: var(--w-schedule-row-height);
      left: 0;
      width: 100%;
   }
   .w-schedule__grid-row {
      position: relative;
      height: var(--w-schedule-row-height);
   }
   .w-schedule__grid-row:not(:last-child)::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.1
      );
   }
   /* #endregion */
   /* #region (Modal Window) */
   .w-schedule-modal {
      padding-top: calc(var(--space-xs) * 2 + var(--w-schedule-modal-close-btn-size));
      padding-bottom: calc(var(--space-xs) * 2 + var(--w-schedule-modal-close-btn-size));
   }
   .w-schedule-modal__content {
      max-width: var(--max-width-md);
      max-height: 680px;
      overflow: hidden;
   }
   .w-schedule-modal__body {
      overflow: auto;
      -webkit-overflow-scrolling: touch;
   }
   /* #endregion */
}
@media (min-width: 80rem) {
   /* #region (Events) */
   .w-schedule__days {
      margin-left: 60px;
   }
   /* #endregion */
   /* #region (Background Rows) */
   .w-schedule__grid-row:not(:last-child)::after {
      left: 60px;
      width: calc(100% - 60px);
   }
   .w-schedule__grid-row-label {
      display: inline-block;
      line-height: 1;
      position: absolute;
      transform: translateY(-50%);
      top: 0;
      left: 0;
      font-size: var(--text-sm);
   }
   /* #endregion */
}
/* -------------------------------- 

File#: _3_advanced-filter
Title: Advanced Filter
Descr: A filter panel template
Usage: codyhouse.co/license

-------------------------------- */
.adv-filter .sidebar--static {
   /* static variation -> sidebar is always visible (optimized for bigger screens) */
   width: 320px;
   flex-grow: 0;
}
.adv-filter .accordion {
   --accordion-icon-size: 16px;
   --accordion-icon-stroke-width: 2.5; /* arrow icon stroke width */
}
.adv-filter .slider {
   --slider-width: 80%;
}

@media (min-width: 64rem) {
   .adv-filter__checkbox-list,
   .adv-filter__radio-list {
      font-size: var(--text-sm);
      --checkbox-radio-size: 1.25em;
      --checkbox-radio-translate-y: 0.25em; /* edit to align buttons with labels */
   }
}
/* -------------------------------- 

File#: _3_advanced-search
Title: Advanced Search
Descr: A modal window containing a search input with filtering options
Usage: codyhouse.co/license

-------------------------------- */
.adv-search {
   /* search input component */
   --search-input-btn-width: 46px;
   --search-input-icon-size: 20px;
}

.adv-search__close-btn {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.2s;
}
.adv-search__close-btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.adv-search__close-btn .icon {
   display: block;
   --size: 20px;
}

.adv-search__result-v1 {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   padding: var(--space-xxs);
   box-shadow: var(--inner-glow), var(--shadow-xs);
   color: var(--color-contrast-higher);
   text-decoration: none;
   font-size: var(--text-sm);
   transition: 0.2s;
}
.adv-search__result-v1:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-sm);
}

.adv-search__result-v2 {
   display: block;
   overflow: hidden;
   height: 100%;
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   box-shadow: var(--inner-glow), var(--shadow-xs);
   color: var(--color-contrast-higher);
   text-decoration: none;
   transition: 0.2s;
}
.adv-search__result-v2 footer p {
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}
.adv-search__result-v2:hover {
   background-color: var(--color-bg-lighter);
   box-shadow: var(--inner-glow), var(--shadow-sm);
}

/* -------------------------------- 

File#: _3_area-chart
Title: Area Chart
Descr: Data visualisation using SVG Area Chart
Usage: codyhouse.co/license

-------------------------------- */
.chart--area {
   --chart-height: 360px;
   --chart-data-line-stroke-width: 2px;
   --chart-marker-size: 6px;
   --chart-axis-stroke-width: 1px;
   --chart-guides-stroke-width: 1px;
   --chart-data-fill-opacity: 0.2;
   --chart-y-indicator-dash: 3px;
   --chart-y-indicator-stroke-width: 1px;
}
.chart--area .chart__set--1 {
   --chart-data-color: var(--color-primary);
}
.chart--area .chart__set--2 {
   --chart-data-color: var(--color-accent);
}
.chart--area .chart__tooltip {
   font-size: var(--text-sm);
   box-shadow: var(--inner-glow), var(--shadow-md);
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   padding: var(--space-xs);
}
.chart--area .chart__y-indicator {
   stroke: var(--color-contrast-lower);
}
.chart--area .chart__axis-legend {
   font-size: 0.6em;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   fill: var(--color-contrast-low);
}
.chart--area .chart__axis-label {
   font-size: var(--text-xs);
}
.chart--area .chart__axis {
   stroke: var(--color-contrast-lower);
}
.chart--area .chart__tick {
   stroke: var(--color-contrast-lower);
}
.chart--area .chart__guides {
   stroke: var(--color-contrast-lower);
}
.chart--area .chart__marker {
   fill: var(--chart-data-color);
   stroke: var(--color-bg);
   stroke-width: 2px;
}

/* -------------------------------- 

File#: _3_article-gallery-v5
Title: Article Gallery v5
Descr: A gallery of blog articles
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_article-v3
Title: Article v3
Descr: Article template
Usage: codyhouse.co/license

-------------------------------- */
.t-article-v3__hero {
   background-color: var(--color-contrast-lower);
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   padding: var(--space-xxl) 0;
   clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 2em), 0% 100%);
}

.t-article-v3__intro-text {
   padding: var(--space-md);
   color: var(--color-bg);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.75
   );
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   border-radius: var(--radius-lg);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
.t-article-v3__intro-text p {
   opacity: 0.75;
}

.t-article-v3__divider {
   display: flex;
   align-items: center;
}
.t-article-v3__divider span {
   display: block;
   margin: 0 var(--space-xs);
   height: 10px;
   width: 10px;
   transform: rotate(45deg);
   background-color: var(--color-contrast-low);
}
.t-article-v3__divider::before,
.t-article-v3__divider::after {
   content: "";
   display: block;
   height: 1px;
   width: auto;
   flex-grow: 1;
   background-color: var(--color-contrast-lower);
}

/* -------------------------------- 

File#: _3_carousel-v2
Title: Carousel v2
Descr: Display a list of items and navigate through them
Usage: codyhouse.co/license

-------------------------------- */
.carousel-v2 {
   --carousel-grid-gap: var(--space-md);
   --carousel-item-auto-size: 320px;
   --carousel-transition-duration: 0.5s;
}
.carousel-v2 .carousel__wrapper:hover .carousel-v2__control {
   opacity: 1;
}

.carousel-v2__control {
   --size: 60px;
   height: var(--size);
   width: var(--size);
   border-radius: 50%;
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.7);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   pointer-events: auto;
   cursor: pointer;
   margin: 0 var(--space-xxs);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.2s;
}
.carousel-v2__control:hover {
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
}
.carousel-v2__control[disabled] {
   display: none;
}
.carousel-v2__control:active {
   transform: translateY(2px);
}
.carousel-v2__control .icon {
   --size: 20px;
   display: block;
   color: var(--color-white);
}
@media (min-width: 64rem) {
   .carousel-v2__control {
      opacity: 0;
   }
}

.carousel-v2__navigation {
   display: none;
   grid-template-columns: repeat(auto-fit, 52px);
   grid-gap: var(--space-xs);
   justify-content: center;
   align-items: center;
   margin-top: var(--space-sm);
}

@media (min-width: 64rem) {
   .carousel-v2__navigation {
      display: grid;
   }
}
.carousel-v2__navigation-item {
   display: inline-block;
   margin: 0 var(--space-xxxs);
}
@supports (grid-area: auto) {
   .carousel-v2__navigation-item {
      margin: 0;
   }
}
.carousel-v2__navigation-item:not(.carousel-v2__navigation-item--selected) button {
   cursor: pointer;
}
.carousel-v2__navigation-item button {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 52px;
   height: 24px;
}
.carousel-v2__navigation-item button::before {
   content: "";
   display: block;
   width: 100%;
   height: 2px;
   background-color: hsla(
      var(--color-contrast-high-h),
      var(--color-contrast-high-s),
      var(--color-contrast-high-l),
      0.2
   );
}
.carousel-v2__navigation-item:not(.carousel-v2__navigation-item--selected) button:hover::before {
   background-color: hsla(
      var(--color-contrast-high-h),
      var(--color-contrast-high-s),
      var(--color-contrast-high-l),
      0.4
   );
   transition: 0.2s;
}

.carousel-v2__navigation-item--selected button::before {
   background-color: hsla(var(--color-contrast-high-h), var(--color-contrast-high-s), var(--color-contrast-high-l), 1);
}

/* -------------------------------- 

File#: _3_carousel-v3
Title: Carousel v3
Descr: Display a collection of items and navigate through them
Usage: codyhouse.co/license

-------------------------------- */
.carousel-v3 {
   --carousel-grid-gap: var(--space-xs);
   --carousel-item-auto-size: 260px;
   --carousel-transition-duration: 0.5s;
}

.carousel-v3__control {
   --size: 60px;
   height: var(--size);
   width: var(--size);
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.7);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   pointer-events: auto;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.2s;
}
.carousel-v3__control:hover {
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
}
.carousel-v3__control[disabled] {
   display: none;
}
.carousel-v3__control:active {
   transform: translateY(2px);
}
.carousel-v3__control .icon {
   --size: 20px;
   display: block;
   color: var(--color-white);
}

/* -------------------------------- 

File#: _3_column-chart
Title: Column Chart
Descr: Data visualisation using SVG Column Chart
Usage: codyhouse.co/license

-------------------------------- */
.chart--column {
   --chart-height: 360px;
   --chart-axis-stroke-width: 1px;
   --chart-guides-stroke-width: 1px;
}
.chart--column .chart__set--1 {
   --chart-data-color: var(--color-primary);
}
.chart--column .chart__set--2 {
   --chart-data-color: var(--color-contrast-higher);
}
.chart--column .chart__data-bar {
   transition: opacity 0.2s;
}
.chart--column .chart__data-bar--selected {
   opacity: 0.8;
}
.chart--column .chart__tooltip {
   font-size: var(--text-sm);
   box-shadow: var(--inner-glow), var(--shadow-md);
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   padding: var(--space-xs);
}
.chart--column .chart__axis-legend {
   font-size: 0.6em;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   fill: var(--color-contrast-low);
}
.chart--column .chart__axis-label {
   font-size: var(--text-xs);
}
.chart--column .chart__axis {
   stroke: var(--color-contrast-lower);
}
.chart--column .chart__tick {
   stroke: var(--color-contrast-lower);
}
.chart--column .chart__guides {
   stroke: var(--color-contrast-lower);
}

/* -------------------------------- 

File#: _3_dashboard-navigation
Title: Dashboard Navigation
Descr: Dashboard navigation template
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --app-ui-header-height: 50px;
   --app-ui-static-sidebar-width: 280px;
}

.app-ui .sidenav {
   --sidenav-list-item-padding-x: var(--space-md);
}

.app-ui__header {
   position: sticky;
   top: 0;
   display: flex;
   align-items: center;
   background-color: var(--color-bg);
   justify-content: space-between;
   height: var(--app-ui-header-height);
   z-index: 3;
}

.app-ui__logo-wrapper {
   position: relative;
   height: 100%;
   display: flex;
   align-items: center;
}

.app-ui__logo {
   display: block;
   width: 104px;
   height: 30px;
}
.app-ui__logo svg {
   display: block;
   width: inherit;
   height: inherit;
}

.app-ui__menu-btn {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 40px;
   height: 40px;
   font-size: 24px;
   color: var(--color-contrast-high);
   cursor: pointer;
   transition: 0.2s;
}
.app-ui__menu-btn .icon {
   display: block;
}
.app-ui__menu-btn .icon__group {
   stroke-width: 2px;
}
.app-ui__menu-btn .icon__group > * {
   stroke-dasharray: 24;
   transition:
      transform 0.3s var(--ease-in-out),
      stroke-dashoffset 0.3s,
      opacity 0.3s;
}
.app-ui__menu-btn .icon__group > *:nth-child(1) {
   transform-origin: 12px 6px;
}
.app-ui__menu-btn .icon__group > *:nth-child(2) {
   stroke-dashoffset: 0;
}
.app-ui__menu-btn .icon__group > *:nth-child(3) {
   transform-origin: 12px 18px;
}

.app-ui__nav {
   position: fixed;
   top: var(--app-ui-header-height);
   left: 0;
   width: 100%;
   height: calc(100% - var(--app-ui-header-height));
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   flex-direction: column;
   background-color: var(--color-bg);
   z-index: 2;
   display: none;
}

.app-ui__body {
   position: relative;
   min-height: calc(100vh - var(--app-ui-header-height));
   z-index: 1;
   background-color: var(--color-bg-dark);
}

.app-ui__header-btn,
.app-ui__user-btn {
   position: relative;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   text-decoration: none;
}

.app-ui__header-btn {
   display: flex;
   transition: background-color 0.3s;
   color: var(--color-contrast-high);
}
.app-ui__header-btn .icon {
   font-size: 20px;
   display: block;
   margin: auto;
}
.app-ui__header-btn:hover {
   cursor: pointer;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}

.app-ui__notification-indicator {
   position: absolute;
   top: 2px;
   right: 2px;
   width: 8px;
   height: 8px;
   background-color: var(--color-accent);
   box-shadow: 0 1px 3px hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.4);
   border-radius: 50%;
}

.app-ui__user-btn {
   display: block;
   overflow: hidden;
   transition: 0.3s;
}
.app-ui__user-btn img {
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}
.app-ui__user-btn:hover {
   opacity: 0.85;
}

.app-ui--nav-expanded .app-ui__nav {
   display: flex;
}
.app-ui--nav-expanded .app-ui__nav > * {
   animation: app-ui-nav-animation 0.5s var(--ease-out);
}
.app-ui--nav-expanded .app-ui__menu-btn .icon__group > *:nth-child(1) {
   transform: translateY(6px) rotate(-45deg);
}
.app-ui--nav-expanded .app-ui__menu-btn .icon__group > *:nth-child(2) {
   stroke-dashoffset: 24;
}
.app-ui--nav-expanded .app-ui__menu-btn .icon__group > *:nth-child(3) {
   transform: translateY(-6px) rotate(45deg);
}

@media (min-width: 64rem) {
   .app-ui .sidenav {
      --sidenav-list-item-padding-x: var(--space-sm);
   }
   .app-ui .expandable-search {
      --expandable-search-size-compact: 36px;
      --expandable-search-size-expanded: 220px;
      --expandable-search-icon-size: 20px;
   }
   .app-ui__nav {
      display: flex;
      width: var(--app-ui-static-sidebar-width);
      box-shadow: var(--shadow-xs);
   }
   .app-ui__logo-wrapper {
      width: var(--app-ui-static-sidebar-width);
   }
   .app-ui__logo-wrapper::after {
      content: "";
      position: absolute;
      right: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background-color: var(--color-contrast-lower);
   }
   .app-ui__body {
      min-height: 0;
      position: fixed;
      height: calc(100% - var(--app-ui-header-height));
      left: var(--app-ui-static-sidebar-width);
      width: calc(100% - var(--app-ui-static-sidebar-width));
      overflow: auto;
      -webkit-overflow-scrolling: touch;
   }
}
@keyframes app-ui-nav-animation {
   from {
      opacity: 0;
      transform: translateY(-10px);
   }
   to {
      opacity: 1;
      transform: translateY(0px);
   }
}
/* -------------------------------- 

File#: _3_drop-menu
Title: Drop Menu
Descr: An animated dropdown navigation
Usage: codyhouse.co/license

-------------------------------- */
.drop-menu {
   --drop-menu-item-height: 40px;
   --drop-menu-gap-y: 4px;
   --drop-menu-transition-duration: 0.3s;
   --drop-menu-width-desktop: 300px;
   display: inline-block;
   background-color: var(--color-bg-light);
   box-shadow: var(--inner-glow), var(--shadow-md);
   display: flex;
   flex-direction: column;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   min-height: 100%;
   z-index: var(--z-index-fixed-element, 10);
   pointer-events: none;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   transform: translateY(10px);
   transform-origin: center top;
   visibility: hidden;
   opacity: 0;
   transition:
      opacity var(--drop-menu-transition-duration),
      visibility 0s var(--drop-menu-transition-duration),
      transform var(--drop-menu-transition-duration) var(--ease-out);
}
.drop-menu::before {
   display: none;
   content: "mobile";
}

.drop-menu--is-visible {
   pointer-events: auto;
   transform: translateY(0);
   visibility: visible;
   opacity: 1;
   transition:
      opacity var(--drop-menu-transition-duration),
      transform var(--drop-menu-transition-duration) var(--ease-out);
}

.drop-menu__inner {
   position: relative;
   overflow: hidden;
   height: 100%;
   flex-shrink: 0;
   flex-grow: 1;
}

.drop-menu__close-btn {
   display: flex;
   width: 100%;
   align-items: center;
   justify-content: center;
   height: var(--drop-menu-item-height);
   text-align: center;
   background-color: var(--color-bg);
   box-shadow: var(--shadow-md);
   flex-shrink: 0;
   transition: 0.3s;
   margin-top: auto;
   position: sticky;
   z-index: 1;
   bottom: 0;
}
.drop-menu__close-btn:hover {
   box-shadow: var(--shadow-sm);
}

.drop-menu__list .drop-menu__list {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   visibility: hidden;
   opacity: 0;
   transform: translateX(100%);
}

.drop-menu__list {
   transition: var(--drop-menu-transition-duration) var(--ease-out);
}
.drop-menu__list.drop-menu__list--in,
.drop-menu__list.drop-menu__list--out {
   visibility: visible;
   opacity: 1;
   transform: translateX(0%);
}
.drop-menu__list.drop-menu__list--out > li > .drop-menu__search,
.drop-menu__list.drop-menu__list--out > li > .drop-menu__btn,
.drop-menu__list.drop-menu__list--out > li > .drop-menu__link {
   transform: translateX(-100%);
   opacity: 0;
   pointer-events: none;
   visibility: hidden;
}

.drop-menu__search-input,
.drop-menu__btn,
.drop-menu__link {
   height: var(--drop-menu-item-height);
   line-height: var(--drop-menu-item-height);
   width: 100%;
   padding: 0 var(--space-xs);
}

.drop-menu__search,
.drop-menu__search-input,
.drop-menu__btn,
.drop-menu__link {
   transition:
      background 0.2s,
      color 0.2s,
      transform var(--drop-menu-transition-duration) var(--ease-out),
      opacity var(--drop-menu-transition-duration),
      visibility var(--drop-menu-transition-duration);
}

.drop-menu__search {
   position: relative;
}

.drop-menu__search-input {
   padding-left: calc(var(--space-xs) + 1em + var(--space-xxxs));
}
.drop-menu__search-input::-webkit-search-decoration,
.drop-menu__search-input::-webkit-search-cancel-button,
.drop-menu__search-input::-webkit-search-results-button,
.drop-menu__search-input::-webkit-search-results-decoration {
   -webkit-appearance: none;
}
.drop-menu__search-input::-ms-clear,
.drop-menu__search-input::-ms-reveal {
   display: none;
   width: 0;
   height: 0;
}
.drop-menu__search-input:focus {
   outline: none;
}
.drop-menu__search-input:focus + .drop-menu__search-icon {
   color: var(--color-primary);
}

.drop-menu__search-icon {
   position: absolute;
   left: var(--space-xs);
   top: calc(50% - 0.5em);
   pointer-events: none;
   transition: 0.2s;
}

.drop-menu--searching .drop-menu__search-item ~ * {
   display: none;
}

.drop-menu__btn,
.drop-menu__link {
   cursor: pointer;
   min-width: 0;
}
.drop-menu__btn > *,
.drop-menu__link > * {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}
.drop-menu__btn:focus,
.drop-menu__link:focus {
   outline: none;
   color: var(--color-primary);
}
.drop-menu__btn:hover,
.drop-menu__link:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.drop-menu__btn:active,
.drop-menu__link:active {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}

.drop-menu__btn {
   text-align: left;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.drop-menu__link {
   display: block;
   color: inherit;
   text-decoration: none;
}

.drop-menu:not(.drop-menu--searching) .drop-menu__search-list {
   display: none;
}

.drop-menu__search-list {
   overflow: auto;
   -webkit-overflow-scrolling: touch;
}

@media (min-width: 48rem) {
   .drop-menu {
      min-height: 0;
      max-width: var(--drop-menu-width-desktop);
      border-radius: var(--radius-md);
   }
   .drop-menu::before {
      content: "desktop";
   }
   .drop-menu__inner {
      width: 100%;
      flex-grow: 0;
   }
   .drop-menu__close-btn {
      display: none;
   }
}
/* -------------------------------- 

File#: _3_expandable-img-gallery
Title: Expandable Image Gallery
Descr: Image gallery that expands in a modal media gallery on click
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --exp-gallery-animation-duration: 0.3s;
}

.exp-gallery-item-hidden {
   opacity: 0;
}

.exp-lightbox {
   transition: background var(--exp-gallery-animation-duration);
}
.exp-lightbox .menu-bar {
   --menu-bar-button-size: 2.2em;
   --menu-bar-icon-size: 1.2em;
   --menu-bar-horizontal-gap: var(--space-xxs);
   --menu-bar-vertical-gap: 4px;
   --menu-bar-label-size: var(--text-xs);
}
.exp-lightbox .slideshow {
   --slideshow-btn-width: 1.6em;
   --slideshow-btn-height: 3.2em;
   --slideshow-btn-icon-size: 1.6em;
   --slideshow-btn-offset: var(--component-padding);
}
.exp-lightbox .slideshow__content {
   position: relative;
}
.exp-lightbox:not(.modal--is-visible) {
   background-color: transparent;
}

.exp-lightbox__content {
   display: flex;
   flex-direction: column;
   width: 100%;
   height: 100%;
}

.exp-lightbox__header {
   position: relative;
   z-index: 2;
   flex-shrink: 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: var(--space-xs) var(--component-padding) 0;
}

.exp-lightbox__title {
   font-size: var(--text-md);
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   margin-right: var(--space-sm);
}

.exp-lightbox__body {
   position: relative;
   z-index: 1;
   flex-grow: 1;
   padding: var(--space-md);
}
@media (min-width: 64rem) {
   .exp-lightbox__body {
      padding-top: var(--space-xs);
      padding-bottom: var(--space-xs);
      padding-right: calc(var(--space-xs) + var(--slideshow-btn-width) + var(--slideshow-btn-offset));
      padding-left: calc(var(--space-xs) + var(--slideshow-btn-width) + var(--slideshow-btn-offset));
   }
}

.exp-lightbox {
   --slideshow-height: 100%;
}
.exp-lightbox .slideshow {
   display: flex;
   align-items: stretch;
}
.exp-lightbox .slideshow__content {
   flex-grow: 1;
}

.exp-lightbox--no-transition .slideshow__content * {
   transition: none !important;
   animation: none !important;
}

.exp-lightbox__media {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 100%;
   width: 100%;
   max-height: 100%;
   max-width: 100%;
}

.exp-lightbox__media-outer {
   position: relative;
   width: 100%;
   flex-grow: 1;
}
.slideshow__content--is-hidden .exp-lightbox__media-outer {
   opacity: 0;
}

.exp-lightbox__media-inner {
   position: absolute;
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}
.exp-lightbox__media-inner img {
   display: inline-block;
   height: auto;
   width: auto;
   max-height: 100%;
}

.exp-lightbox.modal--is-visible .slideshow[data-swipe="on"] .exp-lightbox__media-inner img {
   pointer-events: auto;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}

.exp-lightbox__caption {
   flex-shrink: 0;
   text-align: center;
   max-width: 600px;
   margin-top: var(--space-xs);
   font-size: var(--text-sm);
}

.exp-lightbox__media-outer {
   min-height: 200px;
}
@supports (display: flex) {
   .exp-lightbox__media-outer {
      min-height: 0;
   }
}

.exp-lightbox__clone-img-wrapper {
   position: fixed;
   top: 0;
   left: 0;
   z-index: var(--z-index-overlay, 15);
   pointer-events: none;
   visibility: hidden;
   opacity: 0;
   transform-origin: top left;
   transition: transform var(--exp-gallery-animation-duration) var(--ease-out);
   will-change: transform;
}
.exp-lightbox__clone-img-wrapper svg,
.exp-lightbox__clone-img-wrapper rect,
.exp-lightbox__clone-img-wrapper image {
   height: 100%;
   width: 100%;
}

.exp-lightbox__clone-img-wrapper--is-visible {
   visibility: visible;
   opacity: 1;
}

.exp-lightbox__body[data-zoom="on"] .exp-lightbox__media-inner img {
   cursor: zoom-in;
}

.exp-lightbox__zoom {
   position: fixed;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   z-index: 3;
   overflow: auto;
   background-color: var(--color-bg);
   cursor: zoom-out;
   visibility: hidden;
   opacity: 0;
   transition:
      opacity 0s 0.3s,
      visibility 0s 0.3s;
}
.exp-lightbox__zoom img {
   display: block;
   width: 100%;
   max-width: none;
   transform-origin: top left;
   transition: transform 0.3s;
}

.exp-lightbox__zoom--no-transition img {
   transition: none;
}

.exp-lightbox__zoom--is-visible {
   opacity: 1;
   visibility: visible;
   transition: none;
}

.exp-gallery img {
   display: block;
   width: 100%;
   transition: opacity 0.3s;
}
.exp-gallery img:hover {
   cursor: pointer;
   opacity: 0.85;
}

/* -------------------------------- 

File#: _3_explorer
Title: Explorer
Descr: Modal window with autocomplete search
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --explorer-input-height: 3em;
   --explorer-input-padding-x: var(--space-md);
   --explorer-input-padding-y: 0;
   --explorer-dropdown-max-items: 6;
   --explorer-result-item-height: 3em;
   --explorer-result-item-padding-x: var(--space-md);
   --explorer-result-item-padding-y: 0;
}

.explorer__input-wrapper {
   position: relative;
   border-bottom: 1px solid var(--color-contrast-lower);
}
.explorer__input-wrapper::before {
   content: "";
   position: absolute;
   left: 0;
   top: 20%;
   height: 60%;
   width: 3px;
   background-color: var(--color-primary);
   pointer-events: none;
   opacity: 0;
   transition: 0.2s;
}
.explorer__input-wrapper:focus-within::before {
   opacity: 1;
}

.explorer__input {
   height: var(--explorer-input-height);
   padding-top: var(--explorer-input-padding-y);
   padding-bottom: var(--explorer-input-padding-y);
   padding-left: var(--explorer-input-padding-x);
   padding-right: var(--explorer-input-padding-x);
}
.explorer__input:focus {
   outline: none;
}

.explorer__loader {
   --circle-loader-v1-size: 1em;
   --circle-loader-v1-stroke-width: 2px;
}

.explorer:not(.explorer--searching) .explorer__loader {
   display: none;
}

.explorer__results {
   max-height: calc(var(--explorer-dropdown-max-items) * var(--explorer-result-item-height));
   overflow: auto;
   -webkit-overflow-scrolling: touch;
}

.explorer__result {
   display: flex;
   align-items: center;
   width: 100%;
   height: var(--explorer-result-item-height);
   color: var(--color-contrast-high);
   text-decoration: none;
   text-align: left;
   padding-top: var(--explorer-result-item-padding-y);
   padding-bottom: var(--explorer-result-item-padding-y);
   padding-left: var(--explorer-result-item-padding-x);
   padding-right: var(--explorer-result-item-padding-x);
   transition: 0.3s;
}
.explorer__result:hover {
   cursor: pointer;
   color: var(--color-contrast-higher);
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.explorer__result:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}
.explorer__result:hover .explorer__icon,
.explorer__result:focus .explorer__icon {
   color: var(--color-contrast-higher);
}

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

.explorer__icon {
   display: flex;
   align-items: center;
   color: var(--color-contrast-medium);
   transition: 0.3s;
}

.explorer__shortcut {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 1.5em;
   height: 1.5em;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
   border-radius: var(--radius-md);
   font-size: var(--text-sm);
}

.explorer__label {
   --space-unit: 1em;
   display: inline-flex;
   background-color: var(--color-primary);
   padding: var(--space-xxxs) var(--space-xxs);
   border-radius: var(--radius-md);
   color: var(--color-white);
   font-size: 0.5em;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   line-height: 1;
   margin-top: var(--space-xxxxs);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

/* -------------------------------- 

File#: _3_faq-v3
Title: FAQ v3
Descr: Q&A template based on the table of contents and accordion components
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_feature-v14
Title: Feature v14
Descr: Feature content with tech devices
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_hero-video-bg
Title: Hero Background Video
Descr: Hero section variation w/ background video
Usage: codyhouse.co/license

-------------------------------- */
.hero-video-bg__video {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   overflow: hidden;
   z-index: 1;
}
.hero-video-bg__video video {
   position: relative;
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
   min-height: 100%;
   min-width: 100%;
   height: auto;
   width: auto;
   max-width: none;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
   .hero-video-bg__video video {
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%;
   }
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) and (-ms-ime-align: auto) {
   .hero-video-bg__video video {
      height: auto;
      width: auto;
   }
}
.hero-video-bg__video img {
   display: none;
}
@media (prefers-reduced-motion: reduce) {
   .hero-video-bg__video video {
      visibility: hidden;
   }
   .hero-video-bg__video img {
      display: block;
      position: absolute;
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%;
   }
}

.hero-video-bg__play-btn {
   --btn-size: 80px;
   width: var(--btn-size);
   height: var(--btn-size);
   display: inline-flex;
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.85
   );
   border-radius: 50%;
   cursor: pointer;
   transition: background-color 0.3s;
}
.hero-video-bg__play-btn .icon {
   display: block;
   margin: auto;
   color: var(--color-bg);
   font-size: 32px;
   transition: transform 0.3s var(--ease-out-back);
}
.hero-video-bg__play-btn:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      1
   );
}
.hero-video-bg__play-btn:hover .icon {
   transform: scale(1.2);
}

/* -------------------------------- 

File#: _3_how-it-works-v4
Title: How It Works v4
Descr: A list of steps showing how a product works
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_interactive-table
Title: Interactive Table
Descr: Table with the option of sorting data and selecting rows to perform specific actions
Usage: codyhouse.co/license

-------------------------------- */
.int-table {
   overflow: hidden;
   border-bottom: 2px solid var(--color-contrast-lower);
}

.int-table__inner {
   position: relative;
   overflow: auto;
}
.int-table__inner::-webkit-scrollbar {
   height: 8px;
   width: 8px;
}
.int-table__inner::-webkit-scrollbar-track {
   background-color: var(--color-contrast-lower);
}
.int-table__inner::-webkit-scrollbar-thumb {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.9
   );
   border-radius: 50em;
}
.int-table__inner::-webkit-scrollbar-thumb:hover {
   background-color: var(--color-contrast-higher);
}

.int-table__table {
   width: 100%;
}

.int-table__header .int-table__cell {
   background-color: var(--color-bg);
   box-shadow: 0 2px 0 var(--color-contrast-lower);
}

.int-table__body .int-table__row {
   border-bottom: 1px solid var(--color-contrast-lower);
}
.int-table__body .int-table__row:last-child {
   border-bottom: none;
}
.int-table__body .int-table__row--checked {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.1);
   border-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.25);
}

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

.int-table__cell--th {
   font-weight: 600;
}

.int-table__cell--sort {
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.int-table__cell--sort:hover,
.int-table__cell--sort:focus-within {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}
.int-table__cell--sort:hover {
   cursor: pointer;
}

.int-table__cell--focus {
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}

.int-table__sort-icon .arrow-up,
.int-table__sort-icon .arrow-down {
   fill: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.3);
}

.int-table__cell--asc .int-table__sort-icon .arrow-up,
.int-table__cell--desc .int-table__sort-icon .arrow-down {
   fill: var(--color-contrast-higher);
}

.int-table__checkbox {
   --custom-checkbox-size: 18px;
   --custom-checkbox-marker-size: 16px;
   display: block;
   width: var(--custom-checkbox-size);
   height: var(--custom-checkbox-size);
}

.int-table__menu-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 2em;
   height: 2em;
   border-radius: 50%;
}
.int-table__menu-btn .icon {
   display: block;
   width: 16px;
   height: 16px;
}
.int-table__menu-btn:hover,
.int-table__menu-btn.menu-control--active {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
   );
}
.int-table__menu-btn:active {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.075
   );
}

.int-table--sticky-header {
   position: relative;
   z-index: 1;
}
.int-table--sticky-header .int-table__inner {
   max-height: 480px;
}
.int-table--sticky-header .int-table__header .int-table__cell {
   position: sticky;
   top: 0;
   z-index: 2;
}

.int-table-actions .menu-bar {
   --menu-bar-button-size: 38px;
   --menu-bar-icon-size: 16px;
   --menu-bar-horizontal-gap: var(--space-xxxxs);
   --menu-bar-vertical-gap: 4px;
   --menu-bar-label-size: var(--text-xs);
}
.int-table-actions .menu-bar__icon {
   color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.5);
}

/* -------------------------------- 

File#: _3_intro-v2
Title: Intro v2
Descr: Intro section including the main header and 2 content blocks
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_intro-v3
Title: Intro v3
Descr: Intro section including the main header and a feature block
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_light-dark-switch
Title: Light/Dark Switch
Descr: Color theme switcher
Usage: codyhouse.co/license

-------------------------------- */
.ld-switch-btn {
   position: relative;
   width: 24px;
   height: 24px;
   overflow: hidden;
   display: inline-block;
   transition:
      opacity 0.2s,
      color 0.2s;
}
.ld-switch-btn:hover {
   cursor: pointer;
   opacity: 0.8;
}
.ld-switch-btn:focus {
   outline: none;
   color: var(--color-primary);
}

.ld-switch-btn.popover-control--active {
   /* class added to the control button when the dropdown is visible */
   color: var(--color-primary);
}

.ld-switch-btn__icon-wrapper {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   opacity: 0;
   transform: translateY(100%) rotate(35deg) scale(0.5);
}

.ld-switch-btn__icon-wrapper--in {
   opacity: 1;
   transform: translateY(0) rotate(0) scale(1);
}

.ld-switch-btn__icon-wrapper--out {
   opacity: 0;
   transform: translateY(-100%) rotate(-35deg) scale(0.5);
}

.ld-switch-btn__icon-wrapper--in,
.ld-switch-btn__icon-wrapper--out {
   transition:
      transform 0.3s var(--ease-in-out),
      opacity 0.3s;
}

.ld-switch-btn__icon {
   margin: auto;
   --size: 20px; /* icon size */
}

.popover.ld-switch-popover {
   --popover-width: 250px;
}

.ld-switch-popover__option {
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   transition: opacity 0.2s;
}
.ld-switch-popover__option:hover {
   cursor: pointer;
   opacity: 0.85;
}
.ld-switch-popover__option:focus {
   outline: none;
}
.ld-switch-popover__option:focus figure {
   box-shadow:
      0 0 0 1px var(--color-bg-light),
      0 0 0 3px var(--color-contrast-higher);
}
.ld-switch-popover__option[aria-selected="true"] {
   color: var(--color-primary);
}
.ld-switch-popover__option[aria-selected="true"] figure {
   box-shadow:
      0 0 0 1px var(--color-bg-light),
      0 0 0 3px currentColor;
}

/* -------------------------------- 

File#: _3_lightbox
Title: Lightbox
Descr: A modal media gallery
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --lightbox-thumbnail-size: 80px;
   --lightbox-thumbnail-grid-gap: var(--space-xxs);
}

.lightbox .menu-bar {
   --menu-bar-button-size: 2.2em;
   --menu-bar-icon-size: 1.2em;
   --menu-bar-horizontal-gap: var(--space-xxs);
   --menu-bar-vertical-gap: 4px;
   --menu-bar-label-size: var(--text-xs);
}
.lightbox .slideshow {
   --slideshow-btn-width: 1.6em;
   --slideshow-btn-height: 3.2em;
   --slideshow-btn-icon-size: 1.6em;
   --slideshow-btn-offset: var(--component-padding);
}

.lightbox {
   background-color: var(--color-bg);
}
.lightbox .slideshow__content {
   position: relative;
}

.lightbox__content {
   display: flex;
   flex-direction: column;
   width: 100%;
   height: 100%;
}

.lightbox__header,
.lightbox__footer {
   position: relative;
   z-index: 2;
   flex-shrink: 0;
}

.lightbox__header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: var(--space-xs) var(--component-padding) 0;
}

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

.lightbox__title {
   font-size: var(--text-md);
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   margin-right: var(--space-sm);
}

.lightbox__body {
   position: relative;
   z-index: 1;
   flex-grow: 1;
   padding: var(--space-md);
}
@media (min-width: 64rem) {
   .lightbox__body {
      padding-top: var(--space-xs);
      padding-bottom: var(--space-xs);
      padding-right: calc(var(--space-xs) + var(--slideshow-btn-width) + var(--slideshow-btn-offset));
      padding-left: calc(var(--space-xs) + var(--slideshow-btn-width) + var(--slideshow-btn-offset));
   }
}

.lightbox {
   --slideshow-height: 100%;
}
.lightbox .slideshow {
   display: flex;
   align-items: stretch;
}
.lightbox .slideshow__content {
   flex-grow: 1;
}

.lightbox--no-transition .slideshow__content * {
   transition: none !important;
   animation: none !important;
}

.lightbox__media {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 100%;
   width: 100%;
   max-height: 100%;
   max-width: 100%;
}

.lightbox__media-outer {
   position: relative;
   width: 100%;
   flex-grow: 1;
}

.lightbox__media[data-media="video"] .lightbox__media-outer,
.lightbox__media[data-media="iframe"] .lightbox__media-outer {
   max-width: 100%;
   max-height: 100%;
   overflow: hidden;
}

.lightbox__media-inner {
   position: absolute;
   width: 100%;
}

.lightbox__media[data-media="img"] .lightbox__media-inner {
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}
.lightbox__media[data-media="img"] .lightbox__media-inner img {
   display: inline-block;
   height: auto;
   width: auto;
   max-height: 100%;
}

.lightbox__media[data-media="video"] .lightbox__media-inner,
.lightbox__media[data-media="iframe"] .lightbox__media-inner {
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
}

.lightbox__caption {
   flex-shrink: 0;
   text-align: center;
   max-width: 600px;
   margin-top: var(--space-xs);
   font-size: var(--text-sm);
}

.lightbox__text-outer {
   display: flex;
   flex-direction: column;
   justify-content: center;
   height: 100%;
   overflow: hidden;
}

.lightbox__text {
   overflow: auto;
}

.lightbox__media-outer {
   min-height: 200px;
}
@supports (display: flex) {
   .lightbox__media-outer {
      min-height: 0;
   }
}

.lightbox_thumb-nav {
   display: flex;
   width: 100%;
   overflow: hidden;
}

.lightbox_thumb-list {
   display: inline-flex;
   overflow: auto;
   flex-wrap: nowrap;
}
.lightbox_thumb-list:hover .lightbox__thumb {
   opacity: 0.6;
}

.lightbox__thumb {
   display: inline-block;
   width: var(--lightbox-thumbnail-size);
   height: var(--lightbox-thumbnail-size);
   border-radius: var(--radius-sm);
   margin-right: var(--lightbox-thumbnail-grid-gap);
   flex-shrink: 0;
   flex-grow: 0;
   cursor: pointer;
   transition: opacity 0.3s;
}
.lightbox__thumb:hover {
   opacity: 1 !important;
}
.lightbox__thumb img {
   display: block;
   border-radius: inherit;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
   .lightbox__thumb img {
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%;
   }
}

.lightbox__thumb--active {
   position: relative;
   opacity: 1 !important;
}
.lightbox__thumb--active::after {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.7)
      url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg stroke-width='1.5' stroke='%23ffffff'%3E%3Cpolyline fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' points='1,9 5,13 15,3 ' %3E%3C/polyline%3E%3C/g%3E%3C/svg%3E")
      no-repeat center center;
   background-size: 1.25em;
   border-radius: inherit;
   -webkit-backdrop-filter: blur(5px);
   backdrop-filter: blur(5px);
}

/* -------------------------------- 

File#: _3_line-chart
Title: Line Chart
Descr: Data visualisation using SVG Line Chart
Usage: codyhouse.co/license

-------------------------------- */
.chart--line {
   --chart-height: 360px;
   --chart-data-line-stroke-width: 2px;
   --chart-marker-size: 6px;
   --chart-axis-stroke-width: 1px;
   --chart-guides-stroke-width: 1px;
   --chart-y-indicator-dash: 3px;
   --chart-y-indicator-stroke-width: 1px;
}
.chart--line .chart__set--1 {
   --chart-data-color: var(--color-primary);
}
.chart--line .chart__set--2 {
   --chart-data-color: var(--color-accent);
}
.chart--line .chart__tooltip {
   font-size: var(--text-sm);
   box-shadow: var(--inner-glow), var(--shadow-md);
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   padding: var(--space-xs);
}
.chart--line .chart__y-indicator {
   stroke: var(--color-contrast-low);
}
.chart--line .chart__axis-legend {
   font-size: 0.6em;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   fill: var(--color-contrast-low);
}
.chart--line .chart__axis-label {
   font-size: var(--text-xs);
}
.chart--line .chart__axis {
   stroke: var(--color-contrast-lower);
}
.chart--line .chart__tick {
   stroke: var(--color-contrast-lower);
}
.chart--line .chart__guides {
   stroke: var(--color-contrast-lower);
}
.chart--line .chart__marker {
   fill: var(--chart-data-color);
   stroke: var(--color-bg);
   stroke-width: 2px;
}

/* -------------------------------- 

File#: _3_looping-slideshow-v2
Title: Looping Slideshow v2
Descr: A video slideshow looping among items with a visula progress indicator
Usage: codyhouse.co/license

-------------------------------- */
.loop-slideshow-v2__control {
   height: 48px;
   width: 48px;
   border-radius: 50%;
   cursor: pointer;
   transition: transform 0.2s;
   will-change: transform;
}
.loop-slideshow-v2__control:active {
   transform: translateY(2px);
}
.loop-slideshow-v2__control .icon {
   --size: inherit;
}

/* circle button loader */
.loop-slideshow-v2__loader {
   --loop-slideshow-filling-v2: 144.44;
   stroke-dashoffset: var(--loop-slideshow-filling-v2);
}

/* slideshow navigation */
.loop-slideshow-v2__navigation {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: var(--space-md);
}

.loop-slideshow-v2__nav-item {
   --loop-slideshow-filling-v2: 0;
   margin: 0 var(--space-xxxs);
}

/* footer navigation controls */
.loop-slideshow-v2__nav-btn {
   display: block;
   position: relative;
   overflow: hidden;
   height: 4px;
   width: 60px;
   border-radius: 50em;
   background-color: var(--color-contrast-lower);
   cursor: pointer;
   /* filling effect */
}
.loop-slideshow-v2__nav-btn:focus-visible {
   outline: 2px solid var(--color-primary);
   outline-offset: 2px;
}
.loop-slideshow-v2__nav-btn::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   transform: scaleX(var(--loop-slideshow-filling-v2));
   transform-origin: left center;
   background-color: var(--color-primary);
}

@media (min-width: 64rem) {
   .loop-slideshow-v2__navigation {
      padding: var(--space-sm);
   }
   .loop-slideshow-v2__nav-btn {
      height: 8px;
      width: 8px;
      border-radius: 50%;
      background-color: currentColor;
      opacity: 0.4;
   }
   .loop-slideshow-v2__nav-btn:focus-visible {
      outline: 1px solid currentColor;
   }
   .loop-slideshow-v2__nav-btn::before {
      display: none;
   }
   .loop-slideshow-v2__nav-item--selected .loop-slideshow-v2__nav-btn {
      opacity: 1;
   }
}
/* -------------------------------- 

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_main-header-v2
Title: Main Header v2
Descr: Accessible website navigation w/ sub navigations
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --header-v2-height: 50px;
}
@media (min-width: 80rem) {
   :root {
      --header-v2-height: 70px;
   }
}

.header-v2 {
   width: 100%;
}

.header-v2,
.header-v2__wrapper {
   position: relative;
   z-index: var(--z-index-header, 3);
   height: var(--header-v2-height);
}

.header-v2__container {
   display: flex;
   position: relative;
   height: 100%;
   align-items: center;
   justify-content: space-between;
}

.header-v2__logo {
   flex-shrink: 0;
}
.header-v2__logo a,
.header-v2__logo svg {
   display: block;
}

.header-v2__nav-control {
   --anim-menu-btn-size: 40px;
   --anim-menu-btn-icon-size: 24px;
   --anim-menu-btn-icon-stroke: 2px;
}

.header-v2__nav {
   top: var(--header-v2-height);
   left: 0;
   width: 100%;
   padding: var(--space-sm);
   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);
   position: absolute;
   clip: rect(1px, 1px, 1px, 1px);
   clip-path: inset(50%);
   height: 0;
   overflow: hidden;
   visibility: hidden;
}

.header-v2__nav--is-visible {
   clip: auto;
   clip-path: none;
   height: auto;
   max-height: calc(100vh - var(--header-v2-height) - var(--space-md));
   overflow: auto;
   overscroll-behavior: contain;
   -webkit-overflow-scrolling: touch;
   visibility: visible;
}

.header-v2__nav-list--main:nth-child(2) {
   border-top: 1px solid var(--color-contrast-lower);
   margin-top: var(--space-md);
   padding-top: var(--space-md);
}

.header-v2__nav-item .btn {
   width: 100%;
   font-size: var(--text-md);
   margin: var(--space-xxs) 0;
}

.header-v2__nav-item--main {
   margin-bottom: var(--space-sm);
}

.header-v2__nav-item--label {
   text-transform: uppercase;
   font-size: 0.6rem;
   letter-spacing: 0.1em;
   color: var(--color-contrast-medium);
   padding: var(--space-xxs) 0;
}

.header-v2__nav-item--divider {
   height: 1px;
   background-color: var(--color-contrast-lower);
   margin: var(--space-md) 0;
}

.header-v2__nav-item--search-btn {
   display: none;
}

.header-v2__nav-dropdown-icon {
   display: none;
}

.header-v2__nav-link {
   display: flex;
   align-items: center;
   padding: var(--space-xs) 0;
   text-decoration: none;
   color: var(--color-contrast-high);
}
.header-v2__nav-link:hover,
.header-v2__nav-link[aria-current] {
   color: var(--color-contrast-higher);
}

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

.header-v2__nav-list--title-desc .header-v2__nav-link {
   display: flex;
}
.header-v2__nav-list--title-desc .header-v2__nav-link .header-v2__nav-icon {
   margin-right: var(--space-xs);
   flex-shrink: 0;
}
.header-v2__nav-list--title-desc .header-v2__nav-link strong {
   display: block;
}
.header-v2__nav-list--title-desc .header-v2__nav-link small {
   color: var(--color-contrast-medium);
}
.header-v2__nav-list--title-desc .header-v2__nav-link:hover small {
   color: var(--color-contrast-high);
}

.header-v2__nav-col-2 {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   grid-gap: var(--space-sm);
}

@media (min-width: 80rem) {
   .header-v2[data-animation="on"] .header-v2__wrapper--is-fixed {
      position: fixed;
      top: calc(-1 * var(--header-v2-height));
      left: 0;
      width: 100%;
      background-color: var(--color-bg);
      z-index: var(--z-index-fixed-element, 10);
      transition: transform 0.2s;
   }
   .header-v2[data-animation="on"] .header-v2__wrapper--slides-down {
      transform: translateY(100%);
      box-shadow: var(--shadow-sm);
   }
   .header-v2__nav-control {
      display: none;
   }
   .header-v2__logo {
      margin-right: var(--space-sm);
   }
   .header-v2__nav {
      position: static;
      clip: auto;
      clip-path: none;
      height: auto;
      max-height: none;
      overflow: visible;
      overscroll-behavior: auto;
      visibility: visible;
      padding: 0;
      background-color: transparent;
      border-radius: 0;
      box-shadow: none;
      display: flex;
      justify-content: space-between;
   }
   .header-v2__nav-list--main {
      display: flex;
      align-items: center;
   }
   .header-v2__nav-item {
      position: relative;
   }
   .header-v2__nav-item .btn {
      width: auto;
      font-size: 1.125rem;
      margin: 0;
   }
   .header-v2__nav-item--main {
      display: inline-block;
      margin-bottom: 0;
      margin-left: var(--space-md);
   }
   .header-v2__nav-item--main > .header-v2__nav-link {
      padding: var(--space-xxs) 0;
      font-size: 1.125rem;
   }
   .header-v2__nav-item--main.header-v2__nav-item--divider {
      margin-top: 0;
      margin-bottom: 0;
      margin-right: 0;
      width: 1px;
      height: 1em;
   }
   .header-v2__nav-list--main:last-child {
      border-top: none;
      margin-top: 0;
      padding-top: 0;
   }
   .header-v2__nav-dropdown-icon {
      display: block;
   }
   .header-v2__nav-item--search {
      display: none;
   }
   .header-v2__nav-item--search-btn {
      display: inline-block;
   }
   .header-v2__nav-item--search-btn button,
   .header-v2__nav-item--search-btn .icon {
      display: block;
   }
   .header-v2__nav-item--search-btn button {
      width: 24px;
      height: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.2s;
      cursor: pointer;
   }
   .header-v2__nav-item--search-btn button:hover {
      opacity: 0.65;
   }
   .header-v2__nav-dropdown {
      --space-unit: 1rem;
      position: absolute;
      top: 100%;
      left: calc(50% - 100px);
      z-index: var(--z-index-popover, 5);
      width: 200px;
      background-color: var(--color-bg-light);
      border-radius: var(--radius-md);
      box-shadow: var(--inner-glow), var(--shadow-md);
      padding: var(--space-xxs) 0;
      transition:
         opacity 0.2s,
         visibility 0.2s;
      visibility: hidden;
      opacity: 0;
   }
   .header-v2__nav-item--main > .header-v2__nav-dropdown {
      --text-unit: 1rem;
      font-size: var(--text-unit);
   }
   .header-v2__nav-dropdown .header-v2__nav-link,
   .header-v2__nav-dropdown .header-v2__nav-item--label {
      padding-left: var(--space-xs);
      padding-right: var(--space-xs);
   }
   .header-v2__nav-dropdown .header-v2__nav-link:hover,
   .header-v2__nav-dropdown .header-v2__nav-link--hover {
      background-color: hsla(
         var(--color-contrast-higher-h),
         var(--color-contrast-higher-s),
         var(--color-contrast-higher-l),
         0.075
      );
   }
   .header-v2__nav-dropdown .header-v2__nav-dropdown--nested {
      left: 100%;
      top: calc(var(--space-xs) * -1);
   }
   .header-v2__nav-dropdown .header-v2__nav-dropdown--nested-left {
      left: auto;
      right: 100%;
   }
   .header-v2__nav-dropdown .header-v2__nav-item--divider {
      margin: var(--space-xs) 0;
   }
   .header-v2__nav-dropdown--sm {
      width: 200px;
      left: calc(50% - 100px);
   }
   .header-v2__nav-dropdown--md {
      width: 300px;
      left: calc(50% - 150px);
   }
   .header-v2__nav-dropdown--lg {
      width: 480px;
      left: calc(50% - 240px);
   }
   .header-v2__nav-list--title-desc .header-v2__nav-link {
      padding: var(--space-xs) var(--space-sm);
   }
   .header-v2__nav-list--is-visible,
   .header-v2__nav-item--has-children:hover > .header-v2__nav-dropdown {
      visibility: visible;
      opacity: 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_overscroll-gallery
Title: Overscroll Gallery
Descr: A sticky section with an image gallery scrolling over
Usage: codyhouse.co/license

-------------------------------- */
.overscroll-gallery.masonry {
   --masonry-grid-gap: 0px;
   --masonry-col-auto-size: 480px;
}

.overscroll-gallery__link {
   display: block;
}
.overscroll-gallery__link:hover {
   cursor:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Ccircle opacity='0.9' cx='24' cy='24' r='24'/%3E%3Cline x1='15' y1='33' x2='33' y2='15' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpolyline points='23 15 33 15 33 25' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E")
         24 24,
      pointer;
   cursor:
      -webkit-image-set(
            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsSAAALEgHS3X78AAACmUlEQVRogeWaTWrbQBiG329ol4Fgb0qJ9wWfIFl4F5ID1OQCOYAhBwg5QKAH8NJgh3TvmOy8sE9g6NLgtivXm0AplPYr435yLVlSJI1mRk4fCCGxNXpezWg0PyJmhilEdAzgBID+3QBwlFDkZwALAFMAE2aeGp+7aACRvgBwDuCg4PmfADwAuCsaJncAEb+Sq10mOsBt3iCZAxCRbho3AM5KFo8yAnDNzItMXlkCEJFuJh8MmkpedNPqMPODcQAi0lf90pF4lC4zX6d9ITUAEemr3rYs+Rz3zNxJ+o5K+qAi8pq2uMQSG0CaTRXkA9ritMNOALlhfbX5NC7FLUToHpCu8tFhb5MX3Tudbnex0Rq4qbA8xC3UlDYB5Alr+yFVBmfiGg4gw4N94SoUQBKVOrbp9/uHzPw2y89yuXyTs/jjoBaCGrgoUz4v9Xo98XmUwtp53QsR0SeXN2+tVlPj8bjebDZfB/8joq85i3li5ndKqsKL/Gw2+2lQ1IF2VzKTckJUvtVqfTM874myMDGJJU5+tVr9Nix2XQMNS84bLMlrGiplAl4KFuU1R0W6r8xYll9jLYALedgK4Epe86rsAvPKDwaD7ybnIwBfTArYxuWVD1Cy3GeMD3ntrmSt0ghP8pqFkiW9wniU10x1gMmeymsmhYfTFZD/O5yWP55dg4zS6/UOPcojcA4C3OU9ej6f/xoOhz88ySNw3qwLEdFHV0PrEpgy83tEhhK3eyKPbddNANkZGXlTys5oexfnZS0tygeJa/EVoBPdetoZTsu2TreC8t24LafEHZoKbXAgbZcmcUIjB9xb1cpGsS0m/Avhszl10+TxErZZM82JpaBTR8+JkXSVmcZn/8+rBjsH7uvLHrGF+HrdBsAfXZHRMf5cb0QAAAAASUVORK5CYII=")
               1x,
            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAABYlAAAWJQFJUiTwAAAFfklEQVR4nO2dT28bRRjGnzcCCaE64VhBekeFS06Q3CP1XuJ+gLbJNSGRckR8gEKviZMPEJvcK1XKMYFTTkTcbRBHYksIgdRB4767Wq+99nh3ZnZmZ37SKs2f7sw+j+f/7DskhICLENEmgC8BrALY5CxuKmb1JvO1Ly8hxM2C/1MLzhjAgm+xyKpCL8sNX9euGFKrASz6MwBPALQsJz8C8AbARZ1mWDeAiGSV8hJAG8C61cSLGQDoAugIIYY2E7ZmABE9AnAIYMdKguXpAXglhOjbSMy4AR4Jn8eKEUYNIKJDrm5s1++6GHG19MpUAkYM4Mb1tUN1fFVkG7FvorHWbgARfQ/ghdabusOZEOI7nbnRZgARfcGf+sdabugud1waftWRwxUdNyEi2Y+/DEB88DNe8jNXprIBRCQb2XOPG9oyyGc9J6J21RtVqoKI6LWH3Uvd9IQQ+2XvWboERPFTdliLUpQyIIo/RWkTljYgil9IKROWMoAb3Ch+MTvLNszKjTB3u861Zre5PBdCvFHSVcUAHmRdBtbVrIKcQ3qqMlhTNeBtIIMsndwJIbYX3W9hG8BzO1H85XnM2s1lbgngWc2fnHw8f/hm3izqIgN+adCUcl0MhBBfFaVdWAXxYkoUvzrrrOVMZpYAXkZ8G3s92pC9ou1Zy5tFJeAwiq+VFms6xVQJ4E//zz4/rcN8nS8Fs0pAYX0VqcyUthMG8KYpp+d6dnd3Px4Ohw+FEJ/qvO7v7x8eHx8/MJz9HdY4ZaIK4tb6W8OZqIQUv9VqaVlKzTMcDt+tra39afgRfshuc8k/SOUlNp9ZXV01YmyOCY3TBHnU63y//+joaDgajd45kJWyrLPWY9IqKJSFFtmGnJycfFL0eyL6w0I20nXkrAG/Nb3vv0h82DNgJIT4HEkVxEUiePEt0kqqoaQN2HIkY0YoEn9vb++vGrM11jwxwNQrQbUzT/zT09O/a8zfRAlopAEOi4/UgGyXqEk4Lv4Yqf0KvwraKHwQn3m0wu/hNgaPxEdiQGOqIM/El2zamPuwgofijyEAvzuQj0pUEV9ORWe/tzQSTvG+BPj6yU/w2gDfxYfPBjRBfPhqQFPEh48GNEl8+GZA08SHTwaYEj+7vFnHUqcXBpj85CdrzPKS/66U0RI4PxBrYrWTZSUT4M45mi6+1N7ZKigA8cc4WQJCET8pAVZio6kSkPiSvlMGBCa+pD/emEVEtfeEAhRfToV/ljTCtbYDIYqfaF67AYGKj7wB13XkIGDxkWhe2+bcwMWf3JzLKEX30EHg4iOrddaACxspt9vtjwIXH1mtUwM4nsHAdMobGxsf5n8WmPiDbOyI/FxQ13ZuAhMfeY0/yP2yY/otyaurq3/51X3c3t7+1+12/zGZnoN0slma9aZ8DMpnjqkYozFUgV0WhyrgP+g18/lrpTcrWkoMV2OH5cLV8B927OQtCDpFR6HEkGXmKReyjCkdFTyipuFcA3jEdha1LM3ZonNnYuBWc+gJ3MrsJ6PXiBIj1epbyQCOgRzbA3WUD/lR3pjF0cAPzOfdew5UI6dj2c25QohuHCXPpccaKbP01kSeTIomTFPqMJ9Se0OjCVOUPkmp9ObcaEJKpWOsKh9lyGem/FjpJv5ysGydn6fy9nTOwPPAxgkjPiem8hKulvcDuNv1lA+6bDp3fD6Mlm082l7QkAMPHno3ee5Izu1s6zpJFfFAZ2X8OdB54ubxSPOFxEP9i/H/UP+JhPwxworwCdYMSBN8Hz//JUcRd6WNGPCONVndWH1Z27oBE4m/b6yfAXhSQzsx4l3KFyYaV1VqNSALm7HFQQRNBRK84eu6TtGzOGNAHjZEthvySgxRNSYRV36VdXnfFcEnAPA/nk5jw1+YZE8AAAAASUVORK5CYII=")
               2x
         )
         24 24,
      pointer;
}

/* -------------------------------- 

File#: _3_product-color-feature
Title: Product Color Feature
Descr: A section displaying the color variations of a product
Usage: codyhouse.co/license

-------------------------------- */
.prod-color-feature {
   --slideshow-height: auto;
}

@media (min-width: 64rem) {
   .prod-color-feature .color-swatches {
      --color-swatch-size: 24px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin: 0 !important;
   }
   .prod-color-feature .color-swatches__legend {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
   }
   .prod-color-feature .color-swatches__list {
      grid-template-columns: var(--color-swatch-size);
   }
}
/* -------------------------------- 

File#: _3_product
Title: Product
Descr: Product info section with CTA
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_products-gallery-v2
Title: Products Gallery v2
Descr: A gallery of product cards
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_select-autocomplete
Title: Select Autocomplete
Descr: Selection dropdown with autocomplete
Usage: codyhouse.co/license

-------------------------------- */
.select-auto.autocomplete {
   --autocomplete-dropdown-vertical-gap: 4px; /* gap between input and results list */
   --autocomplete-dropdown-max-height: 250px;
   --autocomplete-dropdown-scrollbar-width: 6px; /* custom scrollbar - webkit browsers */
}

/* input */
.select-auto__input-wrapper {
   --input-btn-icon-size: 16px; /* btn/icon size */
   --input-btn-icon-margin-right: var(--space-xs); /* btn/icon size */
   --input-btn-text-gap: var(--space-xxs); /* gap between button/icon and text */
   position: relative;
}
.select-auto__input-wrapper .form-control {
   width: 100%;
   height: 100%;
   padding-right: calc(var(--input-btn-text-gap) + var(--input-btn-icon-size) + var(--input-btn-icon-margin-right));
}

.select-auto__input-icon-wrapper .icon,
.select-auto__input-btn .icon {
   display: block;
   margin: auto;
   width: var(--input-btn-icon-size, 16px);
   height: var(--input-btn-icon-size, 16px);
}

.select-auto__input-icon-wrapper {
   position: absolute;
   right: var(--input-btn-icon-margin-right);
   top: 50%;
   transform: translateY(-50%);
   display: inline-flex;
   pointer-events: none;
}

.select-auto__input-btn {
   /* search cancel button */
   display: none;
   justify-content: center;
   align-items: center;
   pointer-events: auto;
   cursor: pointer;
   color: var(--color-contrast-medium); /* icon color */
   transition: 0.3s;
}
.select-auto__input-btn:hover {
   color: var(--color-contrast-high);
}
.select-auto__input-btn:active {
   transform: translateY(2px);
}

.select-auto--selection-done .select-auto__input-icon-wrapper > .icon {
   display: none;
}
.select-auto--selection-done .select-auto__input-btn {
   display: inline-flex;
}

/* dropdown */
.select-auto__results {
   /* reset spacing and typography */
   --space-unit: 1rem;
   --text-unit: 1rem;
   font-size: var(--text-unit);
}

/* single result item */
.select-auto__option {
   position: relative;
   cursor: pointer;
   transition: 0.2s;
}
.select-auto__option:hover {
   background-color: hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.05
   );
}
.select-auto__option:focus {
   outline: none;
   background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.12);
}
.select-auto__option.select-auto__option--selected {
   background-color: var(--color-primary);
   color: var(--color-white);
   padding-right: calc(1em + var(--space-sm));
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
.select-auto__option.select-auto__option--selected:focus {
   background-color: var(--color-primary-dark);
}
.select-auto__option.select-auto__option--selected::after {
   content: "";
   position: absolute;
   right: var(--space-sm);
   top: calc(50% - 0.5em);
   height: 1em;
   width: 1em;
   background-color: currentColor;
   -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
   mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
}

.select-auto__group-title,
.select-auto__no-results-msg {
   outline: none;
}

/* -------------------------------- 

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#: _3_testimonial-slideshow
Title: Testimonial Slideshow
Descr: A Slideshow to display a gallery of testimonials
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --testimonial-slideshow-profile-img-size: 48px;
}
@media (min-width: 64rem) {
   :root {
      --testimonial-slideshow-profile-img-size: 64px;
   }
}

.testimonial-slideshow {
   --slideshow-height: 320px;
}
@media (min-width: 64rem) {
   .testimonial-slideshow {
      --slideshow-height: 420px;
   }
}

.testimonial-slideshow__profile-img {
   width: var(--testimonial-slideshow-profile-img-size);
   height: var(--testimonial-slideshow-profile-img-size);
   overflow: hidden;
}
.testimonial-slideshow__profile-img img {
   display: block;
   width: 100%;
}

/* -------------------------------- 

File#: _3_thumbnail-slideshow
Title: Thumbnail Slideshow
Descr: Show a collection of items one at a time with additional preview images for easier selection
Usage: codyhouse.co/license

-------------------------------- */
:root {
   --thumbslide-thumbnail-auto-size: 100px;
   --thumbslide-thumbnail-grid-gap: var(--space-xs);
}

.thumbslide .slideshow {
   --slideshow-fade-transition-duration: 0.3s;
   --slideshow-slide-transition-duration: 0.3s;
}

.thumbslide__nav {
   display: flex;
   overflow: hidden;
   padding: var(--thumbslide-thumbnail-grid-gap) 0;
   position: relative;
}
.thumbslide__nav::after,
.thumbslide__nav::before {
   content: "";
   position: absolute;
   z-index: 2;
   height: 80%;
   width: 0;
   top: 10%;
   box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.9);
   pointer-events: none;
   transition: opacity 0.2s;
   opacity: 0;
}
.thumbslide__nav::before {
   left: 0;
}
.thumbslide__nav::after {
   right: 0;
}

.thumbslide__nav--scroll-end::after {
   opacity: 1;
}

.thumbslide__nav--scroll-start::before {
   opacity: 1;
}

.thumbslide__nav-list {
   position: relative;
   z-index: 1;
   display: inline-flex;
   flex-wrap: nowrap;
   align-items: center;
   will-change: transform;
   transition: transform 0.5s;
}
.thumbslide__nav-list:hover .thumbslide__nav-item {
   opacity: 0.6;
}

.thumbslide__nav-list--dragging {
   cursor: grabbing;
}

.thumbslide__nav-list--no-transition {
   transition: none;
}

.thumbslide__nav-item {
   float: left;
   flex-shrink: 0;
   width: var(--thumbslide-thumbnail-auto-size);
   margin-right: var(--thumbslide-thumbnail-grid-gap);
   transition:
      opacity 0.3s,
      transform 0.3s;
   will-change: transform, opacity;
   backface-visibility: hidden;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}
.thumbslide__nav-item img {
   display: block;
   pointer-events: none;
}
.thumbslide__nav-item:hover {
   opacity: 1 !important;
}

.thumbslide__nav-item--active {
   position: relative;
   opacity: 1 !important;
}
.thumbslide__nav-item--active::after {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.7)
      url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg stroke-width='1.5' stroke='%23ffffff'%3E%3Cpolyline fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' points='1,9 5,13 15,3 ' %3E%3C/polyline%3E%3C/g%3E%3C/svg%3E")
      no-repeat center center;
   background-size: 1.25em;
   -webkit-backdrop-filter: blur(5px);
   backdrop-filter: blur(5px);
}

.thumbslide__caption {
   background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.85);
   padding: var(--component-padding);
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
}

.thumbslide--top {
   display: flex;
   flex-direction: column;
}
.thumbslide--top .slideshow {
   order: 1;
}

.thumbslide--vertical {
   display: flex;
}
@media not all and (min-width: 48rem) {
   .thumbslide--vertical {
      --thumbslide-thumbnail-auto-size: 50px;
   }
}

.thumbslide--vertical .slideshow {
   display: inline-block;
   flex-grow: 1;
}

.thumbslide--vertical .thumbslide__nav-wrapper {
   float: right;
   width: var(--thumbslide-thumbnail-auto-size);
   flex-shrink: 0;
}

.thumbslide--vertical .thumbslide__nav {
   padding: 0 var(--thumbslide-thumbnail-grid-gap);
   width: 100%;
   height: 100%;
}
.thumbslide--vertical .thumbslide__nav::after,
.thumbslide--vertical .thumbslide__nav::before {
   width: 80%;
   height: 0;
   left: 10%;
}
.thumbslide--vertical .thumbslide__nav::before {
   top: 0;
}
.thumbslide--vertical .thumbslide__nav::after {
   top: auto;
   bottom: 0;
}

.thumbslide--vertical .thumbslide__nav-list {
   flex-direction: column;
   position: absolute;
   top: 0;
}

.thumbslide--vertical .thumbslide__nav-item {
   margin-right: 0;
   margin-bottom: var(--thumbslide-thumbnail-grid-gap);
}
.thumbslide--vertical .thumbslide__nav-item img {
   height: 100%;
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.thumbslide--left .slideshow {
   order: 1;
}

/* -------------------------------- 

File#: _3_video-gallery
Title: Video Gallery
Descr: A list of video previews opening a modal window
Usage: codyhouse.co/license

-------------------------------- */
.video-card__modal-control {
   display: block;
   color: inherit;
   text-decoration: none;
   position: relative;
   margin-bottom: var(--space-sm);
}
.video-card__modal-control:hover .video-card__preview {
   filter: contrast(110%);
   box-shadow: var(--shadow-md);
}
.video-card__modal-control:hover .video-card__play-btn::before {
   transform: scale(1.2);
}

.video-card__preview {
   display: block;
   width: 100%;
   aspect-ratio: 4/3;
   -o-object-fit: cover;
   object-fit: cover;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-sm);
   transition:
      filter 0.3s,
      box-shadow 0.3s;
}

.video-card__play-btn {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--color-white);
}
.video-card__play-btn .icon {
   position: relative;
   z-index: 1;
}
.video-card__play-btn::before {
   content: "";
   position: absolute;
   width: 60px;
   height: 60px;
   top: calc(50% - 30px);
   left: calc(50% - 30px);
   background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8);
   border-radius: 50%;
   transition: transform 0.3s var(--ease-out-back);
}

/* -------------------------------- 

File#: _3_wizard-form
Title: Wizard Form
Descr: Multi-step form
Usage: codyhouse.co/license

-------------------------------- */
.wiz-form {
   display: flex;
   flex-direction: column;
   height: 100vh;
   height: 100dvh;
}

.wiz-form,
.wiz-form__body {
   position: relative;
   z-index: 1;
   overflow: hidden;
}

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

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

.wiz-form__step {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   transition:
      transform 0.3s var(--ease-out),
      opacity 0.3s;
}

.wiz-form__step--prev,
.wiz-form__step--next {
   opacity: 0;
   visibility: hidden;
   transition:
      transform 0.3s var(--ease-out),
      opacity 0.3s,
      visibility 0s 0.3s;
}

.wiz-form__step--prev {
   transform: translateX(-40px);
}

.wiz-form__step--next {
   transform: translateX(40px);
}

/* --fixed height */
.wiz-form--fixed-height {
   height: 480px;
}
@media (min-width: 64rem) {
   .wiz-form--fixed-height {
      height: 620px;
   }
}

/* -------------------------------- 

File#: _3_working-hours-selector
Title: Working Hours Selector
Descr: A widget to select the daily opening and closing hours of a store
Usage: codyhouse.co/license

-------------------------------- */
.whs__item {
   background-color: var(--color-bg-light);
   border-radius: var(--radius-md);
   box-shadow: var(--inner-glow), var(--shadow-xs), var(--shadow-xs);
   transition: box-shadow 0.2s;
}
.whs__item:not(.whs__item--checked) .whs__slot {
   opacity: 0;
   visibility: hidden;
}
.whs__item:not(.whs__item--checked) .whs__slot.whs__slot--added {
   display: none;
}

.whs__item--checked {
   /* checked status */
   box-shadow:
      var(--shadow-xs),
      var(--shadow-xs),
      0 0 0 2px var(--color-primary);
}

.whs__slot:not(.whs__slot--added) .whs__remove-btn-wrapper,
.whs__slot--added .whs__add-btn-wrapper {
   /* buttons visibility */
   display: none;
}

/* -------------------------------- 

File#: _4_area-chart-card
Title: Area Chart Card
Descr: Area chart card of app UI
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _4_column-chart-card
Title: Column Chart Card
Descr: Column chart card for app UI
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _4_interactive-table-card-v2
Title: Interactive Table Card v2
Descr: A sortable table with bulk actions and filter options
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _4_interactive-table-card
Title: Interactive Table Card
Descr: Interactive table card for app UI
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _4_intro
Title: Intro
Descr: Intro section including the main header and a hero component
Usage: codyhouse.co/license

-------------------------------- */
.intro {
   padding-top: var(--mega-nav-height);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
}

/* -------------------------------- 

File#: _4_product-v2
Title: Product v2
Descr: Product info section with CTA
Usage: codyhouse.co/license

-------------------------------- */
.product-v2 .thumbslide {
   --thumbslide-thumbnail-auto-size: 90px;
   --thumbslide-thumbnail-grid-gap: var(--space-xxxs);
}

/* -------------------------------- 

File#: _4_stats-card
Title: Statistics Card
Descr: Statistics card for app UI
Usage: codyhouse.co/license

-------------------------------- */
.stats-card .chart--area {
   --chart-height: 120px;
}
