@charset "UTF-8";
/**
 * Base Variables
 */
/**
 * Vendor
 */
/* RIVER Design-System: Preload - CSS Variables */
:root {
  /* colors */
  --colors-gray-dark: #333333;
  --colors-gray-normal: #666666;
  --colors-gray-light: #999999;
  --colors-gray-bg: #f5f5f5;
  --colors-brand-primary: #007bff;
  --colors-brand-secondary: #6c757d;
  /* type */
  --type-font-normal: Arial, sans-serif;
  --type-font-title: Arial, sans-serif;
  --type-size-2xl: 2.4rem;
  --type-size-xl: 2rem;
  --type-size-lg: 1.8rem;
  --type-size-normal: 1.6rem;
  --type-size-sm: 1.4rem;
  --type-size-xs: 1.2rem;
  --type-size-2xs: 1.1rem;
  --type-size-title-1: 5.8rem;
  --type-size-title-2: 4.6rem;
  --type-size-title-3: 2.6rem;
  --type-size-title-4: 2rem;
  --type-size-title-5: 1.6rem;
  --type-size-title-6: 1.4rem;
  --type-size-subtitle: 1.2rem;
  --type-weight-light: 300;
  --type-weight-normal: 400;
  --type-weight-medium: 500;
  --type-weight-bold: 600;
  --type-weight-title: 600;
  --type-leading-none: 1;
  --type-leading-tight: 1.25;
  --type-leading-normal: 1.5;
  --type-leading-relaxed: 1.625;
  --type-leading-title: var(--type-leading-normal);
  --type-tracking-tight: -0.025em;
  --type-tracking-none: 0;
  --type-tracking-normal: var(--type-tracking-none);
  --type-tracking-wide: 0.025em;
  --type-tracking-title: var(--type-tracking-normal);
  /* sizes */
  --sizes-size-tiny: 0.2rem;
  --sizes-size-subtle: 0.5rem;
  --sizes-size-2xs: 0.5rem;
  --sizes-size-xs: 1rem;
  --sizes-size-sm: 2rem;
  --sizes-size-normal: 3rem;
  --sizes-size-lg: 4rem;
  --sizes-size-xl: 5rem;
  --sizes-size-2xl: 6rem;
  --sizes-padding-small: 0.5rem 1rem;
  --sizes-padding-normal: 1rem 2rem;
  --sizes-padding-large: 1.5rem 4rem;
  --sizes-ratio-square: 100%;
  --sizes-ratio-vertical-small: 33%;
  --sizes-ratio-vertical-normal: 66%;
  --sizes-ratio-horizontal-small: 20%;
  --sizes-ratio-horizontal-normal: 40%;
  /* common */
  --common-transition-fast: 0.2s all ease-in-out;
  --common-transition-normal: 0.3s all ease-in-out;
  --common-transition-slow: 0.5s all ease-in-out;
  --common-borders-normal: solid 1px #e0e0e0;
  --common-borders-bg: solid 2px #f5f5f5;
}

/* RIVER Design-System: Preload - Reset */
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

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

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: inherit;
}

/* RIVER Design-System: Preload - Base */
/* RIVER Design-System: Helpers - Styles / Titles */
.style-title {
  font-family: var(--type-font-title);
  font-weight: var(--type-weight-title);
  color: inherit;
}

.style-title--1, .scope-styles :where(h1) {
  font-size: var(--type-size-title-1);
  line-height: 1.8em;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}

.style-title--2, .scope-styles :where(h2) {
  font-size: var(--type-size-title-2);
  line-height: 1.8em;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}

.style-title--3, .scope-styles :where(h3) {
  font-size: var(--type-size-title-3);
  line-height: 1.8em;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}

.style-title--4, .scope-styles :where(h4) {
  font-size: var(--type-size-title-4);
  line-height: 1.8em;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}

.style-title--5, .scope-styles :where(h5) {
  font-size: var(--type-size-title-5);
  line-height: 1.5em;
  letter-spacing: 0;
  margin-bottom: 0.75em;
}

.style-title--6, .scope-styles :where(h6) {
  font-size: var(--type-size-title-6);
  line-height: 1.5em;
  letter-spacing: 0;
  margin-bottom: 0.75em;
}

/* RIVER Design-System: Helpers - Styles / Formats */
.style-title--primary {
  color: slateblue;
}

.style-title--secondary {
  color: slateblue;
}

.style-text--primary {
  color: slateblue;
}

.style-text--secondary {
  color: slateblue;
}

.style-paragraph, .scope-styles :where(p) {
  margin-bottom: 1em;
}

.style-link, .scope-styles :where(a) {
  color: slateblue;
  text-decoration: none;
  transition: var(--common-transition-fast);
  transition-property: color;
}

.style-link:hover, .scope-styles :hover:where(a) {
  cursor: pointer;
  color: slateblue;
}

.style-button, .scope-styles :where(button) {
  display: inline-block;
  padding: var(--sizes-padding-small);
  color: white;
  background-color: slateblue;
  border: solid 1px slategray;
  border-color: slateblue;
  border-radius: 0;
  font-weight: var(--type-weight-bold);
  cursor: pointer;
  text-decoration: none;
}

.style-button:hover, .scope-styles :hover:where(button), .style-button:focus, .scope-styles :focus:where(button) {
  background-color: slateblue;
  border-color: slateblue;
}

.style-input, .scope-styles :where(input) {
  display: inline-block;
  padding: var(--sizes-padding-small);
  color: var(--colors-gray-normal);
  background-color: var(--colors-gray-bg);
  border: solid 1px slategray;
  border-radius: 0;
}

.style-input:hover, .scope-styles :hover:where(input), .style-input:focus, .scope-styles :focus:where(input) {
  border-color: slateblue;
}

.style-small, .scope-styles :where(small) {
  font-size: 0.8em;
}

.style-big, .scope-styles :where(big) {
  font-size: 1.2em;
}

.style-strong, .scope-styles :where(strong, b) {
  font-weight: var(--type-weight-bold);
}

.style-emphasis, .scope-styles :where(em) {
  font-style: italic;
}

.style-divide, .scope-styles :where(hr) {
  display: block;
  border: none;
  border-top: solid 1px slategray;
  border-width: 2px;
  margin: 4rem 0;
}

.style-divide--inline {
  margin: 0;
}

.style-divide--vertical {
  height: 100%;
  width: 0;
  border-top: none;
  border-left: solid 1px slategray;
  margin: 0 9rem;
}

.style-divide--primary {
  border-color: blue;
}

.style-title--subtitle {
  font-size: var(--type-size-subtitle);
}

.style-blockquote, .scope-styles :where(blockquote) {
  padding: var(--sizes-padding-small);
  border-left: solid 0.5rem var(--colors-gray-normal);
}

.style-blockquote > *:last-child, .scope-styles :where(blockquote) > *:last-child {
  margin-bottom: 0;
}

.style-inlinequote:before, .scope-styles :where(q):before {
  content: "“";
  margin-right: 0.1em;
}

.style-inlinequote:after, .scope-styles :where(q):after {
  content: "”";
  margin-left: 0.1em;
}

.style-quote {
  display: inline-block;
  padding: var(--sizes-padding-small);
  background-color: var(--colors-gray-bg);
}

.style-quote:before {
  content: "“";
  margin-right: 0.25em;
  font-size: 1.2em;
  color: var(--colors-gray-light);
}

.style-quote:after {
  content: "”";
  margin-left: 0.25em;
  font-size: 1.2em;
  color: var(--colors-gray-light);
}

.style-code, .scope-styles :where(code) {
  display: inline-block;
  padding: 0.5rem;
  font-size: 0.8em;
  background-color: var(--colors-gray-bg);
}

.style-codeblock, .scope-styles :where(pre) {
  display: inline-block;
  padding: var(--sizes-padding-small);
  background-color: var(--colors-gray-bg);
}

.style-label {
  font-size: var(--type-size-sm);
  font-weight: var(--type-weight-medium);
  color: slategray;
  letter-spacing: 0;
  text-transform: uppercase;
}

.style-adjunct {
  font-size: var(--type-size-xs);
  font-weight: 400;
  color: slategray;
  letter-spacing: 0;
}

.style-caption {
  font-size: var(--type-size-xs);
  font-weight: 400;
  color: slategray;
  letter-spacing: 0;
  font-style: italic;
}

.style-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.style-overlay--gray {
  background-color: rgba(0, 0, 0, 0.5);
}

/* RIVER Design-System: Helpers - Styles / Formats */
.style-list, .scope-styles :where(ol), .scope-styles :where(ul) {
  margin-left: 2em;
}

.style-list--ul, .scope-styles :where(ul) {
  list-style: disc;
}

.style-list--ol, .scope-styles :where(ol) {
  list-style: decimal;
}

.style-table, .scope-styles :where(table) {
  display: table;
  width: 100%;
}

.style-table th, .scope-styles :where(table) th, td {
  padding: var(--sizes-padding-small);
  border-bottom: solid 1px slategray;
  border-color: var(--colors-gray-bg);
}

.style-table th, .scope-styles :where(table) th {
  font-weight: var(--type-weight-bold);
  font-size: 1.05em;
}

/* RIVER Design-System: Helpers - Styles / Formats */
.style-image, .scope-styles :where(img) {
  display: inline-flex;
}

:where(.style-image, .scope-styles :where(img)) {
  width: auto;
  height: auto;
  max-width: 100%;
}

.style-image--fullwidth {
  width: 100%;
  height: auto;
}

.style-image--cover, .style-image--contain {
  position: absolute;
  inset: 0;
}

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

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

.style-icon {
  display: inline-block;
  max-width: 100%;
}

.style-icon svg {
  display: block;
  height: 100%;
  width: auto;
}

:where(.style-icon) {
  width: auto;
  height: auto;
}

.style-icon--xs {
  width: 1.2rem;
  height: 1.2rem;
}

.style-icon--sm {
  width: 1.6rem;
  height: 1.6rem;
}

.style-icon--md {
  width: 2.4rem;
  height: 2.4rem;
}

.style-icon--lg {
  width: 3.2rem;
  height: 3.2rem;
}

.style-icon--xl {
  width: 4.8rem;
  height: 4.8rem;
}

.style-video,
.style-splash {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 57%;
}

.style-video > iframe, .style-video > img, .style-video > video,
.style-splash > iframe,
.style-splash > img,
.style-splash > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.style-loading {
  opacity: 0.5;
  pointer-events: none;
}

/* RIVER Design-System: Helpers - Styles / Notifications */
.style-notification {
  --text-color: currentColor;
  --background-color: transparent;
  --border-color: transparent;
}

.style-notification {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: var(--type-size-sm);
  color: var(--text-color);
  background-color: var(--background-color);
  border: solid 1px slategray;
  border-color: var(--border-color);
  border-radius: 0.4rem;
}

.style-notification > .style-icon {
  vertical-align: middle;
  margin-top: -2px;
  transition: 0.2s all ease-in-out;
  transition-property: transform;
  width: 1.6rem;
  height: 1.6rem;
}

.style-notification > .style-notification__icon-left {
  margin-right: 0.6rem;
}

.style-notification > .style-notification__icon-right {
  margin-left: 0.6rem;
}

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

.style-notification, .style-notification--text {
  --text-color: gray;
  --background-color: var(--colors-gray-bg);
  --border-color: lightgray;
}

.style-notification--reverse {
  --text-color: white;
  --background-color: var(--colors-gray-normal);
  --border-color: var(--colors-gray-normal);
}

.style-notification--primary {
  --text-color: slateblue;
  --background-color: white;
  --border-color: lightblue;
}

.style-notification--secondary {
  --text-color: slateblue;
  --background-color: white;
  --border-color: lightblue;
}

.style-notification--success {
  --text-color: green;
  --background-color: white;
  --border-color: lightgreen;
}

.style-notification--success :is(a, h1, h2, h3, h4, h5, h6) {
  color: green;
}

.style-notification--info {
  --text-color: blue;
  --background-color: white;
  --border-color: lightblue;
}

.style-notification--info :is(a, h1, h2, h3, h4, h5, h6) {
  color: blue;
}

.style-notification--warning {
  --text-color: yellow;
  --background-color: white;
  --border-color: lightyellow;
}

.style-notification--warning :is(a, h1, h2, h3, h4, h5, h6) {
  color: yellow;
}

.style-notification--error {
  --text-color: red;
  --background-color: white;
  --border-color: lightred;
}

.style-notification--error :is(a, h1, h2, h3, h4, h5, h6) {
  color: red;
}

/* RIVER Design-System: Helpers - Styles / Pills */
.style-pill {
  --text-color: currentColor;
  --background-color: transparent;
  --border-color: transparent;
}

.style-pill {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  font-size: var(--type-size-xs);
  color: var(--text-color);
  background-color: var(--background-color);
  border: solid 1px slategray;
  border-color: var(--border-color);
  border-radius: 1.6rem;
}

.style-pill > .style-icon {
  vertical-align: middle;
  margin-top: -2px;
  transition: 0.2s all ease-in-out;
  transition-property: transform;
  width: 1.6rem;
  height: 1.6rem;
}

.style-pill > .style-pill__icon-left {
  margin-right: 0.6rem;
}

.style-pill > .style-pill__icon-right {
  margin-left: 0.6rem;
}

.style-pill, .style-pill--text {
  --text-color: gray;
  --background-color: var(--colors-gray-bg);
  --border-color: lightgray;
}

.style-pill--reverse {
  --text-color: white;
  --background-color: var(--colors-gray-normal);
  --border-color: var(--colors-gray-normal);
}

.style-pill--primary {
  --text-color: slateblue;
  --background-color: white;
  --border-color: lightblue;
}

.style-pill--secondary {
  --text-color: slateblue;
  --background-color: white;
  --border-color: lightblue;
}

.style-pill--success {
  --text-color: green;
  --background-color: white;
  --border-color: lightgreen;
}

.style-pill--success :is(a, h1, h2, h3, h4, h5, h6) {
  color: green;
}

.style-pill--info {
  --text-color: blue;
  --background-color: white;
  --border-color: lightblue;
}

.style-pill--info :is(a, h1, h2, h3, h4, h5, h6) {
  color: blue;
}

.style-pill--warning {
  --text-color: yellow;
  --background-color: white;
  --border-color: lightyellow;
}

.style-pill--warning :is(a, h1, h2, h3, h4, h5, h6) {
  color: yellow;
}

.style-pill--error {
  --text-color: red;
  --background-color: white;
  --border-color: lightred;
}

.style-pill--error :is(a, h1, h2, h3, h4, h5, h6) {
  color: red;
}

/* RIVER Design-System: Helpers - Styles / Count */
.style-count {
  --text-color: currentColor;
  --background-color: transparent;
  --border-color: transparent;
}

.style-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0.5rem;
  border-radius: 1.2rem;
  margin-top: -1px;
  margin-bottom: -1px;
  font-size: var(--type-size-xs);
  color: var(--text-color);
  background-color: var(--background-color);
  border: solid 1px slategray;
  border-color: var(--border-color);
}

.style-count, .style-count--primary {
  --text-color: white;
  --background-color: slateblue;
  --border-color: slateblue;
}

.style-count--gray {
  --text-color: gray;
  --background-color: var(--colors-gray-bg);
  --border-color: slategray;
}

.style-count--fixedWidth {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
}

.style-count--2xs {
  min-width: 2rem;
  height: 2rem;
  padding: 0.4rem;
  border-radius: 1rem;
  font-size: var(--type-size-2xs);
}

.style-count--2xs.style-count--fixedWidth {
  width: 2rem;
}

/* RIVER Design-System: Helpers - Styles / Scope */
.scope-styles *:where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0.5em;
}

.scope-styles p,
.scope-styles button, .scope-styles input, .scope-styles blockquote,
.scope-styles pre,
.scope-styles ul, .scope-styles ol,
.scope-styles table {
  margin-bottom: 1em;
}

.scope-styles *:last-child {
  margin-bottom: 0 !important;
}

/* RIVER Design-System: Helpers - Layout / General */
.layout-clear {
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
}

.layout-space {
  display: block;
  clear: both;
  line-height: 0;
  overflow: hidden;
}

/* RIVER Design-System: Helpers - Layout / Container */
.layout-container {
  flex-grow: 1;
  width: 100%;
  max-width: 1260px;
}

