*,
*::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 {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
button,
input,
textarea,
select {
  margin: 0;
}
.btn,
.form-control,
.hcomments__comment-form textarea,
.admin-comment-form textarea,
.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, #fff);
  color: var(--color-contrast-high, #313135);
}
:root {
  --space-unit: 1em;
}
: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);
}
.container {
  width: calc(100% - 2 * var(--component-padding));
  margin-left: auto;
  margin-right: auto;
}
.grid {
  --gap: 0px;
  --gap-x: var(--gap);
  --gap-y: var(--gap);
  --offset: var(--gap-x);
  display: flex;
  flex-wrap: wrap;
}
.grid > * {
  flex-basis: 100%;
  max-width: 100%;
  min-width: 0;
}
[class*="gap-xxxxs"],
[class*="gap-xxxs"],
[class*="gap-xxs"],
[class*="gap-xs"],
[class*="gap-sm"],
[class*="gap-md"],
[class*="gap-lg"],
[class*="gap-xl"],
[class*="gap-xxl"],
[class*="gap-xxxl"],
[class*="gap-xxxxl"],
[class*="grid-gap-"],
[class*="flex-gap-"] {
  margin-bottom: -0.75em;
  margin-left: -0.75em;
}
[class*="gap-xxxxs"] > *,
[class*="gap-xxxs"] > *,
[class*="gap-xxs"] > *,
[class*="gap-xs"] > *,
[class*="gap-sm"] > *,
[class*="gap-md"] > *,
[class*="gap-lg"] > *,
[class*="gap-xl"] > *,
[class*="gap-xxl"] > *,
[class*="gap-xxxl"] > *,
[class*="gap-xxxxl"] > *,
[class*="grid-gap-"] > *,
[class*="flex-gap-"] > * {
  margin-bottom: 0.75em;
  margin-left: 0.75em;
}
[class*="gap-x-xxxxs"],
[class*="gap-x-xxxs"],
[class*="gap-x-xxs"],
[class*="gap-x-xs"],
[class*="gap-x-sm"],
[class*="gap-x-md"],
[class*="gap-x-lg"],
[class*="gap-x-xl"],
[class*="gap-x-xxl"],
[class*="gap-x-xxxl"],
[class*="gap-x-xxxxl"] {
  margin-left: -0.75em;
}
[class*="gap-x-xxxxs"] > *,
[class*="gap-x-xxxs"] > *,
[class*="gap-x-xxs"] > *,
[class*="gap-x-xs"] > *,
[class*="gap-x-sm"] > *,
[class*="gap-x-md"] > *,
[class*="gap-x-lg"] > *,
[class*="gap-x-xl"] > *,
[class*="gap-x-xxl"] > *,
[class*="gap-x-xxxl"] > *,
[class*="gap-x-xxxxl"] > * {
  margin-left: 0.75em;
}
[class*="gap-y-xxxxs"],
[class*="gap-y-xxxs"],
[class*="gap-y-xxs"],
[class*="gap-y-xs"],
[class*="gap-y-sm"],
[class*="gap-y-md"],
[class*="gap-y-lg"],
[class*="gap-y-xl"],
[class*="gap-y-xxl"],
[class*="gap-y-xxxl"],
[class*="gap-y-xxxxl"] {
  margin-bottom: -0.75em;
}
[class*="gap-y-xxxxs"] > *,
[class*="gap-y-xxxs"] > *,
[class*="gap-y-xxs"] > *,
[class*="gap-y-xs"] > *,
[class*="gap-y-sm"] > *,
[class*="gap-y-md"] > *,
[class*="gap-y-lg"] > *,
[class*="gap-y-xl"] > *,
[class*="gap-y-xxl"] > *,
[class*="gap-y-xxxl"] > *,
[class*="gap-y-xxxxl"] > * {
  margin-bottom: 0.75em;
}
@supports (--css: variables) {
  .grid {
    margin-bottom: calc(-1 * var(--gap-y));
    margin-left: calc(-1 * var(--gap-x));
  }
  .grid > * {
    margin-bottom: var(--gap-y);
    margin-left: var(--offset);
  }
  .flex[class*="gap-"],
  .inline-flex[class*="gap-"] {
    margin-bottom: calc(-1 * var(--gap-y, 0));
    margin-left: calc(-1 * var(--gap-x, 0));
  }
  .flex[class*="gap-"] > *,
  .inline-flex[class*="gap-"] > * {
    margin-bottom: var(--gap-y, 0);
    margin-left: var(--gap-x, 0);
  }
  .gap-xxxxs,
  .grid-gap-xxxxs,
  .flex-gap-xxxxs {
    --gap-x: var(--space-xxxxs);
    --gap-y: var(--space-xxxxs);
  }
  .gap-xxxs,
  .grid-gap-xxxs,
  .flex-gap-xxxs {
    --gap-x: var(--space-xxxs);
    --gap-y: var(--space-xxxs);
  }
  .gap-xxs,
  .grid-gap-xxs,
  .flex-gap-xxs {
    --gap-x: var(--space-xxs);
    --gap-y: var(--space-xxs);
  }
  .gap-xs,
  .grid-gap-xs,
  .flex-gap-xs {
    --gap-x: var(--space-xs);
    --gap-y: var(--space-xs);
  }
  .gap-sm,
  .grid-gap-sm,
  .flex-gap-sm {
    --gap-x: var(--space-sm);
    --gap-y: var(--space-sm);
  }
  .gap-md,
  .grid-gap-md,
  .flex-gap-md {
    --gap-x: var(--space-md);
    --gap-y: var(--space-md);
  }
  .gap-lg,
  .grid-gap-lg,
  .flex-gap-lg {
    --gap-x: var(--space-lg);
    --gap-y: var(--space-lg);
  }
  .gap-xl,
  .grid-gap-xl,
  .flex-gap-xl {
    --gap-x: var(--space-xl);
    --gap-y: var(--space-xl);
  }
  .gap-xxl,
  .grid-gap-xxl,
  .flex-gap-xxl {
    --gap-x: var(--space-xxl);
    --gap-y: var(--space-xxl);
  }
  .gap-xxxl,
  .grid-gap-xxxl,
  .flex-gap-xxxl {
    --gap-x: var(--space-xxxl);
    --gap-y: var(--space-xxxl);
  }
  .gap-xxxxl,
  .grid-gap-xxxxl,
  .flex-gap-xxxxl {
    --gap-x: var(--space-xxxxl);
    --gap-y: var(--space-xxxxl);
  }
  .gap-0 {
    --gap-x: 0px;
    --gap-y: 0px;
  }
  .gap-x-xxxxs {
    --gap-x: var(--space-xxxxs);
  }
  .gap-x-xxxs {
    --gap-x: var(--space-xxxs);
  }
  .gap-x-xxs {
    --gap-x: var(--space-xxs);
  }
  .gap-x-xs {
    --gap-x: var(--space-xs);
  }
  .gap-x-sm {
    --gap-x: var(--space-sm);
  }
  .gap-x-md {
    --gap-x: var(--space-md);
  }
  .gap-x-lg {
    --gap-x: var(--space-lg);
  }
  .gap-x-xl {
    --gap-x: var(--space-xl);
  }
  .gap-x-xxl {
    --gap-x: var(--space-xxl);
  }
  .gap-x-xxxl {
    --gap-x: var(--space-xxxl);
  }
  .gap-x-xxxxl {
    --gap-x: var(--space-xxxxl);
  }
  .gap-x-0 {
    --gap-x: 0px;
  }
  .gap-y-xxxxs {
    --gap-y: var(--space-xxxxs);
  }
  .gap-y-xxxs {
    --gap-y: var(--space-xxxs);
  }
  .gap-y-xxs {
    --gap-y: var(--space-xxs);
  }
  .gap-y-xs {
    --gap-y: var(--space-xs);
  }
  .gap-y-sm {
    --gap-y: var(--space-sm);
  }
  .gap-y-md {
    --gap-y: var(--space-md);
  }
  .gap-y-lg {
    --gap-y: var(--space-lg);
  }
  .gap-y-xl {
    --gap-y: var(--space-xl);
  }
  .gap-y-xxl {
    --gap-y: var(--space-xxl);
  }
  .gap-y-xxxl {
    --gap-y: var(--space-xxxl);
  }
  .gap-y-xxxxl {
    --gap-y: var(--space-xxxxl);
  }
  .gap-y-0 {
    --gap-y: 0px;
  }
}
.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}
.col-1 {
  flex-basis: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
}
.col-2 {
  flex-basis: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
}
.col-3 {
  flex-basis: calc(25% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(25% - 0.01px - var(--gap-x, 0.75em));
}
.col-4 {
  flex-basis: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
}
.col-5 {
  flex-basis: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
}
.col-6 {
  flex-basis: calc(50% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(50% - 0.01px - var(--gap-x, 0.75em));
}
.col-7 {
  flex-basis: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
}
.col-8 {
  flex-basis: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
}
.col-9 {
  flex-basis: calc(75% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(75% - 0.01px - var(--gap-x, 0.75em));
}
.col-10 {
  flex-basis: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
}
.col-11 {
  flex-basis: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
}
.col-12 {
  flex-basis: calc(100% - 0.01px - var(--gap-x, 0.75em));
  max-width: calc(100% - 0.01px - var(--gap-x, 0.75em));
}
.col-content {
  flex-grow: 0;
  flex-basis: initial;
  max-width: initial;
}
.offset-1 {
  --offset: calc(8.33% + var(--gap-x, 0.75em));
}
.offset-2 {
  --offset: calc(16.66% + var(--gap-x, 0.75em));
}
.offset-3 {
  --offset: calc(25% + var(--gap-x, 0.75em));
}
.offset-4 {
  --offset: calc(33.33% + var(--gap-x, 0.75em));
}
.offset-5 {
  --offset: calc(41.66% + var(--gap-x, 0.75em));
}
.offset-6 {
  --offset: calc(50% + var(--gap-x, 0.75em));
}
.offset-7 {
  --offset: calc(58.33% + var(--gap-x, 0.75em));
}
.offset-8 {
  --offset: calc(66.66% + var(--gap-x, 0.75em));
}
.offset-9 {
  --offset: calc(75% + var(--gap-x, 0.75em));
}
.offset-10 {
  --offset: calc(83.33% + var(--gap-x, 0.75em));
}
.offset-11 {
  --offset: calc(91.66% + var(--gap-x, 0.75em));
}
@media (min-width: 32rem) {
  .col\@xs {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-1\@xs {
    flex-basis: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-2\@xs {
    flex-basis: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-3\@xs {
    flex-basis: calc(25% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(25% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-4\@xs {
    flex-basis: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-5\@xs {
    flex-basis: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-6\@xs {
    flex-basis: calc(50% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(50% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-7\@xs {
    flex-basis: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-8\@xs {
    flex-basis: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-9\@xs {
    flex-basis: calc(75% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(75% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-10\@xs {
    flex-basis: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-11\@xs {
    flex-basis: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-12\@xs {
    flex-basis: calc(100% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(100% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-content\@xs {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }
  .offset-1\@xs {
    --offset: calc(8.33% + var(--gap-x, 0.75em));
  }
  .offset-2\@xs {
    --offset: calc(16.66% + var(--gap-x, 0.75em));
  }
  .offset-3\@xs {
    --offset: calc(25% + var(--gap-x, 0.75em));
  }
  .offset-4\@xs {
    --offset: calc(33.33% + var(--gap-x, 0.75em));
  }
  .offset-5\@xs {
    --offset: calc(41.66% + var(--gap-x, 0.75em));
  }
  .offset-6\@xs {
    --offset: calc(50% + var(--gap-x, 0.75em));
  }
  .offset-7\@xs {
    --offset: calc(58.33% + var(--gap-x, 0.75em));
  }
  .offset-8\@xs {
    --offset: calc(66.66% + var(--gap-x, 0.75em));
  }
  .offset-9\@xs {
    --offset: calc(75% + var(--gap-x, 0.75em));
  }
  .offset-10\@xs {
    --offset: calc(83.33% + var(--gap-x, 0.75em));
  }
  .offset-11\@xs {
    --offset: calc(91.66% + var(--gap-x, 0.75em));
  }
  .offset-0\@xs {
    --offset: var(--gap-x);
  }
  @supports (--css: variables) {
    .gap-xxxxs\@xs {
      --gap-x: var(--space-xxxxs);
      --gap-y: var(--space-xxxxs);
    }
    .gap-xxxs\@xs {
      --gap-x: var(--space-xxxs);
      --gap-y: var(--space-xxxs);
    }
    .gap-xxs\@xs {
      --gap-x: var(--space-xxs);
      --gap-y: var(--space-xxs);
    }
    .gap-xs\@xs {
      --gap-x: var(--space-xs);
      --gap-y: var(--space-xs);
    }
    .gap-sm\@xs {
      --gap-x: var(--space-sm);
      --gap-y: var(--space-sm);
    }
    .gap-md\@xs {
      --gap-x: var(--space-md);
      --gap-y: var(--space-md);
    }
    .gap-lg\@xs {
      --gap-x: var(--space-lg);
      --gap-y: var(--space-lg);
    }
    .gap-xl\@xs {
      --gap-x: var(--space-xl);
      --gap-y: var(--space-xl);
    }
    .gap-xxl\@xs {
      --gap-x: var(--space-xxl);
      --gap-y: var(--space-xxl);
    }
    .gap-xxxl\@xs {
      --gap-x: var(--space-xxxl);
      --gap-y: var(--space-xxxl);
    }
    .gap-xxxxl\@xs {
      --gap-x: var(--space-xxxxl);
      --gap-y: var(--space-xxxxl);
    }
    .gap-0\@xs {
      --gap-x: 0px;
      --gap-y: 0px;
    }
    .gap-x-xxxxs\@xs {
      --gap-x: var(--space-xxxxs);
    }
    .gap-x-xxxs\@xs {
      --gap-x: var(--space-xxxs);
    }
    .gap-x-xxs\@xs {
      --gap-x: var(--space-xxs);
    }
    .gap-x-xs\@xs {
      --gap-x: var(--space-xs);
    }
    .gap-x-sm\@xs {
      --gap-x: var(--space-sm);
    }
    .gap-x-md\@xs {
      --gap-x: var(--space-md);
    }
    .gap-x-lg\@xs {
      --gap-x: var(--space-lg);
    }
    .gap-x-xl\@xs {
      --gap-x: var(--space-xl);
    }
    .gap-x-xxl\@xs {
      --gap-x: var(--space-xxl);
    }
    .gap-x-xxxl\@xs {
      --gap-x: var(--space-xxxl);
    }
    .gap-x-xxxxl\@xs {
      --gap-x: var(--space-xxxxl);
    }
    .gap-x-0\@xs {
      --gap-x: 0px;
    }
    .gap-y-xxxxs\@xs {
      --gap-y: var(--space-xxxxs);
    }
    .gap-y-xxxs\@xs {
      --gap-y: var(--space-xxxs);
    }
    .gap-y-xxs\@xs {
      --gap-y: var(--space-xxs);
    }
    .gap-y-xs\@xs {
      --gap-y: var(--space-xs);
    }
    .gap-y-sm\@xs {
      --gap-y: var(--space-sm);
    }
    .gap-y-md\@xs {
      --gap-y: var(--space-md);
    }
    .gap-y-lg\@xs {
      --gap-y: var(--space-lg);
    }
    .gap-y-xl\@xs {
      --gap-y: var(--space-xl);
    }
    .gap-y-xxl\@xs {
      --gap-y: var(--space-xxl);
    }
    .gap-y-xxxl\@xs {
      --gap-y: var(--space-xxxl);
    }
    .gap-y-xxxxl\@xs {
      --gap-y: var(--space-xxxxl);
    }
    .gap-y-0\@xs {
      --gap-y: 0px;
    }
  }
}
@media (min-width: 48rem) {
  .col\@sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-1\@sm {
    flex-basis: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-2\@sm {
    flex-basis: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-3\@sm {
    flex-basis: calc(25% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(25% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-4\@sm {
    flex-basis: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-5\@sm {
    flex-basis: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-6\@sm {
    flex-basis: calc(50% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(50% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-7\@sm {
    flex-basis: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-8\@sm {
    flex-basis: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-9\@sm {
    flex-basis: calc(75% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(75% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-10\@sm {
    flex-basis: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-11\@sm {
    flex-basis: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-12\@sm {
    flex-basis: calc(100% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(100% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-content\@sm {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }
  .offset-1\@sm {
    --offset: calc(8.33% + var(--gap-x, 0.75em));
  }
  .offset-2\@sm {
    --offset: calc(16.66% + var(--gap-x, 0.75em));
  }
  .offset-3\@sm {
    --offset: calc(25% + var(--gap-x, 0.75em));
  }
  .offset-4\@sm {
    --offset: calc(33.33% + var(--gap-x, 0.75em));
  }
  .offset-5\@sm {
    --offset: calc(41.66% + var(--gap-x, 0.75em));
  }
  .offset-6\@sm {
    --offset: calc(50% + var(--gap-x, 0.75em));
  }
  .offset-7\@sm {
    --offset: calc(58.33% + var(--gap-x, 0.75em));
  }
  .offset-8\@sm {
    --offset: calc(66.66% + var(--gap-x, 0.75em));
  }
  .offset-9\@sm {
    --offset: calc(75% + var(--gap-x, 0.75em));
  }
  .offset-10\@sm {
    --offset: calc(83.33% + var(--gap-x, 0.75em));
  }
  .offset-11\@sm {
    --offset: calc(91.66% + var(--gap-x, 0.75em));
  }
  .offset-0\@sm {
    --offset: var(--gap-x);
  }
  @supports (--css: variables) {
    .gap-xxxxs\@sm {
      --gap-x: var(--space-xxxxs);
      --gap-y: var(--space-xxxxs);
    }
    .gap-xxxs\@sm {
      --gap-x: var(--space-xxxs);
      --gap-y: var(--space-xxxs);
    }
    .gap-xxs\@sm {
      --gap-x: var(--space-xxs);
      --gap-y: var(--space-xxs);
    }
    .gap-xs\@sm {
      --gap-x: var(--space-xs);
      --gap-y: var(--space-xs);
    }
    .gap-sm\@sm {
      --gap-x: var(--space-sm);
      --gap-y: var(--space-sm);
    }
    .gap-md\@sm {
      --gap-x: var(--space-md);
      --gap-y: var(--space-md);
    }
    .gap-lg\@sm {
      --gap-x: var(--space-lg);
      --gap-y: var(--space-lg);
    }
    .gap-xl\@sm {
      --gap-x: var(--space-xl);
      --gap-y: var(--space-xl);
    }
    .gap-xxl\@sm {
      --gap-x: var(--space-xxl);
      --gap-y: var(--space-xxl);
    }
    .gap-xxxl\@sm {
      --gap-x: var(--space-xxxl);
      --gap-y: var(--space-xxxl);
    }
    .gap-xxxxl\@sm {
      --gap-x: var(--space-xxxxl);
      --gap-y: var(--space-xxxxl);
    }
    .gap-0\@sm {
      --gap-x: 0px;
      --gap-y: 0px;
    }
    .gap-x-xxxxs\@sm {
      --gap-x: var(--space-xxxxs);
    }
    .gap-x-xxxs\@sm {
      --gap-x: var(--space-xxxs);
    }
    .gap-x-xxs\@sm {
      --gap-x: var(--space-xxs);
    }
    .gap-x-xs\@sm {
      --gap-x: var(--space-xs);
    }
    .gap-x-sm\@sm {
      --gap-x: var(--space-sm);
    }
    .gap-x-md\@sm {
      --gap-x: var(--space-md);
    }
    .gap-x-lg\@sm {
      --gap-x: var(--space-lg);
    }
    .gap-x-xl\@sm {
      --gap-x: var(--space-xl);
    }
    .gap-x-xxl\@sm {
      --gap-x: var(--space-xxl);
    }
    .gap-x-xxxl\@sm {
      --gap-x: var(--space-xxxl);
    }
    .gap-x-xxxxl\@sm {
      --gap-x: var(--space-xxxxl);
    }
    .gap-x-0\@sm {
      --gap-x: 0px;
    }
    .gap-y-xxxxs\@sm {
      --gap-y: var(--space-xxxxs);
    }
    .gap-y-xxxs\@sm {
      --gap-y: var(--space-xxxs);
    }
    .gap-y-xxs\@sm {
      --gap-y: var(--space-xxs);
    }
    .gap-y-xs\@sm {
      --gap-y: var(--space-xs);
    }
    .gap-y-sm\@sm {
      --gap-y: var(--space-sm);
    }
    .gap-y-md\@sm {
      --gap-y: var(--space-md);
    }
    .gap-y-lg\@sm {
      --gap-y: var(--space-lg);
    }
    .gap-y-xl\@sm {
      --gap-y: var(--space-xl);
    }
    .gap-y-xxl\@sm {
      --gap-y: var(--space-xxl);
    }
    .gap-y-xxxl\@sm {
      --gap-y: var(--space-xxxl);
    }
    .gap-y-xxxxl\@sm {
      --gap-y: var(--space-xxxxl);
    }
    .gap-y-0\@sm {
      --gap-y: 0px;
    }
  }
}
@media (min-width: 64rem) {
  .col\@md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-1\@md {
    flex-basis: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-2\@md {
    flex-basis: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-3\@md {
    flex-basis: calc(25% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(25% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-4\@md {
    flex-basis: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-5\@md {
    flex-basis: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-6\@md {
    flex-basis: calc(50% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(50% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-7\@md {
    flex-basis: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-8\@md {
    flex-basis: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-9\@md {
    flex-basis: calc(75% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(75% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-10\@md {
    flex-basis: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-11\@md {
    flex-basis: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-12\@md {
    flex-basis: calc(100% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(100% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-content\@md {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }
  .offset-1\@md {
    --offset: calc(8.33% + var(--gap-x, 0.75em));
  }
  .offset-2\@md {
    --offset: calc(16.66% + var(--gap-x, 0.75em));
  }
  .offset-3\@md {
    --offset: calc(25% + var(--gap-x, 0.75em));
  }
  .offset-4\@md {
    --offset: calc(33.33% + var(--gap-x, 0.75em));
  }
  .offset-5\@md {
    --offset: calc(41.66% + var(--gap-x, 0.75em));
  }
  .offset-6\@md {
    --offset: calc(50% + var(--gap-x, 0.75em));
  }
  .offset-7\@md {
    --offset: calc(58.33% + var(--gap-x, 0.75em));
  }
  .offset-8\@md {
    --offset: calc(66.66% + var(--gap-x, 0.75em));
  }
  .offset-9\@md {
    --offset: calc(75% + var(--gap-x, 0.75em));
  }
  .offset-10\@md {
    --offset: calc(83.33% + var(--gap-x, 0.75em));
  }
  .offset-11\@md {
    --offset: calc(91.66% + var(--gap-x, 0.75em));
  }
  .offset-0\@md {
    --offset: var(--gap-x);
  }
  @supports (--css: variables) {
    .gap-xxxxs\@md {
      --gap-x: var(--space-xxxxs);
      --gap-y: var(--space-xxxxs);
    }
    .gap-xxxs\@md {
      --gap-x: var(--space-xxxs);
      --gap-y: var(--space-xxxs);
    }
    .gap-xxs\@md {
      --gap-x: var(--space-xxs);
      --gap-y: var(--space-xxs);
    }
    .gap-xs\@md {
      --gap-x: var(--space-xs);
      --gap-y: var(--space-xs);
    }
    .gap-sm\@md {
      --gap-x: var(--space-sm);
      --gap-y: var(--space-sm);
    }
    .gap-md\@md {
      --gap-x: var(--space-md);
      --gap-y: var(--space-md);
    }
    .gap-lg\@md {
      --gap-x: var(--space-lg);
      --gap-y: var(--space-lg);
    }
    .gap-xl\@md {
      --gap-x: var(--space-xl);
      --gap-y: var(--space-xl);
    }
    .gap-xxl\@md {
      --gap-x: var(--space-xxl);
      --gap-y: var(--space-xxl);
    }
    .gap-xxxl\@md {
      --gap-x: var(--space-xxxl);
      --gap-y: var(--space-xxxl);
    }
    .gap-xxxxl\@md {
      --gap-x: var(--space-xxxxl);
      --gap-y: var(--space-xxxxl);
    }
    .gap-0\@md {
      --gap-x: 0px;
      --gap-y: 0px;
    }
    .gap-x-xxxxs\@md {
      --gap-x: var(--space-xxxxs);
    }
    .gap-x-xxxs\@md {
      --gap-x: var(--space-xxxs);
    }
    .gap-x-xxs\@md {
      --gap-x: var(--space-xxs);
    }
    .gap-x-xs\@md {
      --gap-x: var(--space-xs);
    }
    .gap-x-sm\@md {
      --gap-x: var(--space-sm);
    }
    .gap-x-md\@md {
      --gap-x: var(--space-md);
    }
    .gap-x-lg\@md {
      --gap-x: var(--space-lg);
    }
    .gap-x-xl\@md {
      --gap-x: var(--space-xl);
    }
    .gap-x-xxl\@md {
      --gap-x: var(--space-xxl);
    }
    .gap-x-xxxl\@md {
      --gap-x: var(--space-xxxl);
    }
    .gap-x-xxxxl\@md {
      --gap-x: var(--space-xxxxl);
    }
    .gap-x-0\@md {
      --gap-x: 0px;
    }
    .gap-y-xxxxs\@md {
      --gap-y: var(--space-xxxxs);
    }
    .gap-y-xxxs\@md {
      --gap-y: var(--space-xxxs);
    }
    .gap-y-xxs\@md {
      --gap-y: var(--space-xxs);
    }
    .gap-y-xs\@md {
      --gap-y: var(--space-xs);
    }
    .gap-y-sm\@md {
      --gap-y: var(--space-sm);
    }
    .gap-y-md\@md {
      --gap-y: var(--space-md);
    }
    .gap-y-lg\@md {
      --gap-y: var(--space-lg);
    }
    .gap-y-xl\@md {
      --gap-y: var(--space-xl);
    }
    .gap-y-xxl\@md {
      --gap-y: var(--space-xxl);
    }
    .gap-y-xxxl\@md {
      --gap-y: var(--space-xxxl);
    }
    .gap-y-xxxxl\@md {
      --gap-y: var(--space-xxxxl);
    }
    .gap-y-0\@md {
      --gap-y: 0px;
    }
  }
}
@media (min-width: 80rem) {
  .col\@lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-1\@lg {
    flex-basis: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-2\@lg {
    flex-basis: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-3\@lg {
    flex-basis: calc(25% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(25% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-4\@lg {
    flex-basis: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-5\@lg {
    flex-basis: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-6\@lg {
    flex-basis: calc(50% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(50% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-7\@lg {
    flex-basis: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-8\@lg {
    flex-basis: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-9\@lg {
    flex-basis: calc(75% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(75% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-10\@lg {
    flex-basis: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-11\@lg {
    flex-basis: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-12\@lg {
    flex-basis: calc(100% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(100% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-content\@lg {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }
  .offset-1\@lg {
    --offset: calc(8.33% + var(--gap-x, 0.75em));
  }
  .offset-2\@lg {
    --offset: calc(16.66% + var(--gap-x, 0.75em));
  }
  .offset-3\@lg {
    --offset: calc(25% + var(--gap-x, 0.75em));
  }
  .offset-4\@lg {
    --offset: calc(33.33% + var(--gap-x, 0.75em));
  }
  .offset-5\@lg {
    --offset: calc(41.66% + var(--gap-x, 0.75em));
  }
  .offset-6\@lg {
    --offset: calc(50% + var(--gap-x, 0.75em));
  }
  .offset-7\@lg {
    --offset: calc(58.33% + var(--gap-x, 0.75em));
  }
  .offset-8\@lg {
    --offset: calc(66.66% + var(--gap-x, 0.75em));
  }
  .offset-9\@lg {
    --offset: calc(75% + var(--gap-x, 0.75em));
  }
  .offset-10\@lg {
    --offset: calc(83.33% + var(--gap-x, 0.75em));
  }
  .offset-11\@lg {
    --offset: calc(91.66% + var(--gap-x, 0.75em));
  }
  .offset-0\@lg {
    --offset: var(--gap-x);
  }
  @supports (--css: variables) {
    .gap-xxxxs\@lg {
      --gap-x: var(--space-xxxxs);
      --gap-y: var(--space-xxxxs);
    }
    .gap-xxxs\@lg {
      --gap-x: var(--space-xxxs);
      --gap-y: var(--space-xxxs);
    }
    .gap-xxs\@lg {
      --gap-x: var(--space-xxs);
      --gap-y: var(--space-xxs);
    }
    .gap-xs\@lg {
      --gap-x: var(--space-xs);
      --gap-y: var(--space-xs);
    }
    .gap-sm\@lg {
      --gap-x: var(--space-sm);
      --gap-y: var(--space-sm);
    }
    .gap-md\@lg {
      --gap-x: var(--space-md);
      --gap-y: var(--space-md);
    }
    .gap-lg\@lg {
      --gap-x: var(--space-lg);
      --gap-y: var(--space-lg);
    }
    .gap-xl\@lg {
      --gap-x: var(--space-xl);
      --gap-y: var(--space-xl);
    }
    .gap-xxl\@lg {
      --gap-x: var(--space-xxl);
      --gap-y: var(--space-xxl);
    }
    .gap-xxxl\@lg {
      --gap-x: var(--space-xxxl);
      --gap-y: var(--space-xxxl);
    }
    .gap-xxxxl\@lg {
      --gap-x: var(--space-xxxxl);
      --gap-y: var(--space-xxxxl);
    }
    .gap-0\@lg {
      --gap-x: 0px;
      --gap-y: 0px;
    }
    .gap-x-xxxxs\@lg {
      --gap-x: var(--space-xxxxs);
    }
    .gap-x-xxxs\@lg {
      --gap-x: var(--space-xxxs);
    }
    .gap-x-xxs\@lg {
      --gap-x: var(--space-xxs);
    }
    .gap-x-xs\@lg {
      --gap-x: var(--space-xs);
    }
    .gap-x-sm\@lg {
      --gap-x: var(--space-sm);
    }
    .gap-x-md\@lg {
      --gap-x: var(--space-md);
    }
    .gap-x-lg\@lg {
      --gap-x: var(--space-lg);
    }
    .gap-x-xl\@lg {
      --gap-x: var(--space-xl);
    }
    .gap-x-xxl\@lg {
      --gap-x: var(--space-xxl);
    }
    .gap-x-xxxl\@lg {
      --gap-x: var(--space-xxxl);
    }
    .gap-x-xxxxl\@lg {
      --gap-x: var(--space-xxxxl);
    }
    .gap-x-0\@lg {
      --gap-x: 0px;
    }
    .gap-y-xxxxs\@lg {
      --gap-y: var(--space-xxxxs);
    }
    .gap-y-xxxs\@lg {
      --gap-y: var(--space-xxxs);
    }
    .gap-y-xxs\@lg {
      --gap-y: var(--space-xxs);
    }
    .gap-y-xs\@lg {
      --gap-y: var(--space-xs);
    }
    .gap-y-sm\@lg {
      --gap-y: var(--space-sm);
    }
    .gap-y-md\@lg {
      --gap-y: var(--space-md);
    }
    .gap-y-lg\@lg {
      --gap-y: var(--space-lg);
    }
    .gap-y-xl\@lg {
      --gap-y: var(--space-xl);
    }
    .gap-y-xxl\@lg {
      --gap-y: var(--space-xxl);
    }
    .gap-y-xxxl\@lg {
      --gap-y: var(--space-xxxl);
    }
    .gap-y-xxxxl\@lg {
      --gap-y: var(--space-xxxxl);
    }
    .gap-y-0\@lg {
      --gap-y: 0px;
    }
  }
}
@media (min-width: 90rem) {
  .col\@xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-1\@xl {
    flex-basis: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(8.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-2\@xl {
    flex-basis: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(16.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-3\@xl {
    flex-basis: calc(25% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(25% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-4\@xl {
    flex-basis: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(33.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-5\@xl {
    flex-basis: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(41.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-6\@xl {
    flex-basis: calc(50% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(50% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-7\@xl {
    flex-basis: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(58.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-8\@xl {
    flex-basis: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(66.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-9\@xl {
    flex-basis: calc(75% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(75% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-10\@xl {
    flex-basis: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(83.33% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-11\@xl {
    flex-basis: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(91.66% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-12\@xl {
    flex-basis: calc(100% - 0.01px - var(--gap-x, 0.75em));
    max-width: calc(100% - 0.01px - var(--gap-x, 0.75em));
  }
  .col-content\@xl {
    flex-grow: 0;
    flex-basis: initial;
    max-width: initial;
  }
  .offset-1\@xl {
    --offset: calc(8.33% + var(--gap-x, 0.75em));
  }
  .offset-2\@xl {
    --offset: calc(16.66% + var(--gap-x, 0.75em));
  }
  .offset-3\@xl {
    --offset: calc(25% + var(--gap-x, 0.75em));
  }
  .offset-4\@xl {
    --offset: calc(33.33% + var(--gap-x, 0.75em));
  }
  .offset-5\@xl {
    --offset: calc(41.66% + var(--gap-x, 0.75em));
  }
  .offset-6\@xl {
    --offset: calc(50% + var(--gap-x, 0.75em));
  }
  .offset-7\@xl {
    --offset: calc(58.33% + var(--gap-x, 0.75em));
  }
  .offset-8\@xl {
    --offset: calc(66.66% + var(--gap-x, 0.75em));
  }
  .offset-9\@xl {
    --offset: calc(75% + var(--gap-x, 0.75em));
  }
  .offset-10\@xl {
    --offset: calc(83.33% + var(--gap-x, 0.75em));
  }
  .offset-11\@xl {
    --offset: calc(91.66% + var(--gap-x, 0.75em));
  }
  .offset-0\@xl {
    --offset: var(--gap-x);
  }
  @supports (--css: variables) {
    .gap-xxxxs\@xl {
      --gap-x: var(--space-xxxxs);
      --gap-y: var(--space-xxxxs);
    }
    .gap-xxxs\@xl {
      --gap-x: var(--space-xxxs);
      --gap-y: var(--space-xxxs);
    }
    .gap-xxs\@xl {
      --gap-x: var(--space-xxs);
      --gap-y: var(--space-xxs);
    }
    .gap-xs\@xl {
      --gap-x: var(--space-xs);
      --gap-y: var(--space-xs);
    }
    .gap-sm\@xl {
      --gap-x: var(--space-sm);
      --gap-y: var(--space-sm);
    }
    .gap-md\@xl {
      --gap-x: var(--space-md);
      --gap-y: var(--space-md);
    }
    .gap-lg\@xl {
      --gap-x: var(--space-lg);
      --gap-y: var(--space-lg);
    }
    .gap-xl\@xl {
      --gap-x: var(--space-xl);
      --gap-y: var(--space-xl);
    }
    .gap-xxl\@xl {
      --gap-x: var(--space-xxl);
      --gap-y: var(--space-xxl);
    }
    .gap-xxxl\@xl {
      --gap-x: var(--space-xxxl);
      --gap-y: var(--space-xxxl);
    }
    .gap-xxxxl\@xl {
      --gap-x: var(--space-xxxxl);
      --gap-y: var(--space-xxxxl);
    }
    .gap-0\@xl {
      --gap-x: 0px;
      --gap-y: 0px;
    }
    .gap-x-xxxxs\@xl {
      --gap-x: var(--space-xxxxs);
    }
    .gap-x-xxxs\@xl {
      --gap-x: var(--space-xxxs);
    }
    .gap-x-xxs\@xl {
      --gap-x: var(--space-xxs);
    }
    .gap-x-xs\@xl {
      --gap-x: var(--space-xs);
    }
    .gap-x-sm\@xl {
      --gap-x: var(--space-sm);
    }
    .gap-x-md\@xl {
      --gap-x: var(--space-md);
    }
    .gap-x-lg\@xl {
      --gap-x: var(--space-lg);
    }
    .gap-x-xl\@xl {
      --gap-x: var(--space-xl);
    }
    .gap-x-xxl\@xl {
      --gap-x: var(--space-xxl);
    }
    .gap-x-xxxl\@xl {
      --gap-x: var(--space-xxxl);
    }
    .gap-x-xxxxl\@xl {
      --gap-x: var(--space-xxxxl);
    }
    .gap-x-0\@xl {
      --gap-x: 0px;
    }
    .gap-y-xxxxs\@xl {
      --gap-y: var(--space-xxxxs);
    }
    .gap-y-xxxs\@xl {
      --gap-y: var(--space-xxxs);
    }
    .gap-y-xxs\@xl {
      --gap-y: var(--space-xxs);
    }
    .gap-y-xs\@xl {
      --gap-y: var(--space-xs);
    }
    .gap-y-sm\@xl {
      --gap-y: var(--space-sm);
    }
    .gap-y-md\@xl {
      --gap-y: var(--space-md);
    }
    .gap-y-lg\@xl {
      --gap-y: var(--space-lg);
    }
    .gap-y-xl\@xl {
      --gap-y: var(--space-xl);
    }
    .gap-y-xxl\@xl {
      --gap-y: var(--space-xxl);
    }
    .gap-y-xxxl\@xl {
      --gap-y: var(--space-xxxl);
    }
    .gap-y-xxxxl\@xl {
      --gap-y: var(--space-xxxxl);
    }
    .gap-y-0\@xl {
      --gap-y: 0px;
    }
  }
}
:root {
  --radius-sm: calc(var(--radius, 0.25em) / 2);
  --radius-md: var(--radius, 0.25em);
  --radius-lg: calc(var(--radius, 0.25em) * 2);
  --shadow-xs: 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
    0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
    0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 1.2px 1.9px -1px rgba(0, 0, 0, 0.014),
    0 3.3px 5.3px -1px rgba(0, 0, 0, 0.038),
    0 8.5px 12.7px -1px rgba(0, 0, 0, 0.085),
    0 30px 42px -1px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 1.5px 2.1px -6px rgba(0, 0, 0, 0.012),
    0 3.6px 5.2px -6px rgba(0, 0, 0, 0.035),
    0 7.3px 10.6px -6px rgba(0, 0, 0, 0.07),
    0 16.2px 21.9px -6px rgba(0, 0, 0, 0.117),
    0 46px 60px -6px rgba(0, 0, 0, 0.2);
  --bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --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, 1em);
  font-family: var(--font-primary, sans-serif);
  color: var(--color-contrast-high, #313135);
}
h1,
h2,
h3,
h4 {
  color: var(--color-contrast-higher, #1c1c21);
  line-height: var(--heading-line-height, 1.2);
}
h1 {
  font-size: var(--text-xxl, 2.074em);
}
h2 {
  font-size: var(--text-xl, 1.728em);
}
h3 {
  font-size: var(--text-lg, 1.44em);
}
h4 {
  font-size: var(--text-md, 1.2em);
}
small {
  font-size: var(--text-sm, 0.833em);
}
a,
.link {
  color: var(--color-primary, #2a6df4);
  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.25 * var(--text-vspace-multiplier, 1)
  );
}
.text-component h2,
.text-component h3,
.text-component h4 {
  margin-top: calc(var(--space-unit) * 0.75 * var(--text-vspace-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.75 * var(--text-vspace-multiplier, 1)
  );
}
.text-component ul,
.text-component ol {
  list-style-position: inside;
}
.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) * var(--text-vspace-multiplier, 1));
  margin-bottom: calc(var(--space-unit) * var(--text-vspace-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.75 * var(--text-vspace-multiplier, 1)
    );
  }
  .text-component__block--right {
    float: right;
    margin-left: calc(
      var(--space-unit) * 0.75 * var(--text-vspace-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;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  height: var(--size);
  width: var(--size);
  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 {
  -webkit-animation: icon-spin 1s infinite linear;
  animation: icon-spin 1s infinite linear;
}
@-webkit-keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@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;
  line-height: 1;
  font-size: var(--btn-font-size, 1em);
  padding-top: var(--btn-padding-y, 0.5em);
  padding-bottom: var(--btn-padding-y, 0.5em);
  padding-left: var(--btn-padding-x, 0.75em);
  padding-right: var(--btn-padding-x, 0.75em);
  border-radius: var(--btn-radius, 0.25em);
}
.btn--sm {
  font-size: var(--btn-font-size-sm, 0.8em);
}
.btn--md {
  font-size: var(--btn-font-size-md, 1.2em);
}
.btn--lg {
  font-size: var(--btn-font-size-lg, 1.4em);
}
.btn--icon {
  padding: var(--btn-padding-y, 0.5em);
}
.form-control,
.hcomments__comment-form textarea,
.admin-comment-form textarea {
  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, #1c1c21);
  line-height: var(--heading-line-height, 1.2);
  font-size: var(--text-md, 1.2em);
  margin-bottom: var(--space-xxs);
}
.form-label {
  display: inline-block;
}
.form__msg-error,
.form-error-msg {
  color: var(--color-error, #e02447);
  font-size: var(--text-sm, 0.833em);
  margin-top: var(--space-xxs);
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
.form__msg-error--is-visible,
.form-error-msg--is-visible {
  position: relative;
  clip: auto;
}
.radio-list > *,
.checkbox-list > * {
  position: relative;
  display: flex;
  align-items: baseline;
}
.radio-list label,
.checkbox-list label {
  line-height: var(--body-line-height);
}
.radio-list input,
.checkbox-list input {
  margin-right: var(--space-xxxs);
  flex-shrink: 0;
}
:root {
  --zindex-header: 3;
  --zindex-popover: 5;
  --zindex-fixed-element: 10;
  --zindex-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;
  }
}
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  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-column {
  flex-direction: column;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-center {
  justify-content: center;
  align-items: center;
}
.flex-grow {
  flex-grow: 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-basis-0 {
  flex-basis: 0;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-baseline {
  align-items: baseline;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
[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);
}
.block,
.hcomments__subscribe-btn.is-subscribed .icon-check {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.contents {
  display: contents;
}
.hide {
  display: none;
}
.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,
.form-control__special {
  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-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-xs {
  font-size: var(--text-xs, 0.694em);
}
.text-sm {
  font-size: var(--text-sm, 0.833em);
}
.text-base {
  font-size: var(--text-unit, 1em);
}
.text-md {
  font-size: var(--text-md, 1.2em);
}
.text-lg {
  font-size: var(--text-lg, 1.44em);
}
.text-xl {
  font-size: var(--text-xl, 1.728em);
}
.text-xxl {
  font-size: var(--text-xxl, 2.074em);
}
.text-xxxl {
  font-size: var(--text-xxxl, 2.488em);
}
.text-xxxxl {
  font-size: var(--text-xxxxl, 2.985em);
}
.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-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.letter-spacing-xs {
  letter-spacing: -0.1em;
}
.letter-spacing-sm {
  letter-spacing: -0.05em;
}
.letter-spacing-md {
  letter-spacing: 0.05em;
}
.letter-spacing-lg {
  letter-spacing: 0.1em;
}
.letter-spacing-xl {
  letter-spacing: 0.2em;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold,
.text-bold {
  font-weight: 700;
}
.font-italic {
  font-style: italic;
}
.font-smooth {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font-primary {
  font-family: var(--font-primary);
}
.text-center,
.form-control__special {
  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;
}
.v-space-xxs {
  --text-vspace-multiplier: 0.25 !important;
}
.v-space-xs {
  --text-vspace-multiplier: 0.5 !important;
}
.v-space-sm {
  --text-vspace-multiplier: 0.75 !important;
}
.v-space-md {
  --text-vspace-multiplier: 1.25 !important;
}
.v-space-lg {
  --text-vspace-multiplier: 1.5 !important;
}
.v-space-xl {
  --text-vspace-multiplier: 1.75 !important;
}
.v-space-xxl {
  --text-vspace-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;
}
.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;
  -ms-user-select: none;
  user-select: none;
}
.user-select-all {
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
}
[class^="color-"],
[class*=" color-"] {
  --color-o: 1;
}
.color-inherit {
  color: inherit;
}
.color-bg {
  color: hsla(
    var(--color-bg-h),
    var(--color-bg-s),
    var(--color-bg-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)
  );
}
@supports (--css: variables) {
  .color-opacity-0 {
    --color-o: 0;
  }
  .color-opacity-10\% {
    --color-o: 0.1;
  }
  .color-opacity-20\% {
    --color-o: 0.2;
  }
  .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-80\% {
    --color-o: 0.8;
  }
  .color-opacity-90\% {
    --color-o: 0.9;
  }
}
@supports (--css: variables) {
  [class^="color-gradient"],
  [class*=" color-gradient"] {
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
  }
}
.width-xxxxs {
  width: var(--size-xxxxs, 0.25rem);
}
.width-xxxs {
  width: var(--size-xxxs, 0.5rem);
}
.width-xxs {
  width: var(--size-xxs, 0.75rem);
}
.width-xs {
  width: var(--size-xs, 1rem);
}
.width-sm {
  width: var(--size-sm, 1.5rem);
}
.width-md {
  width: var(--size-md, 2rem);
}
.width-lg {
  width: var(--size-lg, 3rem);
}
.width-xl {
  width: var(--size-xl, 4rem);
}
.width-xxl {
  width: var(--size-xxl, 6rem);
}
.width-xxxl {
  width: var(--size-xxxl, 8rem);
}
.width-xxxxl {
  width: var(--size-xxxxl, 16rem);
}
.width-0 {
  width: 0;
}
.width-10\% {
  width: 10%;
}
.width-20\% {
  width: 20%;
}
.width-25\% {
  width: 25%;
}
.width-30\% {
  width: 30%;
}
.width-33\% {
  width: calc(100% / 3);
}
.width-40\% {
  width: 40%;
}
.width-50\% {
  width: 50%;
}
.width-60\% {
  width: 60%;
}
.width-66\% {
  width: calc(100% / 1.5);
}
.width-70\% {
  width: 70%;
}
.width-75\% {
  width: 75%;
}
.width-80\% {
  width: 80%;
}
.width-90\% {
  width: 90%;
}
.width-100\% {
  width: 100%;
}
.width-100vw {
  width: 100vw;
}
.width-auto {
  width: auto;
}
.height-xxxxs {
  height: var(--size-xxxxs, 0.25rem);
}
.height-xxxs {
  height: var(--size-xxxs, 0.5rem);
}
.height-xxs {
  height: var(--size-xxs, 0.75rem);
}
.height-xs {
  height: var(--size-xs, 1rem);
}
.height-sm {
  height: var(--size-sm, 1.5rem);
}
.height-md {
  height: var(--size-md, 2rem);
}
.height-lg {
  height: var(--size-lg, 3rem);
}
.height-xl {
  height: var(--size-xl, 4rem);
}
.height-xxl {
  height: var(--size-xxl, 6rem);
}
.height-xxxl {
  height: var(--size-xxxl, 8rem);
}
.height-xxxxl {
  height: var(--size-xxxxl, 16rem);
}
.height-0 {
  height: 0;
}
.height-10\% {
  height: 10%;
}
.height-20\% {
  height: 20%;
}
.height-25\% {
  height: 25%;
}
.height-30\% {
  height: 30%;
}
.height-33\% {
  height: calc(100% / 3);
}
.height-40\% {
  height: 40%;
}
.height-50\% {
  height: 50%;
}
.height-60\% {
  height: 60%;
}
.height-66\% {
  height: calc(100% / 1.5);
}
.height-70\% {
  height: 70%;
}
.height-75\% {
  height: 75%;
}
.height-80\% {
  height: 80%;
}
.height-90\% {
  height: 90%;
}
.height-100\% {
  height: 100%;
}
.height-100vh {
  height: 100vh;
}
.height-auto {
  height: auto;
}
.min-width-0 {
  min-width: 0;
}
.min-width-25\% {
  min-width: 25%;
}
.min-width-33\% {
  min-width: calc(100% / 3);
}
.min-width-50\% {
  min-width: 50%;
}
.min-width-66\% {
  min-width: calc(100% / 1.5);
}
.min-width-75\% {
  min-width: 75%;
}
.min-width-100\% {
  min-width: 100%;
}
.min-width-100vw {
  min-width: 100vw;
}
.min-height-100\% {
  min-height: 100%;
}
.min-height-100vh {
  min-height: 100vh;
}
:root {
  --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-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%;
}
[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;
}
.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(--zindex-header);
}
.z-index-popover {
  z-index: var(--zindex-popover);
}
.z-index-fixed-element {
  z-index: var(--zindex-fixed-element);
}
.z-index-overlay {
  z-index: var(--zindex-overlay);
}
.zindex-1,
.z-index-1 {
  z-index: 1;
}
.zindex-2,
.z-index-2 {
  z-index: 2;
}
.zindex-3,
.z-index-3 {
  z-index: 3;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.momentum-scrolling {
  -webkit-overflow-scrolling: touch;
}
.overscroll-contain {
  -ms-scroll-chaining: none;
  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-10\% {
  opacity: 0.1;
}
.opacity-20\% {
  opacity: 0.2;
}
.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-80\% {
  opacity: 0.8;
}
.opacity-90\% {
  opacity: 0.9;
}
.media-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.media-wrapper > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.media-wrapper > *:not(iframe) {
  -o-object-fit: cover;
  object-fit: cover;
}
.media-wrapper--4\:3 {
  padding-bottom: calc((3 / 4) * 100%);
}
.media-wrapper--1\:1 {
  padding-bottom: calc((1 / 1) * 100%);
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
[class^="border-"],
[class*=" border-"] {
  --border-o: 1;
}
.border {
  border: 1px solid
    hsla(
      var(--color-contrast-low-h),
      var(--color-contrast-low-s),
      var(--color-contrast-low-l),
      var(--border-o, 1)
    );
}
.border-top {
  border-top: 1px solid
    hsla(
      var(--color-contrast-low-h),
      var(--color-contrast-low-s),
      var(--color-contrast-low-l),
      var(--border-o, 1)
    );
}
.border-bottom {
  border-bottom: 1px solid
    hsla(
      var(--color-contrast-low-h),
      var(--color-contrast-low-s),
      var(--color-contrast-low-l),
      var(--border-o, 1)
    );
}
.border-left {
  border-left: 1px solid
    hsla(
      var(--color-contrast-low-h),
      var(--color-contrast-low-s),
      var(--color-contrast-low-l),
      var(--border-o, 1)
    );
}
.border-right {
  border-right: 1px solid
    hsla(
      var(--color-contrast-low-h),
      var(--color-contrast-low-s),
      var(--color-contrast-low-l),
      var(--border-o, 1)
    );
}
.border-2 {
  border-width: 2px;
}
.border-3 {
  border-width: 3px;
}
.border-4 {
  border-width: 4px;
}
.border-bg {
  border-color: hsla(
    var(--color-bg-h),
    var(--color-bg-s),
    var(--color-bg-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)
  );
}
@supports (--css: variables) {
  .border-opacity-0 {
    --border-o: 0;
  }
  .border-opacity-10\% {
    --border-o: 0.1;
  }
  .border-opacity-20\% {
    --border-o: 0.2;
  }
  .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-80\% {
    --border-o: 0.8;
  }
  .border-opacity-90\% {
    --border-o: 0.9;
  }
}
.radius-sm {
  border-radius: var(--radius-sm);
}
.radius-md {
  border-radius: var(--radius-md);
}
.radius-lg,
.form-control__special {
  border-radius: var(--radius-lg);
}
.radius-50\% {
  border-radius: 50%;
}
.radius-full {
  border-radius: 50em;
}
.radius-0 {
  border-radius: 0;
}
.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;
}
.shadow-xs {
  box-shadow: var(--shadow-xs);
}
.shadow-sm {
  box-shadow: var(--shadow-sm);
}
.shadow-md {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-xl {
  box-shadow: var(--shadow-xl);
}
.shadow-none {
  box-shadow: none;
}
.bg,
[class^="bg-"],
[class*=" bg-"] {
  --bg-o: 1;
}
.bg-transparent {
  background-color: transparent;
}
.bg-inherit {
  background-color: inherit;
}
.bg {
  background-color: hsla(
    var(--color-bg-h),
    var(--color-bg-s),
    var(--color-bg-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,
.form-control__special {
  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)
  );
}
@supports (--css: variables) {
  .bg-opacity-0 {
    --bg-o: 0;
  }
  .bg-opacity-10\% {
    --bg-o: 0.1;
  }
  .bg-opacity-20\% {
    --bg-o: 0.2;
  }
  .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-80\% {
    --bg-o: 0.8;
  }
  .bg-opacity-90\% {
    --bg-o: 0.9;
  }
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.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;
}
@supports (--css: variables) {
  [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;
}
.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;
}
.hidden,
.invisible {
  visibility: hidden;
}
@media (min-width: 32rem) {
  .flex\@xs {
    display: flex;
  }
  .inline-flex\@xs {
    display: inline-flex;
  }
  .flex-wrap\@xs {
    flex-wrap: wrap;
  }
  .flex-column\@xs {
    flex-direction: column;
  }
  .flex-column-reverse\@xs {
    flex-direction: column-reverse;
  }
  .flex-row\@xs {
    flex-direction: row;
  }
  .flex-row-reverse\@xs {
    flex-direction: row-reverse;
  }
  .flex-center\@xs {
    justify-content: center;
    align-items: center;
  }
  .flex-grow\@xs {
    flex-grow: 1;
  }
  .flex-grow-0\@xs {
    flex-grow: 0;
  }
  .flex-shrink\@xs {
    flex-shrink: 1;
  }
  .flex-shrink-0\@xs {
    flex-shrink: 0;
  }
  .flex-basis-0\@xs {
    flex-basis: 0;
  }
  .justify-start\@xs {
    justify-content: flex-start;
  }
  .justify-end\@xs {
    justify-content: flex-end;
  }
  .justify-center\@xs {
    justify-content: center;
  }
  .justify-between\@xs {
    justify-content: space-between;
  }
  .items-center\@xs {
    align-items: center;
  }
  .items-start\@xs {
    align-items: flex-start;
  }
  .items-end\@xs {
    align-items: flex-end;
  }
  .items-baseline\@xs {
    align-items: baseline;
  }
  .order-1\@xs {
    order: 1;
  }
  .order-2\@xs {
    order: 2;
  }
  .order-3\@xs {
    order: 3;
  }
  .block\@xs {
    display: block;
  }
  .inline-block\@xs {
    display: inline-block;
  }
  .inline\@xs {
    display: inline;
  }
  .contents\@xs {
    display: contents;
  }
  .hide\@xs {
    display: none !important;
  }
  @supports (--css: variables) {
    .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;
    }
  }
  @supports (--css: variables) {
    .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;
  }
  @supports (--css: variables) {
    .text-xs\@xs {
      font-size: var(--text-xs, 0.694em);
    }
    .text-sm\@xs {
      font-size: var(--text-sm, 0.833em);
    }
    .text-base\@xs {
      font-size: var(--text-unit, 1em);
    }
    .text-md\@xs {
      font-size: var(--text-md, 1.2em);
    }
    .text-lg\@xs {
      font-size: var(--text-lg, 1.44em);
    }
    .text-xl\@xs {
      font-size: var(--text-xl, 1.728em);
    }
    .text-xxl\@xs {
      font-size: var(--text-xxl, 2.074em);
    }
    .text-xxxl\@xs {
      font-size: var(--text-xxxl, 2.488em);
    }
    .text-xxxxl\@xs {
      font-size: var(--text-xxxxl, 2.985em);
    }
  }
  @supports (--css: variables) {
    .width-xxxxs\@xs {
      width: var(--size-xxxxs, 0.25rem);
    }
    .width-xxxs\@xs {
      width: var(--size-xxxs, 0.5rem);
    }
    .width-xxs\@xs {
      width: var(--size-xxs, 0.75rem);
    }
    .width-xs\@xs {
      width: var(--size-xs, 1rem);
    }
    .width-sm\@xs {
      width: var(--size-sm, 1.5rem);
    }
    .width-md\@xs {
      width: var(--size-md, 2rem);
    }
    .width-lg\@xs {
      width: var(--size-lg, 3rem);
    }
    .width-xl\@xs {
      width: var(--size-xl, 4rem);
    }
    .width-xxl\@xs {
      width: var(--size-xxl, 6rem);
    }
    .width-xxxl\@xs {
      width: var(--size-xxxl, 8rem);
    }
    .width-xxxxl\@xs {
      width: var(--size-xxxxl, 16rem);
    }
  }
  .width-0\@xs {
    width: 0;
  }
  .width-10\%\@xs {
    width: 10%;
  }
  .width-20\%\@xs {
    width: 20%;
  }
  .width-25\%\@xs {
    width: 25%;
  }
  .width-30\%\@xs {
    width: 30%;
  }
  .width-33\%\@xs {
    width: calc(100% / 3);
  }
  .width-40\%\@xs {
    width: 40%;
  }
  .width-50\%\@xs {
    width: 50%;
  }
  .width-60\%\@xs {
    width: 60%;
  }
  .width-66\%\@xs {
    width: calc(100% / 1.5);
  }
  .width-70\%\@xs {
    width: 70%;
  }
  .width-75\%\@xs {
    width: 75%;
  }
  .width-80\%\@xs {
    width: 80%;
  }
  .width-90\%\@xs {
    width: 90%;
  }
  .width-100\%\@xs {
    width: 100%;
  }
  .width-100vw\@xs {
    width: 100vw;
  }
  .width-auto\@xs {
    width: auto;
  }
  @supports (--css: variables) {
    .height-xxxxs\@xs {
      height: var(--size-xxxxs, 0.25rem);
    }
    .height-xxxs\@xs {
      height: var(--size-xxxs, 0.5rem);
    }
    .height-xxs\@xs {
      height: var(--size-xxs, 0.75rem);
    }
    .height-xs\@xs {
      height: var(--size-xs, 1rem);
    }
    .height-sm\@xs {
      height: var(--size-sm, 1.5rem);
    }
    .height-md\@xs {
      height: var(--size-md, 2rem);
    }
    .height-lg\@xs {
      height: var(--size-lg, 3rem);
    }
    .height-xl\@xs {
      height: var(--size-xl, 4rem);
    }
    .height-xxl\@xs {
      height: var(--size-xxl, 6rem);
    }
    .height-xxxl\@xs {
      height: var(--size-xxxl, 8rem);
    }
    .height-xxxxl\@xs {
      height: var(--size-xxxxl, 16rem);
    }
  }
  .height-0\@xs {
    height: 0;
  }
  .height-10\%\@xs {
    height: 10%;
  }
  .height-20\%\@xs {
    height: 20%;
  }
  .height-25\%\@xs {
    height: 25%;
  }
  .height-30\%\@xs {
    height: 30%;
  }
  .height-33\%\@xs {
    height: calc(100% / 3);
  }
  .height-40\%\@xs {
    height: 40%;
  }
  .height-50\%\@xs {
    height: 50%;
  }
  .height-60\%\@xs {
    height: 60%;
  }
  .height-66\%\@xs {
    height: calc(100% / 1.5);
  }
  .height-70\%\@xs {
    height: 70%;
  }
  .height-75\%\@xs {
    height: 75%;
  }
  .height-80\%\@xs {
    height: 80%;
  }
  .height-90\%\@xs {
    height: 90%;
  }
  .height-100\%\@xs {
    height: 100%;
  }
  .height-100vh\@xs {
    height: 100vh;
  }
  .height-auto\@xs {
    height: auto;
  }
  .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%;
  }
  .bottom-0\@xs {
    bottom: 0;
  }
  .bottom-50\%\@xs {
    bottom: 50%;
  }
  .right-0\@xs {
    right: 0;
  }
  .right-50\%\@xs {
    right: 50%;
  }
  .left-0\@xs {
    left: 0;
  }
  .left-50\%\@xs {
    left: 50%;
  }
  @supports (--css: variables) {
    .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-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-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-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 {
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }
  .visible\@xs {
    visibility: visible;
  }
  .invisible\@xs {
    visibility: hidden;
  }
}
@media not all and (min-width: 32rem) {
  .has-margin\@xs {
    margin: 0 !important;
  }
  .has-padding\@xs {
    padding: 0 !important;
  }
  .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-column\@sm {
    flex-direction: column;
  }
  .flex-column-reverse\@sm {
    flex-direction: column-reverse;
  }
  .flex-row\@sm {
    flex-direction: row;
  }
  .flex-row-reverse\@sm {
    flex-direction: row-reverse;
  }
  .flex-center\@sm {
    justify-content: center;
    align-items: center;
  }
  .flex-grow\@sm {
    flex-grow: 1;
  }
  .flex-grow-0\@sm {
    flex-grow: 0;
  }
  .flex-shrink\@sm {
    flex-shrink: 1;
  }
  .flex-shrink-0\@sm {
    flex-shrink: 0;
  }
  .flex-basis-0\@sm {
    flex-basis: 0;
  }
  .justify-start\@sm {
    justify-content: flex-start;
  }
  .justify-end\@sm {
    justify-content: flex-end;
  }
  .justify-center\@sm {
    justify-content: center;
  }
  .justify-between\@sm {
    justify-content: space-between;
  }
  .items-center\@sm {
    align-items: center;
  }
  .items-start\@sm {
    align-items: flex-start;
  }
  .items-end\@sm {
    align-items: flex-end;
  }
  .items-baseline\@sm {
    align-items: baseline;
  }
  .order-1\@sm {
    order: 1;
  }
  .order-2\@sm {
    order: 2;
  }
  .order-3\@sm {
    order: 3;
  }
  .block\@sm {
    display: block;
  }
  .inline-block\@sm {
    display: inline-block;
  }
  .inline\@sm {
    display: inline;
  }
  .contents\@sm {
    display: contents;
  }
  .hide\@sm {
    display: none !important;
  }
  @supports (--css: variables) {
    .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;
    }
  }
  @supports (--css: variables) {
    .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;
  }
  @supports (--css: variables) {
    .text-xs\@sm {
      font-size: var(--text-xs, 0.694em);
    }
    .text-sm\@sm {
      font-size: var(--text-sm, 0.833em);
    }
    .text-base\@sm {
      font-size: var(--text-unit, 1em);
    }
    .text-md\@sm {
      font-size: var(--text-md, 1.2em);
    }
    .text-lg\@sm {
      font-size: var(--text-lg, 1.44em);
    }
    .text-xl\@sm {
      font-size: var(--text-xl, 1.728em);
    }
    .text-xxl\@sm {
      font-size: var(--text-xxl, 2.074em);
    }
    .text-xxxl\@sm {
      font-size: var(--text-xxxl, 2.488em);
    }
    .text-xxxxl\@sm {
      font-size: var(--text-xxxxl, 2.985em);
    }
  }
  @supports (--css: variables) {
    .width-xxxxs\@sm {
      width: var(--size-xxxxs, 0.25rem);
    }
    .width-xxxs\@sm {
      width: var(--size-xxxs, 0.5rem);
    }
    .width-xxs\@sm {
      width: var(--size-xxs, 0.75rem);
    }
    .width-xs\@sm {
      width: var(--size-xs, 1rem);
    }
    .width-sm\@sm {
      width: var(--size-sm, 1.5rem);
    }
    .width-md\@sm {
      width: var(--size-md, 2rem);
    }
    .width-lg\@sm {
      width: var(--size-lg, 3rem);
    }
    .width-xl\@sm {
      width: var(--size-xl, 4rem);
    }
    .width-xxl\@sm {
      width: var(--size-xxl, 6rem);
    }
    .width-xxxl\@sm {
      width: var(--size-xxxl, 8rem);
    }
    .width-xxxxl\@sm {
      width: var(--size-xxxxl, 16rem);
    }
  }
  .width-0\@sm {
    width: 0;
  }
  .width-10\%\@sm {
    width: 10%;
  }
  .width-20\%\@sm {
    width: 20%;
  }
  .width-25\%\@sm {
    width: 25%;
  }
  .width-30\%\@sm {
    width: 30%;
  }
  .width-33\%\@sm {
    width: calc(100% / 3);
  }
  .width-40\%\@sm {
    width: 40%;
  }
  .width-50\%\@sm {
    width: 50%;
  }
  .width-60\%\@sm {
    width: 60%;
  }
  .width-66\%\@sm {
    width: calc(100% / 1.5);
  }
  .width-70\%\@sm {
    width: 70%;
  }
  .width-75\%\@sm {
    width: 75%;
  }
  .width-80\%\@sm {
    width: 80%;
  }
  .width-90\%\@sm {
    width: 90%;
  }
  .width-100\%\@sm {
    width: 100%;
  }
  .width-100vw\@sm {
    width: 100vw;
  }
  .width-auto\@sm {
    width: auto;
  }
  @supports (--css: variables) {
    .height-xxxxs\@sm {
      height: var(--size-xxxxs, 0.25rem);
    }
    .height-xxxs\@sm {
      height: var(--size-xxxs, 0.5rem);
    }
    .height-xxs\@sm {
      height: var(--size-xxs, 0.75rem);
    }
    .height-xs\@sm {
      height: var(--size-xs, 1rem);
    }
    .height-sm\@sm {
      height: var(--size-sm, 1.5rem);
    }
    .height-md\@sm {
      height: var(--size-md, 2rem);
    }
    .height-lg\@sm {
      height: var(--size-lg, 3rem);
    }
    .height-xl\@sm {
      height: var(--size-xl, 4rem);
    }
    .height-xxl\@sm {
      height: var(--size-xxl, 6rem);
    }
    .height-xxxl\@sm {
      height: var(--size-xxxl, 8rem);
    }
    .height-xxxxl\@sm {
      height: var(--size-xxxxl, 16rem);
    }
  }
  .height-0\@sm {
    height: 0;
  }
  .height-10\%\@sm {
    height: 10%;
  }
  .height-20\%\@sm {
    height: 20%;
  }
  .height-25\%\@sm {
    height: 25%;
  }
  .height-30\%\@sm {
    height: 30%;
  }
  .height-33\%\@sm {
    height: calc(100% / 3);
  }
  .height-40\%\@sm {
    height: 40%;
  }
  .height-50\%\@sm {
    height: 50%;
  }
  .height-60\%\@sm {
    height: 60%;
  }
  .height-66\%\@sm {
    height: calc(100% / 1.5);
  }
  .height-70\%\@sm {
    height: 70%;
  }
  .height-75\%\@sm {
    height: 75%;
  }
  .height-80\%\@sm {
    height: 80%;
  }
  .height-90\%\@sm {
    height: 90%;
  }
  .height-100\%\@sm {
    height: 100%;
  }
  .height-100vh\@sm {
    height: 100vh;
  }
  .height-auto\@sm {
    height: auto;
  }
  .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%;
  }
  .bottom-0\@sm {
    bottom: 0;
  }
  .bottom-50\%\@sm {
    bottom: 50%;
  }
  .right-0\@sm {
    right: 0;
  }
  .right-50\%\@sm {
    right: 50%;
  }
  .left-0\@sm {
    left: 0;
  }
  .left-50\%\@sm {
    left: 50%;
  }
  @supports (--css: variables) {
    .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-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-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-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 {
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }
  .visible\@sm {
    visibility: visible;
  }
  .invisible\@sm {
    visibility: hidden;
  }
}
@media not all and (min-width: 48rem) {
  .has-margin\@sm {
    margin: 0 !important;
  }
  .has-padding\@sm {
    padding: 0 !important;
  }
  .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-column\@md {
    flex-direction: column;
  }
  .flex-column-reverse\@md {
    flex-direction: column-reverse;
  }
  .flex-row\@md {
    flex-direction: row;
  }
  .flex-row-reverse\@md {
    flex-direction: row-reverse;
  }
  .flex-center\@md {
    justify-content: center;
    align-items: center;
  }
  .flex-grow\@md {
    flex-grow: 1;
  }
  .flex-grow-0\@md {
    flex-grow: 0;
  }
  .flex-shrink\@md {
    flex-shrink: 1;
  }
  .flex-shrink-0\@md {
    flex-shrink: 0;
  }
  .flex-basis-0\@md {
    flex-basis: 0;
  }
  .justify-start\@md {
    justify-content: flex-start;
  }
  .justify-end\@md {
    justify-content: flex-end;
  }
  .justify-center\@md {
    justify-content: center;
  }
  .justify-between\@md {
    justify-content: space-between;
  }
  .items-center\@md {
    align-items: center;
  }
  .items-start\@md {
    align-items: flex-start;
  }
  .items-end\@md {
    align-items: flex-end;
  }
  .items-baseline\@md {
    align-items: baseline;
  }
  .order-1\@md {
    order: 1;
  }
  .order-2\@md {
    order: 2;
  }
  .order-3\@md {
    order: 3;
  }
  .block\@md {
    display: block;
  }
  .inline-block\@md {
    display: inline-block;
  }
  .inline\@md {
    display: inline;
  }
  .contents\@md {
    display: contents;
  }
  .hide\@md {
    display: none !important;
  }
  @supports (--css: variables) {
    .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;
    }
  }
  @supports (--css: variables) {
    .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;
  }
  @supports (--css: variables) {
    .text-xs\@md {
      font-size: var(--text-xs, 0.694em);
    }
    .text-sm\@md {
      font-size: var(--text-sm, 0.833em);
    }
    .text-base\@md {
      font-size: var(--text-unit, 1em);
    }
    .text-md\@md {
      font-size: var(--text-md, 1.2em);
    }
    .text-lg\@md {
      font-size: var(--text-lg, 1.44em);
    }
    .text-xl\@md {
      font-size: var(--text-xl, 1.728em);
    }
    .text-xxl\@md {
      font-size: var(--text-xxl, 2.074em);
    }
    .text-xxxl\@md {
      font-size: var(--text-xxxl, 2.488em);
    }
    .text-xxxxl\@md {
      font-size: var(--text-xxxxl, 2.985em);
    }
  }
  @supports (--css: variables) {
    .width-xxxxs\@md {
      width: var(--size-xxxxs, 0.25rem);
    }
    .width-xxxs\@md {
      width: var(--size-xxxs, 0.5rem);
    }
    .width-xxs\@md {
      width: var(--size-xxs, 0.75rem);
    }
    .width-xs\@md {
      width: var(--size-xs, 1rem);
    }
    .width-sm\@md {
      width: var(--size-sm, 1.5rem);
    }
    .width-md\@md {
      width: var(--size-md, 2rem);
    }
    .width-lg\@md {
      width: var(--size-lg, 3rem);
    }
    .width-xl\@md {
      width: var(--size-xl, 4rem);
    }
    .width-xxl\@md {
      width: var(--size-xxl, 6rem);
    }
    .width-xxxl\@md {
      width: var(--size-xxxl, 8rem);
    }
    .width-xxxxl\@md {
      width: var(--size-xxxxl, 16rem);
    }
  }
  .width-0\@md {
    width: 0;
  }
  .width-10\%\@md {
    width: 10%;
  }
  .width-20\%\@md {
    width: 20%;
  }
  .width-25\%\@md {
    width: 25%;
  }
  .width-30\%\@md {
    width: 30%;
  }
  .width-33\%\@md {
    width: calc(100% / 3);
  }
  .width-40\%\@md {
    width: 40%;
  }
  .width-50\%\@md {
    width: 50%;
  }
  .width-60\%\@md {
    width: 60%;
  }
  .width-66\%\@md {
    width: calc(100% / 1.5);
  }
  .width-70\%\@md {
    width: 70%;
  }
  .width-75\%\@md {
    width: 75%;
  }
  .width-80\%\@md {
    width: 80%;
  }
  .width-90\%\@md {
    width: 90%;
  }
  .width-100\%\@md {
    width: 100%;
  }
  .width-100vw\@md {
    width: 100vw;
  }
  .width-auto\@md {
    width: auto;
  }
  @supports (--css: variables) {
    .height-xxxxs\@md {
      height: var(--size-xxxxs, 0.25rem);
    }
    .height-xxxs\@md {
      height: var(--size-xxxs, 0.5rem);
    }
    .height-xxs\@md {
      height: var(--size-xxs, 0.75rem);
    }
    .height-xs\@md {
      height: var(--size-xs, 1rem);
    }
    .height-sm\@md {
      height: var(--size-sm, 1.5rem);
    }
    .height-md\@md {
      height: var(--size-md, 2rem);
    }
    .height-lg\@md {
      height: var(--size-lg, 3rem);
    }
    .height-xl\@md {
      height: var(--size-xl, 4rem);
    }
    .height-xxl\@md {
      height: var(--size-xxl, 6rem);
    }
    .height-xxxl\@md {
      height: var(--size-xxxl, 8rem);
    }
    .height-xxxxl\@md {
      height: var(--size-xxxxl, 16rem);
    }
  }
  .height-0\@md {
    height: 0;
  }
  .height-10\%\@md {
    height: 10%;
  }
  .height-20\%\@md {
    height: 20%;
  }
  .height-25\%\@md {
    height: 25%;
  }
  .height-30\%\@md {
    height: 30%;
  }
  .height-33\%\@md {
    height: calc(100% / 3);
  }
  .height-40\%\@md {
    height: 40%;
  }
  .height-50\%\@md {
    height: 50%;
  }
  .height-60\%\@md {
    height: 60%;
  }
  .height-66\%\@md {
    height: calc(100% / 1.5);
  }
  .height-70\%\@md {
    height: 70%;
  }
  .height-75\%\@md {
    height: 75%;
  }
  .height-80\%\@md {
    height: 80%;
  }
  .height-90\%\@md {
    height: 90%;
  }
  .height-100\%\@md {
    height: 100%;
  }
  .height-100vh\@md {
    height: 100vh;
  }
  .height-auto\@md {
    height: auto;
  }
  .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%;
  }
  .bottom-0\@md {
    bottom: 0;
  }
  .bottom-50\%\@md {
    bottom: 50%;
  }
  .right-0\@md {
    right: 0;
  }
  .right-50\%\@md {
    right: 50%;
  }
  .left-0\@md {
    left: 0;
  }
  .left-50\%\@md {
    left: 50%;
  }
  @supports (--css: variables) {
    .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-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-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-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 {
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }
  .visible\@md {
    visibility: visible;
  }
  .invisible\@md {
    visibility: hidden;
  }
}
@media not all and (min-width: 64rem) {
  .has-margin\@md {
    margin: 0 !important;
  }
  .has-padding\@md {
    padding: 0 !important;
  }
  .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-column\@lg {
    flex-direction: column;
  }
  .flex-column-reverse\@lg {
    flex-direction: column-reverse;
  }
  .flex-row\@lg {
    flex-direction: row;
  }
  .flex-row-reverse\@lg {
    flex-direction: row-reverse;
  }
  .flex-center\@lg {
    justify-content: center;
    align-items: center;
  }
  .flex-grow\@lg {
    flex-grow: 1;
  }
  .flex-grow-0\@lg {
    flex-grow: 0;
  }
  .flex-shrink\@lg {
    flex-shrink: 1;
  }
  .flex-shrink-0\@lg {
    flex-shrink: 0;
  }
  .flex-basis-0\@lg {
    flex-basis: 0;
  }
  .justify-start\@lg {
    justify-content: flex-start;
  }
  .justify-end\@lg {
    justify-content: flex-end;
  }
  .justify-center\@lg {
    justify-content: center;
  }
  .justify-between\@lg {
    justify-content: space-between;
  }
  .items-center\@lg {
    align-items: center;
  }
  .items-start\@lg {
    align-items: flex-start;
  }
  .items-end\@lg {
    align-items: flex-end;
  }
  .items-baseline\@lg {
    align-items: baseline;
  }
  .order-1\@lg {
    order: 1;
  }
  .order-2\@lg {
    order: 2;
  }
  .order-3\@lg {
    order: 3;
  }
  .block\@lg {
    display: block;
  }
  .inline-block\@lg {
    display: inline-block;
  }
  .inline\@lg {
    display: inline;
  }
  .contents\@lg {
    display: contents;
  }
  .hide\@lg {
    display: none !important;
  }
  @supports (--css: variables) {
    .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;
    }
  }
  @supports (--css: variables) {
    .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;
  }
  @supports (--css: variables) {
    .text-xs\@lg {
      font-size: var(--text-xs, 0.694em);
    }
    .text-sm\@lg {
      font-size: var(--text-sm, 0.833em);
    }
    .text-base\@lg {
      font-size: var(--text-unit, 1em);
    }
    .text-md\@lg {
      font-size: var(--text-md, 1.2em);
    }
    .text-lg\@lg {
      font-size: var(--text-lg, 1.44em);
    }
    .text-xl\@lg {
      font-size: var(--text-xl, 1.728em);
    }
    .text-xxl\@lg {
      font-size: var(--text-xxl, 2.074em);
    }
    .text-xxxl\@lg {
      font-size: var(--text-xxxl, 2.488em);
    }
    .text-xxxxl\@lg {
      font-size: var(--text-xxxxl, 2.985em);
    }
  }
  @supports (--css: variables) {
    .width-xxxxs\@lg {
      width: var(--size-xxxxs, 0.25rem);
    }
    .width-xxxs\@lg {
      width: var(--size-xxxs, 0.5rem);
    }
    .width-xxs\@lg {
      width: var(--size-xxs, 0.75rem);
    }
    .width-xs\@lg {
      width: var(--size-xs, 1rem);
    }
    .width-sm\@lg {
      width: var(--size-sm, 1.5rem);
    }
    .width-md\@lg {
      width: var(--size-md, 2rem);
    }
    .width-lg\@lg {
      width: var(--size-lg, 3rem);
    }
    .width-xl\@lg {
      width: var(--size-xl, 4rem);
    }
    .width-xxl\@lg {
      width: var(--size-xxl, 6rem);
    }
    .width-xxxl\@lg {
      width: var(--size-xxxl, 8rem);
    }
    .width-xxxxl\@lg {
      width: var(--size-xxxxl, 16rem);
    }
  }
  .width-0\@lg {
    width: 0;
  }
  .width-10\%\@lg {
    width: 10%;
  }
  .width-20\%\@lg {
    width: 20%;
  }
  .width-25\%\@lg {
    width: 25%;
  }
  .width-30\%\@lg {
    width: 30%;
  }
  .width-33\%\@lg {
    width: calc(100% / 3);
  }
  .width-40\%\@lg {
    width: 40%;
  }
  .width-50\%\@lg {
    width: 50%;
  }
  .width-60\%\@lg {
    width: 60%;
  }
  .width-66\%\@lg {
    width: calc(100% / 1.5);
  }
  .width-70\%\@lg {
    width: 70%;
  }
  .width-75\%\@lg {
    width: 75%;
  }
  .width-80\%\@lg {
    width: 80%;
  }
  .width-90\%\@lg {
    width: 90%;
  }
  .width-100\%\@lg {
    width: 100%;
  }
  .width-100vw\@lg {
    width: 100vw;
  }
  .width-auto\@lg {
    width: auto;
  }
  @supports (--css: variables) {
    .height-xxxxs\@lg {
      height: var(--size-xxxxs, 0.25rem);
    }
    .height-xxxs\@lg {
      height: var(--size-xxxs, 0.5rem);
    }
    .height-xxs\@lg {
      height: var(--size-xxs, 0.75rem);
    }
    .height-xs\@lg {
      height: var(--size-xs, 1rem);
    }
    .height-sm\@lg {
      height: var(--size-sm, 1.5rem);
    }
    .height-md\@lg {
      height: var(--size-md, 2rem);
    }
    .height-lg\@lg {
      height: var(--size-lg, 3rem);
    }
    .height-xl\@lg {
      height: var(--size-xl, 4rem);
    }
    .height-xxl\@lg {
      height: var(--size-xxl, 6rem);
    }
    .height-xxxl\@lg {
      height: var(--size-xxxl, 8rem);
    }
    .height-xxxxl\@lg {
      height: var(--size-xxxxl, 16rem);
    }
  }
  .height-0\@lg {
    height: 0;
  }
  .height-10\%\@lg {
    height: 10%;
  }
  .height-20\%\@lg {
    height: 20%;
  }
  .height-25\%\@lg {
    height: 25%;
  }
  .height-30\%\@lg {
    height: 30%;
  }
  .height-33\%\@lg {
    height: calc(100% / 3);
  }
  .height-40\%\@lg {
    height: 40%;
  }
  .height-50\%\@lg {
    height: 50%;
  }
  .height-60\%\@lg {
    height: 60%;
  }
  .height-66\%\@lg {
    height: calc(100% / 1.5);
  }
  .height-70\%\@lg {
    height: 70%;
  }
  .height-75\%\@lg {
    height: 75%;
  }
  .height-80\%\@lg {
    height: 80%;
  }
  .height-90\%\@lg {
    height: 90%;
  }
  .height-100\%\@lg {
    height: 100%;
  }
  .height-100vh\@lg {
    height: 100vh;
  }
  .height-auto\@lg {
    height: auto;
  }
  .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%;
  }
  .bottom-0\@lg {
    bottom: 0;
  }
  .bottom-50\%\@lg {
    bottom: 50%;
  }
  .right-0\@lg {
    right: 0;
  }
  .right-50\%\@lg {
    right: 50%;
  }
  .left-0\@lg {
    left: 0;
  }
  .left-50\%\@lg {
    left: 50%;
  }
  @supports (--css: variables) {
    .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-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-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-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 {
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }
  .visible\@lg {
    visibility: visible;
  }
  .invisible\@lg {
    visibility: hidden;
  }
}
@media not all and (min-width: 80rem) {
  .has-margin\@lg {
    margin: 0 !important;
  }
  .has-padding\@lg {
    padding: 0 !important;
  }
  .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-column\@xl {
    flex-direction: column;
  }
  .flex-column-reverse\@xl {
    flex-direction: column-reverse;
  }
  .flex-row\@xl {
    flex-direction: row;
  }
  .flex-row-reverse\@xl {
    flex-direction: row-reverse;
  }
  .flex-center\@xl {
    justify-content: center;
    align-items: center;
  }
  .flex-grow\@xl {
    flex-grow: 1;
  }
  .flex-grow-0\@xl {
    flex-grow: 0;
  }
  .flex-shrink\@xl {
    flex-shrink: 1;
  }
  .flex-shrink-0\@xl {
    flex-shrink: 0;
  }
  .flex-basis-0\@xl {
    flex-basis: 0;
  }
  .justify-start\@xl {
    justify-content: flex-start;
  }
  .justify-end\@xl {
    justify-content: flex-end;
  }
  .justify-center\@xl {
    justify-content: center;
  }
  .justify-between\@xl {
    justify-content: space-between;
  }
  .items-center\@xl {
    align-items: center;
  }
  .items-start\@xl {
    align-items: flex-start;
  }
  .items-end\@xl {
    align-items: flex-end;
  }
  .items-baseline\@xl {
    align-items: baseline;
  }
  .order-1\@xl {
    order: 1;
  }
  .order-2\@xl {
    order: 2;
  }
  .order-3\@xl {
    order: 3;
  }
  .block\@xl {
    display: block;
  }
  .inline-block\@xl {
    display: inline-block;
  }
  .inline\@xl {
    display: inline;
  }
  .contents\@xl {
    display: contents;
  }
  .hide\@xl {
    display: none !important;
  }
  @supports (--css: variables) {
    .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;
    }
  }
  @supports (--css: variables) {
    .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;
  }
  @supports (--css: variables) {
    .text-xs\@xl {
      font-size: var(--text-xs, 0.694em);
    }
    .text-sm\@xl {
      font-size: var(--text-sm, 0.833em);
    }
    .text-base\@xl {
      font-size: var(--text-unit, 1em);
    }
    .text-md\@xl {
      font-size: var(--text-md, 1.2em);
    }
    .text-lg\@xl {
      font-size: var(--text-lg, 1.44em);
    }
    .text-xl\@xl {
      font-size: var(--text-xl, 1.728em);
    }
    .text-xxl\@xl {
      font-size: var(--text-xxl, 2.074em);
    }
    .text-xxxl\@xl {
      font-size: var(--text-xxxl, 2.488em);
    }
    .text-xxxxl\@xl {
      font-size: var(--text-xxxxl, 2.985em);
    }
  }
  @supports (--css: variables) {
    .width-xxxxs\@xl {
      width: var(--size-xxxxs, 0.25rem);
    }
    .width-xxxs\@xl {
      width: var(--size-xxxs, 0.5rem);
    }
    .width-xxs\@xl {
      width: var(--size-xxs, 0.75rem);
    }
    .width-xs\@xl {
      width: var(--size-xs, 1rem);
    }
    .width-sm\@xl {
      width: var(--size-sm, 1.5rem);
    }
    .width-md\@xl {
      width: var(--size-md, 2rem);
    }
    .width-lg\@xl {
      width: var(--size-lg, 3rem);
    }
    .width-xl\@xl {
      width: var(--size-xl, 4rem);
    }
    .width-xxl\@xl {
      width: var(--size-xxl, 6rem);
    }
    .width-xxxl\@xl {
      width: var(--size-xxxl, 8rem);
    }
    .width-xxxxl\@xl {
      width: var(--size-xxxxl, 16rem);
    }
  }
  .width-0\@xl {
    width: 0;
  }
  .width-10\%\@xl {
    width: 10%;
  }
  .width-20\%\@xl {
    width: 20%;
  }
  .width-25\%\@xl {
    width: 25%;
  }
  .width-30\%\@xl {
    width: 30%;
  }
  .width-33\%\@xl {
    width: calc(100% / 3);
  }
  .width-40\%\@xl {
    width: 40%;
  }
  .width-50\%\@xl {
    width: 50%;
  }
  .width-60\%\@xl {
    width: 60%;
  }
  .width-66\%\@xl {
    width: calc(100% / 1.5);
  }
  .width-70\%\@xl {
    width: 70%;
  }
  .width-75\%\@xl {
    width: 75%;
  }
  .width-80\%\@xl {
    width: 80%;
  }
  .width-90\%\@xl {
    width: 90%;
  }
  .width-100\%\@xl {
    width: 100%;
  }
  .width-100vw\@xl {
    width: 100vw;
  }
  .width-auto\@xl {
    width: auto;
  }
  @supports (--css: variables) {
    .height-xxxxs\@xl {
      height: var(--size-xxxxs, 0.25rem);
    }
    .height-xxxs\@xl {
      height: var(--size-xxxs, 0.5rem);
    }
    .height-xxs\@xl {
      height: var(--size-xxs, 0.75rem);
    }
    .height-xs\@xl {
      height: var(--size-xs, 1rem);
    }
    .height-sm\@xl {
      height: var(--size-sm, 1.5rem);
    }
    .height-md\@xl {
      height: var(--size-md, 2rem);
    }
    .height-lg\@xl {
      height: var(--size-lg, 3rem);
    }
    .height-xl\@xl {
      height: var(--size-xl, 4rem);
    }
    .height-xxl\@xl {
      height: var(--size-xxl, 6rem);
    }
    .height-xxxl\@xl {
      height: var(--size-xxxl, 8rem);
    }
    .height-xxxxl\@xl {
      height: var(--size-xxxxl, 16rem);
    }
  }
  .height-0\@xl {
    height: 0;
  }
  .height-10\%\@xl {
    height: 10%;
  }
  .height-20\%\@xl {
    height: 20%;
  }
  .height-25\%\@xl {
    height: 25%;
  }
  .height-30\%\@xl {
    height: 30%;
  }
  .height-33\%\@xl {
    height: calc(100% / 3);
  }
  .height-40\%\@xl {
    height: 40%;
  }
  .height-50\%\@xl {
    height: 50%;
  }
  .height-60\%\@xl {
    height: 60%;
  }
  .height-66\%\@xl {
    height: calc(100% / 1.5);
  }
  .height-70\%\@xl {
    height: 70%;
  }
  .height-75\%\@xl {
    height: 75%;
  }
  .height-80\%\@xl {
    height: 80%;
  }
  .height-90\%\@xl {
    height: 90%;
  }
  .height-100\%\@xl {
    height: 100%;
  }
  .height-100vh\@xl {
    height: 100vh;
  }
  .height-auto\@xl {
    height: auto;
  }
  .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%;
  }
  .bottom-0\@xl {
    bottom: 0;
  }
  .bottom-50\%\@xl {
    bottom: 50%;
  }
  .right-0\@xl {
    right: 0;
  }
  .right-50\%\@xl {
    right: 50%;
  }
  .left-0\@xl {
    left: 0;
  }
  .left-50\%\@xl {
    left: 50%;
  }
  @supports (--css: variables) {
    .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-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-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-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 {
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }
  .visible\@xl {
    visibility: visible;
  }
  .invisible\@xl {
    visibility: hidden;
  }
}
@media not all and (min-width: 90rem) {
  .has-margin\@xl {
    margin: 0 !important;
  }
  .has-padding\@xl {
    padding: 0 !important;
  }
  .display\@xl {
    display: none !important;
  }
} /*! purgecss start ignore */
:root,
[data-theme="default"] {
  --color-primary-darker: hsl(2, 62%, 25%);
  --color-primary-darker-h: 2;
  --color-primary-darker-s: 62%;
  --color-primary-darker-l: 25%;
  --color-primary-dark: hsl(2, 62%, 35%);
  --color-primary-dark-h: 2;
  --color-primary-dark-s: 62%;
  --color-primary-dark-l: 35%;
  --color-primary: hsl(2, 62%, 45%);
  --color-primary-h: 2;
  --color-primary-s: 62%;
  --color-primary-l: 45%;
  --color-primary-light: hsl(2, 62%, 55%);
  --color-primary-light-h: 2;
  --color-primary-light-s: 62%;
  --color-primary-light-l: 55%;
  --color-primary-lighter: hsl(2, 62%, 65%);
  --color-primary-lighter-h: 2;
  --color-primary-lighter-s: 62%;
  --color-primary-lighter-l: 65%;
  --color-accent-darker: hsl(0, 0%, 73%);
  --color-accent-darker-h: 0;
  --color-accent-darker-s: 0%;
  --color-accent-darker-l: 73%;
  --color-accent-dark: hsl(0, 0%, 83%);
  --color-accent-dark-h: 0;
  --color-accent-dark-s: 0%;
  --color-accent-dark-l: 83%;
  --color-accent: hsl(0, 0%, 93%);
  --color-accent-h: 0;
  --color-accent-s: 0%;
  --color-accent-l: 93%;
  --color-accent-light: hsl(0, 0%, 96%);
  --color-accent-light-h: 0;
  --color-accent-light-s: 0%;
  --color-accent-light-l: 96%;
  --color-accent-lighter: hsl(0, 0%, 100%);
  --color-accent-lighter-h: 0;
  --color-accent-lighter-s: 0%;
  --color-accent-lighter-l: 100%;
  --color-black: hsl(0, 0%, 0%);
  --color-black-h: 0;
  --color-black-s: 0%;
  --color-black-l: 0%;
  --color-white: hsl(0, 0%, 100%);
  --color-white-h: 0;
  --color-white-s: 0%;
  --color-white-l: 100%;
  --color-warning-darker: hsl(45, 100%, 28%);
  --color-warning-darker-h: 45;
  --color-warning-darker-s: 100%;
  --color-warning-darker-l: 28%;
  --color-warning-dark: hsl(45, 100%, 38%);
  --color-warning-dark-h: 45;
  --color-warning-dark-s: 100%;
  --color-warning-dark-l: 38%;
  --color-warning: hsl(45, 100%, 48%);
  --color-warning-h: 45;
  --color-warning-s: 100%;
  --color-warning-l: 48%;
  --color-warning-light: hsl(45, 100%, 58%);
  --color-warning-light-h: 45;
  --color-warning-light-s: 100%;
  --color-warning-light-l: 58%;
  --color-warning-lighter: hsl(45, 100%, 68%);
  --color-warning-lighter-h: 45;
  --color-warning-lighter-s: 100%;
  --color-warning-lighter-l: 68%;
  --color-success-darker: hsl(129, 57%, 13%);
  --color-success-darker-h: 129;
  --color-success-darker-s: 57%;
  --color-success-darker-l: 13%;
  --color-success-dark: hsl(129, 57%, 23%);
  --color-success-dark-h: 129;
  --color-success-dark-s: 57%;
  --color-success-dark-l: 23%;
  --color-success: hsl(129, 57%, 33%);
  --color-success-h: 129;
  --color-success-s: 57%;
  --color-success-l: 33%;
  --color-success-light: hsl(129, 57%, 43%);
  --color-success-light-h: 129;
  --color-success-light-s: 57%;
  --color-success-light-l: 43%;
  --color-success-lighter: hsl(129, 57%, 53%);
  --color-success-lighter-h: 129;
  --color-success-lighter-s: 57%;
  --color-success-lighter-l: 53%;
  --color-error-darker: hsl(11, 91%, 14%);
  --color-error-darker-h: 11;
  --color-error-darker-s: 91%;
  --color-error-darker-l: 14%;
  --color-error-dark: hsl(11, 91%, 24%);
  --color-error-dark-h: 11;
  --color-error-dark-s: 91%;
  --color-error-dark-l: 24%;
  --color-error: hsl(11, 91%, 34%);
  --color-error-h: 11;
  --color-error-s: 91%;
  --color-error-l: 34%;
  --color-error-light: hsl(11, 91%, 44%);
  --color-error-light-h: 11;
  --color-error-light-s: 91%;
  --color-error-light-l: 44%;
  --color-error-lighter: hsl(11, 91%, 54%);
  --color-error-lighter-h: 11;
  --color-error-lighter-s: 91%;
  --color-error-lighter-l: 54%;
  --color-bg-darker: hsl(0, 0%, 89%);
  --color-bg-darker-h: 0;
  --color-bg-darker-s: 0%;
  --color-bg-darker-l: 89%;
  --color-bg-dark: hsl(0, 0%, 93%);
  --color-bg-dark-h: 0;
  --color-bg-dark-s: 0%;
  --color-bg-dark-l: 93%;
  --color-bg: hsl(0, 0%, 100%);
  --color-bg-h: 0;
  --color-bg-s: 0%;
  --color-bg-l: 100%;
  --color-bg-light: hsl(0, 0%, 100%);
  --color-bg-light-h: 0;
  --color-bg-light-s: 0%;
  --color-bg-light-l: 100%;
  --color-bg-lighter: hsl(0, 0%, 100%);
  --color-bg-lighter-h: 0;
  --color-bg-lighter-s: 0%;
  --color-bg-lighter-l: 100%;
  --color-contrast-lower: hsl(0, 0%, 95%);
  --color-contrast-lower-h: 0;
  --color-contrast-lower-s: 0%;
  --color-contrast-lower-l: 95%;
  --color-contrast-low: hsl(0, 0%, 81%);
  --color-contrast-low-h: 0;
  --color-contrast-low-s: 0%;
  --color-contrast-low-l: 81%;
  --color-contrast-medium: hsl(0, 0%, 42%);
  --color-contrast-medium-h: 0;
  --color-contrast-medium-s: 0%;
  --color-contrast-medium-l: 42%;
  --color-contrast-high: hsl(0, 0%, 11%);
  --color-contrast-high-h: 0;
  --color-contrast-high-s: 0%;
  --color-contrast-high-l: 11%;
  --color-contrast-higher: hsl(0, 0%, 0%);
  --color-contrast-higher-h: 0;
  --color-contrast-higher-s: 0%;
  --color-contrast-higher-l: 0%;
  --gradient-primary-stop-1: hsl(218, 80%, 96%);
  --gradient-primary-stop-1-h: 218;
  --gradient-primary-stop-1-s: 80%;
  --gradient-primary-stop-1-l: 96%;
  --gradient-primary-stop-2: hsl(289, 52%, 96%);
  --gradient-primary-stop-2-h: 289;
  --gradient-primary-stop-2-s: 52%;
  --gradient-primary-stop-2-l: 96%;
  --gradient-secondary-stop-1: hsl(289, 52%, 96%);
  --gradient-secondary-stop-1-h: 289;
  --gradient-secondary-stop-1-s: 52%;
  --gradient-secondary-stop-1-l: 96%;
  --gradient-secondary-stop-2: hsl(231, 47%, 97%);
  --gradient-secondary-stop-2-h: 231;
  --gradient-secondary-stop-2-s: 47%;
  --gradient-secondary-stop-2-l: 97%;
}
@supports (--css: variables) {
  [data-theme="mooyah"] {
    --color-primary-darker: hsl(2, 62%, 25%);
    --color-primary-darker-h: 2;
    --color-primary-darker-s: 62%;
    --color-primary-darker-l: 25%;
    --color-primary-dark: hsl(2, 62%, 35%);
    --color-primary-dark-h: 2;
    --color-primary-dark-s: 62%;
    --color-primary-dark-l: 35%;
    --color-primary: hsl(2, 62%, 45%);
    --color-primary-h: 2;
    --color-primary-s: 62%;
    --color-primary-l: 45%;
    --color-primary-light: hsl(2, 62%, 55%);
    --color-primary-light-h: 2;
    --color-primary-light-s: 62%;
    --color-primary-light-l: 55%;
    --color-primary-lighter: hsl(2, 62%, 65%);
    --color-primary-lighter-h: 2;
    --color-primary-lighter-s: 62%;
    --color-primary-lighter-l: 65%;
    --color-accent-darker: hsl(0, 0%, 73%);
    --color-accent-darker-h: 0;
    --color-accent-darker-s: 0%;
    --color-accent-darker-l: 73%;
    --color-accent-dark: hsl(0, 0%, 83%);
    --color-accent-dark-h: 0;
    --color-accent-dark-s: 0%;
    --color-accent-dark-l: 83%;
    --color-accent: hsl(0, 0%, 93%);
    --color-accent-h: 0;
    --color-accent-s: 0%;
    --color-accent-l: 93%;
    --color-accent-light: hsl(0, 0%, 96%);
    --color-accent-light-h: 0;
    --color-accent-light-s: 0%;
    --color-accent-light-l: 96%;
    --color-accent-lighter: hsl(0, 0%, 100%);
    --color-accent-lighter-h: 0;
    --color-accent-lighter-s: 0%;
    --color-accent-lighter-l: 100%;
    --color-black: hsl(0, 0%, 0%);
    --color-black-h: 0;
    --color-black-s: 0%;
    --color-black-l: 0%;
    --color-white: hsl(0, 0%, 100%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 100%;
    --color-warning-darker: hsl(45, 100%, 28%);
    --color-warning-darker-h: 45;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 28%;
    --color-warning-dark: hsl(45, 100%, 38%);
    --color-warning-dark-h: 45;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 38%;
    --color-warning: hsl(45, 100%, 48%);
    --color-warning-h: 45;
    --color-warning-s: 100%;
    --color-warning-l: 48%;
    --color-warning-light: hsl(45, 100%, 58%);
    --color-warning-light-h: 45;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 58%;
    --color-warning-lighter: hsl(45, 100%, 68%);
    --color-warning-lighter-h: 45;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 68%;
    --color-success-darker: hsl(129, 57%, 13%);
    --color-success-darker-h: 129;
    --color-success-darker-s: 57%;
    --color-success-darker-l: 13%;
    --color-success-dark: hsl(129, 57%, 23%);
    --color-success-dark-h: 129;
    --color-success-dark-s: 57%;
    --color-success-dark-l: 23%;
    --color-success: hsl(129, 57%, 33%);
    --color-success-h: 129;
    --color-success-s: 57%;
    --color-success-l: 33%;
    --color-success-light: hsl(129, 57%, 43%);
    --color-success-light-h: 129;
    --color-success-light-s: 57%;
    --color-success-light-l: 43%;
    --color-success-lighter: hsl(129, 57%, 53%);
    --color-success-lighter-h: 129;
    --color-success-lighter-s: 57%;
    --color-success-lighter-l: 53%;
    --color-error-darker: hsl(11, 91%, 14%);
    --color-error-darker-h: 11;
    --color-error-darker-s: 91%;
    --color-error-darker-l: 14%;
    --color-error-dark: hsl(11, 91%, 24%);
    --color-error-dark-h: 11;
    --color-error-dark-s: 91%;
    --color-error-dark-l: 24%;
    --color-error: hsl(11, 91%, 34%);
    --color-error-h: 11;
    --color-error-s: 91%;
    --color-error-l: 34%;
    --color-error-light: hsl(11, 91%, 44%);
    --color-error-light-h: 11;
    --color-error-light-s: 91%;
    --color-error-light-l: 44%;
    --color-error-lighter: hsl(11, 91%, 54%);
    --color-error-lighter-h: 11;
    --color-error-lighter-s: 91%;
    --color-error-lighter-l: 54%;
    --color-bg-darker: hsl(0, 0%, 89%);
    --color-bg-darker-h: 0;
    --color-bg-darker-s: 0%;
    --color-bg-darker-l: 89%;
    --color-bg-dark: hsl(0, 0%, 93%);
    --color-bg-dark-h: 0;
    --color-bg-dark-s: 0%;
    --color-bg-dark-l: 93%;
    --color-bg: hsl(0, 0%, 100%);
    --color-bg-h: 0;
    --color-bg-s: 0%;
    --color-bg-l: 100%;
    --color-bg-light: hsl(0, 0%, 100%);
    --color-bg-light-h: 0;
    --color-bg-light-s: 0%;
    --color-bg-light-l: 100%;
    --color-bg-lighter: hsl(0, 0%, 100%);
    --color-bg-lighter-h: 0;
    --color-bg-lighter-s: 0%;
    --color-bg-lighter-l: 100%;
    --color-contrast-lower: hsl(0, 0%, 95%);
    --color-contrast-lower-h: 0;
    --color-contrast-lower-s: 0%;
    --color-contrast-lower-l: 95%;
    --color-contrast-low: hsl(0, 0%, 81%);
    --color-contrast-low-h: 0;
    --color-contrast-low-s: 0%;
    --color-contrast-low-l: 81%;
    --color-contrast-medium: hsl(0, 0%, 42%);
    --color-contrast-medium-h: 0;
    --color-contrast-medium-s: 0%;
    --color-contrast-medium-l: 42%;
    --color-contrast-high: hsl(0, 0%, 11%);
    --color-contrast-high-h: 0;
    --color-contrast-high-s: 0%;
    --color-contrast-high-l: 11%;
    --color-contrast-higher: hsl(0, 0%, 0%);
    --color-contrast-higher-h: 0;
    --color-contrast-higher-s: 0%;
    --color-contrast-higher-l: 0%;
    --gradient-primary-stop-1: hsl(218, 80%, 96%);
    --gradient-primary-stop-1-h: 218;
    --gradient-primary-stop-1-s: 80%;
    --gradient-primary-stop-1-l: 96%;
    --gradient-primary-stop-2: hsl(289, 52%, 96%);
    --gradient-primary-stop-2-h: 289;
    --gradient-primary-stop-2-s: 52%;
    --gradient-primary-stop-2-l: 96%;
    --gradient-secondary-stop-1: hsl(289, 52%, 96%);
    --gradient-secondary-stop-1-h: 289;
    --gradient-secondary-stop-1-s: 52%;
    --gradient-secondary-stop-1-l: 96%;
    --gradient-secondary-stop-2: hsl(231, 47%, 97%);
    --gradient-secondary-stop-2-h: 231;
    --gradient-secondary-stop-2-s: 47%;
    --gradient-secondary-stop-2-l: 97%;
  }
}
@supports (--css: variables) {
  [data-theme="endo"] {
    --color-primary-darker: hsl(185, 100%, 5%);
    --color-primary-darker-h: 185;
    --color-primary-darker-s: 100%;
    --color-primary-darker-l: 5%;
    --color-primary-dark: hsl(185, 100%, 15%);
    --color-primary-dark-h: 185;
    --color-primary-dark-s: 100%;
    --color-primary-dark-l: 15%;
    --color-primary: hsl(185, 100%, 25%);
    --color-primary-h: 185;
    --color-primary-s: 100%;
    --color-primary-l: 25%;
    --color-primary-light: hsl(185, 100%, 35%);
    --color-primary-light-h: 185;
    --color-primary-light-s: 100%;
    --color-primary-light-l: 35%;
    --color-primary-lighter: hsl(185, 100%, 45%);
    --color-primary-lighter-h: 185;
    --color-primary-lighter-s: 100%;
    --color-primary-lighter-l: 45%;
    --color-accent-darker: hsl(0, 0%, 73%);
    --color-accent-darker-h: 0;
    --color-accent-darker-s: 0%;
    --color-accent-darker-l: 73%;
    --color-accent-dark: hsl(0, 0%, 83%);
    --color-accent-dark-h: 0;
    --color-accent-dark-s: 0%;
    --color-accent-dark-l: 83%;
    --color-accent: hsl(0, 0%, 93%);
    --color-accent-h: 0;
    --color-accent-s: 0%;
    --color-accent-l: 93%;
    --color-accent-light: hsl(0, 0%, 96%);
    --color-accent-light-h: 0;
    --color-accent-light-s: 0%;
    --color-accent-light-l: 96%;
    --color-accent-lighter: hsl(0, 0%, 100%);
    --color-accent-lighter-h: 0;
    --color-accent-lighter-s: 0%;
    --color-accent-lighter-l: 100%;
    --color-black: hsl(183, 42%, 19%);
    --color-black-h: 183;
    --color-black-s: 42%;
    --color-black-l: 19%;
    --color-white: hsl(0, 0%, 100%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 100%;
    --color-warning-darker: hsl(45, 100%, 28%);
    --color-warning-darker-h: 45;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 28%;
    --color-warning-dark: hsl(45, 100%, 38%);
    --color-warning-dark-h: 45;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 38%;
    --color-warning: hsl(45, 100%, 48%);
    --color-warning-h: 45;
    --color-warning-s: 100%;
    --color-warning-l: 48%;
    --color-warning-light: hsl(45, 100%, 58%);
    --color-warning-light-h: 45;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 58%;
    --color-warning-lighter: hsl(45, 100%, 68%);
    --color-warning-lighter-h: 45;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 68%;
    --color-success-darker: hsl(129, 57%, 13%);
    --color-success-darker-h: 129;
    --color-success-darker-s: 57%;
    --color-success-darker-l: 13%;
    --color-success-dark: hsl(129, 57%, 23%);
    --color-success-dark-h: 129;
    --color-success-dark-s: 57%;
    --color-success-dark-l: 23%;
    --color-success: hsl(129, 57%, 33%);
    --color-success-h: 129;
    --color-success-s: 57%;
    --color-success-l: 33%;
    --color-success-light: hsl(129, 57%, 43%);
    --color-success-light-h: 129;
    --color-success-light-s: 57%;
    --color-success-light-l: 43%;
    --color-success-lighter: hsl(129, 57%, 53%);
    --color-success-lighter-h: 129;
    --color-success-lighter-s: 57%;
    --color-success-lighter-l: 53%;
    --color-error-darker: hsl(11, 91%, 14%);
    --color-error-darker-h: 11;
    --color-error-darker-s: 91%;
    --color-error-darker-l: 14%;
    --color-error-dark: hsl(11, 91%, 24%);
    --color-error-dark-h: 11;
    --color-error-dark-s: 91%;
    --color-error-dark-l: 24%;
    --color-error: hsl(11, 91%, 34%);
    --color-error-h: 11;
    --color-error-s: 91%;
    --color-error-l: 34%;
    --color-error-light: hsl(11, 91%, 44%);
    --color-error-light-h: 11;
    --color-error-light-s: 91%;
    --color-error-light-l: 44%;
    --color-error-lighter: hsl(11, 91%, 54%);
    --color-error-lighter-h: 11;
    --color-error-lighter-s: 91%;
    --color-error-lighter-l: 54%;
    --color-bg-darker: hsl(240, 2%, 90%);
    --color-bg-darker-h: 240;
    --color-bg-darker-s: 2%;
    --color-bg-darker-l: 90%;
    --color-bg-dark: hsl(240, 3%, 94%);
    --color-bg-dark-h: 240;
    --color-bg-dark-s: 3%;
    --color-bg-dark-l: 94%;
    --color-bg: hsl(0, 0%, 100%);
    --color-bg-h: 0;
    --color-bg-s: 0%;
    --color-bg-l: 100%;
    --color-bg-light: hsl(240, 3%, 100%);
    --color-bg-light-h: 240;
    --color-bg-light-s: 3%;
    --color-bg-light-l: 100%;
    --color-bg-lighter: hsl(240, 2%, 100%);
    --color-bg-lighter-h: 240;
    --color-bg-lighter-s: 2%;
    --color-bg-lighter-l: 100%;
    --color-contrast-lower: hsl(0, 0%, 95%);
    --color-contrast-lower-h: 0;
    --color-contrast-lower-s: 0%;
    --color-contrast-lower-l: 95%;
    --color-contrast-low: hsl(240, 1%, 83%);
    --color-contrast-low-h: 240;
    --color-contrast-low-s: 1%;
    --color-contrast-low-l: 83%;
    --color-contrast-medium: hsl(240, 1%, 48%);
    --color-contrast-medium-h: 240;
    --color-contrast-medium-s: 1%;
    --color-contrast-medium-l: 48%;
    --color-contrast-high: hsl(240, 4%, 20%);
    --color-contrast-high-h: 240;
    --color-contrast-high-s: 4%;
    --color-contrast-high-l: 20%;
    --color-contrast-higher: hsl(240, 8%, 12%);
    --color-contrast-higher-h: 240;
    --color-contrast-higher-s: 8%;
    --color-contrast-higher-l: 12%;
    --gradient-primary-stop-1: hsl(218, 80%, 96%);
    --gradient-primary-stop-1-h: 218;
    --gradient-primary-stop-1-s: 80%;
    --gradient-primary-stop-1-l: 96%;
    --gradient-primary-stop-2: hsl(289, 52%, 96%);
    --gradient-primary-stop-2-h: 289;
    --gradient-primary-stop-2-s: 52%;
    --gradient-primary-stop-2-l: 96%;
    --gradient-secondary-stop-1: hsl(289, 52%, 96%);
    --gradient-secondary-stop-1-h: 289;
    --gradient-secondary-stop-1-s: 52%;
    --gradient-secondary-stop-1-l: 96%;
    --gradient-secondary-stop-2: hsl(231, 47%, 97%);
    --gradient-secondary-stop-2-h: 231;
    --gradient-secondary-stop-2-s: 47%;
    --gradient-secondary-stop-2-l: 97%;
  }
}
@supports (--css: variables) {
  [data-theme="habitat"] {
    --color-primary-darker: hsl(39, 24%, 66%);
    --color-primary-darker-h: 39;
    --color-primary-darker-s: 24%;
    --color-primary-darker-l: 66%;
    --color-primary-dark: hsl(39, 24%, 76%);
    --color-primary-dark-h: 39;
    --color-primary-dark-s: 24%;
    --color-primary-dark-l: 76%;
    --color-primary: hsl(39, 24%, 86%);
    --color-primary-h: 39;
    --color-primary-s: 24%;
    --color-primary-l: 86%;
    --color-primary-light: hsl(39, 24%, 93%);
    --color-primary-light-h: 39;
    --color-primary-light-s: 24%;
    --color-primary-light-l: 93%;
    --color-primary-lighter: hsl(39, 24%, 100%);
    --color-primary-lighter-h: 39;
    --color-primary-lighter-s: 24%;
    --color-primary-lighter-l: 100%;
    --color-accent-darker: hsl(0, 0%, 76%);
    --color-accent-darker-h: 0;
    --color-accent-darker-s: 0%;
    --color-accent-darker-l: 76%;
    --color-accent-dark: hsl(0, 0%, 86%);
    --color-accent-dark-h: 0;
    --color-accent-dark-s: 0%;
    --color-accent-dark-l: 86%;
    --color-accent: hsl(0, 0%, 96%);
    --color-accent-h: 0;
    --color-accent-s: 0%;
    --color-accent-l: 96%;
    --color-accent-light: hsl(0, 0%, 98%);
    --color-accent-light-h: 0;
    --color-accent-light-s: 0%;
    --color-accent-light-l: 98%;
    --color-accent-lighter: hsl(0, 0%, 100%);
    --color-accent-lighter-h: 0;
    --color-accent-lighter-s: 0%;
    --color-accent-lighter-l: 100%;
    --color-black: hsl(0, 0%, 0%);
    --color-black-h: 0;
    --color-black-s: 0%;
    --color-black-l: 0%;
    --color-white: hsl(0, 0%, 96%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 96%;
    --color-warning-darker: hsl(45, 100%, 28%);
    --color-warning-darker-h: 45;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 28%;
    --color-warning-dark: hsl(45, 100%, 38%);
    --color-warning-dark-h: 45;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 38%;
    --color-warning: hsl(45, 100%, 48%);
    --color-warning-h: 45;
    --color-warning-s: 100%;
    --color-warning-l: 48%;
    --color-warning-light: hsl(45, 100%, 58%);
    --color-warning-light-h: 45;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 58%;
    --color-warning-lighter: hsl(45, 100%, 68%);
    --color-warning-lighter-h: 45;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 68%;
    --color-success-darker: hsl(129, 57%, 13%);
    --color-success-darker-h: 129;
    --color-success-darker-s: 57%;
    --color-success-darker-l: 13%;
    --color-success-dark: hsl(129, 57%, 23%);
    --color-success-dark-h: 129;
    --color-success-dark-s: 57%;
    --color-success-dark-l: 23%;
    --color-success: hsl(129, 57%, 33%);
    --color-success-h: 129;
    --color-success-s: 57%;
    --color-success-l: 33%;
    --color-success-light: hsl(129, 57%, 43%);
    --color-success-light-h: 129;
    --color-success-light-s: 57%;
    --color-success-light-l: 43%;
    --color-success-lighter: hsl(129, 57%, 53%);
    --color-success-lighter-h: 129;
    --color-success-lighter-s: 57%;
    --color-success-lighter-l: 53%;
    --color-error-darker: hsl(11, 91%, 14%);
    --color-error-darker-h: 11;
    --color-error-darker-s: 91%;
    --color-error-darker-l: 14%;
    --color-error-dark: hsl(11, 91%, 24%);
    --color-error-dark-h: 11;
    --color-error-dark-s: 91%;
    --color-error-dark-l: 24%;
    --color-error: hsl(11, 91%, 34%);
    --color-error-h: 11;
    --color-error-s: 91%;
    --color-error-l: 34%;
    --color-error-light: hsl(11, 91%, 44%);
    --color-error-light-h: 11;
    --color-error-light-s: 91%;
    --color-error-light-l: 44%;
    --color-error-lighter: hsl(11, 91%, 54%);
    --color-error-lighter-h: 11;
    --color-error-lighter-s: 91%;
    --color-error-lighter-l: 54%;
    --color-bg-darker: hsl(240, 2%, 90%);
    --color-bg-darker-h: 240;
    --color-bg-darker-s: 2%;
    --color-bg-darker-l: 90%;
    --color-bg-dark: hsl(240, 3%, 94%);
    --color-bg-dark-h: 240;
    --color-bg-dark-s: 3%;
    --color-bg-dark-l: 94%;
    --color-bg: hsl(0, 0%, 100%);
    --color-bg-h: 0;
    --color-bg-s: 0%;
    --color-bg-l: 100%;
    --color-bg-light: hsl(240, 3%, 100%);
    --color-bg-light-h: 240;
    --color-bg-light-s: 3%;
    --color-bg-light-l: 100%;
    --color-bg-lighter: hsl(240, 2%, 100%);
    --color-bg-lighter-h: 240;
    --color-bg-lighter-s: 2%;
    --color-bg-lighter-l: 100%;
    --color-contrast-lower: hsl(0, 0%, 95%);
    --color-contrast-lower-h: 0;
    --color-contrast-lower-s: 0%;
    --color-contrast-lower-l: 95%;
    --color-contrast-low: hsl(240, 1%, 83%);
    --color-contrast-low-h: 240;
    --color-contrast-low-s: 1%;
    --color-contrast-low-l: 83%;
    --color-contrast-medium: hsl(240, 1%, 48%);
    --color-contrast-medium-h: 240;
    --color-contrast-medium-s: 1%;
    --color-contrast-medium-l: 48%;
    --color-contrast-high: hsl(240, 4%, 20%);
    --color-contrast-high-h: 240;
    --color-contrast-high-s: 4%;
    --color-contrast-high-l: 20%;
    --color-contrast-higher: hsl(240, 8%, 12%);
    --color-contrast-higher-h: 240;
    --color-contrast-higher-s: 8%;
    --color-contrast-higher-l: 12%;
    --gradient-primary-stop-1: hsl(218, 80%, 96%);
    --gradient-primary-stop-1-h: 218;
    --gradient-primary-stop-1-s: 80%;
    --gradient-primary-stop-1-l: 96%;
    --gradient-primary-stop-2: hsl(289, 52%, 96%);
    --gradient-primary-stop-2-h: 289;
    --gradient-primary-stop-2-s: 52%;
    --gradient-primary-stop-2-l: 96%;
    --gradient-secondary-stop-1: hsl(289, 52%, 96%);
    --gradient-secondary-stop-1-h: 289;
    --gradient-secondary-stop-1-s: 52%;
    --gradient-secondary-stop-1-l: 96%;
    --gradient-secondary-stop-2: hsl(231, 47%, 97%);
    --gradient-secondary-stop-2-h: 231;
    --gradient-secondary-stop-2-s: 47%;
    --gradient-secondary-stop-2-l: 97%;
  }
}
@supports (--css: variables) {
  [data-theme="eleven"] {
    --color-primary-darker: hsl(158, 71%, 6%);
    --color-primary-darker-h: 158;
    --color-primary-darker-s: 71%;
    --color-primary-darker-l: 6%;
    --color-primary-dark: hsl(158, 71%, 16%);
    --color-primary-dark-h: 158;
    --color-primary-dark-s: 71%;
    --color-primary-dark-l: 16%;
    --color-primary: hsl(158, 71%, 26%);
    --color-primary-h: 158;
    --color-primary-s: 71%;
    --color-primary-l: 26%;
    --color-primary-light: hsl(158, 71%, 36%);
    --color-primary-light-h: 158;
    --color-primary-light-s: 71%;
    --color-primary-light-l: 36%;
    --color-primary-lighter: hsl(158, 71%, 46%);
    --color-primary-lighter-h: 158;
    --color-primary-lighter-s: 71%;
    --color-primary-lighter-l: 46%;
    --color-accent-darker: hsl(0, 0%, 73%);
    --color-accent-darker-h: 0;
    --color-accent-darker-s: 0%;
    --color-accent-darker-l: 73%;
    --color-accent-dark: hsl(0, 0%, 83%);
    --color-accent-dark-h: 0;
    --color-accent-dark-s: 0%;
    --color-accent-dark-l: 83%;
    --color-accent: hsl(0, 0%, 93%);
    --color-accent-h: 0;
    --color-accent-s: 0%;
    --color-accent-l: 93%;
    --color-accent-light: hsl(0, 0%, 96%);
    --color-accent-light-h: 0;
    --color-accent-light-s: 0%;
    --color-accent-light-l: 96%;
    --color-accent-lighter: hsl(0, 0%, 100%);
    --color-accent-lighter-h: 0;
    --color-accent-lighter-s: 0%;
    --color-accent-lighter-l: 100%;
    --color-black: hsl(0, 0%, 0%);
    --color-black-h: 0;
    --color-black-s: 0%;
    --color-black-l: 0%;
    --color-white: hsl(0, 0%, 100%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 100%;
    --color-warning-darker: hsl(45, 100%, 28%);
    --color-warning-darker-h: 45;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 28%;
    --color-warning-dark: hsl(45, 100%, 38%);
    --color-warning-dark-h: 45;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 38%;
    --color-warning: hsl(45, 100%, 48%);
    --color-warning-h: 45;
    --color-warning-s: 100%;
    --color-warning-l: 48%;
    --color-warning-light: hsl(45, 100%, 58%);
    --color-warning-light-h: 45;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 58%;
    --color-warning-lighter: hsl(45, 100%, 68%);
    --color-warning-lighter-h: 45;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 68%;
    --color-success-darker: hsl(129, 57%, 13%);
    --color-success-darker-h: 129;
    --color-success-darker-s: 57%;
    --color-success-darker-l: 13%;
    --color-success-dark: hsl(129, 57%, 23%);
    --color-success-dark-h: 129;
    --color-success-dark-s: 57%;
    --color-success-dark-l: 23%;
    --color-success: hsl(129, 57%, 33%);
    --color-success-h: 129;
    --color-success-s: 57%;
    --color-success-l: 33%;
    --color-success-light: hsl(129, 57%, 43%);
    --color-success-light-h: 129;
    --color-success-light-s: 57%;
    --color-success-light-l: 43%;
    --color-success-lighter: hsl(129, 57%, 53%);
    --color-success-lighter-h: 129;
    --color-success-lighter-s: 57%;
    --color-success-lighter-l: 53%;
    --color-error-darker: hsl(11, 91%, 14%);
    --color-error-darker-h: 11;
    --color-error-darker-s: 91%;
    --color-error-darker-l: 14%;
    --color-error-dark: hsl(11, 91%, 24%);
    --color-error-dark-h: 11;
    --color-error-dark-s: 91%;
    --color-error-dark-l: 24%;
    --color-error: hsl(11, 91%, 34%);
    --color-error-h: 11;
    --color-error-s: 91%;
    --color-error-l: 34%;
    --color-error-light: hsl(11, 91%, 44%);
    --color-error-light-h: 11;
    --color-error-light-s: 91%;
    --color-error-light-l: 44%;
    --color-error-lighter: hsl(11, 91%, 54%);
    --color-error-lighter-h: 11;
    --color-error-lighter-s: 91%;
    --color-error-lighter-l: 54%;
    --color-bg-darker: hsl(0, 0%, 89%);
    --color-bg-darker-h: 0;
    --color-bg-darker-s: 0%;
    --color-bg-darker-l: 89%;
    --color-bg-dark: hsl(0, 0%, 93%);
    --color-bg-dark-h: 0;
    --color-bg-dark-s: 0%;
    --color-bg-dark-l: 93%;
    --color-bg: hsl(0, 0%, 100%);
    --color-bg-h: 0;
    --color-bg-s: 0%;
    --color-bg-l: 100%;
    --color-bg-light: hsl(0, 0%, 100%);
    --color-bg-light-h: 0;
    --color-bg-light-s: 0%;
    --color-bg-light-l: 100%;
    --color-bg-lighter: hsl(0, 0%, 100%);
    --color-bg-lighter-h: 0;
    --color-bg-lighter-s: 0%;
    --color-bg-lighter-l: 100%;
    --color-contrast-lower: hsl(0, 0%, 95%);
    --color-contrast-lower-h: 0;
    --color-contrast-lower-s: 0%;
    --color-contrast-lower-l: 95%;
    --color-contrast-low: hsl(0, 0%, 81%);
    --color-contrast-low-h: 0;
    --color-contrast-low-s: 0%;
    --color-contrast-low-l: 81%;
    --color-contrast-medium: hsl(0, 0%, 42%);
    --color-contrast-medium-h: 0;
    --color-contrast-medium-s: 0%;
    --color-contrast-medium-l: 42%;
    --color-contrast-high: hsl(0, 0%, 11%);
    --color-contrast-high-h: 0;
    --color-contrast-high-s: 0%;
    --color-contrast-high-l: 11%;
    --color-contrast-higher: hsl(0, 0%, 0%);
    --color-contrast-higher-h: 0;
    --color-contrast-higher-s: 0%;
    --color-contrast-higher-l: 0%;
    --gradient-primary-stop-1: hsl(218, 80%, 96%);
    --gradient-primary-stop-1-h: 218;
    --gradient-primary-stop-1-s: 80%;
    --gradient-primary-stop-1-l: 96%;
    --gradient-primary-stop-2: hsl(289, 52%, 96%);
    --gradient-primary-stop-2-h: 289;
    --gradient-primary-stop-2-s: 52%;
    --gradient-primary-stop-2-l: 96%;
    --gradient-secondary-stop-1: hsl(289, 52%, 96%);
    --gradient-secondary-stop-1-h: 289;
    --gradient-secondary-stop-1-s: 52%;
    --gradient-secondary-stop-1-l: 96%;
    --gradient-secondary-stop-2: hsl(231, 47%, 97%);
    --gradient-secondary-stop-2-h: 231;
    --gradient-secondary-stop-2-s: 47%;
    --gradient-secondary-stop-2-l: 97%;
  }
}
@supports (--css: variables) {
  [data-theme="fsb"] {
    --color-primary-darker: hsl(2, 62%, 25%);
    --color-primary-darker-h: 2;
    --color-primary-darker-s: 62%;
    --color-primary-darker-l: 25%;
    --color-primary-dark: hsl(2, 62%, 35%);
    --color-primary-dark-h: 2;
    --color-primary-dark-s: 62%;
    --color-primary-dark-l: 35%;
    --color-primary: hsl(2, 62%, 45%);
    --color-primary-h: 2;
    --color-primary-s: 62%;
    --color-primary-l: 45%;
    --color-primary-light: hsl(2, 62%, 55%);
    --color-primary-light-h: 2;
    --color-primary-light-s: 62%;
    --color-primary-light-l: 55%;
    --color-primary-lighter: hsl(2, 62%, 65%);
    --color-primary-lighter-h: 2;
    --color-primary-lighter-s: 62%;
    --color-primary-lighter-l: 65%;
    --color-accent-darker: hsl(0, 0%, 73%);
    --color-accent-darker-h: 0;
    --color-accent-darker-s: 0%;
    --color-accent-darker-l: 73%;
    --color-accent-dark: hsl(0, 0%, 83%);
    --color-accent-dark-h: 0;
    --color-accent-dark-s: 0%;
    --color-accent-dark-l: 83%;
    --color-accent: hsl(0, 0%, 93%);
    --color-accent-h: 0;
    --color-accent-s: 0%;
    --color-accent-l: 93%;
    --color-accent-light: hsl(0, 0%, 96%);
    --color-accent-light-h: 0;
    --color-accent-light-s: 0%;
    --color-accent-light-l: 96%;
    --color-accent-lighter: hsl(0, 0%, 100%);
    --color-accent-lighter-h: 0;
    --color-accent-lighter-s: 0%;
    --color-accent-lighter-l: 100%;
    --color-black: hsl(0, 0%, 0%);
    --color-black-h: 0;
    --color-black-s: 0%;
    --color-black-l: 0%;
    --color-white: hsl(0, 0%, 100%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 100%;
    --color-warning-darker: hsl(45, 100%, 28%);
    --color-warning-darker-h: 45;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 28%;
    --color-warning-dark: hsl(45, 100%, 38%);
    --color-warning-dark-h: 45;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 38%;
    --color-warning: hsl(45, 100%, 48%);
    --color-warning-h: 45;
    --color-warning-s: 100%;
    --color-warning-l: 48%;
    --color-warning-light: hsl(45, 100%, 58%);
    --color-warning-light-h: 45;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 58%;
    --color-warning-lighter: hsl(45, 100%, 68%);
    --color-warning-lighter-h: 45;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 68%;
    --color-success-darker: hsl(129, 57%, 13%);
    --color-success-darker-h: 129;
    --color-success-darker-s: 57%;
    --color-success-darker-l: 13%;
    --color-success-dark: hsl(129, 57%, 23%);
    --color-success-dark-h: 129;
    --color-success-dark-s: 57%;
    --color-success-dark-l: 23%;
    --color-success: hsl(129, 57%, 33%);
    --color-success-h: 129;
    --color-success-s: 57%;
    --color-success-l: 33%;
    --color-success-light: hsl(129, 57%, 43%);
    --color-success-light-h: 129;
    --color-success-light-s: 57%;
    --color-success-light-l: 43%;
    --color-success-lighter: hsl(129, 57%, 53%);
    --color-success-lighter-h: 129;
    --color-success-lighter-s: 57%;
    --color-success-lighter-l: 53%;
    --color-error-darker: hsl(11, 91%, 14%);
    --color-error-darker-h: 11;
    --color-error-darker-s: 91%;
    --color-error-darker-l: 14%;
    --color-error-dark: hsl(11, 91%, 24%);
    --color-error-dark-h: 11;
    --color-error-dark-s: 91%;
    --color-error-dark-l: 24%;
    --color-error: hsl(11, 91%, 34%);
    --color-error-h: 11;
    --color-error-s: 91%;
    --color-error-l: 34%;
    --color-error-light: hsl(11, 91%, 44%);
    --color-error-light-h: 11;
    --color-error-light-s: 91%;
    --color-error-light-l: 44%;
    --color-error-lighter: hsl(11, 91%, 54%);
    --color-error-lighter-h: 11;
    --color-error-lighter-s: 91%;
    --color-error-lighter-l: 54%;
    --color-bg-darker: hsl(0, 0%, 89%);
    --color-bg-darker-h: 0;
    --color-bg-darker-s: 0%;
    --color-bg-darker-l: 89%;
    --color-bg-dark: hsl(0, 0%, 93%);
    --color-bg-dark-h: 0;
    --color-bg-dark-s: 0%;
    --color-bg-dark-l: 93%;
    --color-bg: hsl(0, 0%, 100%);
    --color-bg-h: 0;
    --color-bg-s: 0%;
    --color-bg-l: 100%;
    --color-bg-light: hsl(0, 0%, 100%);
    --color-bg-light-h: 0;
    --color-bg-light-s: 0%;
    --color-bg-light-l: 100%;
    --color-bg-lighter: hsl(0, 0%, 100%);
    --color-bg-lighter-h: 0;
    --color-bg-lighter-s: 0%;
    --color-bg-lighter-l: 100%;
    --color-contrast-lower: hsl(0, 0%, 95%);
    --color-contrast-lower-h: 0;
    --color-contrast-lower-s: 0%;
    --color-contrast-lower-l: 95%;
    --color-contrast-low: hsl(0, 0%, 81%);
    --color-contrast-low-h: 0;
    --color-contrast-low-s: 0%;
    --color-contrast-low-l: 81%;
    --color-contrast-medium: hsl(0, 0%, 42%);
    --color-contrast-medium-h: 0;
    --color-contrast-medium-s: 0%;
    --color-contrast-medium-l: 42%;
    --color-contrast-high: hsl(0, 0%, 11%);
    --color-contrast-high-h: 0;
    --color-contrast-high-s: 0%;
    --color-contrast-high-l: 11%;
    --color-contrast-higher: hsl(0, 0%, 0%);
    --color-contrast-higher-h: 0;
    --color-contrast-higher-s: 0%;
    --color-contrast-higher-l: 0%;
    --gradient-primary-stop-1: hsl(218, 80%, 96%);
    --gradient-primary-stop-1-h: 218;
    --gradient-primary-stop-1-s: 80%;
    --gradient-primary-stop-1-l: 96%;
    --gradient-primary-stop-2: hsl(289, 52%, 96%);
    --gradient-primary-stop-2-h: 289;
    --gradient-primary-stop-2-s: 52%;
    --gradient-primary-stop-2-l: 96%;
    --gradient-secondary-stop-1: hsl(289, 52%, 96%);
    --gradient-secondary-stop-1-h: 289;
    --gradient-secondary-stop-1-s: 52%;
    --gradient-secondary-stop-1-l: 96%;
    --gradient-secondary-stop-2: hsl(231, 47%, 97%);
    --gradient-secondary-stop-2-h: 231;
    --gradient-secondary-stop-2-s: 47%;
    --gradient-secondary-stop-2-l: 97%;
  }
}
@supports (--css: variables) {
  [data-theme="peiwei"],
  [data-theme="qbrexza"],
  [data-theme="panthercitydistrict"],
  [data-theme="lowtown"],
  [data-theme="claytonhomes"],
  [data-theme="claytoncorporate"],
  [data-theme="trubody"] {
    --color-primary-darker: hsl(2, 62%, 25%);
    --color-primary-darker-h: 2;
    --color-primary-darker-s: 62%;
    --color-primary-darker-l: 25%;
    --color-primary-dark: hsl(2, 62%, 35%);
    --color-primary-dark-h: 2;
    --color-primary-dark-s: 62%;
    --color-primary-dark-l: 35%;
    --color-primary: hsl(2, 62%, 45%);
    --color-primary-h: 2;
    --color-primary-s: 62%;
    --color-primary-l: 45%;
    --color-primary-light: hsl(2, 62%, 55%);
    --color-primary-light-h: 2;
    --color-primary-light-s: 62%;
    --color-primary-light-l: 55%;
    --color-primary-lighter: hsl(2, 62%, 65%);
    --color-primary-lighter-h: 2;
    --color-primary-lighter-s: 62%;
    --color-primary-lighter-l: 65%;
    --color-accent-darker: hsl(0, 0%, 73%);
    --color-accent-darker-h: 0;
    --color-accent-darker-s: 0%;
    --color-accent-darker-l: 73%;
    --color-accent-dark: hsl(0, 0%, 83%);
    --color-accent-dark-h: 0;
    --color-accent-dark-s: 0%;
    --color-accent-dark-l: 83%;
    --color-accent: hsl(0, 0%, 93%);
    --color-accent-h: 0;
    --color-accent-s: 0%;
    --color-accent-l: 93%;
    --color-accent-light: hsl(0, 0%, 96%);
    --color-accent-light-h: 0;
    --color-accent-light-s: 0%;
    --color-accent-light-l: 96%;
    --color-accent-lighter: hsl(0, 0%, 100%);
    --color-accent-lighter-h: 0;
    --color-accent-lighter-s: 0%;
    --color-accent-lighter-l: 100%;
    --color-black: hsl(0, 0%, 0%);
    --color-black-h: 0;
    --color-black-s: 0%;
    --color-black-l: 0%;
    --color-white: hsl(0, 0%, 100%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 100%;
    --color-warning-darker: hsl(45, 100%, 28%);
    --color-warning-darker-h: 45;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 28%;
    --color-warning-dark: hsl(45, 100%, 38%);
    --color-warning-dark-h: 45;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 38%;
    --color-warning: hsl(45, 100%, 48%);
    --color-warning-h: 45;
    --color-warning-s: 100%;
    --color-warning-l: 48%;
    --color-warning-light: hsl(45, 100%, 58%);
    --color-warning-light-h: 45;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 58%;
    --color-warning-lighter: hsl(45, 100%, 68%);
    --color-warning-lighter-h: 45;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 68%;
    --color-success-darker: hsl(129, 57%, 13%);
    --color-success-darker-h: 129;
    --color-success-darker-s: 57%;
    --color-success-darker-l: 13%;
    --color-success-dark: hsl(129, 57%, 23%);
    --color-success-dark-h: 129;
    --color-success-dark-s: 57%;
    --color-success-dark-l: 23%;
    --color-success: hsl(129, 57%, 33%);
    --color-success-h: 129;
    --color-success-s: 57%;
    --color-success-l: 33%;
    --color-success-light: hsl(129, 57%, 43%);
    --color-success-light-h: 129;
    --color-success-light-s: 57%;
    --color-success-light-l: 43%;
    --color-success-lighter: hsl(129, 57%, 53%);
    --color-success-lighter-h: 129;
    --color-success-lighter-s: 57%;
    --color-success-lighter-l: 53%;
    --color-error-darker: hsl(11, 91%, 14%);
    --color-error-darker-h: 11;
    --color-error-darker-s: 91%;
    --color-error-darker-l: 14%;
    --color-error-dark: hsl(11, 91%, 24%);
    --color-error-dark-h: 11;
    --color-error-dark-s: 91%;
    --color-error-dark-l: 24%;
    --color-error: hsl(11, 91%, 34%);
    --color-error-h: 11;
    --color-error-s: 91%;
    --color-error-l: 34%;
    --color-error-light: hsl(11, 91%, 44%);
    --color-error-light-h: 11;
    --color-error-light-s: 91%;
    --color-error-light-l: 44%;
    --color-error-lighter: hsl(11, 91%, 54%);
    --color-error-lighter-h: 11;
    --color-error-lighter-s: 91%;
    --color-error-lighter-l: 54%;
    --color-bg-darker: hsl(0, 0%, 89%);
    --color-bg-darker-h: 0;
    --color-bg-darker-s: 0%;
    --color-bg-darker-l: 89%;
    --color-bg-dark: hsl(0, 0%, 93%);
    --color-bg-dark-h: 0;
    --color-bg-dark-s: 0%;
    --color-bg-dark-l: 93%;
    --color-bg: hsl(0, 0%, 100%);
    --color-bg-h: 0;
    --color-bg-s: 0%;
    --color-bg-l: 100%;
    --color-bg-light: hsl(0, 0%, 100%);
    --color-bg-light-h: 0;
    --color-bg-light-s: 0%;
    --color-bg-light-l: 100%;
    --color-bg-lighter: hsl(0, 0%, 100%);
    --color-bg-lighter-h: 0;
    --color-bg-lighter-s: 0%;
    --color-bg-lighter-l: 100%;
    --color-contrast-lower: hsl(0, 0%, 95%);
    --color-contrast-lower-h: 0;
    --color-contrast-lower-s: 0%;
    --color-contrast-lower-l: 95%;
    --color-contrast-low: hsl(0, 0%, 81%);
    --color-contrast-low-h: 0;
    --color-contrast-low-s: 0%;
    --color-contrast-low-l: 81%;
    --color-contrast-medium: hsl(0, 0%, 42%);
    --color-contrast-medium-h: 0;
    --color-contrast-medium-s: 0%;
    --color-contrast-medium-l: 42%;
    --color-contrast-high: hsl(0, 0%, 11%);
    --color-contrast-high-h: 0;
    --color-contrast-high-s: 0%;
    --color-contrast-high-l: 11%;
    --color-contrast-higher: hsl(0, 0%, 0%);
    --color-contrast-higher-h: 0;
    --color-contrast-higher-s: 0%;
    --color-contrast-higher-l: 0%;
    --gradient-primary-stop-1: hsl(218, 80%, 96%);
    --gradient-primary-stop-1-h: 218;
    --gradient-primary-stop-1-s: 80%;
    --gradient-primary-stop-1-l: 96%;
    --gradient-primary-stop-2: hsl(289, 52%, 96%);
    --gradient-primary-stop-2-h: 289;
    --gradient-primary-stop-2-s: 52%;
    --gradient-primary-stop-2-l: 96%;
    --gradient-secondary-stop-1: hsl(289, 52%, 96%);
    --gradient-secondary-stop-1-h: 289;
    --gradient-secondary-stop-1-s: 52%;
    --gradient-secondary-stop-1-l: 96%;
    --gradient-secondary-stop-2: hsl(231, 47%, 97%);
    --gradient-secondary-stop-2-h: 231;
    --gradient-secondary-stop-2-s: 47%;
    --gradient-secondary-stop-2-l: 97%;
  }
}
.bg-gradient-primary {
  background-image: radial-gradient(
    var(--gradient-primary-stop-1),
    var(--gradient-primary-stop-2)
  );
}
.bg-gradient-primary-top {
  background-image: linear-gradient(
    0deg,
    var(--gradient-primary-stop-1),
    var(--gradient-primary-stop-2)
  );
}
.bg-gradient-primary-right {
  background-image: linear-gradient(
    90deg,
    var(--gradient-primary-stop-1),
    var(--gradient-primary-stop-2)
  );
}
.bg-gradient-primary-bottom {
  background-image: linear-gradient(
    180deg,
    var(--gradient-primary-stop-1),
    var(--gradient-primary-stop-2)
  );
}
.bg-gradient-primary-left {
  background-image: linear-gradient(
    270deg,
    var(--gradient-primary-stop-1),
    var(--gradient-primary-stop-2)
  );
}
.bg-gradient-secondary {
  background-image: radial-gradient(
    var(--gradient-secondary-stop-1),
    var(--gradient-secondary-stop-2)
  );
}
.bg-gradient-secondary-top {
  background-image: linear-gradient(
    0deg,
    var(--gradient-secondary-stop-1),
    var(--gradient-secondary-stop-2)
  );
}
.bg-gradient-secondary-right {
  background-image: linear-gradient(
    90deg,
    var(--gradient-secondary-stop-1),
    var(--gradient-secondary-stop-2)
  );
}
.bg-gradient-secondary-bottom {
  background-image: linear-gradient(
    180deg,
    var(--gradient-secondary-stop-1),
    var(--gradient-secondary-stop-2)
  );
}
.bg-gradient-secondary-left {
  background-image: linear-gradient(
    270deg,
    var(--gradient-secondary-stop-1),
    var(--gradient-secondary-stop-2)
  );
}
.border-gradient-primary {
  -o-border-image: radial-gradient(
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
  border-image: radial-gradient(
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
}
.border-gradient-primary-top {
  -o-border-image: linear-gradient(
      0deg,
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
  border-image: linear-gradient(
      0deg,
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
}
.border-gradient-primary-right {
  -o-border-image: linear-gradient(
      90deg,
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
  border-image: linear-gradient(
      90deg,
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
}
.border-gradient-primary-bottom {
  -o-border-image: linear-gradient(
      180deg,
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
  border-image: linear-gradient(
      180deg,
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
}
.border-gradient-primary-left {
  -o-border-image: linear-gradient(
      270deg,
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
  border-image: linear-gradient(
      270deg,
      var(--gradient-primary-stop-1),
      var(--gradient-primary-stop-2)
    )
    1;
}
.border-gradient-secondary {
  -o-border-image: radial-gradient(
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
  border-image: radial-gradient(
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
}
.border-gradient-secondary-top {
  -o-border-image: linear-gradient(
      0deg,
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
  border-image: linear-gradient(
      0deg,
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
}
.border-gradient-secondary-right {
  -o-border-image: linear-gradient(
      90deg,
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
  border-image: linear-gradient(
      90deg,
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
}
.border-gradient-secondary-bottom {
  -o-border-image: linear-gradient(
      180deg,
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
  border-image: linear-gradient(
      180deg,
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
}
.border-gradient-secondary-left {
  -o-border-image: linear-gradient(
      270deg,
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
  border-image: linear-gradient(
      270deg,
      var(--gradient-secondary-stop-1),
      var(--gradient-secondary-stop-2)
    )
    1;
}
:root,
* {
  --color-facebook-bg: hsl(216, 20%, 95%);
  --color-facebook-bg-h: 216;
  --color-facebook-bg-s: 20%;
  --color-facebook-bg-l: 95%;
  --color-instagram-bg: hsl(216, 20%, 95%);
  --color-instagram-bg-h: 216;
  --color-instagram-bg-s: 20%;
  --color-instagram-bg-l: 95%;
  --color-linkedin-bg: hsl(216, 20%, 95%);
  --color-linkedin-bg-h: 216;
  --color-linkedin-bg-s: 20%;
  --color-linkedin-bg-l: 95%;
  --color-tiktok-bg: hsl(216, 20%, 95%);
  --color-tiktok-bg-h: 216;
  --color-tiktok-bg-s: 20%;
  --color-tiktok-bg-l: 95%;
  --color-twitter-bg: hsl(216, 20%, 95%);
  --color-twitter-bg-h: 216;
  --color-twitter-bg-s: 20%;
  --color-twitter-bg-l: 95%;
}
.bg-instagram-bg {
  background-color: var(--color-instagram-bg);
}
.bg-facebook-bg {
  background-color: var(--color-facebook-bg);
}
.bg-tiktok-bg {
  background-color: var(--color-tiktok-bg);
}
.bg-twitter-bg {
  background-color: var(--color-twitter-bg);
}
.bg-linkedin-bg {
  background-color: var(--color-linkedin-bg);
}
@supports (--css: variables) {
  @media (min-width: 64rem) {
    :root {
      --space-unit: 1.25em;
    }
  }
}
:root {
  --radius: 1em;
  --radius-sm: calc(var(--radius) / 2);
  --radius-md: var(--radius);
  --radius-lg: calc(var(--radius) * 2.5);
  --shadow-xs: 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
    0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
    0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 1.2px 1.9px -1px rgba(0, 0, 0, 0.014),
    0 3.3px 5.3px -1px rgba(0, 0, 0, 0.038),
    0 8.5px 12.7px -1px rgba(0, 0, 0, 0.085),
    0 30px 42px -1px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 1.5px 2.1px -6px rgba(0, 0, 0, 0.012),
    0 3.6px 5.2px -6px rgba(0, 0, 0, 0.035),
    0 7.3px 10.6px -6px rgba(0, 0, 0, 0.07),
    0 16.2px 21.9px -6px rgba(0, 0, 0, 0.117),
    0 46px 60px -6px rgba(0, 0, 0, 0.2);
}
.hover\:reduce-opacity {
  opacity: 1;
  transition: all 0.3s ease;
}
.hover\:reduce-opacity:hover {
  opacity: 0.8;
}
.hover\:scale {
  transition: transform 0.3s var(--ease-out-back);
}
.hover\:scale:hover {
  transform: scale(1.1);
}
.hover\:elevate {
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.hover\:elevate:hover {
  box-shadow: var(--shadow-md);
}
.link-subtle {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.link-subtle:hover {
  color: var(--color-primary);
}
.linebreak {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
:root {
  --font-primary: "Heebo", sans-serif;
  --font-social: "ivymode", sans-serif;
  --text-base-size: 1em;
  --text-scale-ratio: 1.125;
  --body-line-height: 1.4;
  --heading-line-height: 1.2;
  --font-primary-capital-letter: 1;
  --font-social-capital-letter: 1;
  --text-unit: 1em;
}
: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));
}
@supports (--css: variables) {
  @media (min-width: 64rem) {
    :root {
      --text-base-size: 1.25em;
      --text-scale-ratio: 1.25;
    }
  }
}
body {
  font-family: var(--font-primary);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-primary);
  font-weight: 700;
}
.font-primary {
  font-family: var(--font-primary);
}
.font-social {
  font-family: var(--font-social);
}
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-vspace-multiplier: 1;
}
.text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid var(--color-contrast-low);
}
.text-component hr {
  background: var(--color-contrast-low);
  height: 1px;
}
.text-component figcaption {
  font-size: var(--text-sm);
  color: var(--color-contrast-medium);
}
.text-component ul {
  list-style-position: outside;
  padding-left: 1.2em;
}
.article {
  --body-line-height: 1.58;
  --text-vspace-multiplier: 1.2;
}
:root {
  --btn-font-size: 1em;
  --btn-padding-x: var(--space-sm);
  --btn-padding-y: var(--space-xxs);
  --btn-radius: 9px;
  --btn-gradient-white: linear-gradient(
    0deg,
    var(--color-white),
    var(--color-white)
  );
  --btn-gradient-black: linear-gradient(
    0deg,
    var(--color-black),
    var(--color-black)
  );
  --btn-gradient-primary-top: linear-gradient(
    0deg,
    var(--gradient-primary-stop-1),
    var(--gradient-primary-stop-2),
    var(--gradient-primary-stop-3)
  );
}
.btn {
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease-out;
  will-change: transform;
}
.btn:hover {
  box-shadow: var(--shadow-sm);
}
.btn:focus {
  box-shadow: 0px 0px 0px 2px
    hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.15);
  outline: none;
}
.btn:active {
  transform: translateY(2px);
}
.btn--primary,
.hcomments__subscribe-btn.is-subscribed {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--primary:hover,
.hcomments__subscribe-btn.is-subscribed:hover {
  background: var(--color-primary-dark);
}
.btn--primary:focus,
.hcomments__subscribe-btn.is-subscribed:focus {
  box-shadow: 0px 0px 0px 2px
    hsla(
      var(--color-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      0.2
    );
}
.btn--subtle {
  background: var(--color-contrast-lower);
  color: var(--color-black);
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-black);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
}
.btn--accent:focus {
  box-shadow: 0px 0px 0px 2px
    hsla(
      var(--color-accent-h),
      var(--color-accent-s),
      var(--color-accent-l),
      0.2
    );
}
.btn--ghost {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  transition: background-color 0.3s ease-out;
}
.btn--ghost:hover {
  background-color: hsla(
    var(--color-white-h),
    var(--color-white-s),
    var(--color-white-l),
    0.2
  );
}
.btn--shade {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-contrast-medium);
}
.btn--shade .icon {
  fill: var(--color-contrast-medium);
}
.btn--transparent-white {
  background-color: transparent;
  color: var(--color-black);
}
.btn--transparent-white:hover {
  background-color: var(--color-white);
}
.btn--transparent-white.active {
  background-color: var(--color-black);
  color: var(--color-white);
}
.btn--black {
  background: var(--color-black);
  color: var(--color-white) !important;
}
.btn--white {
  background: var(--color-white);
  color: var(--color-black) !important;
}
.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;
}
.btn--social-menu {
  background-color: var(--color-black);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-size: 1rem;
  padding: 8px 21px 9px 8px;
}
.btn--social-menu:hover {
  box-shadow: var(--shadow-md);
}
.btn--social-menu:hover svg {
  fill: var(--color-contrast-low);
}
.btn--social-menu__icon-circle {
  backgroun-color: var(--color-white);
  border-radius: 100%;
  height: 40px;
  margin-right: 10px;
  padding: 8px;
  width: 40px;
}
.btn--social-menu__icon-circle svg {
  fill: var(--color-white);
  transform: translateY(-3px);
  transition: fill 0.3s ease-out;
}
.btn--social-menu__icon-circle svg.instagram {
  transform: translateY(-1px);
}
.btn--social-menu__icon-circle + div {
  transform: translateY(2px);
}
.btn--lg-radius {
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-size: 1rem;
  padding: 19px 34px;
}
.btn--lg-radius:hover {
  box-shadow: var(--shadow-md);
}
.btn--icon-circle {
  background-color: var(--color-contrast-high);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
  transition: background-color 0.3s ease-out;
  width: 30px;
}
.btn--icon-circle.btn--active,
.btn--icon-circle:hover {
  background-color: var(--color-black);
}
.btn--icon-circle .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn--close {
  background-color: var(--color-black);
  border: none;
  border-radius: 0.75em;
  cursor: pointer;
  padding: var(--space-xs);
}
.btn--close:hover {
  background-image: var(--btn-gradient-primary-top);
  box-shadow: var(--shadow-sm);
}
.btn--close:hover .icon {
  stroke: var(--color-black);
}
.btn--close .icon {
  display: block;
  color: inherit;
  fill: none;
  stroke: var(--color-white);
  transition: stroke 0.3s ease-out;
}
.btn--icon {
  background-color: var(--color-white);
  border-radius: 10px;
  color: var(--color-black);
  display: inline-block;
  height: 40px;
  padding: var(--space-xs) var(--space-xs);
  position: relative;
  transition: background-color 0.3s ease-out;
  width: 40px;
}
.btn--icon.btn--active,
.btn--icon:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.btn--icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
:root {
  --form-control-font-size: 1em;
  --form-control-padding-x: var(--space-xs);
  --form-control-padding-y: var(--space-xxs);
  --form-control-radius: 0.25em;
}
.form-control,
.hcomments__comment-form textarea,
.admin-comment-form textarea {
  background: var(--color-bg);
  border: 2px solid var(--color-contrast-low);
  line-height: 1.2;
  transition: all 0.2s ease;
}
.form-control::-moz-placeholder,
.hcomments__comment-form textarea::-moz-placeholder,
.admin-comment-form textarea::-moz-placeholder {
  opacity: 1;
  color: var(--color-contrast-medium);
}
.form-control:-ms-input-placeholder,
.hcomments__comment-form textarea:-ms-input-placeholder,
.admin-comment-form textarea:-ms-input-placeholder {
  opacity: 1;
  color: var(--color-contrast-medium);
}
.form-control::placeholder,
.hcomments__comment-form textarea::placeholder,
.admin-comment-form textarea::placeholder {
  opacity: 1;
  color: var(--color-contrast-medium);
}
.form-control:focus,
.hcomments__comment-form textarea:focus,
.admin-comment-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0px 0px 0px 2px
    hsla(
      var(--color-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      0.2
    );
  outline: none;
}
.form-control__special {
  border: 1px solid var(--color-accent);
  outline: none;
  transition: border-color 0.3s ease-out;
}
.form-control__special:focus {
  border: 1px solid var(--color-accent-darker);
}
.form-control--disabled,
.form-control[disabled],
.hcomments__comment-form textarea[disabled],
.admin-comment-form textarea[disabled],
.form-control[readonly],
.hcomments__comment-form textarea[readonly],
.admin-comment-form textarea[readonly] {
  cursor: not-allowed;
}
.form-control[aria-invalid="true"],
.hcomments__comment-form textarea[aria-invalid="true"],
.admin-comment-form textarea[aria-invalid="true"],
.form-control--error {
  border-color: var(--color-error);
}
.form-control[aria-invalid="true"]:focus,
.hcomments__comment-form textarea[aria-invalid="true"]:focus,
.admin-comment-form textarea[aria-invalid="true"]:focus,
.form-control--error:focus {
  border-color: var(--color-error);
  box-shadow: 0px 0px 0px 2px
    hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.2);
}
.form-legend {
  font-size: var(--text-md);
}
.form-label {
  font-size: var(--text-sm);
}
.aspect-ratio-1\.91\:1 {
  --aspect-ratio: calc(1.91 / 1);
}
.aspect-ratio-9\:16 {
  --aspect-ratio: calc(9 / 16);
}
.aspect-ratio-6\:11 {
  --aspect-ratio: calc(6 / 11);
}
.aspect-ratio-207\:446 {
  --aspect-ratio: calc(207 / 446);
}
.aspect-ratio-441\:926 {
  --aspect-ratio: calc(441 / 926);
}
:root {
  --size-xxxxs: 0.25rem;
  --size-xxxs: 0.5rem;
  --size-xxs: 0.75rem;
  --size-xs: 1rem;
  --size-sm: 1.5rem;
  --size-md: 2rem;
  --size-lg: 3rem;
  --size-xl: 4rem;
  --size-xxl: 6rem;
  --size-xxxl: 8rem;
  --size-xxxxl: 16rem;
}
.order-4 {
  order: 4;
}
@media (min-width: 32rem) {
  .order-4\@xs {
    order: 4;
  }
}
@media (min-width: 48rem) {
  .order-4\@sm {
    order: 4;
  }
}
@media (min-width: 64rem) {
  .order-4\@md {
    order: 4;
  }
}
@media (min-width: 80rem) {
  .order-4\@lg {
    order: 4;
  }
}
@media (min-width: 90rem) {
  .order-4\@xl {
    order: 4;
  }
}
: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);
}
:root {
  --badge-radius: 0.75em;
}
.badge {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  background-color: var(--color-contrast-low);
  padding: var(--space-xxxxs) var(--space-xxs);
  border-radius: var(--badge-radius);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.badge--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
    );
}
.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-lighter-h),
    var(--color-primary-lighter-s),
    var(--color-primary-lighter-l),
    0.2
  );
  color: var(--color-primary);
}
.badge--accent {
  background-color: var(--color-accent);
  color: var(--color-black);
}
.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--mention {
  background-color: hsla(
    var(--color-black-h),
    var(--color-black-s),
    var(--color-black-l),
    0.7
  );
  color: var(--color-white);
}
.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);
}
.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: var(--color-instagram-bg-stop-1);
  background-image: radial-gradient(
      ellipse at 90% 30%,
      var(--color-instagram-bg-stop-1) 20%,
      rgba(var(--color-instagram-bg-stop-1), 0) 50%
    ),
    radial-gradient(
      ellipse at 70% 0%,
      var(--color-instagram-bg-stop-2) 0%,
      rgba(var(--color-instagram-bg-stop-2), 0) 50%
    ),
    radial-gradient(
      ellipse at 20% 10%,
      var(--color-instagram-bg-stop-3) 10%,
      rgba(var(--color-instagram-bg-stop-3), 0) 70%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      var(--color-instagram-bg-stop-2) 0%,
      rgba(var(--color-instagram-bg-stop-2), 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%;
    -webkit-animation: bg-gradient-anim-1 30s linear infinite;
    animation: bg-gradient-anim-1 30s linear infinite;
  }
}
@-webkit-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%;
  }
}
@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%;
    -webkit-animation: bg-gradient-anim-2 30s linear infinite;
    animation: bg-gradient-anim-2 30s linear infinite;
  }
}
@-webkit-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%;
  }
}
@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%;
    -webkit-animation: bg-gradient-anim-3 30s linear infinite;
    animation: bg-gradient-anim-3 30s linear infinite;
  }
}
@-webkit-keyframes bg-gradient-anim-3 {
  0%,
  100% {
    background-position: 0% 0%;
  }
  33% {
    background-position: 100% 0%;
  }
  66% {
    background-position: 100% 100%;
  }
}
@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%,
      rgba(60, 31, 132, 0.7) 0%,
      rgba(60, 31, 132, 0) 30%
    ),
    radial-gradient(
      circle at 90% 0%,
      rgba(238, 68, 105, 0.5) 0%,
      rgba(238, 68, 105, 0) 30%
    ),
    radial-gradient(
      ellipse at 0% 0%,
      rgba(60, 185, 174, 0.15) 0%,
      rgba(60, 185, 174, 0) 40%
    ),
    radial-gradient(
      circle at 30% 100%,
      rgba(60, 31, 132, 0.7) 0%,
      rgba(60, 31, 132, 0) 40%
    ),
    radial-gradient(
      ellipse at 10% 100%,
      rgba(238, 68, 105, 0.5) 0%,
      rgba(238, 68, 105, 0) 40%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(60, 185, 174, 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%;
    -webkit-animation: bg-gradient-anim-4 30s linear infinite;
    animation: bg-gradient-anim-4 30s linear infinite;
  }
}
@-webkit-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%;
  }
}
@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%;
    -webkit-animation: bg-gradient-anim-5 20s linear infinite;
    animation: bg-gradient-anim-5 20s linear infinite;
  }
}
@-webkit-keyframes bg-gradient-anim-5 {
  0%,
  100% {
    background-position: 0% 0%;
  }
  40%,
  60% {
    background-position: 100% 0%;
  }
}
@keyframes bg-gradient-anim-5 {
  0%,
  100% {
    background-position: 0% 0%;
  }
  40%,
  60% {
    background-position: 100% 0%;
  }
}
:root {
  --btns-button-radius: 0.75em;
  --btns-button-padding-x: var(--space-sm);
  --btns-button-padding-y: var(--space-sm);
}
.btns--gap-xxxxs {
  --btns-gap: var(--space-xxxxs);
}
.btns--gap-xxxs {
  --btns-gap: var(--space-xxxs);
}
.btns--gap-xxs {
  --btns-gap: var(--space-xxs);
}
.btns--gap-xs {
  --btns-gap: var(--space-xs);
}
.btns--gap-sm {
  --btns-gap: var(--space-sm);
}
.btns--gap-md {
  --btns-gap: var(--space-md);
}
.btns--gap-lg {
  --btns-gap: var(--space-lg);
}
.btns--gap-xl {
  --btns-gap: var(--space-xl);
}
.btns--gap-xxl {
  --btns-gap: var(--space-xxl);
}
.btns--gap-xxxl {
  --btns-gap: var(--space-xxxl);
}
.btns--gap-xxxxl {
  --btns-gap: var(--space-xxxxl);
}
.btns {
  display: inline-block;
  display: inline-flex;
}
.btns > * {
  display: inline-block;
}
.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[class*="gap-xxxs"],
.btns[class*="gap-xxs"],
.btns[class*="gap-xs"],
.btns[class*="gap-sm"],
.btns[class*="gap-md"],
.btns[class*="gap-lg"],
.btns[class*="gap-xl"],
.btns[class*="gap-xxl"],
.btns[class*="gap-xxxl"] .btns[class*="gap-xxxxl"] {
  flex-wrap: wrap;
}
.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[class*="gap-xxxxl"] .btns__btn {
  border-radius: var(--btns-button-radius) !important;
}
.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: block;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.13rem;
  padding: var(--space-xxxs) var(--space-sm);
  background-color: transparent;
  color: var(--color-contrast-medium);
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btns__btn:hover:not(.btns__btn--selected) {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  color: var(--color-contrast-higher);
}
.btns__btn:focus {
  z-index: 1;
  outline: none;
  box-shadow: 0 0 0 2px
    hsla(
      var(--color-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      0.2
    );
}
.btns__btn.color-contrast-higher {
  color: var(--color-contrast-higher);
}
.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 {
  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;
}
.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"] {
  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;
  -ms-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-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      0.2
    );
}
.btns__btn--icon {
  padding: 11px var(--space-sm);
}
.btns__btn--icon .icon {
  display: block;
  color: inherit;
}
.btns--admin-comments .btns__btn {
  background-color: var(--color-contrast-lower);
  font-size: var(--text-sm);
}
: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 ((-webkit-animation-name: this) or (animation-name: this)) {
  .circle-loader__label {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
  }
}
@supports ((-webkit-animation-name: this) or (animation-name: this)) {
  .circle-loader--v1 {
    transform: rotate(45deg);
    will-change: transform;
    -webkit-animation: circle-loader-1 0.75s infinite var(--ease-in-out);
    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;
  }
}
@-webkit-keyframes circle-loader-1 {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@keyframes circle-loader-1 {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@supports ((-webkit-animation-name: this) or (animation-name: this)) {
  .circle-loader--v2 {
    will-change: transform;
    -webkit-animation: circle-loader-spinning-main 1.4s infinite linear;
    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);
    -webkit-animation: circle-loader-dash 1.4s infinite;
    animation: circle-loader-dash 1.4s infinite;
  }
}
@-webkit-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-dash {
  0%,
  20% {
    stroke-dashoffset: 0;
    transform: rotate(0);
  }
  50%,
  70% {
    stroke-dashoffset: 80;
    transform: rotate(270deg);
  }
  100% {
    stroke-dashoffset: 0;
    transform: rotate(360deg);
  }
}
@-webkit-keyframes circle-loader-spinning-main {
  to {
    transform: rotate(360deg);
  }
}
@keyframes circle-loader-spinning-main {
  to {
    transform: rotate(360deg);
  }
}
@supports ((-webkit-animation-name: this) or (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;
    -webkit-animation: circle-loader-3 1.2s infinite;
    animation: circle-loader-3 1.2s infinite;
  }
  .circle-loader--v3 .circle-loader__circle--2nd {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
}
@-webkit-keyframes circle-loader-3 {
  to {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes circle-loader-3 {
  to {
    transform: scale(1);
    opacity: 0;
  }
}
@supports ((-webkit-animation-name: this) or (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 {
    -webkit-clip-path: circle(calc(0.5 * var(--circle-loader-v4-size)));
    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%;
    -webkit-animation: circle-loader-4 1.2s infinite
      cubic-bezier(0.23, 0.9, 0.75, 0.1);
    animation: circle-loader-4 1.2s infinite cubic-bezier(0.23, 0.9, 0.75, 0.1);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes circle-loader-4 {
  to {
    transform: translateX(100%);
  }
}
@keyframes circle-loader-4 {
  to {
    transform: translateX(100%);
  }
}
@supports ((-webkit-animation-name: this) or (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%;
    -webkit-animation: circle-loader-5-ball 0.8s infinite;
    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-low);
    border-radius: 50%;
    transform: scaleY(0.4) scaleX(1.2);
    -webkit-animation: circle-loader-5-shadow 0.8s infinite;
    animation: circle-loader-5-shadow 0.8s infinite;
  }
}
@-webkit-keyframes circle-loader-5-ball {
  0% {
    transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.61, 0.12, 0.85, 0.4);
    animation-timing-function: cubic-bezier(0.61, 0.12, 0.85, 0.4);
  }
  50% {
    transform: translateY(0.5625em);
    -webkit-animation-timing-function: cubic-bezier(0.12, 0.59, 0.46, 0.95);
    animation-timing-function: cubic-bezier(0.12, 0.59, 0.46, 0.95);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes circle-loader-5-ball {
  0% {
    transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.61, 0.12, 0.85, 0.4);
    animation-timing-function: cubic-bezier(0.61, 0.12, 0.85, 0.4);
  }
  50% {
    transform: translateY(0.5625em);
    -webkit-animation-timing-function: cubic-bezier(0.12, 0.59, 0.46, 0.95);
    animation-timing-function: cubic-bezier(0.12, 0.59, 0.46, 0.95);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes circle-loader-5-shadow {
  0% {
    transform: scaleY(0.4) scaleX(1.2);
    background-color: var(--color-contrast-low);
    -webkit-animation-timing-function: cubic-bezier(0.61, 0.12, 0.85, 0.4);
    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-medium);
    -webkit-animation-timing-function: cubic-bezier(0.12, 0.59, 0.46, 0.95);
    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-low);
  }
}
@keyframes circle-loader-5-shadow {
  0% {
    transform: scaleY(0.4) scaleX(1.2);
    background-color: var(--color-contrast-low);
    -webkit-animation-timing-function: cubic-bezier(0.61, 0.12, 0.85, 0.4);
    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-medium);
    -webkit-animation-timing-function: cubic-bezier(0.12, 0.59, 0.46, 0.95);
    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-low);
  }
}
@supports ((-webkit-animation-name: this) or (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;
    -webkit-animation: circle-loader-6 1.5s infinite;
    animation: circle-loader-6 1.5s infinite;
  }
}
@-webkit-keyframes circle-loader-6 {
  0%,
  100% {
    stroke-dashoffset: 35;
  }
  50% {
    stroke-dashoffset: -35;
  }
}
@keyframes circle-loader-6 {
  0%,
  100% {
    stroke-dashoffset: 35;
  }
  50% {
    stroke-dashoffset: -35;
  }
}
.details__summary {
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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;
}
.js .details__summary {
  list-style: none;
}
.js .details__summary::-webkit-details-marker {
  display: none;
}
.js .details__summary[aria-expanded="true"] .icon {
  transform: rotate(90deg);
}
.js .details__content[aria-hidden="true"] {
  display: none;
}
html:not(.js) .details__summary .icon {
  display: none;
}
: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;
}
.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));
  transition: all 0.3s ease-out;
}
.dev-phone--dark .dev-phone__body {
  background-color: var(--color-black);
  border: 3px solid var(--color-primary);
}
.dev-phone__body.dev-phone__body-off {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none !important;
}
.dev-phone--dark .dev-phone__body.dev-phone__body-off {
  background-color: transparent;
  border-color: transparent;
}
.dev-phone__body.dev-phone__body-off .dev-phone__media {
  border-radius: 0;
}
.dev-phone__body.dev-phone__body-off .dev-phone__notch {
  opacity: 0;
}
.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));
  transition: all 0.3s ease-out;
}
.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 rgba(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%;
  left: auto !important;
  right: 25%;
  height: 4%;
  border-radius: 0 0 0.85em 0.85em;
  background-color: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top-width: 0;
  transition: opacity 0.3s ease-out;
}
.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: rgba(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: rgba(0, 0, 0, 0.4);
}
.dev-phone--top-light .dev-phone__shadow::after {
  top: 20%;
  left: 5%;
  width: 90%;
  height: 60%;
  background-color: rgba(0, 0, 0, 0.15);
}
.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 rgba(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: rgba(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: rgba(0, 0, 0, 0.4);
}
.dev-tablet--top-light .dev-tablet__shadow::after {
  top: 20%;
  left: 5%;
  width: 90%;
  height: 60%;
  background-color: rgba(0, 0, 0, 0.15);
}
.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: rgba(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: rgba(0, 0, 0, 0.4);
}
.dev-browser--top-light .dev-browser__shadow::after {
  top: 20%;
  left: 5%;
  width: 90%;
  height: 60%;
  background-color: rgba(0, 0, 0, 0.2);
}
.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 rgba(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: rgba(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: rgba(0, 0, 0, 0.8);
  filter: blur(1px);
}
.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%;
  -webkit-clip-path: polygon(3% 0%, 97% 0%, 100% 100%, 0% 100%);
  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 rgba(255, 255, 255, 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 rgba(0, 0, 0, 0.4), 0 4px 4px rgba(0, 0, 0, 0.15);
}
html:not(.js) .file-upload__label {
  display: none;
}
.js .file-upload__input {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
}
.js .file-upload__text--has-max-width {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:root {
  --list-space-y: var(--space-xxs);
  --list-offset: var(--space-xs);
  --list-line-height: var(--body-line-height);
}
.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);
  padding-top: calc(var(--list-space-y) / 2);
  padding-left: var(--list-offset);
}
.list li,
.text-component .list li {
  padding-bottom: calc(var(--list-space-y) / 2);
  margin-bottom: calc(var(--list-space-y) / 2);
  line-height: var(--list-line-height);
}
.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;
}
.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-primary);
  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);
  border-radius: 50%;
  background-color: hsla(
    var(--color-contrast-higher-h),
    var(--color-contrast-higher-s),
    var(--color-contrast-higher-l),
    0.1
  );
  color: var(--color-contrast-high);
  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
    hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.1
    );
}
.list--border li:not(:last-child),
.text-component .list--border li:not(:last-child) {
  border-bottom: 1px solid
    hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
    );
}
.list--border ul,
.list--border ol,
.text-component .list--border ul,
.text-component .list--border ol {
  border-top: 1px solid
    hsla(
      var(--color-contrast-higher-h),
      var(--color-contrast-higher-s),
      var(--color-contrast-higher-l),
      0.15
    );
}
.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(--list-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(--list-line-height) - var(--list-bullet-size)) / 2);
  }
}
.menu {
  --menu-vertical-gap: 4px;
  --menu-item-padding: var(--space-xxs) var(--space-sm);
  list-style: none;
  width: 220px;
  position: fixed;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xxs) 0;
  border-radius: var(--radius-md);
  z-index: var(--zindex-popover);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: var(--menu-vertical-gap);
  margin-bottom: var(--menu-vertical-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;
}
.menu--is-visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
}
.menu--overlay {
  z-index: var(--zindex-overlay);
}
.menu__content {
  display: block;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: var(--menu-item-padding);
  color: var(--color-contrast-high);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu__content:hover {
  background-color: var(--color-contrast-low);
}
.menu__content:focus {
  outline: none;
}
.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-low);
  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.7
  );
  margin-right: var(--space-xxs);
}
.btn--social-menu + .menu {
  background: var(--color-black);
  border-radius: 26px;
  margin: 0;
  padding: 0;
  width: 170px;
}
.btn--social-menu + .menu.print {
  width: 220px;
}
.btn--social-menu + .menu .menu__content {
  color: var(--color-white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  padding: 8px 21px 2px 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  will-change: transform;
}
.btn--social-menu + .menu .menu__content:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn--social-menu
  + .menu
  .menu__content:hover
  .btn--social-menu__icon-circle
  svg {
  fill: var(--color-black);
}
.btn--social-menu + .menu .menu__content:focus {
  background-color: var(--color-black);
  color: var(--color-white);
}
.btn--social-menu
  + .menu
  .menu__content:focus
  .btn--social-menu__icon-circle
  svg {
  fill: var(--color-white);
}
.btn--social-menu .btn--social-menu__icon-circle svg {
  transform: translateY(0);
}
.btn--lg-radius + .menu {
  background: var(--color-black);
  border-radius: 26px;
  margin: 0;
  padding: 0;
  width: 170px;
}
.btn--lg-radius + .menu .menu__content {
  color: var(--color-white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  padding: 16px 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  will-change: transform;
}
.btn--lg-radius + .menu .menu__content:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn--lg-radius
  + .menu
  .menu__content:hover
  .btn--social-menu__icon-circle
  svg {
  fill: var(--color-black);
}
.btn--lg-radius + .menu .menu__content:focus {
  background-color: var(--color-black);
  color: var(--color-contrast-low);
}
.btn--lg-radius
  + .menu
  .menu__content:focus
  .btn--social-menu__icon-circle
  svg {
  fill: var(--color-contrast-low);
}
.btns + .menu {
  background: var(--color-contrast-higher);
  border-radius: var(--btns-button-radius) !important;
  margin: 0;
  padding: 0;
  width: 140px;
}
.btns + .menu .menu__content {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-bg);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  padding: 16px 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  will-change: transform;
}
.btns + .menu .menu__content:hover,
.btns + .menu .menu__content:focus {
  background-color: var(--color-contrast-low);
  color: var(--color-contrast-higher) !important;
}
.btns + .menu .menu__content.menu__content--selected {
  background-color: var(--color-contrast-low);
}
.modal {
  position: fixed;
  z-index: var(--zindex-overlay);
  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;
}
.modal__close-btn {
  display: flex;
  flex-shrink: 0;
  transition: 0.2s;
}
.modal__close-btn .icon {
  display: block;
  margin: auto;
}
.modal__close-btn--outer {
  width: 48px;
  height: 48px;
  position: fixed;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: var(--zindex-fixed-element);
  background-color: hsla(
    var(--color-contrast-higher-h),
    var(--color-contrast-higher-s),
    var(--color-contrast-higher-l),
    0.8
  );
}
.modal__close-btn--outer:hover {
  background-color: var(--color-contrast-higher);
}
.modal__close-btn--outer .icon {
  color: var(--color-bg);
}
.modal__close-btn--inner {
  width: 2em;
  height: 2em;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-sm);
}
.modal__close-btn--inner .icon {
  color: inherit;
}
.modal__close-btn--inner:hover {
  box-shadow: var(--shadow-md);
}
:root {
  --modal-transition-duration: 0.2s;
}
@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);
  }
  .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);
  }
  .modal--animate-scale .modal__content {
    transform: scale(0.95);
  }
  .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);
  }
  .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%);
  }
}
.modal--is-loading .modal__content {
  visibility: hidden;
}
.modal--is-loading .modal__loader {
  display: flex;
}
.modal__loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  pointer-events: none;
}
.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.bg-primary {
  background-color: var(--color-primary);
}
.pre-header.bg-success {
  background-color: var(--color-success);
}
.pre-header.bg-error {
  background-color: var(--color-error);
}
.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);
}
.pre-header-border {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.pre-header-border.pre-header-border--admin {
  border-top: 6px solid var(--color-success);
}
.pre-header-border.pre-header-border--error {
  border-top: 6px solid var(--color-error);
}
.pre-header-border + header {
  padding-top: var(--space-md);
}
: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-white);
  transition: opacity 0.3s ease-out;
}
.radio-switch:focus-within,
.radio-switch:active {
  box-shadow: 0 0 0 1px var(--color-contrast-low);
}
.radio-switch.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.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-xs);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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-black);
  height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
  width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
  transition: transform var(--radio-switch-animation-duration);
}
.radio-switch__input:checked ~ .radio-switch__marker {
  transform: translateX(100%);
}
:root {
  --checkbox-radio-size: 18px;
  --checkbox-radio-gap: var(--space-xxxs);
  --checkbox-radio-border-width: 2px;
  --checkbox-radio-line-height: var(--body-line-height);
  --radio-marker-size: 8px;
  --checkbox-marker-size: 12px;
  --checkbox-radius: 4px;
}
.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;
}
.radio + label,
.checkbox + label {
  display: inline-block;
  line-height: var(--checkbox-radio-line-height);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap));
}
.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: var(--color-contrast-low);
  border-style: solid;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: var(--checkbox-radio-gap);
  transition: transform 0.2s, border 0.2s;
}
.radio:not(:checked):not(:focus) + label:hover::before,
.checkbox:not(:checked):not(:focus) + label:hover::before {
  border-color: hsl(
    var(--color-contrast-low-h),
    var(--color-contrast-low-s),
    calc(var(--color-contrast-low-l) * 0.7)
  );
}
.radio + label::before {
  border-radius: 50%;
}
.checkbox + label::before {
  border-radius: var(--checkbox-radius);
}
.radio:checked + label::before,
.checkbox:checked + label::before {
  background-color: var(--color-primary);
  box-shadow: none;
  border-color: var(--color-primary);
  transition: transform 0.2s;
}
.radio:active + label::before,
.checkbox:active + label::before {
  transform: scale(0.8);
  transition: transform 0.2s;
}
.radio:checked:active + label::before,
.checkbox:checked:active + label::before {
  transform: none;
  transition: none;
}
.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: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);
}
.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 + 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: var(--color-contrast-lower);
}
.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
  );
}
.js .read-more {
  opacity: 0;
}
.js .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;
}
:root {
  --search-input-btn-width: 2.5em;
  --search-input-icon-size: 1.25em;
}
.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;
  width: var(--search-input-icon-size);
  height: var(--search-input-icon-size);
  margin-left: auto;
  margin-right: auto;
  color: var(--color-contrast-medium);
  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);
}
:root {
  --sidenav-width: 60px;
  --sidenav-list-item-height: 32px;
  --sidenav-list-item-padding-x: var(--space-sm);
  --sidenav-icon-size: 20px;
  --sidenav-icon-text-gap: 0px;
  --sidenav-sublist-control-size: 20px;
  --sidenav-sublist-control-icon-size: 12px;
  --sidenav-sublist-control-margin-right: 4px;
}
body.has-sidenav {
  padding-left: var(--sidenav-width);
}
.sidenav__wrapper {
  width: var(--sidenav-width);
}
.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.position-fixed {
  position: fixed;
  width: 100%;
}
.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: var(--color-contrast-lower);
  border-left: 2px solid var(--color-black);
}
.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-xxs);
  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-md);
  padding-bottom: var(--space-md);
}
.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;
}
.switch-icon {
  position: relative;
  padding: var(--space-xxs);
}
.switch-icon--disabled {
  pointer-events: none;
}
.switch-icon__icon {
  display: block;
  fill: currentColor;
  color: var(--color-contrast-higher);
  font-size: 24px;
  height: 24px;
  width: 24px;
  line-height: 1;
  will-change: transform;
}
.switch-icon__icon--a {
  opacity: 1;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
}
.switch-icon__icon--b {
  opacity: 0;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
}
.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;
}
.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);
}
.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);
}
.switch-icon--flip {
  perspective: 10em;
}
.switch-icon--flip .switch-icon__icon {
  -webkit-backface-visibility: hidden;
  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);
}
.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;
}
.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);
}
.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);
}
.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);
}
.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);
}
.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%;
  }
}
:root {
  --autocomplete-dropdown-vertical-gap: 4px;
  --autocomplete-dropdown-max-height: 150px;
  --autocomplete-dropdown-scrollbar-width: 6px;
}
.autocomplete__loader {
  --circle-loader-v1-size: 1em;
  --circle-loader-v1-stroke-width: 2px;
}
.autocomplete:not(.autocomplete--searching) .autocomplete__loader {
  display: none;
}
.autocomplete__results {
  position: absolute;
  z-index: var(--zindex-popover);
  width: 100%;
  left: 0;
  top: calc(100% + var(--autocomplete-dropdown-vertical-gap));
  transform: translateY(4px);
  background-color: var(--color-bg);
  box-shadow: 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;
}
.autocomplete__list::-webkit-scrollbar {
  width: var(--autocomplete-dropdown-scrollbar-width);
}
.autocomplete__list::-webkit-scrollbar-track {
  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 {
  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
  );
}
.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.05
  );
}
.autocomplete__item:focus {
  outline: none;
  background-color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    0.12
  );
}
: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;
  margin-right: var(--carousel-grid-gap);
  margin-bottom: var(--carousel-grid-gap);
  position: relative;
  width: var(--carousel-item-auto-size);
}
.js .carousel__list--animating {
  transition-property: transform;
  transition-duration: var(--carousel-transition-duration);
  transition-timing-function: var(--ease-out);
}
.js .carousel__item {
  opacity: 0;
  margin-bottom: 0;
}
.js .carousel--loaded .carousel__item {
  opacity: 1;
}
.js
  .carousel:not(.carousel--is-dragging)
  .carousel__list:not(.carousel__list--animating)
  .carousel__item[tabindex="-1"]
  > * {
  visibility: hidden;
}
.js .carousel[data-drag="on"] .carousel__item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.js .carousel[data-drag="on"] .carousel__item img {
  pointer-events: none;
}
.carousel__control-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  position: absolute;
  top: calc(50% - 40px);
  left: 0;
  width: 100%;
}
.carousel__control {
  align-items: center;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: hsla(
    var(--color-contrast-higher-h),
    var(--color-contrast-higher-s),
    var(--color-contrast-higher-l),
    0.5
  );
  border: 1px solid
    hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.125);
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  opacity: 0.7;
  transition: 0.2s;
  width: 40px;
  z-index: 1;
}
.carousel__control:active {
  transform: translateY(1px);
}
.carousel__control:hover {
  cursor: pointer;
  opacity: 1;
}
.carousel__control[disabled] {
  pointer-events: none;
  background-color: var(--color-contrast-lower);
  color: var(--color-contrast-low);
  box-shadow: none;
}
.carousel__control .icon {
  color: var(--color-bg);
  display: block;
  font-size: 20px;
}
.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: 0.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, minmax(24px, auto));
}
.carousel__navigation--pagination .carousel__nav-item button {
  width: 100%;
  height: auto;
  color: var(--color-bg);
  font-size: var(--text-xs);
  padding: var(--space-xxxs) var(--space-xxs);
  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;
}
html:not(.js) .carousel__list {
  overflow: auto;
}
.carousel--hide-controls .carousel__navigation,
.carousel--hide-controls .carousel__control {
  display: none;
}
.carousel--card-slideshow {
  --carousel-item-auto-size: 100%;
  --carousel-grid-gap: 0;
}
.card__mentions,
.card__volume-switch {
  position: absolute;
  bottom: var(--space-sm);
  z-index: 2;
}
.card__mentions {
  left: var(--space-sm);
}
.card__volume-switch {
  right: var(--space-sm);
}
.card__mentions-list {
  opacity: 0;
  position: absolute;
  bottom: 30px;
  left: 0;
  text-align: left;
  transform: translateY(-10px);
  transition: all 0.3s ease-out;
}
.card__mentions-list.show {
  opacity: 1;
  transform: translateY(0);
}
.card__mentions-list li {
  font-size: var(--text-xs);
  margin-bottom: var(--space-xs);
}
.card-facebook__inner {
  background-color: var(--color-bg);
}
.card-facebook__header {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: var(--text-xs);
  justify-content: space-between;
  padding: var(--space-md);
}
.card-facebook__header-titles {
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 50%;
}
.card-facebook__header-logo {
  flex-shrink: 0;
  padding-top: 1px;
  width: var(--card-logo-size);
}
.card-facebook__header-co {
  flex-shrink: 0;
  margin-left: var(--space-xxs);
  position: relative;
  width: calc(100% - var(--card-logo-size));
}
.card-facebook__header-badges {
  text-align: right;
  width: 50%;
}
.card-facebook__header-badges .badge {
  margin-bottom: var(--space-xxxs);
  transform: translateY(2px);
}
.card-facebook__header-badges .badge:last-child {
  margin-left: var(--space-xxs);
  margin-bottom: 0;
}
.card-facebook__body .text-component {
  padding: 0 var(--space-sm) var(--space-xs);
}
.card-facebook__body p {
  margin-bottom: 0;
}
.card-facebook__body .text-componet__tags {
  line-height: 1.2;
  padding-left: 0;
}
.card-facebook__body li a,
.card-facebook__body p a {
  color: #0272e4;
}
.card-facebook__img-link {
  display: block;
  overflow: hidden;
  background-color: var(--color-contrast-higher);
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
.card-facebook__img-link:hover {
  box-shadow: var(--shadow-md);
}
.card-facebook__img-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-facebook video {
  pointer-events: none;
}
:root {
  --card-logo-size: 28px;
}
.card-instagram {
  position: relative;
}
.card-instagram__header {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: var(--text-xs);
  justify-content: space-between;
  padding: var(--space-xs) var(--space-sm);
}
.card-instagram__header-titles {
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 50%;
}
.card-instagram__header-logo {
  flex-shrink: 0;
  padding-top: 1px;
  width: var(--card-logo-size);
}
.card-instagram__header-co {
  flex-shrink: 0;
  margin-left: var(--space-xxs);
  position: relative;
  width: calc(100% - var(--card-logo-size));
}
.card-instagram__header-badges {
  text-align: right;
  width: 50%;
}
.card-instagram__header-badges .badge {
  margin-bottom: var(--space-xxxs);
  transform: translateY(2px);
}
.card-instagram__header-badges .badge:last-child {
  margin-left: var(--space-xxs);
  margin-bottom: 0;
}
.card-instagram__header-story {
  padding: var(--space-xs) 0;
}
.card-instagram__content-wrapper {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.card-instagram__content {
  display: flex;
  flex-direction: column;
}
.card-instagram__post-ui {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: var(--space-sm);
}
.card-instagram__post-ui > div {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.card-instagram__post-ui .instagram-ui-icon {
  height: 1.25em;
}
.card-instagram__img-link {
  display: block;
  overflow: hidden;
  background-color: var(--color-contrast-higher);
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
.card-instagram__img-link:hover {
  box-shadow: var(--shadow-md);
}
.card-instagram__img-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-instagram__ui-logo {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  height: auto;
  position: absolute;
  left: 3%;
  right: auto;
  top: 2%;
  width: 12%;
}
.card-instagram__footer {
  display: flex;
  flex-direction: row;
  font-size: var(--text-xs);
  justify-content: space-between;
  padding: var(--space-sm);
}
.card-facebook video {
  pointer-events: none;
}
.card-linkedin__header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: var(--space-sm);
}
.card-linkedin__header-titles {
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 50%;
}
.card-linkedin__header-logo {
  flex-shrink: 0;
  padding-top: 1px;
  width: var(--card-logo-size) !important;
}
.card-linkedin__header-co {
  flex-shrink: 0;
  font-size: var(--text-xs);
  margin-left: var(--space-xxs);
  position: relative;
  width: calc(100% - var(--card-logo-size));
}
.card-linkedin__header-badges {
  font-size: var(--text-xs);
  text-align: right;
  width: 50%;
}
.card-linkedin__header-badges .badge {
  margin-bottom: var(--space-xxxs);
  transform: translateY(2px);
}
.card-linkedin__header-badges .badge:last-child {
  margin-left: var(--space-xxs);
  margin-bottom: 0;
}
.card-linkedin__body .text-component {
  padding: 0 var(--space-sm) var(--space-sm);
}
.card-linkedin__body p {
  margin-bottom: 0;
}
.card-linkedin__body li a,
.card-linkedin__body p a {
  color: #0272e4;
  font-weight: 700;
}
.card-linkedin__img-link {
  display: block;
  overflow: hidden;
  background-color: var(--color-contrast-higher);
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
.card-linkedin__img-link:hover {
  box-shadow: var(--shadow-md);
}
.card-linkedin__img-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-linkedin video {
  pointer-events: none;
}
.card-linkedin__footer {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: var(--text-xs);
  padding: var(--space-md);
}
.card-linkedin__footer-icon {
  align-items: center;
  color: var(--color-contrast-medium);
  display: flex;
  flex-direction: row;
  margin-right: var(--space-md);
}
.card-linkedin__footer-icon .icon {
  font-size: var(--text-lg);
  margin-right: var(--space-xxxs);
}
.card-tiktok {
  position: relative;
}
.card-tiktok__header {
  font-size: var(--text-xs);
}
.card-tiktok__img-link {
  display: block;
  overflow: hidden;
  background-color: var(--color-contrast-higher);
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
.card-tiktok__img-link:hover {
  box-shadow: var(--shadow-md);
}
.card-tiktok__img-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-tiktok__ui-logo {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  height: auto;
  position: absolute;
  left: auto;
  right: 0.8%;
  top: 38%;
  width: 12%;
}
.card-tiktok__sound,
.card-tiktok__content,
.card-tiktok__content-noUI {
  color: var(--color-bg);
  font-size: var(--text-sm);
  height: auto !important;
  position: absolute;
  left: 0;
  top: auto;
  width: 80%;
}
.card-tiktok__content {
  padding: 0 var(--space-sm) 0 12px;
  bottom: 14%;
}
.card-tiktok__content-noUI {
  display: none;
  padding: 0 var(--space-sm) 0 8px;
  bottom: 20%;
}
.card-tiktok__content-link {
  color: var(--color-bg);
}
.card-tiktok__content-title {
  font-size: var(--text-sm);
  margin-bottom: var(--space-xxs);
}
.card-tiktok__content-verified {
  --size: 10px;
}
.card-tiktok__sound {
  padding: 0 var(--space-sm) 0 29px;
  bottom: 9.7%;
}
.card-tiktok__sound-noUI {
  display: none;
}
.card-facebook video {
  pointer-events: none;
}
.card-twitter.card-twitter__listing {
  border-bottom: 1px solid var(--color-contrast-low);
  padding-bottom: var(--space-md);
}
.card-twitter__header {
  padding-right: var(--space-xs);
}
.card-twitter__body {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  padding-right: var(--space-xs);
}
.card-twitter__body .slideshow__item {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.card-twitter__footer {
  align-items: center;
  background-color: hsl(
    var(--color-contrast-lower-h),
    var(--color-contrast-lower-s),
    calc(var(--color-contrast-lower-l) * 0.95)
  );
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: row;
  font-size: var(--text-sm);
  justify-content: space-between;
  padding: var(--space-xs) var(--space-sm);
}
.card-facebook video {
  pointer-events: none;
}
:root {
  --card-item-width: 450px;
}
.card {
  width: 450px;
}
.card.card--tiktok {
  width: 350px;
}
.text-component .text-componet__tags {
  line-height: 1.2;
  padding: var(--space-xxs) 0 0 0;
}
.device__nav-pages {
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  text-align: center;
}
.device-details {
  padding-right: var(--space-xxxs);
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease-out;
  transition-delay: 0.3s;
}
.device-details.device-details--hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-5%);
  transition-delay: 0s;
}
.device-details li {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}
.device-details h3 {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.device__nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 40px;
}
.device__nav .device__nav-pages {
  width: 100%;
}
.device__nav.device__nav--wide {
  width: calc(80px + (var(--space-xxs) * 2));
}
.device__nav.device__nav--wide .device__nav-btns {
  margin-right: var(--space-xxs);
  transform: rotate(90deg);
}
.device__nav-btns {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  align-items: center;
  background-color: var(--color-black);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  line-height: 1.2;
  justify-content: center;
  height: 40px;
  margin-bottom: var(--space-xxs);
  text-decoration: none;
  transition: all 0.3s ease-out;
  width: 40px;
  will-change: transform;
}
.device__nav-btns svg {
  fill: var(--color-white);
  width: 15px;
}
.device__nav-btns:hover {
  box-shadow: var(--shadow-sm);
}
.borders > div {
  border: 1px solid var(--color-accent-darker);
}
.drop-menu {
  --drop-menu-item-height: 50px;
  --drop-menu-gap-y: 4px;
  --drop-menu-transition-duration: 0.3s;
  --drop-menu-width-desktop: 300px;
  display: inline-block;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: var(--zindex-fixed-element);
  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-x: hidden;
  height: 100%;
  flex-shrink: 0;
}
.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.05
  );
}
.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 {
  align-items: center;
  display: flex;
  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%;
  }
  .drop-menu__close-btn {
    display: none;
  }
}
:root {
  --entry-item-width: 400px;
}
.entry__item {
  padding-top: var(--space-xxl);
  position: relative;
  overflow-y: scroll;
}
@media (min-width: 32rem) {
  .entry__item {
    height: 100vh;
  }
}
@media (min-width: 48rem) {
  .entry__item {
    padding-top: calc(var(--space-xl) + 10px);
  }
}
.entry__item > div {
  margin: 0 auto;
  width: 100%;
}
.entry__comments {
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  position: relative;
  overflow-y: scroll;
}
@media (min-width: 32rem) {
  .entry__comments {
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding-bottom: var(--space-xxl);
    height: 100vh;
  }
}
.entry__close {
  position: fixed;
  right: var(--space-md);
  top: var(--space-md);
  z-index: 2;
}
@media (min-width: 32rem) {
  .entry__close {
    right: calc(50% + var(--space-md));
  }
}
@media (min-width: 48rem) {
  .entry__close {
    right: var(--space-sm);
  }
}
.entry__social-icon {
  color: var(--color-contrast-high);
  position: absolute;
  left: var(--space-md);
  top: calc(6px + var(--space-md));
  z-index: 2;
}
:root {
  --comment-avatar-width: 40px;
}
@media (min-width: 48rem) {
  :root {
    --comment-avatar-width: 70px;
  }
}
.hcomments {
  padding: var(--space-md);
}
@media (min-width: 48rem) {
  .hcomments {
    padding-top: var(--space-sm);
    padding-right: var(--space-xl);
    padding-left: var(--space-md);
  }
}
.hcomment__wrapper {
  background-color: var(--color-accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
}
.hcomment__wrapper.has-children {
  padding-bottom: 0;
}
.hcomments__avatar {
  width: var(--comment-avatar-width);
}
.hcomments__avatar-icon {
  fill: var(--color-accent-dark);
  width: 100%;
}
.hcomments__wrap-content {
  padding-left: var(--space-md);
  width: calc(100% - var(--comment-avatar-width));
}
.hcomments__body .hcomments__comment-form,
.hcomments__reply-field .hcomments__comment-form {
  padding-top: var(--space-xs);
}
.hcomments__comment-replies.has-children {
  background-color: var(--color-accent);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
  margin-right: calc(-1 * var(--space-md));
  margin-left: calc(-1 * (var(--comment-avatar-width) + (var(--space-md) * 2)));
}
.hcomments__comment-replies.has-children .hcomment__wrapper {
  background-color: transparent;
  margin-bottom: 0;
}
.hcomments + .hcomments__comment-form {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-accent-light);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) var(--space-lg) var(--space-md);
  width: 100%;
}
@media (min-width: 48rem) {
  .hcomments + .hcomments__comment-form {
    padding: var(--space-md) var(--space-xl) var(--space-md) var(--space-md);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.hcomments__comment-form textarea {
  background-color: var(--color-accent);
  border-radius: var(--radius-lg);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  width: 100%;
}
.hcomments__comment-form textarea::-moz-placeholder {
  color: var(--color-contrast-higher);
}
.hcomments__comment-form textarea:-ms-input-placeholder {
  color: var(--color-contrast-higher);
}
.hcomments__comment-form textarea::placeholder {
  color: var(--color-contrast-higher);
}
.hcomments__comment-form .btn {
  padding: 12px 8px;
}
.admin-comment-form {
  border-top: 1px solid var(--color-contrast-lower);
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
}
.admin-comment-form textarea {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border-width: 1px;
  font-size: var(--text-sm);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: 100%;
}
.admin-comment-form textarea::-moz-placeholder {
  color: var(--color-contrast-high);
}
.admin-comment-form textarea:-ms-input-placeholder {
  color: var(--color-contrast-high);
}
.admin-comment-form textarea::placeholder {
  color: var(--color-contrast-high);
}
.admin-comment-form button {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.admin-comments.admin-comments-unresolved .admin-comment--resolved {
  display: none;
}
.admin-comments.admin-comments-resolved .admin-comment--unresolved {
  display: none;
}
.admin-comment {
  position: relative;
}
.admin-comment.admin-comment--resolved p {
  opacity: 0.5;
  text-decoration: line-through;
}
.resolved-switch_form {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-sm);
}
.resolved-switch_form.resolved-switch_form--wait {
  cursor: wait !important;
}
.resolved-switch_checkbox:disabled + .resolved-switch_label {
  pointer-events: none;
}
.instagram-grid__wrapper {
  height: 100vh;
  overflow: scroll;
  padding: var(--space-lg) var(--space-sm);
}
.instagram-grid {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 400px;
  padding: var(--space-md) var(--space-sm);
  width: 100%;
}
.instagram-grid__header .text-component p {
  margin-bottom: var(--space-xxxs);
}
.instagram-grid__header .text-component a {
  color: #02386b;
}
.instagram-grid__header-logo {
  border: 1px solid var(--color-contrast-low);
  border-radius: 50%;
  height: 80px;
  padding: 3px;
  width: 80px;
}
.instagram-grid__header-menu {
  flex-grow: 1;
  padding-left: var(--space-sm);
  padding-top: var(--space-xxxxs);
}
.instagram-grid__header-menu .instagram-grid__header-menu-message,
.instagram-grid__header-menu .instagram-grid__header-menu-user,
.instagram-grid__header-menu .instagram-grid__header-menu-arrow {
  align-items: center;
  border: 1px solid var(--color-contrast-low);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: row;
  font-size: var(--text-sm);
  font-weight: 700;
  height: 35px;
  justify-content: center;
  text-align: center;
}
.instagram-grid__header-menu .instagram-grid__header-menu-message {
  margin-right: 8px;
  width: calc(100% - 100px - 16px);
}
.instagram-grid__header-menu .instagram-grid__header-menu-user {
  margin-right: 8px;
  width: 60px;
}
.instagram-grid__header-menu .instagram-grid__header-menu-user .icon {
  height: 20px;
  width: 20px;
}
.instagram-grid__header-menu .instagram-grid__header-menu-arrow {
  width: 40px;
}
.instagram-grid__header-menu .instagram-grid__header-menu-arrow .icon {
  height: 18px;
  width: 11px;
}
.card-facebook video {
  pointer-events: none;
}
:root {
  --sms-header-logo-width: 68px;
}
.sms-header {
  display: flex;
  padding: var(--space-sm) var(--space-sm) 0 var(--space-sm);
}
.sms-header_left {
  align-items: flex-start;
  display: none;
  flex-grow: 1;
  flex-basis: 0;
  flex-shrink: 0;
  justify-content: flex-start;
}
@media (min-width: 48rem) {
  .sms-header_left {
    display: flex;
  }
}
.sms-header-menu {
  position: absolute;
  right: var(--space-sm);
}
.sms-header_center {
  padding: 0 var(--space-sm);
  position: relative;
  width: 100%;
}
@media (min-width: 48rem) {
  .sms-header_center {
    align-items: flex-start;
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sms-header_center-logo {
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (min-width: 48rem) {
  .sms-header_center-logo {
    display: block;
    text-align: center;
    width: 100%;
  }
}
.sms-header_center-logo img {
  margin-right: var(--space-sm);
  max-width: var(--sms-header-logo-width);
}
@media (min-width: 48rem) {
  .sms-header_center-logo img {
    margin: 0 auto var(--space-xs);
    width: var(--space-xl);
  }
}
.sms-header_right {
  align-items: flex-start;
  display: none;
  flex-grow: 1;
  flex-basis: 0;
  flex-shrink: 0;
  justify-content: flex-end;
}
@media (min-width: 48rem) {
  .sms-header_right {
    display: flex;
  }
}
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}
.tns-slider {
  transition: all 0s;
}
.tns-slider > .tns-item {
  box-sizing: border-box;
}
.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}
.tns-no-calc {
  position: relative;
  left: 0;
}
.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  transition: all 0.25s;
}
.tns-autowidth {
  display: inline-block;
}
.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}
.tns-ah {
  transition: height 0s;
}
.tns-ovh {
  overflow: hidden;
}
.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}
.tns-transparent {
  opacity: 0;
  visibility: hidden;
}
.tns-fadeIn {
  opacity: 1;
  z-index: 0;
}
.tns-normal,
.tns-fadeOut {
  opacity: 0;
  z-index: -1;
}
.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div,
.tns-vpfix > li {
  display: inline-block;
}
.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}
html {
  height: 100%;
}
body {
  height: 100%;
}
.status-disabled,
.status-pending {
  border-width: 2px;
  border-style: solid;
}
.status-pending {
  border-color: var(--color-success-lighter);
}
.status-disabled {
  border-color: var(--color-error-lighter);
} /*! purgecss end ignore */

.carousel__control-wrapper {
  z-index: 1;
}
.carousel__wrapper {
  position: relative;
  z-index: 0;
}
.carousel__control-wrapper {
  z-index: 1;
}
.carousel__wrapper {
  position: relative;
  z-index: 0;
}