:where(.layout-container) {
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

@container (max-width: 720px) {
  :where(.layout-container) {
    padding-left: var(--sizes-size-sm);
    padding-right: var(--sizes-size-sm);
  }
}
.layout-container--sm {
  max-width: 720px;
}

.layout-container--lg {
  max-width: 1480px;
}

.layout-container--fluid {
  max-width: none;
}

.layout-container--stack {
  display: flex;
  flex-direction: column;
}

/* RIVER Design-System: Helpers - Layout / Section */
.layout-section {
  --layout-section--padding: 12rem;
  --layout-section--padding-multiplier: 1;
  position: relative;
}

:where(.layout-section) {
  padding-top: calc(var(--layout-section--padding) * var(--layout-section--padding-multiplier));
  padding-bottom: calc(var(--layout-section--padding) * var(--layout-section--padding-multiplier));
}

@container (max-width: 1020px) {
  .layout-section {
    --layout-section--padding-multiplier: 0.75;
  }
}
@container (max-width: 720px) {
  .layout-section {
    --layout-section--padding-multiplier: 0.5;
  }
}
.layout-section--2xs {
  --layout-section--padding: var(--sizes-size-lg);
}

.layout-section--xs {
  --layout-section--padding: var(--sizes-size-xl);
}

.layout-section--sm {
  --layout-section--padding: 8rem;
}

.layout-section--md {
  --layout-section--padding: 12rem;
}

.layout-section--lg {
  --layout-section--padding: 16rem;
}

.layout-section--nopadding {
  --layout-section--padding: 0;
}

.layout-section--precede {
  padding-bottom: 0;
}

.layout-section--follow {
  padding-top: 0;
}

.layout-section--clear {
  clear: both;
}

.layout-section:not(.layout-section--clear):where(.layout-section + .layout-section) {
  padding-top: 0;
}

/* RIVER Design-System: Helpers - Display / General */
.display-fullscreen {
  width: 100%;
  min-height: 100vh;
}

.display-fullsize {
  width: 100%;
  height: 100%;
}

.display-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.display-bg-cover {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.display-fit {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.display-contain {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

/* RIVER Design-System: Helpers - Responsive */
.\@container {
  container-type: inline-size;
  container-name: default;
  width: 100%;
}

/* RIVER Design-System: Helpers - Widths */
.width--full {
  width: 100%;
}

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

.offset--20\% {
  margin-left: 20%;
}

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

.offset--25\% {
  margin-left: 25%;
}

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

.offset--33\% {
  margin-left: 33%;
}

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

.offset--40\% {
  margin-left: 40%;
}

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

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

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

.offset--60\% {
  margin-left: 60%;
}

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

.offset--66\% {
  margin-left: 66%;
}

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

.offset--75\% {
  margin-left: 75%;
}

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

.offset--80\% {
  margin-left: 80%;
}

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

.offset--100\% {
  margin-left: 100%;
}

.width--0\/12 {
  width: 0%;
}

.offset--0\/12 {
  margin-left: 0%;
}

.width--1\/12 {
  width: 8.3333333333%;
}

.offset--1\/12 {
  margin-left: 8.3333333333%;
}

.width--2\/12 {
  width: 16.6666666667%;
}

.offset--2\/12 {
  margin-left: 16.6666666667%;
}

.width--3\/12 {
  width: 25%;
}

.offset--3\/12 {
  margin-left: 25%;
}

.width--4\/12 {
  width: 33.3333333333%;
}

.offset--4\/12 {
  margin-left: 33.3333333333%;
}

.width--5\/12 {
  width: 41.6666666667%;
}

.offset--5\/12 {
  margin-left: 41.6666666667%;
}

.width--6\/12 {
  width: 50%;
}

.offset--6\/12 {
  margin-left: 50%;
}

.width--7\/12 {
  width: 58.3333333333%;
}

.offset--7\/12 {
  margin-left: 58.3333333333%;
}

.width--8\/12 {
  width: 66.6666666667%;
}

.offset--8\/12 {
  margin-left: 66.6666666667%;
}

.width--9\/12 {
  width: 75%;
}

.offset--9\/12 {
  margin-left: 75%;
}

.width--10\/12 {
  width: 83.3333333333%;
}

.offset--10\/12 {
  margin-left: 83.3333333333%;
}

.width--11\/12 {
  width: 91.6666666667%;
}

.offset--11\/12 {
  margin-left: 91.6666666667%;
}

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

.offset--12\/12 {
  margin-left: 100%;
}

@container (min-width: 720px) {
  .sm\:width--full {
    width: 100%;
  }
  .sm\:width--20\% {
    width: 20%;
  }
  .sm\:offset--20\% {
    margin-left: 20%;
  }
  .sm\:width--25\% {
    width: 25%;
  }
  .sm\:offset--25\% {
    margin-left: 25%;
  }
  .sm\:width--33\% {
    width: 33%;
  }
  .sm\:offset--33\% {
    margin-left: 33%;
  }
  .sm\:width--40\% {
    width: 40%;
  }
  .sm\:offset--40\% {
    margin-left: 40%;
  }
  .sm\:width--50\% {
    width: 50%;
  }
  .sm\:offset--50\% {
    margin-left: 50%;
  }
  .sm\:width--60\% {
    width: 60%;
  }
  .sm\:offset--60\% {
    margin-left: 60%;
  }
  .sm\:width--66\% {
    width: 66%;
  }
  .sm\:offset--66\% {
    margin-left: 66%;
  }
  .sm\:width--75\% {
    width: 75%;
  }
  .sm\:offset--75\% {
    margin-left: 75%;
  }
  .sm\:width--80\% {
    width: 80%;
  }
  .sm\:offset--80\% {
    margin-left: 80%;
  }
  .sm\:width--100\% {
    width: 100%;
  }
  .sm\:offset--100\% {
    margin-left: 100%;
  }
  .sm\:width--0\/12 {
    width: 0%;
  }
  .sm\:offset--0\/12 {
    margin-left: 0%;
  }
  .sm\:width--1\/12 {
    width: 8.3333333333%;
  }
  .sm\:offset--1\/12 {
    margin-left: 8.3333333333%;
  }
  .sm\:width--2\/12 {
    width: 16.6666666667%;
  }
  .sm\:offset--2\/12 {
    margin-left: 16.6666666667%;
  }
  .sm\:width--3\/12 {
    width: 25%;
  }
  .sm\:offset--3\/12 {
    margin-left: 25%;
  }
  .sm\:width--4\/12 {
    width: 33.3333333333%;
  }
  .sm\:offset--4\/12 {
    margin-left: 33.3333333333%;
  }
  .sm\:width--5\/12 {
    width: 41.6666666667%;
  }
  .sm\:offset--5\/12 {
    margin-left: 41.6666666667%;
  }
  .sm\:width--6\/12 {
    width: 50%;
  }
  .sm\:offset--6\/12 {
    margin-left: 50%;
  }
  .sm\:width--7\/12 {
    width: 58.3333333333%;
  }
  .sm\:offset--7\/12 {
    margin-left: 58.3333333333%;
  }
  .sm\:width--8\/12 {
    width: 66.6666666667%;
  }
  .sm\:offset--8\/12 {
    margin-left: 66.6666666667%;
  }
  .sm\:width--9\/12 {
    width: 75%;
  }
  .sm\:offset--9\/12 {
    margin-left: 75%;
  }
  .sm\:width--10\/12 {
    width: 83.3333333333%;
  }
  .sm\:offset--10\/12 {
    margin-left: 83.3333333333%;
  }
  .sm\:width--11\/12 {
    width: 91.6666666667%;
  }
  .sm\:offset--11\/12 {
    margin-left: 91.6666666667%;
  }
  .sm\:width--12\/12 {
    width: 100%;
  }
  .sm\:offset--12\/12 {
    margin-left: 100%;
  }
}
@container (min-width: 1020px) {
  .md\:width--full {
    width: 100%;
  }
  .md\:width--20\% {
    width: 20%;
  }
  .md\:offset--20\% {
    margin-left: 20%;
  }
  .md\:width--25\% {
    width: 25%;
  }
  .md\:offset--25\% {
    margin-left: 25%;
  }
  .md\:width--33\% {
    width: 33%;
  }
  .md\:offset--33\% {
    margin-left: 33%;
  }
  .md\:width--40\% {
    width: 40%;
  }
  .md\:offset--40\% {
    margin-left: 40%;
  }
  .md\:width--50\% {
    width: 50%;
  }
  .md\:offset--50\% {
    margin-left: 50%;
  }
  .md\:width--60\% {
    width: 60%;
  }
  .md\:offset--60\% {
    margin-left: 60%;
  }
  .md\:width--66\% {
    width: 66%;
  }
  .md\:offset--66\% {
    margin-left: 66%;
  }
  .md\:width--75\% {
    width: 75%;
  }
  .md\:offset--75\% {
    margin-left: 75%;
  }
  .md\:width--80\% {
    width: 80%;
  }
  .md\:offset--80\% {
    margin-left: 80%;
  }
  .md\:width--100\% {
    width: 100%;
  }
  .md\:offset--100\% {
    margin-left: 100%;
  }
  .md\:width--0\/12 {
    width: 0%;
  }
  .md\:offset--0\/12 {
    margin-left: 0%;
  }
  .md\:width--1\/12 {
    width: 8.3333333333%;
  }
  .md\:offset--1\/12 {
    margin-left: 8.3333333333%;
  }
  .md\:width--2\/12 {
    width: 16.6666666667%;
  }
  .md\:offset--2\/12 {
    margin-left: 16.6666666667%;
  }
  .md\:width--3\/12 {
    width: 25%;
  }
  .md\:offset--3\/12 {
    margin-left: 25%;
  }
  .md\:width--4\/12 {
    width: 33.3333333333%;
  }
  .md\:offset--4\/12 {
    margin-left: 33.3333333333%;
  }
  .md\:width--5\/12 {
    width: 41.6666666667%;
  }
  .md\:offset--5\/12 {
    margin-left: 41.6666666667%;
  }
  .md\:width--6\/12 {
    width: 50%;
  }
  .md\:offset--6\/12 {
    margin-left: 50%;
  }
  .md\:width--7\/12 {
    width: 58.3333333333%;
  }
  .md\:offset--7\/12 {
    margin-left: 58.3333333333%;
  }
  .md\:width--8\/12 {
    width: 66.6666666667%;
  }
  .md\:offset--8\/12 {
    margin-left: 66.6666666667%;
  }
  .md\:width--9\/12 {
    width: 75%;
  }
  .md\:offset--9\/12 {
    margin-left: 75%;
  }
  .md\:width--10\/12 {
    width: 83.3333333333%;
  }
  .md\:offset--10\/12 {
    margin-left: 83.3333333333%;
  }
  .md\:width--11\/12 {
    width: 91.6666666667%;
  }
  .md\:offset--11\/12 {
    margin-left: 91.6666666667%;
  }
  .md\:width--12\/12 {
    width: 100%;
  }
  .md\:offset--12\/12 {
    margin-left: 100%;
  }
}
@container (min-width: 1280px) {
  .lg\:width--full {
    width: 100%;
  }
  .lg\:width--20\% {
    width: 20%;
  }
  .lg\:offset--20\% {
    margin-left: 20%;
  }
  .lg\:width--25\% {
    width: 25%;
  }
  .lg\:offset--25\% {
    margin-left: 25%;
  }
  .lg\:width--33\% {
    width: 33%;
  }
  .lg\:offset--33\% {
    margin-left: 33%;
  }
  .lg\:width--40\% {
    width: 40%;
  }
  .lg\:offset--40\% {
    margin-left: 40%;
  }
  .lg\:width--50\% {
    width: 50%;
  }
  .lg\:offset--50\% {
    margin-left: 50%;
  }
  .lg\:width--60\% {
    width: 60%;
  }
  .lg\:offset--60\% {
    margin-left: 60%;
  }
  .lg\:width--66\% {
    width: 66%;
  }
  .lg\:offset--66\% {
    margin-left: 66%;
  }
  .lg\:width--75\% {
    width: 75%;
  }
  .lg\:offset--75\% {
    margin-left: 75%;
  }
  .lg\:width--80\% {
    width: 80%;
  }
  .lg\:offset--80\% {
    margin-left: 80%;
  }
  .lg\:width--100\% {
    width: 100%;
  }
  .lg\:offset--100\% {
    margin-left: 100%;
  }
  .lg\:width--0\/12 {
    width: 0%;
  }
  .lg\:offset--0\/12 {
    margin-left: 0%;
  }
  .lg\:width--1\/12 {
    width: 8.3333333333%;
  }
  .lg\:offset--1\/12 {
    margin-left: 8.3333333333%;
  }
  .lg\:width--2\/12 {
    width: 16.6666666667%;
  }
  .lg\:offset--2\/12 {
    margin-left: 16.6666666667%;
  }
  .lg\:width--3\/12 {
    width: 25%;
  }
  .lg\:offset--3\/12 {
    margin-left: 25%;
  }
  .lg\:width--4\/12 {
    width: 33.3333333333%;
  }
  .lg\:offset--4\/12 {
    margin-left: 33.3333333333%;
  }
  .lg\:width--5\/12 {
    width: 41.6666666667%;
  }
  .lg\:offset--5\/12 {
    margin-left: 41.6666666667%;
  }
  .lg\:width--6\/12 {
    width: 50%;
  }
  .lg\:offset--6\/12 {
    margin-left: 50%;
  }
  .lg\:width--7\/12 {
    width: 58.3333333333%;
  }
  .lg\:offset--7\/12 {
    margin-left: 58.3333333333%;
  }
  .lg\:width--8\/12 {
    width: 66.6666666667%;
  }
  .lg\:offset--8\/12 {
    margin-left: 66.6666666667%;
  }
  .lg\:width--9\/12 {
    width: 75%;
  }
  .lg\:offset--9\/12 {
    margin-left: 75%;
  }
  .lg\:width--10\/12 {
    width: 83.3333333333%;
  }
  .lg\:offset--10\/12 {
    margin-left: 83.3333333333%;
  }
  .lg\:width--11\/12 {
    width: 91.6666666667%;
  }
  .lg\:offset--11\/12 {
    margin-left: 91.6666666667%;
  }
  .lg\:width--12\/12 {
    width: 100%;
  }
  .lg\:offset--12\/12 {
    margin-left: 100%;
  }
}
@container (min-width: 1440px) {
  .xl\:width--full {
    width: 100%;
  }
  .xl\:width--20\% {
    width: 20%;
  }
  .xl\:offset--20\% {
    margin-left: 20%;
  }
  .xl\:width--25\% {
    width: 25%;
  }
  .xl\:offset--25\% {
    margin-left: 25%;
  }
  .xl\:width--33\% {
    width: 33%;
  }
  .xl\:offset--33\% {
    margin-left: 33%;
  }
  .xl\:width--40\% {
    width: 40%;
  }
  .xl\:offset--40\% {
    margin-left: 40%;
  }
  .xl\:width--50\% {
    width: 50%;
  }
  .xl\:offset--50\% {
    margin-left: 50%;
  }
  .xl\:width--60\% {
    width: 60%;
  }
  .xl\:offset--60\% {
    margin-left: 60%;
  }
  .xl\:width--66\% {
    width: 66%;
  }
  .xl\:offset--66\% {
    margin-left: 66%;
  }
  .xl\:width--75\% {
    width: 75%;
  }
  .xl\:offset--75\% {
    margin-left: 75%;
  }
  .xl\:width--80\% {
    width: 80%;
  }
  .xl\:offset--80\% {
    margin-left: 80%;
  }
  .xl\:width--100\% {
    width: 100%;
  }
  .xl\:offset--100\% {
    margin-left: 100%;
  }
  .xl\:width--0\/12 {
    width: 0%;
  }
  .xl\:offset--0\/12 {
    margin-left: 0%;
  }
  .xl\:width--1\/12 {
    width: 8.3333333333%;
  }
  .xl\:offset--1\/12 {
    margin-left: 8.3333333333%;
  }
  .xl\:width--2\/12 {
    width: 16.6666666667%;
  }
  .xl\:offset--2\/12 {
    margin-left: 16.6666666667%;
  }
  .xl\:width--3\/12 {
    width: 25%;
  }
  .xl\:offset--3\/12 {
    margin-left: 25%;
  }
  .xl\:width--4\/12 {
    width: 33.3333333333%;
  }
  .xl\:offset--4\/12 {
    margin-left: 33.3333333333%;
  }
  .xl\:width--5\/12 {
    width: 41.6666666667%;
  }
  .xl\:offset--5\/12 {
    margin-left: 41.6666666667%;
  }
  .xl\:width--6\/12 {
    width: 50%;
  }
  .xl\:offset--6\/12 {
    margin-left: 50%;
  }
  .xl\:width--7\/12 {
    width: 58.3333333333%;
  }
  .xl\:offset--7\/12 {
    margin-left: 58.3333333333%;
  }
  .xl\:width--8\/12 {
    width: 66.6666666667%;
  }
  .xl\:offset--8\/12 {
    margin-left: 66.6666666667%;
  }
  .xl\:width--9\/12 {
    width: 75%;
  }
  .xl\:offset--9\/12 {
    margin-left: 75%;
  }
  .xl\:width--10\/12 {
    width: 83.3333333333%;
  }
  .xl\:offset--10\/12 {
    margin-left: 83.3333333333%;
  }
  .xl\:width--11\/12 {
    width: 91.6666666667%;
  }
  .xl\:offset--11\/12 {
    margin-left: 91.6666666667%;
  }
  .xl\:width--12\/12 {
    width: 100%;
  }
  .xl\:offset--12\/12 {
    margin-left: 100%;
  }
}
/* RIVER Design-System: Helpers - Grid Cols */
.grid-cols {
  display: grid;
}

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

.grid-cols--1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols--7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols--8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols--9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols--10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols--11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols--12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-col--auto {
  grid-column: auto;
}

.grid-col--start-auto {
  grid-column-start: auto;
}

.grid-col--end-auto {
  grid-end-start: auto;
}

.grid-col--full {
  grid-column: 1/-1;
}

.grid-span--1 {
  grid-column: span 1/span 1;
}

.grid-span--2 {
  grid-column: span 2/span 2;
}

.grid-span--3 {
  grid-column: span 3/span 3;
}

.grid-span--4 {
  grid-column: span 4/span 4;
}

.grid-span--5 {
  grid-column: span 5/span 5;
}

.grid-span--6 {
  grid-column: span 6/span 6;
}

.grid-span--7 {
  grid-column: span 7/span 7;
}

.grid-span--8 {
  grid-column: span 8/span 8;
}

.grid-span--9 {
  grid-column: span 9/span 9;
}

.grid-span--10 {
  grid-column: span 10/span 10;
}

.grid-span--11 {
  grid-column: span 11/span 11;
}

.grid-span--12 {
  grid-column: span 12/span 12;
}

.grid-span--13 {
  grid-column: span 13/span 13;
}

.grid-start--1 {
  grid-column-start: 1;
}

.grid-end--1 {
  grid-column-end: 1;
}

.grid-start--2 {
  grid-column-start: 2;
}

.grid-end--2 {
  grid-column-end: 2;
}

.grid-start--3 {
  grid-column-start: 3;
}

.grid-end--3 {
  grid-column-end: 3;
}

.grid-start--4 {
  grid-column-start: 4;
}

.grid-end--4 {
  grid-column-end: 4;
}

.grid-start--5 {
  grid-column-start: 5;
}

.grid-end--5 {
  grid-column-end: 5;
}

.grid-start--6 {
  grid-column-start: 6;
}

.grid-end--6 {
  grid-column-end: 6;
}

.grid-start--7 {
  grid-column-start: 7;
}

.grid-end--7 {
  grid-column-end: 7;
}

.grid-start--8 {
  grid-column-start: 8;
}

.grid-end--8 {
  grid-column-end: 8;
}

.grid-start--9 {
  grid-column-start: 9;
}

.grid-end--9 {
  grid-column-end: 9;
}

.grid-start--10 {
  grid-column-start: 10;
}

.grid-end--10 {
  grid-column-end: 10;
}

.grid-start--11 {
  grid-column-start: 11;
}

.grid-end--11 {
  grid-column-end: 11;
}

.grid-start--12 {
  grid-column-start: 12;
}

.grid-end--12 {
  grid-column-end: 12;
}

.grid-start--13 {
  grid-column-start: 13;
}

.grid-end--13 {
  grid-column-end: 13;
}

@container (min-width: 720px) {
  .sm\:grid-cols--1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sm\:grid-cols--7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .sm\:grid-cols--8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .sm\:grid-cols--9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .sm\:grid-cols--10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .sm\:grid-cols--11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .sm\:grid-cols--12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .sm\:grid-col--auto {
    grid-column: auto;
  }
  .sm\:grid-col--start-auto {
    grid-column-start: auto;
  }
  .sm\:grid-col--end-auto {
    grid-end-start: auto;
  }
  .sm\:grid-col--full {
    grid-column: 1/-1;
  }
  .sm\:grid-span--1 {
    grid-column: span 1/span 1;
  }
  .sm\:grid-span--2 {
    grid-column: span 2/span 2;
  }
  .sm\:grid-span--3 {
    grid-column: span 3/span 3;
  }
  .sm\:grid-span--4 {
    grid-column: span 4/span 4;
  }
  .sm\:grid-span--5 {
    grid-column: span 5/span 5;
  }
  .sm\:grid-span--6 {
    grid-column: span 6/span 6;
  }
  .sm\:grid-span--7 {
    grid-column: span 7/span 7;
  }
  .sm\:grid-span--8 {
    grid-column: span 8/span 8;
  }
  .sm\:grid-span--9 {
    grid-column: span 9/span 9;
  }
  .sm\:grid-span--10 {
    grid-column: span 10/span 10;
  }
  .sm\:grid-span--11 {
    grid-column: span 11/span 11;
  }
  .sm\:grid-span--12 {
    grid-column: span 12/span 12;
  }
  .sm\:grid-span--13 {
    grid-column: span 13/span 13;
  }
  .sm\:grid-start--1 {
    grid-column-start: 1;
  }
  .sm\:grid-end--1 {
    grid-column-end: 1;
  }
  .sm\:grid-start--2 {
    grid-column-start: 2;
  }
  .sm\:grid-end--2 {
    grid-column-end: 2;
  }
  .sm\:grid-start--3 {
    grid-column-start: 3;
  }
  .sm\:grid-end--3 {
    grid-column-end: 3;
  }
  .sm\:grid-start--4 {
    grid-column-start: 4;
  }
  .sm\:grid-end--4 {
    grid-column-end: 4;
  }
  .sm\:grid-start--5 {
    grid-column-start: 5;
  }
  .sm\:grid-end--5 {
    grid-column-end: 5;
  }
  .sm\:grid-start--6 {
    grid-column-start: 6;
  }
  .sm\:grid-end--6 {
    grid-column-end: 6;
  }
  .sm\:grid-start--7 {
    grid-column-start: 7;
  }
  .sm\:grid-end--7 {
    grid-column-end: 7;
  }
  .sm\:grid-start--8 {
    grid-column-start: 8;
  }
  .sm\:grid-end--8 {
    grid-column-end: 8;
  }
  .sm\:grid-start--9 {
    grid-column-start: 9;
  }
  .sm\:grid-end--9 {
    grid-column-end: 9;
  }
  .sm\:grid-start--10 {
    grid-column-start: 10;
  }
  .sm\:grid-end--10 {
    grid-column-end: 10;
  }
  .sm\:grid-start--11 {
    grid-column-start: 11;
  }
  .sm\:grid-end--11 {
    grid-column-end: 11;
  }
  .sm\:grid-start--12 {
    grid-column-start: 12;
  }
  .sm\:grid-end--12 {
    grid-column-end: 12;
  }
  .sm\:grid-start--13 {
    grid-column-start: 13;
  }
  .sm\:grid-end--13 {
    grid-column-end: 13;
  }
}
@container (min-width: 1020px) {
  .md\:grid-cols--1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-cols--7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-cols--8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:grid-cols--9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .md\:grid-cols--10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .md\:grid-cols--11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .md\:grid-cols--12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .md\:grid-col--auto {
    grid-column: auto;
  }
  .md\:grid-col--start-auto {
    grid-column-start: auto;
  }
  .md\:grid-col--end-auto {
    grid-end-start: auto;
  }
  .md\:grid-col--full {
    grid-column: 1/-1;
  }
  .md\:grid-span--1 {
    grid-column: span 1/span 1;
  }
  .md\:grid-span--2 {
    grid-column: span 2/span 2;
  }
  .md\:grid-span--3 {
    grid-column: span 3/span 3;
  }
  .md\:grid-span--4 {
    grid-column: span 4/span 4;
  }
  .md\:grid-span--5 {
    grid-column: span 5/span 5;
  }
  .md\:grid-span--6 {
    grid-column: span 6/span 6;
  }
  .md\:grid-span--7 {
    grid-column: span 7/span 7;
  }
  .md\:grid-span--8 {
    grid-column: span 8/span 8;
  }
  .md\:grid-span--9 {
    grid-column: span 9/span 9;
  }
  .md\:grid-span--10 {
    grid-column: span 10/span 10;
  }
  .md\:grid-span--11 {
    grid-column: span 11/span 11;
  }
  .md\:grid-span--12 {
    grid-column: span 12/span 12;
  }
  .md\:grid-span--13 {
    grid-column: span 13/span 13;
  }
  .md\:grid-start--1 {
    grid-column-start: 1;
  }
  .md\:grid-end--1 {
    grid-column-end: 1;
  }
  .md\:grid-start--2 {
    grid-column-start: 2;
  }
  .md\:grid-end--2 {
    grid-column-end: 2;
  }
  .md\:grid-start--3 {
    grid-column-start: 3;
  }
  .md\:grid-end--3 {
    grid-column-end: 3;
  }
  .md\:grid-start--4 {
    grid-column-start: 4;
  }
  .md\:grid-end--4 {
    grid-column-end: 4;
  }
  .md\:grid-start--5 {
    grid-column-start: 5;
  }
  .md\:grid-end--5 {
    grid-column-end: 5;
  }
  .md\:grid-start--6 {
    grid-column-start: 6;
  }
  .md\:grid-end--6 {
    grid-column-end: 6;
  }
  .md\:grid-start--7 {
    grid-column-start: 7;
  }
  .md\:grid-end--7 {
    grid-column-end: 7;
  }
  .md\:grid-start--8 {
    grid-column-start: 8;
  }
  .md\:grid-end--8 {
    grid-column-end: 8;
  }
  .md\:grid-start--9 {
    grid-column-start: 9;
  }
  .md\:grid-end--9 {
    grid-column-end: 9;
  }
  .md\:grid-start--10 {
    grid-column-start: 10;
  }
  .md\:grid-end--10 {
    grid-column-end: 10;
  }
  .md\:grid-start--11 {
    grid-column-start: 11;
  }
  .md\:grid-end--11 {
    grid-column-end: 11;
  }
  .md\:grid-start--12 {
    grid-column-start: 12;
  }
  .md\:grid-end--12 {
    grid-column-end: 12;
  }
  .md\:grid-start--13 {
    grid-column-start: 13;
  }
  .md\:grid-end--13 {
    grid-column-end: 13;
  }
}
@container (min-width: 1280px) {
  .lg\:grid-cols--1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:grid-cols--7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .lg\:grid-cols--8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:grid-cols--9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .lg\:grid-cols--10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .lg\:grid-cols--11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .lg\:grid-cols--12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:grid-col--auto {
    grid-column: auto;
  }
  .lg\:grid-col--start-auto {
    grid-column-start: auto;
  }
  .lg\:grid-col--end-auto {
    grid-end-start: auto;
  }
  .lg\:grid-col--full {
    grid-column: 1/-1;
  }
  .lg\:grid-span--1 {
    grid-column: span 1/span 1;
  }
  .lg\:grid-span--2 {
    grid-column: span 2/span 2;
  }
  .lg\:grid-span--3 {
    grid-column: span 3/span 3;
  }
  .lg\:grid-span--4 {
    grid-column: span 4/span 4;
  }
  .lg\:grid-span--5 {
    grid-column: span 5/span 5;
  }
  .lg\:grid-span--6 {
    grid-column: span 6/span 6;
  }
  .lg\:grid-span--7 {
    grid-column: span 7/span 7;
  }
  .lg\:grid-span--8 {
    grid-column: span 8/span 8;
  }
  .lg\:grid-span--9 {
    grid-column: span 9/span 9;
  }
  .lg\:grid-span--10 {
    grid-column: span 10/span 10;
  }
  .lg\:grid-span--11 {
    grid-column: span 11/span 11;
  }
  .lg\:grid-span--12 {
    grid-column: span 12/span 12;
  }
  .lg\:grid-span--13 {
    grid-column: span 13/span 13;
  }
  .lg\:grid-start--1 {
    grid-column-start: 1;
  }
  .lg\:grid-end--1 {
    grid-column-end: 1;
  }
  .lg\:grid-start--2 {
    grid-column-start: 2;
  }
  .lg\:grid-end--2 {
    grid-column-end: 2;
  }
  .lg\:grid-start--3 {
    grid-column-start: 3;
  }
  .lg\:grid-end--3 {
    grid-column-end: 3;
  }
  .lg\:grid-start--4 {
    grid-column-start: 4;
  }
  .lg\:grid-end--4 {
    grid-column-end: 4;
  }
  .lg\:grid-start--5 {
    grid-column-start: 5;
  }
  .lg\:grid-end--5 {
    grid-column-end: 5;
  }
  .lg\:grid-start--6 {
    grid-column-start: 6;
  }
  .lg\:grid-end--6 {
    grid-column-end: 6;
  }
  .lg\:grid-start--7 {
    grid-column-start: 7;
  }
  .lg\:grid-end--7 {
    grid-column-end: 7;
  }
  .lg\:grid-start--8 {
    grid-column-start: 8;
  }
  .lg\:grid-end--8 {
    grid-column-end: 8;
  }
  .lg\:grid-start--9 {
    grid-column-start: 9;
  }
  .lg\:grid-end--9 {
    grid-column-end: 9;
  }
  .lg\:grid-start--10 {
    grid-column-start: 10;
  }
  .lg\:grid-end--10 {
    grid-column-end: 10;
  }
  .lg\:grid-start--11 {
    grid-column-start: 11;
  }
  .lg\:grid-end--11 {
    grid-column-end: 11;
  }
  .lg\:grid-start--12 {
    grid-column-start: 12;
  }
  .lg\:grid-end--12 {
    grid-column-end: 12;
  }
  .lg\:grid-start--13 {
    grid-column-start: 13;
  }
  .lg\:grid-end--13 {
    grid-column-end: 13;
  }
}
@container (min-width: 1440px) {
  .xl\:grid-cols--1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\:grid-cols--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .xl\:grid-cols--7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .xl\:grid-cols--8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .xl\:grid-cols--9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .xl\:grid-cols--10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .xl\:grid-cols--11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .xl\:grid-cols--12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .xl\:grid-col--auto {
    grid-column: auto;
  }
  .xl\:grid-col--start-auto {
    grid-column-start: auto;
  }
  .xl\:grid-col--end-auto {
    grid-end-start: auto;
  }
  .xl\:grid-col--full {
    grid-column: 1/-1;
  }
  .xl\:grid-span--1 {
    grid-column: span 1/span 1;
  }
  .xl\:grid-span--2 {
    grid-column: span 2/span 2;
  }
  .xl\:grid-span--3 {
    grid-column: span 3/span 3;
  }
  .xl\:grid-span--4 {
    grid-column: span 4/span 4;
  }
  .xl\:grid-span--5 {
    grid-column: span 5/span 5;
  }
  .xl\:grid-span--6 {
    grid-column: span 6/span 6;
  }
  .xl\:grid-span--7 {
    grid-column: span 7/span 7;
  }
  .xl\:grid-span--8 {
    grid-column: span 8/span 8;
  }
  .xl\:grid-span--9 {
    grid-column: span 9/span 9;
  }
  .xl\:grid-span--10 {
    grid-column: span 10/span 10;
  }
  .xl\:grid-span--11 {
    grid-column: span 11/span 11;
  }
  .xl\:grid-span--12 {
    grid-column: span 12/span 12;
  }
  .xl\:grid-span--13 {
    grid-column: span 13/span 13;
  }
  .xl\:grid-start--1 {
    grid-column-start: 1;
  }
  .xl\:grid-end--1 {
    grid-column-end: 1;
  }
  .xl\:grid-start--2 {
    grid-column-start: 2;
  }
  .xl\:grid-end--2 {
    grid-column-end: 2;
  }
  .xl\:grid-start--3 {
    grid-column-start: 3;
  }
  .xl\:grid-end--3 {
    grid-column-end: 3;
  }
  .xl\:grid-start--4 {
    grid-column-start: 4;
  }
  .xl\:grid-end--4 {
    grid-column-end: 4;
  }
  .xl\:grid-start--5 {
    grid-column-start: 5;
  }
  .xl\:grid-end--5 {
    grid-column-end: 5;
  }
  .xl\:grid-start--6 {
    grid-column-start: 6;
  }
  .xl\:grid-end--6 {
    grid-column-end: 6;
  }
  .xl\:grid-start--7 {
    grid-column-start: 7;
  }
  .xl\:grid-end--7 {
    grid-column-end: 7;
  }
  .xl\:grid-start--8 {
    grid-column-start: 8;
  }
  .xl\:grid-end--8 {
    grid-column-end: 8;
  }
  .xl\:grid-start--9 {
    grid-column-start: 9;
  }
  .xl\:grid-end--9 {
    grid-column-end: 9;
  }
  .xl\:grid-start--10 {
    grid-column-start: 10;
  }
  .xl\:grid-end--10 {
    grid-column-end: 10;
  }
  .xl\:grid-start--11 {
    grid-column-start: 11;
  }
  .xl\:grid-end--11 {
    grid-column-end: 11;
  }
  .xl\:grid-start--12 {
    grid-column-start: 12;
  }
  .xl\:grid-end--12 {
    grid-column-end: 12;
  }
  .xl\:grid-start--13 {
    grid-column-start: 13;
  }
  .xl\:grid-end--13 {
    grid-column-end: 13;
  }
}
/* RIVER Design-System: Helpers - Flex Cols */
.flex-cols {
  --column-gap: 3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

:where(.flex-cols) {
  margin-left: calc(var(--column-gap) * -1);
  margin-right: calc(var(--column-gap) * -1);
}

.flex-col {
  max-width: 100%;
}

:where(.flex-col) {
  padding-left: var(--column-gap);
  padding-right: var(--column-gap);
}

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

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

.flex-cols--justify {
  justify-content: space-between;
  align-content: space-between;
}

.flex-cols--equal > *:where(.flex-col) {
  flex: 1 0 0%;
}

.flex-cols--small {
  --column-gap: var(--sizes-size-sm);
}

.flex-cols--normal {
  --column-gap: 3rem;
}

.flex-cols--large {
  --column-gap: var(--sizes-size-lg);
}

.flex-cols--nogap {
  --column-gap: 0;
}

.flex-col--auto {
  flex: 1 0 0%;
}

.flex-col--full {
  flex: 0 0 100%;
}

.flex-col--fixed {
  flex: 0 0 auto;
}

@container (min-width: 720px) {
  .sm\:flex-col--auto {
    flex: 1 0 0%;
  }
  .sm\:flex-col--full {
    flex: 0 0 100%;
  }
  .sm\:flex-col--fixed {
    flex: 0 0 auto;
  }
}
@container (min-width: 1020px) {
  .md\:flex-col--auto {
    flex: 1 0 0%;
  }
  .md\:flex-col--full {
    flex: 0 0 100%;
  }
  .md\:flex-col--fixed {
    flex: 0 0 auto;
  }
}
@container (min-width: 1280px) {
  .lg\:flex-col--auto {
    flex: 1 0 0%;
  }
  .lg\:flex-col--full {
    flex: 0 0 100%;
  }
  .lg\:flex-col--fixed {
    flex: 0 0 auto;
  }
}
@container (min-width: 1440px) {
  .xl\:flex-col--auto {
    flex: 1 0 0%;
  }
  .xl\:flex-col--full {
    flex: 0 0 100%;
  }
  .xl\:flex-col--fixed {
    flex: 0 0 auto;
  }
}
/* RIVER Design-System: Helpers - Flex / General */
.flex-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sizes-size-sm);
}

.flex-row {
  display: flex;
  flex-direction: row;
  gap: var(--sizes-size-sm);
}

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

.flex-stretch {
  flex: 1 0 0%;
}

.flex-center--vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-center--horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
}

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

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

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

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

/* RIVER Design-System: Utilities */
/* display-important */
.none {
  display: none;
}

.none\! {
  display: none !important;
}

.block {
  display: block;
}

.block\! {
  display: block !important;
}

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

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

.inline {
  display: inline;
}

.inline\! {
  display: inline !important;
}

.flex {
  display: flex;
}

.flex\! {
  display: flex !important;
}

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

.inline-flex\! {
  display: inline-flex !important;
}

/* display-common */
.grid {
  display: grid;
}

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

.flow-root {
  display: flow-root;
}

/* position */
.static {
  position: static;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

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

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

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

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

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

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

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

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

/* flex-wrap */
.flex-wrap--none {
  flex-wrap: nowrap;
}

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

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

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

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

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

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

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

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

/* align-items */
.align--auto {
  align-items: auto;
}

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

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

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

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

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

/* align-content */
.content--normal {
  align-content: normal;
}

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

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

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

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

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

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

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

/* align-self */
.self--auto {
  align-self: auto;
}

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

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

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

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

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

/* design-margin */
.m--tiny {
  margin: var(--sizes-size-tiny);
}

.m--subtle {
  margin: var(--sizes-size-subtle);
}

.m--2xs {
  margin: var(--sizes-size-2xs);
}

.m--xs {
  margin: var(--sizes-size-xs);
}

.m--sm {
  margin: var(--sizes-size-sm);
}

.m--normal {
  margin: var(--sizes-size-normal);
}

.m--lg {
  margin: var(--sizes-size-lg);
}

.m--xl {
  margin: var(--sizes-size-xl);
}

.m--2xl {
  margin: var(--sizes-size-2xl);
}

.mt--tiny {
  margin-top: var(--sizes-size-tiny);
}

.mt--subtle {
  margin-top: var(--sizes-size-subtle);
}

.mt--2xs {
  margin-top: var(--sizes-size-2xs);
}

.mt--xs {
  margin-top: var(--sizes-size-xs);
}

.mt--sm {
  margin-top: var(--sizes-size-sm);
}

.mt--normal {
  margin-top: var(--sizes-size-normal);
}

.mt--lg {
  margin-top: var(--sizes-size-lg);
}

.mt--xl {
  margin-top: var(--sizes-size-xl);
}

.mt--2xl {
  margin-top: var(--sizes-size-2xl);
}

.mr--tiny {
  margin-right: var(--sizes-size-tiny);
}

.mr--subtle {
  margin-right: var(--sizes-size-subtle);
}

.mr--2xs {
  margin-right: var(--sizes-size-2xs);
}

.mr--xs {
  margin-right: var(--sizes-size-xs);
}

.mr--sm {
  margin-right: var(--sizes-size-sm);
}

.mr--normal {
  margin-right: var(--sizes-size-normal);
}

.mr--lg {
  margin-right: var(--sizes-size-lg);
}

.mr--xl {
  margin-right: var(--sizes-size-xl);
}

.mr--2xl {
  margin-right: var(--sizes-size-2xl);
}

.mb--tiny {
  margin-bottom: var(--sizes-size-tiny);
}

.mb--subtle {
  margin-bottom: var(--sizes-size-subtle);
}

.mb--2xs {
  margin-bottom: var(--sizes-size-2xs);
}

.mb--xs {
  margin-bottom: var(--sizes-size-xs);
}

.mb--sm {
  margin-bottom: var(--sizes-size-sm);
}

.mb--normal {
  margin-bottom: var(--sizes-size-normal);
}

.mb--lg {
  margin-bottom: var(--sizes-size-lg);
}

.mb--xl {
  margin-bottom: var(--sizes-size-xl);
}

.mb--2xl {
  margin-bottom: var(--sizes-size-2xl);
}

.ml--tiny {
  margin-left: var(--sizes-size-tiny);
}

.ml--subtle {
  margin-left: var(--sizes-size-subtle);
}

.ml--2xs {
  margin-left: var(--sizes-size-2xs);
}

.ml--xs {
  margin-left: var(--sizes-size-xs);
}

.ml--sm {
  margin-left: var(--sizes-size-sm);
}

.ml--normal {
  margin-left: var(--sizes-size-normal);
}

.ml--lg {
  margin-left: var(--sizes-size-lg);
}

.ml--xl {
  margin-left: var(--sizes-size-xl);
}

.ml--2xl {
  margin-left: var(--sizes-size-2xl);
}

.mx--tiny {
  margin-left: var(--sizes-size-tiny);
  margin-right: var(--sizes-size-tiny);
}

.mx--subtle {
  margin-left: var(--sizes-size-subtle);
  margin-right: var(--sizes-size-subtle);
}

.mx--2xs {
  margin-left: var(--sizes-size-2xs);
  margin-right: var(--sizes-size-2xs);
}

.mx--xs {
  margin-left: var(--sizes-size-xs);
  margin-right: var(--sizes-size-xs);
}

.mx--sm {
  margin-left: var(--sizes-size-sm);
  margin-right: var(--sizes-size-sm);
}

.mx--normal {
  margin-left: var(--sizes-size-normal);
  margin-right: var(--sizes-size-normal);
}

.mx--lg {
  margin-left: var(--sizes-size-lg);
  margin-right: var(--sizes-size-lg);
}

.mx--xl {
  margin-left: var(--sizes-size-xl);
  margin-right: var(--sizes-size-xl);
}

.mx--2xl {
  margin-left: var(--sizes-size-2xl);
  margin-right: var(--sizes-size-2xl);
}

.my--tiny {
  margin-top: var(--sizes-size-tiny);
  margin-bottom: var(--sizes-size-tiny);
}

.my--subtle {
  margin-top: var(--sizes-size-subtle);
  margin-bottom: var(--sizes-size-subtle);
}

.my--2xs {
  margin-top: var(--sizes-size-2xs);
  margin-bottom: var(--sizes-size-2xs);
}

.my--xs {
  margin-top: var(--sizes-size-xs);
  margin-bottom: var(--sizes-size-xs);
}

.my--sm {
  margin-top: var(--sizes-size-sm);
  margin-bottom: var(--sizes-size-sm);
}

.my--normal {
  margin-top: var(--sizes-size-normal);
  margin-bottom: var(--sizes-size-normal);
}

.my--lg {
  margin-top: var(--sizes-size-lg);
  margin-bottom: var(--sizes-size-lg);
}

.my--xl {
  margin-top: var(--sizes-size-xl);
  margin-bottom: var(--sizes-size-xl);
}

.my--2xl {
  margin-top: var(--sizes-size-2xl);
  margin-bottom: var(--sizes-size-2xl);
}

/* margin-helpers */
.m--auto {
  margin: auto;
}

.m--none {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

.mx--none {
  margin-left: 0;
  margin-right: 0;
}

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

.my--none {
  margin-top: 0;
  margin-bottom: 0;
}

/* design-padding */
.p--tiny {
  padding: var(--sizes-size-tiny);
}

.p--subtle {
  padding: var(--sizes-size-subtle);
}

.p--2xs {
  padding: var(--sizes-size-2xs);
}

.p--xs {
  padding: var(--sizes-size-xs);
}

.p--sm {
  padding: var(--sizes-size-sm);
}

.p--normal {
  padding: var(--sizes-size-normal);
}

.p--lg {
  padding: var(--sizes-size-lg);
}

.p--xl {
  padding: var(--sizes-size-xl);
}

.p--2xl {
  padding: var(--sizes-size-2xl);
}

.pt--tiny {
  padding-top: var(--sizes-size-tiny);
}

.pt--subtle {
  padding-top: var(--sizes-size-subtle);
}

.pt--2xs {
  padding-top: var(--sizes-size-2xs);
}

.pt--xs {
  padding-top: var(--sizes-size-xs);
}

.pt--sm {
  padding-top: var(--sizes-size-sm);
}

.pt--normal {
  padding-top: var(--sizes-size-normal);
}

.pt--lg {
  padding-top: var(--sizes-size-lg);
}

.pt--xl {
  padding-top: var(--sizes-size-xl);
}

.pt--2xl {
  padding-top: var(--sizes-size-2xl);
}

.pr--tiny {
  padding-right: var(--sizes-size-tiny);
}

.pr--subtle {
  padding-right: var(--sizes-size-subtle);
}

.pr--2xs {
  padding-right: var(--sizes-size-2xs);
}

.pr--xs {
  padding-right: var(--sizes-size-xs);
}

.pr--sm {
  padding-right: var(--sizes-size-sm);
}

.pr--normal {
  padding-right: var(--sizes-size-normal);
}

.pr--lg {
  padding-right: var(--sizes-size-lg);
}

.pr--xl {
  padding-right: var(--sizes-size-xl);
}

.pr--2xl {
  padding-right: var(--sizes-size-2xl);
}

.pb--tiny {
  padding-bottom: var(--sizes-size-tiny);
}

.pb--subtle {
  padding-bottom: var(--sizes-size-subtle);
}

.pb--2xs {
  padding-bottom: var(--sizes-size-2xs);
}

.pb--xs {
  padding-bottom: var(--sizes-size-xs);
}

.pb--sm {
  padding-bottom: var(--sizes-size-sm);
}

.pb--normal {
  padding-bottom: var(--sizes-size-normal);
}

.pb--lg {
  padding-bottom: var(--sizes-size-lg);
}

.pb--xl {
  padding-bottom: var(--sizes-size-xl);
}

.pb--2xl {
  padding-bottom: var(--sizes-size-2xl);
}

.pl--tiny {
  padding-left: var(--sizes-size-tiny);
}

.pl--subtle {
  padding-left: var(--sizes-size-subtle);
}

.pl--2xs {
  padding-left: var(--sizes-size-2xs);
}

.pl--xs {
  padding-left: var(--sizes-size-xs);
}

.pl--sm {
  padding-left: var(--sizes-size-sm);
}

.pl--normal {
  padding-left: var(--sizes-size-normal);
}

.pl--lg {
  padding-left: var(--sizes-size-lg);
}

.pl--xl {
  padding-left: var(--sizes-size-xl);
}

.pl--2xl {
  padding-left: var(--sizes-size-2xl);
}

.px--tiny {
  padding-left: var(--sizes-size-tiny);
  padding-right: var(--sizes-size-tiny);
}

.px--subtle {
  padding-left: var(--sizes-size-subtle);
  padding-right: var(--sizes-size-subtle);
}

.px--2xs {
  padding-left: var(--sizes-size-2xs);
  padding-right: var(--sizes-size-2xs);
}

.px--xs {
  padding-left: var(--sizes-size-xs);
  padding-right: var(--sizes-size-xs);
}

.px--sm {
  padding-left: var(--sizes-size-sm);
  padding-right: var(--sizes-size-sm);
}

.px--normal {
  padding-left: var(--sizes-size-normal);
  padding-right: var(--sizes-size-normal);
}

.px--lg {
  padding-left: var(--sizes-size-lg);
  padding-right: var(--sizes-size-lg);
}

.px--xl {
  padding-left: var(--sizes-size-xl);
  padding-right: var(--sizes-size-xl);
}

.px--2xl {
  padding-left: var(--sizes-size-2xl);
  padding-right: var(--sizes-size-2xl);
}

.py--tiny {
  padding-top: var(--sizes-size-tiny);
  padding-bottom: var(--sizes-size-tiny);
}

.py--subtle {
  padding-top: var(--sizes-size-subtle);
  padding-bottom: var(--sizes-size-subtle);
}

.py--2xs {
  padding-top: var(--sizes-size-2xs);
  padding-bottom: var(--sizes-size-2xs);
}

.py--xs {
  padding-top: var(--sizes-size-xs);
  padding-bottom: var(--sizes-size-xs);
}

.py--sm {
  padding-top: var(--sizes-size-sm);
  padding-bottom: var(--sizes-size-sm);
}

.py--normal {
  padding-top: var(--sizes-size-normal);
  padding-bottom: var(--sizes-size-normal);
}

.py--lg {
  padding-top: var(--sizes-size-lg);
  padding-bottom: var(--sizes-size-lg);
}

.py--xl {
  padding-top: var(--sizes-size-xl);
  padding-bottom: var(--sizes-size-xl);
}

.py--2xl {
  padding-top: var(--sizes-size-2xl);
  padding-bottom: var(--sizes-size-2xl);
}

/* padding-helpers */
.p--none {
  padding: 0;
}

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

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

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

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

.px--none {
  padding-left: 0;
  padding-right: 0;
}

.py--none {
  padding-top: 0;
  padding-bottom: 0;
}

@container (min-width: 0) and (max-width: 720px) {}
@container (min-width: 720px) {
  /* display-important @ sm */
  .sm\:none {
    display: none;
  }
  .sm\:none\! {
    display: none !important;
  }
  .sm\:block {
    display: block;
  }
  .sm\:block\! {
    display: block !important;
  }
  .sm\:inline-block {
    display: inline-block;
  }
  .sm\:inline-block\! {
    display: inline-block !important;
  }
  .sm\:inline {
    display: inline;
  }
  .sm\:inline\! {
    display: inline !important;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:flex\! {
    display: flex !important;
  }
  .sm\:inline-flex {
    display: inline-flex;
  }
  .sm\:inline-flex\! {
    display: inline-flex !important;
  }
  /* text @ sm */
  .sm\:text-align--center {
    text-align: center;
  }
  .sm\:text-align--left {
    text-align: left;
  }
  .sm\:text-align--right {
    text-align: right;
  }
  .sm\:text-align--justify {
    text-align: text;
  }
  /* flex-direction @ sm */
  .sm\:direction--row {
    flex-direction: row;
  }
  .sm\:direction--row-reverse {
    flex-direction: row-reverse;
  }
  .sm\:direction--col {
    flex-direction: column;
  }
  .sm\:direction--col-reverse {
    flex-direction: column-reverse;
  }
  /* justify-content @ sm */
  .sm\:justify--start {
    justify-content: flex-start;
  }
  .sm\:justify--end {
    justify-content: flex-end;
  }
  .sm\:justify--center {
    justify-content: center;
  }
  .sm\:justify--between {
    justify-content: space-between;
  }
  .sm\:justify--around {
    justify-content: space-around;
  }
  .sm\:justify--evenly {
    justify-content: space-evenly;
  }
  /* align-items @ sm */
  .sm\:align--auto {
    align-items: auto;
  }
  .sm\:align--stretch {
    align-items: stretch;
  }
  .sm\:align--start {
    align-items: flex-start;
  }
  .sm\:align--center {
    align-items: center;
  }
  .sm\:align--end {
    align-items: flex-end;
  }
  .sm\:align--baseline {
    align-items: baseline;
  }
  /* margin-helpers @ sm */
  .sm\:m--auto {
    margin: auto;
  }
  .sm\:m--none {
    margin: 0;
  }
  .sm\:mt--auto {
    margin-top: auto;
  }
  .sm\:mt--none {
    margin-top: 0;
  }
  .sm\:mr--auto {
    margin-right: auto;
  }
  .sm\:mr--none {
    margin-right: 0;
  }
  .sm\:mb--auto {
    margin-bottom: auto;
  }
  .sm\:mb--none {
    margin-bottom: 0;
  }
  .sm\:ml--auto {
    margin-left: auto;
  }
  .sm\:ml--none {
    margin-left: 0;
  }
  .sm\:mx--auto {
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:mx--none {
    margin-left: 0;
    margin-right: 0;
  }
  .sm\:my--auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .sm\:my--none {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@container (min-width: 720px) and (max-width: 1020px) {}
@container (max-width: 720px) {}
@container (min-width: 1020px) {
  /* display-important @ md */
  .md\:none {
    display: none;
  }
  .md\:none\! {
    display: none !important;
  }
  .md\:block {
    display: block;
  }
  .md\:block\! {
    display: block !important;
  }
  .md\:inline-block {
    display: inline-block;
  }
  .md\:inline-block\! {
    display: inline-block !important;
  }
  .md\:inline {
    display: inline;
  }
  .md\:inline\! {
    display: inline !important;
  }
  .md\:flex {
    display: flex;
  }
  .md\:flex\! {
    display: flex !important;
  }
  .md\:inline-flex {
    display: inline-flex;
  }
  .md\:inline-flex\! {
    display: inline-flex !important;
  }
  /* text @ md */
  .md\:text-align--center {
    text-align: center;
  }
  .md\:text-align--left {
    text-align: left;
  }
  .md\:text-align--right {
    text-align: right;
  }
  .md\:text-align--justify {
    text-align: text;
  }
  /* flex-direction @ md */
  .md\:direction--row {
    flex-direction: row;
  }
  .md\:direction--row-reverse {
    flex-direction: row-reverse;
  }
  .md\:direction--col {
    flex-direction: column;
  }
  .md\:direction--col-reverse {
    flex-direction: column-reverse;
  }
  /* justify-content @ md */
  .md\:justify--start {
    justify-content: flex-start;
  }
  .md\:justify--end {
    justify-content: flex-end;
  }
  .md\:justify--center {
    justify-content: center;
  }
  .md\:justify--between {
    justify-content: space-between;
  }
  .md\:justify--around {
    justify-content: space-around;
  }
  .md\:justify--evenly {
    justify-content: space-evenly;
  }
  /* align-items @ md */
  .md\:align--auto {
    align-items: auto;
  }
  .md\:align--stretch {
    align-items: stretch;
  }
  .md\:align--start {
    align-items: flex-start;
  }
  .md\:align--center {
    align-items: center;
  }
  .md\:align--end {
    align-items: flex-end;
  }
  .md\:align--baseline {
    align-items: baseline;
  }
  /* design-margin @ md */
  .md\:m--tiny {
    margin: var(--sizes-size-tiny);
  }
  .md\:m--subtle {
    margin: var(--sizes-size-subtle);
  }
  .md\:m--2xs {
    margin: var(--sizes-size-2xs);
  }
  .md\:m--xs {
    margin: var(--sizes-size-xs);
  }
  .md\:m--sm {
    margin: var(--sizes-size-sm);
  }
  .md\:m--normal {
    margin: var(--sizes-size-normal);
  }
  .md\:m--lg {
    margin: var(--sizes-size-lg);
  }
  .md\:m--xl {
    margin: var(--sizes-size-xl);
  }
  .md\:m--2xl {
    margin: var(--sizes-size-2xl);
  }
  .md\:mt--tiny {
    margin-top: var(--sizes-size-tiny);
  }
  .md\:mt--subtle {
    margin-top: var(--sizes-size-subtle);
  }
  .md\:mt--2xs {
    margin-top: var(--sizes-size-2xs);
  }
  .md\:mt--xs {
    margin-top: var(--sizes-size-xs);
  }
  .md\:mt--sm {
    margin-top: var(--sizes-size-sm);
  }
  .md\:mt--normal {
    margin-top: var(--sizes-size-normal);
  }
  .md\:mt--lg {
    margin-top: var(--sizes-size-lg);
  }
  .md\:mt--xl {
    margin-top: var(--sizes-size-xl);
  }
  .md\:mt--2xl {
    margin-top: var(--sizes-size-2xl);
  }
  .md\:mr--tiny {
    margin-right: var(--sizes-size-tiny);
  }
  .md\:mr--subtle {
    margin-right: var(--sizes-size-subtle);
  }
  .md\:mr--2xs {
    margin-right: var(--sizes-size-2xs);
  }
  .md\:mr--xs {
    margin-right: var(--sizes-size-xs);
  }
  .md\:mr--sm {
    margin-right: var(--sizes-size-sm);
  }
  .md\:mr--normal {
    margin-right: var(--sizes-size-normal);
  }
  .md\:mr--lg {
    margin-right: var(--sizes-size-lg);
  }
  .md\:mr--xl {
    margin-right: var(--sizes-size-xl);
  }
  .md\:mr--2xl {
    margin-right: var(--sizes-size-2xl);
  }
  .md\:mb--tiny {
    margin-bottom: var(--sizes-size-tiny);
  }
  .md\:mb--subtle {
    margin-bottom: var(--sizes-size-subtle);
  }
  .md\:mb--2xs {
    margin-bottom: var(--sizes-size-2xs);
  }
  .md\:mb--xs {
    margin-bottom: var(--sizes-size-xs);
  }
  .md\:mb--sm {
    margin-bottom: var(--sizes-size-sm);
  }
  .md\:mb--normal {
    margin-bottom: var(--sizes-size-normal);
  }
  .md\:mb--lg {
    margin-bottom: var(--sizes-size-lg);
  }
  .md\:mb--xl {
    margin-bottom: var(--sizes-size-xl);
  }
  .md\:mb--2xl {
    margin-bottom: var(--sizes-size-2xl);
  }
  .md\:ml--tiny {
    margin-left: var(--sizes-size-tiny);
  }
  .md\:ml--subtle {
    margin-left: var(--sizes-size-subtle);
  }
  .md\:ml--2xs {
    margin-left: var(--sizes-size-2xs);
  }
  .md\:ml--xs {
    margin-left: var(--sizes-size-xs);
  }
  .md\:ml--sm {
    margin-left: var(--sizes-size-sm);
  }
  .md\:ml--normal {
    margin-left: var(--sizes-size-normal);
  }
  .md\:ml--lg {
    margin-left: var(--sizes-size-lg);
  }
  .md\:ml--xl {
    margin-left: var(--sizes-size-xl);
  }
  .md\:ml--2xl {
    margin-left: var(--sizes-size-2xl);
  }
  .md\:mx--tiny {
    margin-left: var(--sizes-size-tiny);
    margin-right: var(--sizes-size-tiny);
  }
  .md\:mx--subtle {
    margin-left: var(--sizes-size-subtle);
    margin-right: var(--sizes-size-subtle);
  }
  .md\:mx--2xs {
    margin-left: var(--sizes-size-2xs);
    margin-right: var(--sizes-size-2xs);
  }
  .md\:mx--xs {
    margin-left: var(--sizes-size-xs);
    margin-right: var(--sizes-size-xs);
  }
  .md\:mx--sm {
    margin-left: var(--sizes-size-sm);
    margin-right: var(--sizes-size-sm);
  }
  .md\:mx--normal {
    margin-left: var(--sizes-size-normal);
    margin-right: var(--sizes-size-normal);
  }
  .md\:mx--lg {
    margin-left: var(--sizes-size-lg);
    margin-right: var(--sizes-size-lg);
  }
  .md\:mx--xl {
    margin-left: var(--sizes-size-xl);
    margin-right: var(--sizes-size-xl);
  }
  .md\:mx--2xl {
    margin-left: var(--sizes-size-2xl);
    margin-right: var(--sizes-size-2xl);
  }
  .md\:my--tiny {
    margin-top: var(--sizes-size-tiny);
    margin-bottom: var(--sizes-size-tiny);
  }
  .md\:my--subtle {
    margin-top: var(--sizes-size-subtle);
    margin-bottom: var(--sizes-size-subtle);
  }
  .md\:my--2xs {
    margin-top: var(--sizes-size-2xs);
    margin-bottom: var(--sizes-size-2xs);
  }
  .md\:my--xs {
    margin-top: var(--sizes-size-xs);
    margin-bottom: var(--sizes-size-xs);
  }
  .md\:my--sm {
    margin-top: var(--sizes-size-sm);
    margin-bottom: var(--sizes-size-sm);
  }
  .md\:my--normal {
    margin-top: var(--sizes-size-normal);
    margin-bottom: var(--sizes-size-normal);
  }
  .md\:my--lg {
    margin-top: var(--sizes-size-lg);
    margin-bottom: var(--sizes-size-lg);
  }
  .md\:my--xl {
    margin-top: var(--sizes-size-xl);
    margin-bottom: var(--sizes-size-xl);
  }
  .md\:my--2xl {
    margin-top: var(--sizes-size-2xl);
    margin-bottom: var(--sizes-size-2xl);
  }
  /* margin-helpers @ md */
  .md\:m--auto {
    margin: auto;
  }
  .md\:m--none {
    margin: 0;
  }
  .md\:mt--auto {
    margin-top: auto;
  }
  .md\:mt--none {
    margin-top: 0;
  }
  .md\:mr--auto {
    margin-right: auto;
  }
  .md\:mr--none {
    margin-right: 0;
  }
  .md\:mb--auto {
    margin-bottom: auto;
  }
  .md\:mb--none {
    margin-bottom: 0;
  }
  .md\:ml--auto {
    margin-left: auto;
  }
  .md\:ml--none {
    margin-left: 0;
  }
  .md\:mx--auto {
    margin-left: auto;
    margin-right: auto;
  }
  .md\:mx--none {
    margin-left: 0;
    margin-right: 0;
  }
  .md\:my--auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .md\:my--none {
    margin-top: 0;
    margin-bottom: 0;
  }
  /* design-padding @ md */
  .md\:p--tiny {
    padding: var(--sizes-size-tiny);
  }
  .md\:p--subtle {
    padding: var(--sizes-size-subtle);
  }
  .md\:p--2xs {
    padding: var(--sizes-size-2xs);
  }
  .md\:p--xs {
    padding: var(--sizes-size-xs);
  }
  .md\:p--sm {
    padding: var(--sizes-size-sm);
  }
  .md\:p--normal {
    padding: var(--sizes-size-normal);
  }
  .md\:p--lg {
    padding: var(--sizes-size-lg);
  }
  .md\:p--xl {
    padding: var(--sizes-size-xl);
  }
  .md\:p--2xl {
    padding: var(--sizes-size-2xl);
  }
  .md\:pt--tiny {
    padding-top: var(--sizes-size-tiny);
  }
  .md\:pt--subtle {
    padding-top: var(--sizes-size-subtle);
  }
  .md\:pt--2xs {
    padding-top: var(--sizes-size-2xs);
  }
  .md\:pt--xs {
    padding-top: var(--sizes-size-xs);
  }
  .md\:pt--sm {
    padding-top: var(--sizes-size-sm);
  }
  .md\:pt--normal {
    padding-top: var(--sizes-size-normal);
  }
  .md\:pt--lg {
    padding-top: var(--sizes-size-lg);
  }
  .md\:pt--xl {
    padding-top: var(--sizes-size-xl);
  }
  .md\:pt--2xl {
    padding-top: var(--sizes-size-2xl);
  }
  .md\:pr--tiny {
    padding-right: var(--sizes-size-tiny);
  }
  .md\:pr--subtle {
    padding-right: var(--sizes-size-subtle);
  }
  .md\:pr--2xs {
    padding-right: var(--sizes-size-2xs);
  }
  .md\:pr--xs {
    padding-right: var(--sizes-size-xs);
  }
  .md\:pr--sm {
    padding-right: var(--sizes-size-sm);
  }
  .md\:pr--normal {
    padding-right: var(--sizes-size-normal);
  }
  .md\:pr--lg {
    padding-right: var(--sizes-size-lg);
  }
  .md\:pr--xl {
    padding-right: var(--sizes-size-xl);
  }
  .md\:pr--2xl {
    padding-right: var(--sizes-size-2xl);
  }
  .md\:pb--tiny {
    padding-bottom: var(--sizes-size-tiny);
  }
  .md\:pb--subtle {
    padding-bottom: var(--sizes-size-subtle);
  }
  .md\:pb--2xs {
    padding-bottom: var(--sizes-size-2xs);
  }
  .md\:pb--xs {
    padding-bottom: var(--sizes-size-xs);
  }
  .md\:pb--sm {
    padding-bottom: var(--sizes-size-sm);
  }
  .md\:pb--normal {
    padding-bottom: var(--sizes-size-normal);
  }
  .md\:pb--lg {
    padding-bottom: var(--sizes-size-lg);
  }
  .md\:pb--xl {
    padding-bottom: var(--sizes-size-xl);
  }
  .md\:pb--2xl {
    padding-bottom: var(--sizes-size-2xl);
  }
  .md\:pl--tiny {
    padding-left: var(--sizes-size-tiny);
  }
  .md\:pl--subtle {
    padding-left: var(--sizes-size-subtle);
  }
  .md\:pl--2xs {
    padding-left: var(--sizes-size-2xs);
  }
  .md\:pl--xs {
    padding-left: var(--sizes-size-xs);
  }
  .md\:pl--sm {
    padding-left: var(--sizes-size-sm);
  }
  .md\:pl--normal {
    padding-left: var(--sizes-size-normal);
  }
  .md\:pl--lg {
    padding-left: var(--sizes-size-lg);
  }
  .md\:pl--xl {
    padding-left: var(--sizes-size-xl);
  }
  .md\:pl--2xl {
    padding-left: var(--sizes-size-2xl);
  }
  .md\:px--tiny {
    padding-left: var(--sizes-size-tiny);
    padding-right: var(--sizes-size-tiny);
  }
  .md\:px--subtle {
    padding-left: var(--sizes-size-subtle);
    padding-right: var(--sizes-size-subtle);
  }
  .md\:px--2xs {
    padding-left: var(--sizes-size-2xs);
    padding-right: var(--sizes-size-2xs);
  }
  .md\:px--xs {
    padding-left: var(--sizes-size-xs);
    padding-right: var(--sizes-size-xs);
  }
  .md\:px--sm {
    padding-left: var(--sizes-size-sm);
    padding-right: var(--sizes-size-sm);
  }
  .md\:px--normal {
    padding-left: var(--sizes-size-normal);
    padding-right: var(--sizes-size-normal);
  }
  .md\:px--lg {
    padding-left: var(--sizes-size-lg);
    padding-right: var(--sizes-size-lg);
  }
  .md\:px--xl {
    padding-left: var(--sizes-size-xl);
    padding-right: var(--sizes-size-xl);
  }
  .md\:px--2xl {
    padding-left: var(--sizes-size-2xl);
    padding-right: var(--sizes-size-2xl);
  }
  .md\:py--tiny {
    padding-top: var(--sizes-size-tiny);
    padding-bottom: var(--sizes-size-tiny);
  }
  .md\:py--subtle {
    padding-top: var(--sizes-size-subtle);
    padding-bottom: var(--sizes-size-subtle);
  }
  .md\:py--2xs {
    padding-top: var(--sizes-size-2xs);
    padding-bottom: var(--sizes-size-2xs);
  }
  .md\:py--xs {
    padding-top: var(--sizes-size-xs);
    padding-bottom: var(--sizes-size-xs);
  }
  .md\:py--sm {
    padding-top: var(--sizes-size-sm);
    padding-bottom: var(--sizes-size-sm);
  }
  .md\:py--normal {
    padding-top: var(--sizes-size-normal);
    padding-bottom: var(--sizes-size-normal);
  }
  .md\:py--lg {
    padding-top: var(--sizes-size-lg);
    padding-bottom: var(--sizes-size-lg);
  }
  .md\:py--xl {
    padding-top: var(--sizes-size-xl);
    padding-bottom: var(--sizes-size-xl);
  }
  .md\:py--2xl {
    padding-top: var(--sizes-size-2xl);
    padding-bottom: var(--sizes-size-2xl);
  }
  /* padding-helpers @ md */
  .md\:p--none {
    padding: 0;
  }
  .md\:pt--none {
    padding-top: 0;
  }
  .md\:pr--none {
    padding-right: 0;
  }
  .md\:pb--none {
    padding-bottom: 0;
  }
  .md\:pl--none {
    padding-left: 0;
  }
  .md\:px--none {
    padding-left: 0;
    padding-right: 0;
  }
  .md\:py--none {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@container (min-width: 1020px) and (max-width: 1280px) {}
@container (max-width: 1020px) {}
@container (min-width: 1280px) {
  /* display-important @ lg */
  .lg\:none {
    display: none;
  }
  .lg\:none\! {
    display: none !important;
  }
  .lg\:block {
    display: block;
  }
  .lg\:block\! {
    display: block !important;
  }
  .lg\:inline-block {
    display: inline-block;
  }
  .lg\:inline-block\! {
    display: inline-block !important;
  }
  .lg\:inline {
    display: inline;
  }
  .lg\:inline\! {
    display: inline !important;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:flex\! {
    display: flex !important;
  }
  .lg\:inline-flex {
    display: inline-flex;
  }
  .lg\:inline-flex\! {
    display: inline-flex !important;
  }
  /* text @ lg */
  .lg\:text-align--center {
    text-align: center;
  }
  .lg\:text-align--left {
    text-align: left;
  }
  .lg\:text-align--right {
    text-align: right;
  }
  .lg\:text-align--justify {
    text-align: text;
  }
  /* flex-direction @ lg */
  .lg\:direction--row {
    flex-direction: row;
  }
  .lg\:direction--row-reverse {
    flex-direction: row-reverse;
  }
  .lg\:direction--col {
    flex-direction: column;
  }
  .lg\:direction--col-reverse {
    flex-direction: column-reverse;
  }
  /* justify-content @ lg */
  .lg\:justify--start {
    justify-content: flex-start;
  }
  .lg\:justify--end {
    justify-content: flex-end;
  }
  .lg\:justify--center {
    justify-content: center;
  }
  .lg\:justify--between {
    justify-content: space-between;
  }
  .lg\:justify--around {
    justify-content: space-around;
  }
  .lg\:justify--evenly {
    justify-content: space-evenly;
  }
  /* align-items @ lg */
  .lg\:align--auto {
    align-items: auto;
  }
  .lg\:align--stretch {
    align-items: stretch;
  }
  .lg\:align--start {
    align-items: flex-start;
  }
  .lg\:align--center {
    align-items: center;
  }
  .lg\:align--end {
    align-items: flex-end;
  }
  .lg\:align--baseline {
    align-items: baseline;
  }
  /* margin-helpers @ lg */
  .lg\:m--auto {
    margin: auto;
  }
  .lg\:m--none {
    margin: 0;
  }
  .lg\:mt--auto {
    margin-top: auto;
  }
  .lg\:mt--none {
    margin-top: 0;
  }
  .lg\:mr--auto {
    margin-right: auto;
  }
  .lg\:mr--none {
    margin-right: 0;
  }
  .lg\:mb--auto {
    margin-bottom: auto;
  }
  .lg\:mb--none {
    margin-bottom: 0;
  }
  .lg\:ml--auto {
    margin-left: auto;
  }
  .lg\:ml--none {
    margin-left: 0;
  }
  .lg\:mx--auto {
    margin-left: auto;
    margin-right: auto;
  }
  .lg\:mx--none {
    margin-left: 0;
    margin-right: 0;
  }
  .lg\:my--auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .lg\:my--none {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@container (min-width: 1280px) and (max-width: 1440px) {}
@container (max-width: 1280px) {}
@container (min-width: 1440px) {
  /* display-important @ xl */
  .xl\:none {
    display: none;
  }
  .xl\:none\! {
    display: none !important;
  }
  .xl\:block {
    display: block;
  }
  .xl\:block\! {
    display: block !important;
  }
  .xl\:inline-block {
    display: inline-block;
  }
  .xl\:inline-block\! {
    display: inline-block !important;
  }
  .xl\:inline {
    display: inline;
  }
  .xl\:inline\! {
    display: inline !important;
  }
  .xl\:flex {
    display: flex;
  }
  .xl\:flex\! {
    display: flex !important;
  }
  .xl\:inline-flex {
    display: inline-flex;
  }
  .xl\:inline-flex\! {
    display: inline-flex !important;
  }
}
@container (min-width: 1440px) {}
@container (max-width: 1440px) {}
/* display-important - media */
@media print {
  .print\:none {
    display: none !important;
  }
  .print\:block {
    display: block !important;
  }
  .print\:inline-block {
    display: inline-block !important;
  }
  .print\:inline {
    display: inline !important;
  }
  .print\:flex {
    display: flex !important;
  }
  .print\:inline-flex {
    display: inline-flex !important;
  }
}
/* Content Blocks: Vendor */
:where(.content-blocks > .content-block + .content-block) {
  margin-top: var(--sizes-size-normal);
}

.block-expandable-content {
  position: relative;
}

.block-expandable-content .block-expandable-content__title {
  display: flex;
  align-items: center;
  padding: var(--sizes-size-sm);
  font-weight: var(--type-weight-title);
  background-color: var(--colors-gray-bg);
  cursor: pointer;
}

.block-expandable-content .block-expandable-content__body {
  position: relative;
  overflow: hidden;
  border: var(--common-borders-bg);
  transition: var(--common-transition-fast);
}

.block-expandable-content .block-expandable-content__content {
  padding: var(--sizes-size-sm);
}

.block-expandable-content.is-open .block-expandable-content__arrow {
  transform: scaleY(-1);
}

.gallery-slider__slide {
  display: flex;
  flex-direction: column;
}

.gallery-slider__image {
  flex-grow: 1;
  position: relative;
}

.gallery-slider__title, .gallery-slider__caption {
  text-align: center;
  padding: 1rem;
}

.gallery-slider__caption {
  padding-bottom: 4rem;
}

.gallery-slider__image .style-image, .gallery-slider__image .scope-styles :where(img), .scope-styles .gallery-slider__image :where(img) {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
  width: 100%;
  height: 100%;
}

.gallery-slider--contain .gallery-slider__image .style-image, .gallery-slider--contain .gallery-slider__image .scope-styles :where(img), .scope-styles .gallery-slider--contain .gallery-slider__image :where(img) {
  -o-object-fit: contain;
     object-fit: contain;
}

.cms-content ul,
.cms-content ol,
.block-richcontent ul,
.block-richcontent ol,
.content-blocks ul,
.content-blocks ol,
.post-content-blocks ul,
.post-content-blocks ol {
  list-style: inherit !important;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.cms-content ul li,
.block-richcontent ul li,
.content-blocks ul li,
.post-content-blocks ul li {
  list-style-type: disc !important;
  margin-bottom: 0.5rem;
}

.cms-content ol li,
.block-richcontent ol li,
.content-blocks ol li,
.post-content-blocks ol li {
  list-style-type: decimal !important;
  margin-bottom: 0.5rem;
}

.cms-content ul ul li,
.block-richcontent ul ul li,
.content-blocks ul ul li,
.post-content-blocks ul ul li {
  list-style-type: circle !important;
}

.cms-content ul ul ul li,
.block-richcontent ul ul ul li,
.content-blocks ul ul ul li,
.post-content-blocks ul ul ul li {
  list-style-type: square !important;
}

/* Universal Content: Vendor */
.ucm-grid {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  gap: var(--sizes-size-normal);
}

.ucm-grid__image {
  grid-area: i;
}

.ucm-grid__content {
  grid-area: c;
}

.ucm-grid__aside {
  grid-area: a;
}

.ucm-related {
  max-width: 40rem;
}

.ucm-grid:not(.has-image) {
  grid-template-areas: "c" "a";
}

@container (min-width: 720px) {
  .ucm-grid:not(.has-image) {
    grid-template-areas: "c c a";
  }
}
@container (min-width: 1020px) {
  .ucm-grid:not(.has-image) {
    grid-template-areas: "c c c a";
  }
}
.ucm-grid.has-image {
  grid-template-areas: "i" "c" "a";
}

@container (min-width: 720px) {
  .ucm-grid.has-image {
    grid-template-areas: "i i i" "c c a";
  }
}
@container (min-width: 1020px) {
  .ucm-grid.has-image {
    grid-template-areas: "i i i a" "c c c a";
  }
}
.ucm-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin: auto;
  text-decoration: none;
  min-height: 100%;
  color: var(--colors-gray-normal);
  transition: var(--common-transition-fast);
  transition-property: transform;
}

.ucm-card:hover,
.ucm-card:active, .ucm-card.is-active {
  transform: translateY(-0.2rem);
}

.ucm-card__image {
  overflow: hidden;
  background-color: var(--colors-gray-bg);
  flex-shrink: 0;
  display: block;
  position: relative;
  height: 0;
  padding-top: var(--sizes-ratio-vertical-normal);
}

/*! purgecss start ignore */
/**
 * Components
 */
/* RTL Icons Font */
@font-face {
  font-family: "rtl-icons";
  src: url("/fonts/rtl-icons/rtl-icons.eot");
  src: url("/fonts/rtl-icons/rtl-icons.eot?#iefix") format("embedded-opentype"), url("/fonts/rtl-icons/rtl-icons.woff") format("woff"), url("/fonts/rtl-icons/rtl-icons.ttf") format("truetype"), url("/fonts/rtl-icons/rtl-icons.svg#rtl-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[data-icon]:before {
  font-family: "rtl-icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "rtl-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-down:before {
  content: "a";
}

.icon-down-arrow-circle:before {
  content: "b";
}

.icon-edit:before {
  content: "c";
}

.icon-exit:before {
  content: "d";
}

.icon-favourite:before {
  content: "e";
}

.icon-feature:before {
  content: "f";
}

.icon-map-pin:before {
  content: "g";
}

.icon-operations:before {
  content: "h";
}

.icon-phone:before {
  content: "i";
}

.icon-play-button:before {
  content: "j";
}

.icon-search:before {
  content: "k";
}

.icon-truck:before {
  content: "l";
}

.icon-unchecked-box:before {
  content: "m";
}

.icon-user:before {
  content: "n";
}

.icon-select:before {
  content: "o";
}

/* Graphic Font */
@font-face {
  font-family: "Graphik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/graphik/Graphik-Light.otf") format("opentype");
}
@font-face {
  font-family: "Graphik";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/graphik/Graphik-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Graphik";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/graphik/Graphik-Semibold.otf") format("opentype");
}
/**
 * Project Specific Styles
 */
.none {
  display: none !important;
}

.fullscreen {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
}

.background {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.clear {
  clear: both;
  overflow: hidden;
}

/*! Testing Theme SCSS */
html, body {
  font-family: Graphik, Arial, Geneva, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #606060;
  line-height: 1.8em;
  letter-spacing: 0;
  min-height: 100vh;
}

#app {
  min-height: 100vh;
  background-color: #302E2F;
}

#page {
  background-color: white;
}

@media (max-width: 767.98px) {
  #page {
    padding-top: 80px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: Graphik, Arial, Geneva, sans-serif;
  color: #484848;
  font-weight: 600;
  line-height: 1.45em;
  margin-bottom: 1em;
}

h1 {
  /* All Activities: */
  font-size: 35px;
}

h2 {
  /* Sales: */
  font-size: 30px;
}

h3 {
  /* Sub Categories: */
  font-size: 24px;
}

h4 {
  /* Timeframe: */
  font-size: 24px;
}

h5 {
  /* Activities: */
  font-size: 20px;
}

h6 {
  /* Label: */
  font-size: 16px;
}

@media (max-width: 767.98px) {
  h3 {
    font-size: 19.2px;
  }
}
p {
  margin-bottom: 1em;
}

small, .small {
  font-size: 85%;
}

big, .big {
  font-size: 115%;
}

.col-primary {
  color: #FFCB31;
}

.font-icon {
  font-family: "rtl-icons";
  font-size: 30px;
  font-weight: normal;
  text-decoration: none;
}

a, .link {
  color: #606060;
  font-family: Graphik, Arial, Geneva, sans-serif;
  text-decoration: underline;
  cursor: pointer;
  transition: 0.2s all ease;
}

a:visited, .link:visited {
  color: #606060;
}

a:hover, .link:hover {
  color: #FFB531;
}

.link-title {
  color: #484848;
  font-weight: 600;
  text-decoration: none;
}

.link-title:hover {
  color: #FFB531;
}

button, .button, a.button.button {
  display: inline-block;
  font-family: Graphik, Arial, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  text-shadow: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.2s all ease;
  color: #484848;
  background-color: #FFCB31;
  border: solid 1px #FFCB31;
  cursor: pointer;
}

button:hover, .button:hover, a.button.button:hover {
  color: #484848;
  background-color: #FFB531;
  border: solid 1px #FFB531;
}

button:focus, .button:focus, a.button.button:focus {
  outline: 0;
}

button.button-wide, .button.button-wide, a.button.button.button-wide {
  padding: 12px 47px;
}

button:disabled, button[disabled], .button:disabled, .button[disabled], a.button.button:disabled, a.button.button[disabled] {
  opacity: 0.5;
}

.button.button.button-alt {
  color: #606060;
  background-color: transparent;
  border-color: #E5E5E5;
}

.button.button.button-alt:hover {
  color: white;
  background-color: #606060;
  border-color: #606060;
}

.button.button.button-text {
  color: #606060;
  background-color: transparent;
  border-color: transparent;
  text-decoration: underline;
  font-weight: 600;
  padding: 10px 10px;
}

.button.button.button-text:hover {
  color: #484848;
  background-color: transparent;
  border-color: transparent;
}

.button.button.button-text-minor {
  color: #909399;
  background-color: transparent;
  border-color: transparent;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 10px;
}

.button.button.button-text-minor:hover {
  color: #606060;
  background-color: transparent;
  border-color: transparent;
}

.button.button-wide {
  padding-left: 40px;
  padding-right: 40px;
}

.button + .button {
  margin-left: 2px;
}

.buttons .button + .button {
  margin-left: 20px;
}

.block-buttons .button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.form-group label {
  display: none;
}

.form-group input, .form-group button, .form-group .button, .form-group .link {
  display: block;
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group input, .form-group select {
  display: inline-block;
  font-family: Graphik, Arial, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  text-shadow: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.2s all ease;
  font-weight: 400;
  border: 1px solid #DCDFE6;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: rgb(190.25, 195.8, 208.75);
}

.form-group.form-group-radio label, .form-group.form-group-checkbox label {
  display: inline-block;
  margin-right: 10px;
}

.form-group.form-group-radio input, .form-group.form-group-checkbox input {
  width: auto;
}

.form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder, .form-group select::-webkit-input-placeholder, .form-elements input::-webkit-input-placeholder, .form-elements textarea::-webkit-input-placeholder, .form-elements select::-webkit-input-placeholder, .el-input input::-webkit-input-placeholder, .el-input textarea::-webkit-input-placeholder, .el-input select::-webkit-input-placeholder {
  color: #606060;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder, .form-group select::-moz-placeholder, .form-elements input::-moz-placeholder, .form-elements textarea::-moz-placeholder, .form-elements select::-moz-placeholder, .el-input input::-moz-placeholder, .el-input textarea::-moz-placeholder, .el-input select::-moz-placeholder {
  color: #606060;
}

.form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder, .form-group select:-ms-input-placeholder, .form-elements input:-ms-input-placeholder, .form-elements textarea:-ms-input-placeholder, .form-elements select:-ms-input-placeholder, .el-input input:-ms-input-placeholder, .el-input textarea:-ms-input-placeholder, .el-input select:-ms-input-placeholder {
  color: #606060;
}

.form-elements .el-form-item .el-form-item__label {
  display: block;
  float: none;
  text-align: left;
}

.form-elements .el-form-item .el-form-item__content > div:first-child {
  width: 100%;
}

.form-elements .el-form-item .el-radio {
  display: block;
}

.form-elements .el-form-item .el-radio + .el-radio {
  margin-left: 0;
  margin-top: 10px;
}

.form-filters .el-form-item, .form-filters .button {
  display: inline-block;
}

.form-filters .button {
  padding: 8px 30px;
}

.form-filters .el-form-item + .el-form-item, .form-filters .el-form-item + .button, .form-filters .button + .button {
  margin-left: 20px;
}

.form-control.is-invalid {
  border-color: #e3342f;
}

.form-control.is-invalid:focus {
  border-color: #e3342f;
}

.invalid-feedback {
  display: block;
  margin-top: 0.25rem;
  font-size: 90%;
  text-align: left;
  color: #e3342f;
}

.form-elements input {
  margin-bottom: 20px;
}

.icon {
  height: 28px;
  width: auto;
  vertical-align: middle;
}

.icon img {
  display: block;
  height: 100%;
  width: auto;
}

img {
  max-width: 100%;
  height: auto;
}

.spacer {
  display: block;
  height: 60px;
  width: 100%;
  overflow: hidden;
}

.spacer.spacer-tiny {
  height: 10px;
}

.spacer.spacer-small {
  height: 30px;
}

.spacer.spacer-big {
  height: 90px;
}

hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #E5E5E5;
}

hr.col-primary {
  border-top: 2px solid #FFCB31;
}

.hr-thin {
  opacity: 0.5;
}

.col-bg {
  background-color: #FCFCFC;
}

.dialog-custom .el-dialog .el-dialog__header {
  padding: 0;
}

.dialog-custom .el-dialog .el-dialog__header .dialog-title {
  display: block;
  position: relative;
}

.dialog-custom .el-dialog .el-dialog__header .el-dialog__headerbtn {
  font-size: 14px;
  background: #FFCB31;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  border: none;
  line-height: 1;
}

.dialog-custom .el-dialog .el-dialog__header .el-dialog__headerbtn i {
  color: white;
  font-weight: 600;
  vertical-align: middle;
}

.dialog-custom .el-dialog .el-dialog__header .el-dialog__headerbtn:hover {
  border: none;
  background: #FFB531;
}

.dialog-custom .el-dialog .el-dialog__header .cover {
  background-color: rgba(0, 0, 0, 0.3);
}

.dialog-custom .el-dialog .el-dialog__header .title {
  position: relative;
}

.dialog-custom .el-dialog .el-dialog__body {
  padding: 60px 60px;
}

.dialog-custom .el-dialog .el-dialog__footer {
  padding: 60px 60px;
  padding-top: 0;
  text-align: left;
}

.dialog-custom .el-button + .el-button {
  margin-left: 20px;
}

.el-dialog {
  width: 80%;
  max-width: 800px;
}

@media (max-width: 767.98px) {
  .dialog-custom .el-dialog .el-dialog__headerbtn {
    top: 15px;
    right: 15px;
  }
  .dialog-custom .el-dialog .el-dialog__body {
    padding: 45px 30px;
  }
  .dialog-custom .el-dialog .el-dialog__footer {
    padding: 30px 30px;
  }
}
.el-tabs .el-tabs__nav .el-tabs__item {
  color: #606060;
  font-weight: 600;
}

.el-tabs .el-tabs__nav .el-tabs__item:hover {
  color: #FFCB31;
}

.el-tabs .el-tabs__nav .el-tabs__item.is-active {
  color: #FFCB31;
}

.el-alert {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  margin-bottom: 20px;
}

.el-alert.el-alert-large .el-alert__content {
  padding: 10px 8px;
}

.el-alert.el-alert-large .el-alert__title {
  font-size: 14px;
}

.el-alert .el-alert__description {
  color: white;
}

.el-alert--info {
  color: white;
  background-color: #FFCB31;
}

.el-alert--success {
  color: white;
  background-color: #67c23a;
}

.el-alert--error {
  color: white;
  background-color: #eb2929;
}

.pagination {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 14px;
}

.pagination .page-item {
  display: inline-block;
}

.pagination .page-item.active .page-link {
  font-weight: bold;
  color: #484848;
}

.pagination .page-item:first-child .page-link {
  font-size: 25px;
  line-height: 28px;
}

.pagination .page-item:last-child .page-link {
  font-size: 25px;
  line-height: 28px;
}

.pagination .page-link {
  display: inline-block;
  padding: 0 14px;
  line-height: 30px;
  vertical-align: top;
}

.pagination a {
  text-decoration: none;
  color: #909399;
}

.pagination a:hover {
  color: #FFCB31;
}

.text-two-columns {
  -moz-column-count: 2;
  column-count: 2;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.pagination .page-item {
  display: inline-block !important;
}

/**
 *
 * RIVER Framework Components - Automatically Generated
 * DO NOT EDIT THIS FILE
 * Changes will be overitten on components:cache
 *
 **/
/* COMPONENTS / BACKGROUNDS */
.backgrounds, .background, .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.backgrounds .background.inactive {
  display: none;
}

.backgrounds {
  overflow: hidden;
}

/* COMPONENTS / HERO */
@screen xl {}
/* Search Widget */
.hero, .hero.valign-parent {
  overflow: visible;
  z-index: 10;
}

.search-widget {
  display: block;
  position: relative;
  text-shadow: none;
}

.search-widget input {
  margin-bottom: 0;
  padding-top: 24px;
  padding-bottom: 24px;
}

.search-widget input ::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #909399;
  opacity: 1; /* Firefox */
}

.search-widget input ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #909399;
  opacity: 1; /* Firefox */
}

.search-widget input :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #909399;
}

.search-widget input ::-ms-input-placeholder { /* Microsoft Edge */
  color: #909399;
}

.hero .search-widget .el-input__icon {
  font-size: 20px;
  width: 39px;
}

.hero .search-widget .el-input__clear {
  position: absolute;
  height: 46px;
  width: 39px;
  z-index: 3;
  top: 2px;
  right: 0px;
  background-color: #fff;
}

.icon-search {
  font-size: 19px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

.search-widget-results {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  margin-top: -1px;
  padding: 20px;
  color: #606060;
  text-align: left;
  text-shadow: none;
  border: 1px solid #E5E5E5;
}

.search-widget-results .products {
  margin: 20px 0;
}

.search-widget-results .products .product .title {
  color: #484848;
}

.search-widget-results .link-title {
  display: block;
  margin-top: 10px;
}

/* TEST Component */
/* COMPONENTS / VALIGN */
.valign-parent {
  position: relative;
  overflow: hidden;
}

.valign-parent .valign-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

@screen sm {
  .valign-parent .valign-child.container {
    width: 100%;
  }
}
.hero, .hero-small {
  position: relative;
  color: white;
  text-align: center;
  height: 480px;
  background-color: #FCFCFC;
}

.hero .cover, .hero-small .cover {
  background-color: rgba(0, 0, 0, 0.3);
}

.hero .title, .hero .text, .hero-small .title, .hero-small .text {
  color: white;
  margin-bottom: 0;
}

.hero .backgrounds-container, .hero-small .backgrounds-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .hero, .hero-small {
    font-size: 13px;
    line-height: 1.2;
  }
  .hero h3, .hero-small h3 {
    font-size: 19px;
  }
}
.hero-big {
  height: 651px;
}

@media (max-width: 767.98px) {
  .hero-big {
    height: 730px;
  }
}
.hero-small {
  height: 200px;
}

.hero-content {
  text-align: left;
  height: 350px;
}

@media (max-width: 767.98px) {
  .hero-content {
    font-size: 13px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
}
.img-fullwidth {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.img-fullwidth-product {
  display: block;
  max-width: 100%;
  max-height: 400px;
  height: auto;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.product-images {
  margin-bottom: 20px;
}

.product-images .row {
  margin-left: -3px;
  margin-right: -3px;
}

.product-images .col {
  padding-left: 3px;
  padding-right: 3px;
}

.product-images .product-images-current {
  height: 400px;
  position: relative;
  margin-bottom: 20px;
}

.product-images .product-images-current img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 400px;
}

.additional-image-preview {
  position: relative;
  padding-top: 80%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: sub;
}

.icon + .link {
  margin-left: 6px;
}

.col-centered {
  float: none;
  margin: 0 auto;
}

.section-title {
  padding: 60px 0 30px 0;
}

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

@media (max-width: 767.98px) {
  .section-title {
    padding: 30px 0 0 0;
  }
}
.filter-category-menu {
  margin: 60px 0;
}

.filter-category-menu .menu {
  text-align: center;
  list-style: none;
  padding: 0;
}

.filter-category-menu .menu li {
  list-style: none;
}

.filter-category-menu .menu .item {
  display: inline-block;
  margin: 0 10px;
}

.filter-category-menu .menu a {
  text-decoration: none;
}

.filter-category-menu .menu a.active {
  font-weight: 600;
}

.categories .category-card, .categories .casestudy-card, .casestudies .category-card, .casestudies .casestudy-card {
  display: block;
  position: relative;
  text-decoration: none;
  padding-top: 100%;
  min-height: 150px;
  margin-bottom: 30px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.categories .category-card:hover .cover, .categories .casestudy-card:hover .cover, .casestudies .category-card:hover .cover, .casestudies .casestudy-card:hover .cover {
  background-color: rgba(255, 181, 49, 0.9);
}

.categories .category-card .cover, .categories .casestudy-card .cover, .casestudies .category-card .cover, .casestudies .casestudy-card .cover {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s;
}

.categories .category-card .content, .categories .casestudy-card .content, .casestudies .category-card .content, .casestudies .casestudy-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: auto;
  padding: 0 20px 30px 20px;
}

.categories .category-card .title, .categories .casestudy-card .title, .casestudies .category-card .title, .casestudies .casestudy-card .title {
  color: white;
  margin-bottom: 20px;
}

.categories .category-card .summary, .categories .casestudy-card .summary, .casestudies .category-card .summary, .casestudies .casestudy-card .summary {
  color: white;
}

@media screen and (max-width: 1400px) {
  .categories .category-card .content, .categories .casestudy-card .content, .casestudies .category-card .content, .casestudies .casestudy-card .content {
    padding: 0 20px 20px 20px;
  }
  .categories .category-card .title, .categories .casestudy-card .title, .casestudies .category-card .title, .casestudies .casestudy-card .title {
    margin-bottom: 10px;
  }
}
.categories .category-card {
  padding-top: 70%;
}

.collection-page .collection-card, .collection-page .collection-card-small, .collection-page .casestudy-card {
  display: block;
  position: relative;
  text-decoration: none;
  padding-top: 100%;
  min-height: 150px;
  margin-bottom: 30px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.collection-page .collection-card:hover .cover, .collection-page .collection-card-small:hover .cover, .collection-page .casestudy-card:hover .cover {
  background-color: rgba(255, 181, 49, 0.9);
}

.collection-page .collection-card .cover, .collection-page .collection-card-small .cover, .collection-page .casestudy-card .cover {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s;
}

.collection-page .collection-card .content, .collection-page .collection-card-small .content, .collection-page .casestudy-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: auto;
  padding: 0 20px 30px 20px;
}

.collection-page .collection-card .title, .collection-page .collection-card-small .title, .collection-page .casestudy-card .title {
  color: white;
  margin-bottom: 20px;
}

.collection-page .collection-card .summary, .collection-page .collection-card-small .summary, .collection-page .casestudy-card .summary {
  color: white;
}

.collection-page .collection-card-small {
  padding-top: 0;
  min-height: 140px;
}

.collection-page .collection-card-small .title {
  margin-bottom: 0;
}

.collection-page .collection-card-small .content {
  padding: 0 20px 20px;
}

.pages .page-card {
  display: block;
  position: relative;
  text-decoration: none;
}

.pages .page-card:hover .title {
  color: #000000;
}

.pages .page-card:hover .img div:before, .pages .page-card:focus .img div:before {
  opacity: 1;
}

.pages .page-card .img {
  width: auto;
  padding-top: 60%;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
}

.pages .page-card .img div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: opacity 0.35s;
}

.pages .page-card .img div:before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 181, 49, 0.8);
  transition: opacity 0.35s;
}

.pages .page-card .title {
  margin-top: 20px;
  margin-bottom: 0;
}

.pages-square .page-card {
  display: block;
  position: relative;
  text-decoration: none;
}

.pages-square .page-card:hover .title {
  color: #000000;
}

.pages-square .page-card:hover .img div:before, .pages-square .page-card:focus .img div:before {
  opacity: 1;
}

.pages-square .page-card .img {
  width: auto;
  padding-top: 60%;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
}

.pages-square .page-card .img div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: opacity 0.35s;
}

.pages-square .page-card .img div:before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 181, 49, 0.8);
  transition: opacity 0.35s;
}

.pages-square .page-card .title {
  margin-top: 20px;
  margin-bottom: 0;
}

.products .product-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: #606060;
  margin-bottom: 24px;
  border: 1px solid #E5E5E5;
  padding: 20px;
  overflow: hidden;
}

.products .product-card.special:before {
  content: "Special";
  position: absolute;
  top: 17px;
  right: -39px;
  color: #484848;
  background: #FFCB31;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  transform: rotate(35deg);
  padding: 0 50px;
}

.products .product-card.promo .price {
  color: #eb2929;
  position: relative;
}

.products .product-card.promo .price del {
  display: inline-block;
  color: #666;
}

.products .product-card.promo:before {
  content: "Promo";
  position: absolute;
  top: 17px;
  right: -39px;
  color: #484848;
  background: #FFCB31;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  transform: rotate(35deg);
  padding: 0 50px;
}

.products .product-card.clearance:before {
  content: "Clearance";
  position: absolute;
  top: 17px;
  right: -52px;
  color: #484848;
  background: #FFCB31;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  transform: rotate(35deg);
  padding: 0 50px;
}

.products .product-card .img {
  width: auto;
  padding-top: 90%;
  min-height: 150px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.products .product-card .title {
  margin-top: 40px;
  margin-bottom: 2px;
  height: 60px;
  overflow: hidden;
}

.products .product-card .code {
  font-size: 12px;
  line-height: 16px;
  color: #909399;
  margin-bottom: 10px;
}

.products .product-card .code span {
  display: inline-block;
  margin-right: 2px;
}

.products .product-card .code span span {
  font-weight: 600;
}

.products .product-card .summary {
  font-size: 14px;
  margin-bottom: 20px;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.products .product-card:hover {
  cursor: pointer;
  border: 1px solid #FFCB31;
  transform: translateY(-2px);
}

.products .owl-item .product-card {
  margin-top: 2px;
}

.products .product-strip {
  display: block;
  position: relative;
  text-decoration: none;
  color: #606060;
  padding-top: 10px;
  padding-bottom: 10px;
}

.products .product-strip:hover {
  background-color: rgb(234.15, 234.15, 234.15);
}

.products .product-strip .img {
  float: left;
  width: 110px;
  height: 70px;
  margin-right: 10px;
  margin-left: 10px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: white;
}

.products .product-strip .content {
  padding-left: 130px;
  padding-top: 10px;
}

.products .product-strip .title {
  margin-bottom: 6px;
}

.products .product-cart {
  display: block;
  position: relative;
  color: #606060;
  margin-bottom: 40px;
}

.products .product-cart .col-product a {
  text-decoration: none;
}

.products .product-cart .col-product .img {
  float: left;
  width: 110px;
  height: 70px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.products .product-cart .col-product .content {
  margin-top: -4px;
  padding-left: 120px;
}

.products .product-cart .col-product .title {
  margin-bottom: 0;
}

.products .product-cart .col-product .options {
  font-size: 14px;
  color: #909399;
  margin-bottom: 0;
}

.products .product-cart .col-product .price {
  color: #484848;
  font-weight: 600;
  margin-bottom: 0;
}

.products .product-cart .col-number {
  margin-top: 8px;
}

.products .product-cart .col-number .product-quantity-input {
  min-width: 100px;
  max-width: 300px;
}

.products .product-cart .col-remove {
  margin-top: 16px;
}

.products .product-cart .col-remove .product-remove {
  font-size: 14px;
  color: #909399;
  text-decoration: none;
}

.products .product-cart .col-price {
  margin-top: 16px;
  color: #484848;
  font-weight: 600;
  font-size: 20px;
}

.products .product-checkout {
  display: block;
  position: relative;
  color: #606060;
  margin-bottom: 20px;
}

.products .product-checkout .col-product a {
  text-decoration: none;
}

.products .product-checkout .col-product .title {
  margin-bottom: 0;
}

.products .product-checkout .col-product .options {
  font-size: 14px;
  color: #909399;
}

.products .product-checkout .col-number, .products .product-checkout .col-price {
  margin-top: 18px;
  font-size: 14px;
  color: #484848;
  font-weight: 600;
}

.products .product-sign {
  text-decoration: none;
  text-align: center;
  border: 1px solid #D4D4D4;
  padding: 20px;
  flex: 1;
}

.products .product-sign img {
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}

.products .product-sign .content .summary {
  text-align: center;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* Number of lines you want */
  overflow: hidden;
  text-overflow: ellipsis;
}

.products .product-sign .codes {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.products .product-sign .codes .code {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products .product-sign .codes .code .value {
  font-size: 1.2rem;
  font-weight: 900;
}

.products .product-sign .codes .code .label {
  font-size: 0.7rem;
}

.products-sign {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media screen and (max-width: 992px) {
  .products-sign {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 530px) {
  .products-sign {
    grid-template-columns: repeat(1, 1fr);
  }
}
.promo-price {
  color: #eb2929;
}

@media (max-width: 767.98px) {
  .products .product-cart .col-product .img {
    width: 80px;
  }
  .products .product-cart .col-product .content {
    padding-left: 100px;
  }
  .products .product-cart .col-product .title {
    font-size: 0.9rem;
  }
  .products .product-cart .col-product .options {
    font-size: 0.8rem;
  }
  .products .product-cart .col-product .price {
    font-size: 0.9rem;
    display: none;
  }
  .products .product-cart .col-number {
    width: 100%;
    padding-left: 115px;
    margin-top: 0;
  }
  .products .product-cart .col-remove {
    width: 100%;
    padding-left: 115px;
    margin-top: 1px;
  }
  .products .product-cart .col-price {
    width: 100%;
    padding-left: 115px;
    text-align: left;
    font-size: 0.9rem;
    margin-top: 0;
  }
  .products .product-checkout .col-product {
    width: 100%;
    flex: none;
  }
  .products .product-checkout .col-product .title {
    font-size: 1rem;
  }
  .products .product-checkout .col-number {
    width: 50%;
    margin-top: 0;
  }
  .products .product-checkout .col-price {
    width: 50%;
    margin-top: 0;
  }
}
.product-page .col-img {
  padding-right: 60px;
}

.product-page .product-title {
  margin-bottom: 10px;
  font-size: 30px;
}

.product-page .product-categories {
  font-size: 14px;
  color: #909399;
  margin-bottom: 0px;
}

.product-page .product-categories a {
  text-decoration: none;
}

.product-page .product-codes {
  font-size: 14px;
  color: #909399;
  margin-bottom: 30px;
}

.product-page .product-summary {
  font-size: 14px;
  margin-bottom: 30px;
}

.product-page .product-select {
  margin-bottom: 30px;
}

.product-page .product-select .title {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 0;
  line-height: 37px;
}

.product-page .product-select .product-select-input {
  display: inline-block;
}

.product-page .product-select .button {
  vertical-align: top;
}

.product-page .product-options {
  margin-bottom: 30px;
}

.product-page .product-options .product-option {
  display: block;
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: solid 1px #E5E5E5;
}

.product-page .product-options .product-option.product-option-select {
  padding: 0px 0 8px;
}

.product-page .product-options .product-option .title {
  float: left;
}

.product-page .product-options .product-option .value {
  float: right;
}

.product-page .product-options .product-option:last-child {
  margin-bottom: 0;
}

.product-page .product-options .product-option .el-select {
  width: 100%;
}

.product-page .product-instructions {
  margin-bottom: 30px;
}

.product-page .product-pricing {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-page .product-pricing .title {
  float: left;
  margin-bottom: 0;
}

.product-page .product-pricing .price {
  float: right;
  margin-bottom: 0;
}

.product-page .product-pricing .login {
  display: inline-block;
  font-size: 14px;
  margin-top: 10px;
}

.product-page .product-quantity {
  margin-bottom: 30px;
}

.product-page .product-quantity .title {
  float: left;
  margin-bottom: 0;
}

.product-page .product-quantity .product-quantity-input {
  float: right;
  width: 50%;
  min-width: 200px;
  max-width: 400px;
}

.product-page .product-confirm {
  margin-top: 60px;
  margin-bottom: 30px;
}

.product-page .product-confirm .button {
  width: 100%;
}

.product-page .product-extras {
  margin-top: 60px;
}

@media (max-width: 767.98px) {
  .product-page .col-img {
    padding-right: 15px;
  }
  .product-page .product-confirm {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .product-page .product-confirm .col:first-child {
    margin-bottom: 5px;
  }
}
.cart-mobile-hero {
  padding-top: 30px;
  display: none;
}

@media (max-width: 767.98px) {
  .cart-page-hero {
    display: none;
  }
  .cart-mobile-hero {
    display: block;
  }
}
.cart-pricing, .checkout-pricing {
  color: #909399;
  font-weight: 600;
  text-align: right;
}

.cart-pricing .label, .checkout-pricing .label {
  float: left;
}

.cart-pricing .value, .checkout-pricing .value {
  margin-bottom: 15px;
}

.cart-pricing .pricing-total, .checkout-pricing .pricing-total {
  margin: 40px 0;
  color: #484848;
  font-size: 20px;
}

.cart-pricing .button, .checkout-pricing .button {
  width: 100%;
}

.checkout-pricing {
  font-size: 14px;
}

.checkout-pricing .value {
  margin-bottom: 5px;
}

.checkout-pricing .pricing-total {
  margin: 10px 0;
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .cart-pricing, .checkout-pricing {
    font-size: 0.8rem;
    line-height: 1.5rem;
  }
  .cart-pricing .value, .checkout-pricing .value {
    margin-bottom: 0px;
  }
  .cart-pricing .pricing-total, .checkout-pricing .pricing-total {
    margin: 15px 0 30px;
    font-size: 1rem;
  }
  .cart-pricing .button-checkout, .checkout-pricing .button-checkout {
    margin-top: 15px;
  }
  .hidden-sm-down {
    display: none;
  }
}
.downloads {
  display: block;
  width: 100%;
}

.downloads .download-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: #606060;
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: solid 1px #E5E5E5;
  transition: 0.2s all ease;
}

.downloads .download-card .title {
  float: left;
}

.downloads .download-card .download {
  float: right;
  font-weight: 600;
}

.downloads .download-card .download .icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .downloads .download-card .download {
    float: none;
    clear: both;
    margin-top: 10px;
  }
  .downloads .download-card .download .icon {
    width: 16px;
    height: 16px;
    margin-left: 5px;
  }
}
.downloads .download-card:last-child {
  margin-bottom: 0;
}

.downloads .download-card:hover {
  color: #FFCB31;
}

.downloads .download-card:hover .svg * {
  fill: #FFCB31;
}

.accordian-list .downloads .download-card {
  border: none;
  margin: 0;
}

.links {
  display: block;
  width: 100%;
}

.links .link-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: #606060;
  padding: 10px 0;
  transition: 0.2s all ease;
}

.links .link-card .title {
  float: left;
}

.links .link-card .download {
  float: right;
  font-weight: 600;
}

.links .link-card .download .icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .links .link-card .download {
    float: none;
    clear: both;
    margin-top: 10px;
  }
  .links .link-card .download .icon {
    width: 16px;
    height: 16px;
    margin-left: 5px;
  }
}
.links .link-card:last-child {
  margin-bottom: 0;
}

.links .link-card:hover {
  color: #FFCB31;
}

.links .link-card:hover .svg * {
  fill: #FFCB31;
}

.posts .post-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: #606060;
  margin-bottom: 30px;
}

.posts .post-card .img {
  width: auto;
  padding-top: 70%;
  min-height: 100px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.posts .post-card .title {
  margin-top: 20px;
  margin-bottom: 2px;
}

.posts .post-card .post-type {
  font-size: 14px;
  margin-bottom: 10px;
}

.posts .post-card .summary {
  margin-bottom: 20px;
  padding-right: 20px;
  min-height: 56px;
}

.news .news-card {
  position: relative;
  text-decoration: none;
  color: #606060;
  margin-bottom: 30px;
}

.news .news-card .col-img {
  padding-right: 60px;
}

@media (max-width: 767.98px) {
  .news .news-card .col-img {
    padding-right: 0;
    padding-left: 0;
  }
}
.news .news-card .img {
  width: auto;
  padding-top: 70%;
  min-height: 100px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
  .news .news-card .col-content {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.news .news-card .title {
  margin-top: 30px;
  margin-bottom: 10px;
}

.news .news-card .title a {
  text-decoration: none;
}

.news .news-card .post-type {
  font-size: 12px;
  margin-bottom: 30px;
}

.news .news-card .post-type a {
  text-decoration: none;
}

.news .news-card .summary {
  font-size: 14px;
  margin-bottom: 30px;
}

.news .news-card .post-date {
  font-size: 14px;
}

.actions .action-card {
  display: block;
  position: relative;
  height: 280px;
  text-decoration: none;
  color: white;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.actions .action-card .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.actions .action-card .cover {
  background-color: rgba(0, 0, 0, 0.3);
}

.actions .action-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px 30px 20px;
}

.actions .action-card .title {
  color: white;
}

.actions-square .action-card {
  display: block;
  position: relative;
  text-decoration: none;
  padding-top: 100%;
  min-height: 150px;
  margin-bottom: 30px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.actions-square .action-card:hover .cover {
  background-color: rgba(255, 181, 49, 0.9);
}

.actions-square .action-card .cover {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s;
}

.actions-square .action-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: auto;
  padding: 0 20px 30px 20px;
}

.actions-square .action-card .title {
  color: white;
  margin-bottom: 20px;
}

.actions-square .action-card .summary {
  color: white;
}

.members .member-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: #606060;
  margin-bottom: 30px;
}

.members .member-card .img {
  width: auto;
  padding-top: 70%;
  min-height: 100px;
  background-color: #f4f4f4;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.members .member-card .title {
  margin-top: 20px;
  margin-bottom: 2px;
}

.members .member-card .position {
  font-size: 12px;
  margin-bottom: 10px;
}

.members .member-card .summary {
  font-size: 14px;
  margin-bottom: 20px;
  padding-right: 20px;
}

.members .member-card .contact {
  margin-bottom: 5px;
}

.members .member-card .contact a {
  text-decoration: none;
}

.members .member-card .contact:last-child {
  margin-bottom: 0;
}

.members .member-card .button {
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .members .member-card {
    margin-bottom: 40px;
  }
}
.section-testimonials {
  display: block;
  background-color: #A6A5A5;
  color: white;
  height: auto;
  margin: 20px 0;
}

.section-testimonials .container {
  position: relative;
  min-height: 100%;
}

.section-testimonials .testimonials {
  min-height: 320px;
  text-align: center;
  position: relative;
}

.section-testimonials .testimonials .title {
  color: white;
  margin-top: 20px;
  margin-bottom: 0;
}

.section-testimonials .testimonial-container {
  height: 320px;
}

@media (max-width: 767.98px) {
  .section-testimonials {
    font-size: 14px;
  }
  .section-testimonials h5 {
    font-size: 16px;
  }
  .section-testimonials .testimonials-prev {
    left: -1vw;
  }
  .section-testimonials .testimonials-next {
    right: -1vw;
  }
}
.carousel .carousel-prev, .carousel .carousel-next {
  position: absolute;
  top: 50%;
  left: -5vw;
  transform: translateY(-50%);
}

.carousel .carousel-prev .icon, .carousel .carousel-next .icon {
  width: 32px;
  height: 32px;
}

.carousel .carousel-next {
  left: auto;
  right: -5vw;
}

.accordian-list {
  border: none;
}

.accordian-list .el-collapse-item__header {
  color: #484848;
  font-weight: 600;
  font-size: 20px;
  border-bottom: 1px solid #E5E5E5;
  transition: 0.2s all ease;
}

.accordian-list .el-collapse-item__header:hover {
  color: #FFCB31;
}

@media (max-width: 767.98px) {
  .accordian-list .el-collapse-item__header {
    height: auto;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
  }
}
.accordian-list .el-collapse-item {
  margin-bottom: 30px;
}

.accordian-list .el-collapse-item__wrap {
  border: none;
}

.accordian-list .el-collapse-item__wrap .el-collapse-item__content {
  font-size: 16px;
  padding: 30px 0;
}

.contact-details .title {
  margin-top: 90px;
  margin-bottom: 30px;
}

.contact-details .address {
  line-height: 2em;
}

.contact-details .button {
  margin-top: 60px;
}

.page-content {
  padding: 0 120px 60px 120px;
}

@media (max-width: 767.98px) {
  .page-content {
    padding: 30px;
  }
}
.page-tabs {
  display: block;
  width: 100%;
}

.product-filter-widget {
  margin-bottom: 10px;
}

.product-filter-title {
  font-size: 16px;
  border-bottom: 2px solid #f7f7f7;
  padding-bottom: 8px;
  margin-bottom: 18px;
  color: #ffcb31;
}

.product-toolbar {
  text-align: right;
  margin-top: 30px;
}

.ais-HierarchicalMenu-item--selected > a {
  color: #606060;
  font-weight: bold;
}

.responsive-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.responsive-embed-container iframe, .responsive-embed-container object, .responsive-embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dynamic-price {
  min-width: 50px;
}

.global-search .row {
  margin-left: -7px;
  margin-right: -7px;
}

.global-search .col {
  padding-left: 7px;
  padding-right: 7px;
}

.global-search .icon {
  position: absolute;
  top: 19px;
  right: 36px;
  pointer-events: none;
  line-height: 1;
  font-size: 23px;
}

.global-search .icon-search {
  color: #FFB531;
}

.global-search-type {
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
  background-color: white;
  color: #484848;
  font-size: 18px;
  padding: 10px 27px;
  line-height: 40px;
  cursor: pointer;
}

.global-search-options {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #f1f1f1;
  z-index: 1;
}

.global-search-options div {
  width: 100%;
  height: 60px;
  padding: 10px 27px;
  line-height: 40px;
  background-color: white;
  margin-top: 1px;
}

.global-search-options div:first-child {
  margin-top: 0;
}

.global-search-input {
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px 27px;
  background-color: white;
  color: #484848;
  border: none;
  outline: none;
  font-size: 18px;
}

.global-search-input:focus {
  outline: none;
}

.global-search-stats {
  font-size: 13px;
  margin-bottom: 40px;
}

.global-search-results .ais-SearchBox {
  position: relative;
  margin-bottom: 20px;
}

.global-search-results .ais-SearchBox-input {
  width: 100%;
  height: 60px;
  padding: 10px 27px;
  line-height: 40px;
  font-size: 18px;
  border: 2px solid #E5E5E5;
}

.global-search-results .ais-SearchBox-input:focus {
  outline: 0;
  border: 2px solid #DCDFE6;
}

.global-search-results .ais-SearchBox-submit {
  display: none;
}

.global-search-results .ais-SearchBox-reset {
  position: absolute;
  right: 10px;
  top: 13px;
  background-color: white;
  border-width: 0;
}

.global-search-result {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #DCDFE6;
  text-decoration: none;
}

.global-search-result:hover {
  text-decoration: none;
}

.global-search-result:hover p {
  color: #606060;
}

.global-search-result h4 {
  margin-bottom: 10px;
}

.global-search-result p {
  margin: 0;
  color: #606060;
}

.global-search-result .button {
  margin-top: 5px;
}

.global-search-footer {
  margin-top: 20px;
}

.global-search-footer .button {
  width: 100%;
}

.ais-SortBy-select {
  font-size: 14px;
  color: #606060;
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #c0c4cc;
  border-radius: 4px;
}

p.pcol-1 { /* Chrome, Safari, Opera */
  -moz-column-count: 1; /* Firefox */
  column-count: 1;
}

p.pcol-2 { /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
}

p.pcol-3 { /* Chrome, Safari, Opera */
  -moz-column-count: 3; /* Firefox */
  column-count: 3;
}

.recaptcha div {
  margin: auto;
}

.recaptcha div .el-form-item__error {
  width: 100%;
  text-align: center;
}

.owl-theme.owl-theme .owl-nav .owl-prev, .owl-theme.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  left: -5vw;
  transform: translateY(-50%);
  text-indent: -9999px;
  background-color: transparent;
  width: 32px;
  height: 32px;
  transition: 0.2s ease transform;
}

.owl-theme.owl-theme .owl-nav .owl-prev:hover, .owl-theme.owl-theme .owl-nav .owl-next:hover {
  background-color: transparent;
}

.owl-theme.owl-theme .owl-nav .owl-prev {
  background-image: url("/assets/images/icons/arrow-left.svg") !important;
}

.owl-theme.owl-theme .owl-nav .owl-prev:hover {
  transform: translate(-5px, -50%);
}

.owl-theme.owl-theme .owl-nav .owl-next {
  background-image: url("/assets/images/icons/arrow-right.svg") !important;
  left: auto;
  right: -5vw;
}

.owl-theme.owl-theme .owl-nav .owl-next:hover {
  transform: translate(5px, -50%);
}

.owl-theme.owl-theme .owl-dots {
  height: 20px;
}

.owl-theme.owl-theme .owl-dots .owl-dot span {
  margin: 5px;
  width: 15px;
  height: 15px;
  background-color: #f5f5f5;
}

.owl-theme.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #e0e0e0;
}

.owl-theme.owl-theme .owl-dots .owl-dot.active span {
  background-color: #8a8a8a;
}

.owl-theme.owl-theme .owl-dots .owl-dot.active:hover span {
  background-color: #4f4f4f;
}

.el-icon-rotate-90 {
  transform: rotate(90deg);
}

.pac-container {
  z-index: 3001;
}

.demo-notification {
  background: #302E2F;
  padding: 15px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .demo-notification {
    padding-top: 95px;
  }
}
/* File Pond */
/* show 4 items per row */
.filepond--item {
  width: calc(25% - 0.5em);
}

/* limit max height */
.filepond--root {
  max-height: 500px;
}

.style-link,
.scope-styles :where(a),
.cms-content-blocks a,
.page-section-content a,
.content-block a {
  color: #606060 !important;
  text-decoration: underline;
}

.style-link:hover,
.scope-styles :where(a):hover,
.cms-content-blocks a:hover,
.page-section-content a:hover,
.content-block a:hover {
  color: #FFB531 !important;
}

.style-link:visited,
.scope-styles :where(a):visited,
.cms-content-blocks a:visited,
.page-section-content a:visited,
.content-block a:visited {
  color: #606060 !important;
}

.style-divide,
.scope-styles :where(hr),
.cms-content-blocks hr,
.page-section-content hr,
.content-block hr {
  border-color: #c0c0c0 !important;
  border-width: 1px !important;
}

/*! purgecss start ignore */
#header {
  display: block;
  position: relative;
  overflow: visible;
}

#header a, #header .link {
  color: #000000;
  text-decoration: none;
}

#header .icon {
  width: 18px;
  height: 28px;
  line-height: 28px;
  font-size: 20px;
  float: left;
}

#header .icon:before {
  display: block;
  line-height: 28px;
}

#header .container {
  position: relative;
  padding: 0;
}

#header .header-shop {
  position: relative;
  background-color: #FFCB31;
}

#header .header-shop a, #header .header-shop .link {
  font-size: 14px;
  font-weight: 600;
}

#header .header-shop .header-shop-menu {
  position: relative;
}

#header .header-shop .header-shop-menu a {
  display: inline-block;
  padding: 6px 10px;
}

#header .header-shop .header-shop-menu .socials-facebook {
  background-image: url("/assets/images/icons/facebook-black.png");
}

#header .header-shop .header-shop-menu .socials-linkedin {
  background-image: url("/assets/images/icons/linkedin-black.png");
  margin-left: 4px;
}

#header .header-shop .header-shop-menu .socials-youtube {
  background-image: url("/assets/images/icons/youtube-black.png");
  margin-left: 4px;
}

#header .header-shop .header-shop-menu .socials-instagram {
  background-image: url("/assets/images/icons/instagram-black.png");
  margin-left: 4px;
}

#header .header-shop a.header-search {
  margin: 0;
  margin-right: -1px;
  padding-left: 20px;
  padding-right: 2px;
  background-color: #FFB531;
}

#header .header-shop a.header-search-back {
  position: absolute;
  width: 50%;
  top: 0;
  left: 50%;
  height: 100%;
  background-color: #FFB531;
}

#header .header-shop .header-search-cover {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #FFCB31;
}

#header .header-menu {
  padding: 10px 0;
  background-color: white;
}

@media (max-width: 991.98px) {
  #header .header-menu .header-logo .logo {
    width: 180px;
  }
}
#header .header-menu .menu {
  display: block;
  margin-top: 22px;
  list-style: none;
}

#header .header-menu .menu li {
  list-style: none;
  display: block;
  float: left;
}

#header .header-menu .menu li + li {
  margin-left: 37px;
}

#header .header-menu .menu a {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 991.98px) {
  #header .header-menu .menu a {
    font-size: 15px;
  }
}
#header .header-menu .menu a + a {
  margin-left: 20px;
}

#header .header-submenu {
  display: none;
  z-index: 20;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 60px 0 30px 0;
  background-color: #FCFCFC;
  min-height: 200px;
  box-shadow: 0px 12px 20px rgba(200, 200, 200, 0.25);
}

#header .header-submenu-visible {
  display: block;
}

#header .link-all-products {
  text-align: center;
  margin-top: 30px;
}

#header .link-all-products .title {
  color: #FFCB31;
  margin-bottom: 0;
}

#header .header-submenu-search {
  padding-top: 40px;
  padding-bottom: 50px;
  background-color: #f1f1f1;
}

@media (max-width: 767.98px) {
  #header {
    display: none;
  }
}
#mobile-header {
  display: none;
}

@media (max-width: 767.98px) {
  #mobile-header {
    display: block;
    position: fixed;
    width: 100%;
    z-index: 999;
  }
}
#mobile-header .header-menu {
  background-color: #ffffff;
  min-height: 80px;
  border-bottom: 1px solid #dadada;
}

#mobile-header .header-menu .header-logo {
  padding: 14px 0;
  display: block;
}

#mobile-header .header-menu .header-logo .logo {
  width: 160px;
}

#mobile-header .header-menu .header-shop-menu a {
  display: inline-block;
  position: relative;
  padding: 21px 8px;
  vertical-align: top;
}

#mobile-header .header-menu .header-shop-menu a .icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 34px;
  color: #000;
  vertical-align: middle;
}

#mobile-header .header-menu .header-shop-menu a .icon-user {
  font-size: 26px;
  width: 26px;
  line-height: 40px;
}

#mobile-header .header-menu .header-shop-menu a .qty span {
  background-color: #ffca31;
  color: #000000;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 600;
}

#footer {
  display: block;
  position: relative;
  background-color: #302E2F;
  padding: 30px 0 60px 0;
}

#footer a, #footer .link {
  color: white;
  text-decoration: none;
}

#footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-menu .item-title {
  margin-bottom: 20px;
}

#footer .footer-menu .item-title .title {
  color: #FFCB31;
}

#footer .footer-menu .item {
  margin-bottom: 5px;
}

#footer .socials-facebook {
  background-image: url("/assets/images/icons/facebook-white.png");
  margin-left: 8px;
}

#footer .socials-linkedin {
  background-image: url("/assets/images/icons/linkedin-white.png");
  margin-left: 4px;
}

#footer .socials-youtube {
  background-image: url("/assets/images/icons/youtube-white.png");
  margin-left: 4px;
}

#footer .socials-instagram {
  background-image: url("/assets/images/icons/instagram-white.png");
  margin-left: 4px;
}

.socials-facebook, .socials-linkedin, .socials-youtube {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  background-size: contain;
  display: inline-block;
}

.products-layout {
  display: grid;
  position: relative;
  width: 100%;
  grid-template-areas: "filters products";
  grid-template-columns: 25% auto;
  grid-template-rows: auto;
  grid-gap: 30px;
  margin-bottom: -30px;
}

@media (max-width: 767.98px) {
  .products-layout {
    display: flex;
  }
  .products-layout .products.ais-InfiniteHits {
    width: 100%;
  }
}
.products-layout .products-filters {
  grid-area: filters;
  min-height: 100%;
  padding: 30px 30px 0 0;
  border-right: solid 1px #E5E5E5;
}

.products-layout .products-filters .products-filters-search {
  margin-bottom: 30px;
}

.products-layout .products-filters .checkbox {
  display: block;
  margin-bottom: 8px;
}

.products-layout .products-filters .checkbox label {
  padding-right: 10px;
}

.products-layout .products-filters .separator {
  display: block;
  overflow: hidden;
  border-top: solid 1px #E5E5E5;
  margin: 30px 0;
}

.products-layout .products-filters .button {
  width: 100%;
}

.products-layout .products-cards {
  grid-area: products;
  padding: 30px 0;
  width: 100%;
}

.products-layout .products-cards .row {
  margin-left: -10px;
  margin-right: -10px;
}

.products-layout .products-cards .col {
  padding-left: 10px;
  padding-right: 10px;
}

.products-layout .products-cards-header {
  padding: 0 0 30px 0;
}

.products-layout .products-cards-footer {
  padding: 30px 0 0 0;
}

.products-layout .products-cards-footer .button {
  width: 100%;
}

@media (max-width: 991.98px) {
  .products-layout {
    grid-template-columns: auto;
    margin-bottom: 0;
  }
  .products-filters {
    display: none;
  }
}
#sidebar {
  display: none;
  width: 100%;
  background: #ffffff;
  height: calc(100vh - 80px);
}

#sidebar.active {
  display: block;
  position: fixed;
  z-index: 9999;
  margin-top: 81px;
}

#sidebar form.global-search {
  border-bottom: 1px solid #dadada;
}

#sidebar form.global-search .global-search-input {
  display: block;
  width: 100%;
  height: 52px;
  padding: 5px 15px;
  background-color: white;
  color: #484848;
  font-size: 18px;
  font-weight: 600;
}

#sidebar form.global-search .icon-search {
  color: #000000;
  top: 14px;
  right: 22px;
}

#sidebar a {
  display: block;
  text-decoration: none;
}

#sidebar nav {
  overflow: auto;
  max-height: 100%;
}

#sidebar .nav-footer {
  border-top: 1px solid #dadada;
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
}

#sidebar .nav-footer div {
  width: 49%;
  display: inline-block;
  border-right: 1px solid #dadada;
}

#sidebar .nav-footer div:last-of-type {
  border-right: none;
}

#sidebar .nav-footer div a {
  border-bottom: none;
  border-bottom: none;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  color: #000000;
  border-bottom: none;
}

#sidebar .nav-footer div a .link {
  text-decoration: none;
}

#sidebar .nav-footer .icon {
  font-size: 18px;
}

#sidebar .el-menu {
  background: #ffffff;
  z-index: 99;
}

#sidebar .el-menu .el-submenu .el-submenu__title, #sidebar .el-menu .el-menu-item {
  font-size: 16px;
  font-weight: bold;
}

#sidebar .el-menu .el-submenu .el-submenu__title a, #sidebar .el-menu .el-menu-item a {
  color: #000000;
}

#sidebar .el-menu .el-submenu .el-menu-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  height: auto;
  min-height: 50px;
  line-height: 1.2;
  white-space: pre-wrap;
}

#sidebar .el-menu .el-submenu .el-menu-item a {
  color: #000000;
}

#sidebar .el-menu a.link-all-products-mobile {
  color: #FFCB31;
}

.hero-mobile, .hide-on-mobile {
  display: none;
}

.spacer-mobile {
  height: 20px;
}

.el-tabs__nav-prev i, .el-tabs__nav-next i {
  font-weight: bold;
  color: #000000;
}

.filter-toggle {
  display: none;
}

#switch {
  display: none;
}

.products-menu-mobile {
  display: none;
}

@media (max-width: 769px) {
  .mobile-container {
    padding: 0px 30px;
  }
  .mobile-container .title {
    font-size: 18px;
    font-weight: bold;
  }
  #mobile-header .header-shop-menu .icon-truck:after {
    position: absolute;
    left: 4px;
    top: 20px;
    content: attr(data-count);
    font-size: 8px;
    border-radius: 50%;
    line-height: 1em;
    color: #000000;
    background: #FFCB31;
    text-align: center;
    width: 14px;
    height: 14px;
    padding: 3px 3px 0px 0px;
    font-style: normal;
    font-weight: bold;
  }
  #page .home-read-more, #page .home-find {
    padding: 12px 18px;
    white-space: nowrap;
  }
  #sidebar form.global-search {
    border-top: none;
  }
  #sidebar .nav-footer div a {
    padding: 30px 20px;
  }
  .filter-toggle {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5000;
  }
  .filter-toggle .filter-icon {
    display: block;
    text-indent: -9999px;
    width: 60px;
    height: 60px;
    background: url("/svg/filter-circle.svg");
    background-size: 100%;
    cursor: pointer;
  }
  .text-two-columns {
    -moz-column-count: 1;
    column-count: 1;
  }
  .page-tabs el-tab-pane {
    width: 50%;
  }
  .posts .post-card .title {
    text-align: left !important;
    margin: 20px 0px 10px 0px;
  }
  .owl-carousel.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
  }
  .products-menu-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 6000;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: -100%;
    opacity: 0;
    background-color: #fff;
    padding: 10px 0 10px;
  }
  .products-menu-mobile.products-menu-mobile-visible {
    left: 0;
    opacity: 1;
  }
  .products-menu-mobile .close-button-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 0 10px;
  }
  .products-menu-mobile .close-button-wrapper .close-button {
    font-size: 30px;
    padding: 5px;
  }
  .products-menu-mobile .search-filters {
    flex-grow: 2;
    overflow-y: scroll;
    padding: 10px 30px 0;
  }
  .products-menu-mobile .search-filters .ais-SearchBox {
    margin-bottom: 20px;
  }
  .products-menu-mobile .search-filters .el-collapse {
    border-top: none;
    border-bottom: none;
  }
  .products-menu-mobile-buttons {
    padding: 10px 30px;
  }
  .products-menu-mobile-buttons .ais-ClearRefinements-button--disabled {
    display: none;
  }
  .ais-InstantSearch {
    position: relative;
  }
}
.collection-page {
  padding: 30px 0px;
}

@media (max-width: 992px) {
  .hero-desktop {
    display: none;
  }
  .hero-mobile {
    display: block;
  }
  .hero-mobile .title {
    margin: 35px 0px 0px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.45em;
  }
  .hero-mobile p.text {
    font-size: 13px;
    text-align: center;
    color: #909399;
    line-height: 1.8em;
    margin-bottom: 2em;
  }
}
@media (max-width: 374px) {
  #mobile-header .header-menu .header-logo .logo {
    width: 140px;
  }
}
.login-parent {
  position: relative;
  text-align: center;
}

.login-container {
  display: inline-block;
  margin: auto;
  padding: 160px 20px 80px 20px;
  margin: 0;
}

.login-container .logo {
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
}

.login-container .logo.mobile {
  display: none;
}

.login-container .login-form {
  margin-top: 50px;
}

.login-panel {
  min-width: 300px;
  max-width: 100%;
  margin: 0;
  background: white;
  padding: 100px 80px;
}

.login-cover {
  background-color: rgba(0, 0, 0, 0.5);
}

.content-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.content-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*! purgecss end ignore */
.logo {
  width: 210px;
  height: auto;
  display: block;
}

.hero-home .content .text {
  padding: 0 60px;
}

.hero-home .content .button {
  margin: 20px 0;
}

.hero-home .content p a {
  color: inherit;
}

.hero-home .hero-scroll-down {
  display: inline-block;
  margin-top: 40px;
  color: white;
}

.hero-home .hero-scroll-down:hover {
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .hero-home .content h1 {
    font-size: 28px;
  }
  .hero-home .content .text {
    padding: 0 15px;
    text-align: center;
  }
  .hero-home .content .button {
    margin: 10px 0;
  }
}
@media (max-width: 575.98px) {
  .hero-home .content h1 {
    font-size: 1.4rem;
  }
  .hero-home .content .text {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 2em;
    text-align: center;
  }
  .hero-home .call-to-action {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  .hero-home .call-to-action .button {
    display: inline-block;
  }
}
.home-product-search {
  height: 50px;
}

@media (max-width: 575.98px) {
  .featured-products .products {
    margin-left: 15px;
    margin-right: 15px;
  }
}
#faq-categories .faq-category-item {
  position: relative;
  margin-bottom: 15px;
  font-size: 14px;
  border-bottom: 2px solid #484848;
}

#faq-categories .faq-category-item h3 {
  font-size: 20px;
  color: #484848;
  font-weight: 600;
  margin-bottom: 0.5em;
  cursor: pointer;
}

#faq-categories .faq-category-item .description {
  padding: 0px 0px 10px 0px;
  font-size: 14px;
}

#faq-categories .faq-category-item .icon {
  position: absolute;
  right: 1px;
  top: 6px;
  cursor: pointer;
}

.faq-dialog .el-dialog {
  width: 90%;
  margin: 0px auto;
  padding: 40px;
  font-size: 14px;
}

.faq-dialog .el-dialog .el-dialog__title {
  font-size: 20px;
  color: #484848;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.faq-dialog .el-dialog .faq-collapse {
  border: 0px;
}

.faq-dialog .el-dialog .faq-collapse .el-collapse-item {
  border-bottom: 2px solid #484848;
}

.faq-dialog .el-dialog .faq-collapse .el-collapse-item .el-collapse-item__header {
  font-size: 18px;
  color: #484848;
  font-weight: 600;
  margin-bottom: 0.5em;
  border: 0px;
  padding: 40px 0px;
}

@media (max-width: 767.98px) {
  .faq-dialog .el-dialog .faq-collapse .el-collapse-item .el-collapse-item__header {
    height: auto;
    line-height: 1.5em;
    padding: 20px 0 10px 0;
  }
}
.faq-dialog .el-dialog .faq-collapse .el-collapse-item .description {
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .faq-dialog .el-dialog {
    padding: 10px;
  }
}
.sitemap-list {
  list-style: none;
  padding-left: 0;
}

.sitemap-list a {
  text-decoration: none;
}

.sitemap-list a:hover {
  text-decoration: underline;
}

.images-carousel .image .content {
  padding-top: 80%;
}

.images-carousel .image .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.content-block.block-images.block-images-carousel .content {
  position: relative;
  padding-top: 57%;
  margin-bottom: 10px;
}

.content-block.block-images.block-images-gallery .img-col {
  margin-bottom: 60px;
}

.content-block.block-images.block-images-gallery .img-col .img-container {
  position: relative;
  padding-top: 67%;
}

.content-block.block-images .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/**
 *  multiple block images
 */
.block-multiple-images {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.block-multiple-images-image {
  width: 33.2%;
  padding: 0 10px 20px 10px;
  text-align: center;
}

.block-multiple-images-image img {
  display: block;
  max-width: 100%;
}

.multiple-block-images img {
  height: 200px;
}

@media screen and (max-width: 1199px) {
  .block-multiple-images-image {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .block-multiple-images {
    flex-direction: column;
  }
  .block-multiple-images-image {
    width: 100%;
  }
}
.product-category-white-links a {
  color: white;
}

.product-category-white-links a:hover {
  color: #FFB531;
}

/*! purgecss start ignore */
:root {
  --primary: #FFCB31;
  --primary-dark: #FFB531;
  --primary-70: rgba(255, 203, 49, 0.3);
  --primary-50: rgba(255, 203, 49, 0.5);
  --primary-30: rgba(255, 203, 49, 0.7);
  --primary-10: rgba(255, 203, 49, 0.9);
  --logo: #FFCB31;
  --sidebar-icon: #b0b1b1;
}

/* Layout
---------------------------------------------------------------------------- */
.h-header {
  height: 80px;
}

.w-sidebar {
  width: 250px;
}

/* Custom Padding
---------------------------------------------------------------------------- */
.pt-header {
  padding-top: 8.05rem;
}

.logo {
  width: 160px;
  margin: 0 auto;
}

#nova .content .px-view.py-view form > .flex.items-center {
  position: fixed;
  z-index: 20;
  top: auto;
  right: 0;
  bottom: 0;
  left: 15.75rem;
  background: #fff;
  padding: 15px 3.125rem 15px 0;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.05);
}

.bg-grad-sidebar {
  background: #fafbfc;
}

.bg-grad-sidebar .text-white {
  color: rgb(124.7006369427, 126.2993630573, 126.2993630573);
}

.bg-grad-sidebar .text-white-50\% {
  color: #b0b1b1;
}

/*! purgecss end ignore */
.auth-modal .button-login {
  padding-left: 40px;
  padding-right: 40px;
}

.auth-modal .el-form {
  margin-top: 20px;
}

.auth-modal .buttons {
  margin-top: 20px;
}

.auth-modal .message {
  margin-left: -5px;
  margin-right: -5px;
}

.auth-modal .message .col {
  padding-left: 5px;
  padding-right: 5px;
  color: #FFCB31;
  line-height: 1.4;
  font-weight: 600;
}

.auth-modal .message img {
  width: 40px;
}

.auth-modal-logo {
  margin-bottom: 20px;
}

.auth-modal-logo .logo {
  margin: 0 auto;
}

.page-auth #app {
  background: white;
}

.page-auth .el-form .buttons {
  margin-top: 20px;
}

.ecommerce-cart, .ecommerce-cart-container {
  min-height: 300px;
}

.ecommerce-checkout {
  min-height: 300px;
}

.ecommerce-checkout .button-wide {
  width: 100%;
  max-width: 280px;
}

@media (max-width: 767.98px) {
  .ecommerce-checkout .button-wide {
    margin: 20px 0;
  }
}
.ecommerce-checkout .button-login {
  width: 100%;
  max-width: 280px;
}

.ecommerce-checkout .login-form {
  text-align: left;
}

.ecommerce-checkout .login-form .buttons {
  text-align: center;
  margin-top: 20px;
}

.ecommerce-checkout .el-radio {
  margin-bottom: 10px;
}

.ecommerce-checkout .el-radio .el-radio__inner {
  width: 25px;
  height: 25px;
}

.checkout-step .el-checkbox {
  display: block;
  margin-bottom: 10px;
}

.checkout-step .el-checkbox .el-checkbox__inner {
  width: 24px;
  height: 24px;
  border-color: transparent;
}

.checkout-step .el-checkbox .el-checkbox__inner:after {
  top: 2px;
  left: 10px;
  width: 4px;
  height: 14px;
}

.checkout-step .el-checkbox .el-checkbox__label {
  padding-left: 15px;
  font-size: 12px;
}

.checkout-step.checkout-step-payment .el-checkbox, .checkout-step.checkout-step-submit .el-checkbox {
  margin-bottom: 0;
}

.checkout-step.checkout-step-payment .el-checkbox .el-checkbox__inner, .checkout-step.checkout-step-submit .el-checkbox .el-checkbox__inner {
  border-color: inherit;
}

.checkout-widget {
  display: block;
  margin-bottom: 20px;
  padding: 30px 40px;
  background-color: #f6f6f6;
}

.checkout-widget input, .checkout-widget textarea, .checkout-widget select {
  margin-bottom: 10px;
  border-color: transparent;
  border-radius: 0;
  padding: 20px 20px;
}

.checkout-widget .checkout-widget-proceed {
  margin-top: 20px;
}

.checkout-widget .title.inactive {
  margin-bottom: 0;
  color: #606060;
}

.checkout-widget .title.inactive a {
  text-decoration: none;
  display: block;
}

.checkout-widget .edit-link {
  float: right;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .checkout-widget {
    padding: 20px 20px;
    margin-bottom: 11px;
  }
  .checkout-widget .title {
    font-size: 1rem;
  }
}
.checkout-widget-addresses .el-checkbox__inner {
  border: 1px solid #909399 !important;
}

.checkout-widget-addresses .el-checkbox__label {
  font-size: 16px;
}

.checkout-widget-addresses p {
  padding-left: 40px;
  font-size: 14px;
}

.checkout-step-data {
  padding: 10px 40px 30px;
}

.checkout-step-data p {
  margin: 0;
}

.checkout-card-number {
  background: white;
  padding: 20px;
  margin-bottom: 11px;
}

@media (max-width: 767.98px) {
  .checkout-order {
    padding: 30px 0 0;
  }
  .checkout-order h5 {
    font-size: 1rem;
  }
  .checkout-order hr {
    margin: 20px 0;
  }
  .checkout-confirmation .title {
    font-size: 1.1rem;
  }
  .checkout-confirmation p {
    font-size: 0.9rem;
  }
}
.products-api-maintenance {
  position: relative;
  color: #FFCB31;
  font-weight: 600;
  margin: 20px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .products-api-maintenance {
    margin-top: 0;
  }
}
.checkout-note a {
  text-decoration: underline;
}

.el-checkbox.is-checked .el-checkbox__label a {
  transition: none;
  color: #FFCB31;
}

[v-cloak] {
  display: none !important;
}

/*! purgecss end ignore */
