@charset "UTF-8";
/*
Basic styles
==================================================
Contains the imports to all basic styles.

The file organization follows the 7-1 pattern architecture
https://sass-guidelin.es/#the-7-1-pattern

@sw-package framework
*/
/*
 * Variables, Mixins, Functions
 * ---------------------------- */
/*
Helper function to check for active feature flags.
==================================================
The `$sw-features` variable contains a SCSS map of the current feature config.
The variable is injected automatically via ThemeCompiler.php and webpack.config.js.

@sw-package fundamentals@framework

Example:
@if feature('FEATURE_NEXT_1234') {
    // ...
}
*/
/*
Variables
==================================================
Import of all variables.

@sw-package framework
*/
/*
Bootstrap variables
==================================================
Contains all overrides of bootstrap default variables.

https://getbootstrap.com/docs/5.2/customize/sass/#variable-defaults

@sw-package framework
*/
/*
Skin variables
==================================================
Contains the imports to all variables that the Shopware skin uses.

@sw-package framework
*/
/*
Theme config variables
==================================================
Contains all custom shopware theme sw-variables.

@sw-package framework
*/
/*
Bootstrap variables
==================================================
Contains all overrides of bootstrap default variables.

https://getbootstrap.com/docs/5.2/customize/sass/#variable-defaults

@sw-package framework
*/
/*
Custom variables
==================================================
Contains custom non bootstrap variables.

@sw-package framework
*/
/*
Custom variables
==================================================
Contains custom non bootstrap variables.

@sw-package framework
*/
/*
Mixin for multiline text truncate
==================================================
@sw-package framework
*/
/*
 * Skin variables
 * ---------- */
/*
 * Vendors
 * ------- */
/*
Bootstrap
==================================================
Import of bootstrap vendor.

https://getbootstrap.com/docs/5.2/getting-started/introduction

@sw-package framework
*/
/*!
   * Bootstrap  v5.3.3 (https://getbootstrap.com/)
   * Copyright 2011-2024 The Bootstrap Authors
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   */
:root, [data-bs-theme="light"] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #59c0cc;
  --bs-secondary: #f191ae;
  --bs-success: #28a745;
  --bs-info: #17a2b8;
  --bs-warning: #ffc107;
  --bs-danger: #f80000;
  --bs-light: #f1ead6;
  --bs-dark: #313131;
  --bs-accent-primary: #ced8de;
  --bs-accent-secondary: #78929d;
  --bs-primary-rgb: 89, 192, 204;
  --bs-secondary-rgb: 241, 145, 174;
  --bs-success-rgb: 40, 167, 69;
  --bs-info-rgb: 23, 162, 184;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 248, 0, 0;
  --bs-light-rgb: 241, 234, 214;
  --bs-dark-rgb: 49, 49, 49;
  --bs-accent-primary-rgb: 206, 216, 222;
  --bs-accent-secondary-rgb: 120, 146, 157;
  --bs-primary-text-emphasis: #244d52;
  --bs-secondary-text-emphasis: #603a46;
  --bs-success-text-emphasis: #10431c;
  --bs-info-text-emphasis: #09414a;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #630000;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #def2f5;
  --bs-secondary-bg-subtle: #fce9ef;
  --bs-success-bg-subtle: #d4edda;
  --bs-info-bg-subtle: #d1ecf1;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #fecccc;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #bde6eb;
  --bs-secondary-border-subtle: #f9d3df;
  --bs-success-border-subtle: #a9dcb5;
  --bs-info-border-subtle: #a2dae3;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #fc9999;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: "Barlow Condensed", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #1f3e4f;
  --bs-body-color-rgb: 31, 62, 79;
  --bs-body-bg: #f5f2f0;
  --bs-body-bg-rgb: 245, 242, 240;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: #1f3e4f;
  --bs-secondary-color-rgb: 31, 62, 79;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(31, 62, 79, 0.5);
  --bs-tertiary-color-rgb: 31, 62, 79;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: #1f3e4f;
  --bs-link-color: #1f3e4f;
  --bs-link-color-rgb: 31, 62, 79;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #1f3e4f;
  --bs-link-hover-color-rgb: 31, 62, 79;
  --bs-link-hover-decoration: underline;
  --bs-code-color: #d63384;
  --bs-highlight-color: #1f3e4f;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #ced8de;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.8rem;
  --bs-border-radius-sm: 0.4rem;
  --bs-border-radius-lg: 0.9rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.35;
  --bs-focus-ring-color: rgba(89, 192, 204, 0.35);
  --bs-form-valid-color: #28a745;
  --bs-form-valid-border-color: #28a745;
  --bs-form-invalid-color: #f80000;
  --bs-form-invalid-border-color: #f80000;
}
[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #9bd9e0;
  --bs-secondary-text-emphasis: #f7bdce;
  --bs-success-text-emphasis: #7eca8f;
  --bs-info-text-emphasis: #74c7d4;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #fb6666;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #122629;
  --bs-secondary-bg-subtle: #301d23;
  --bs-success-bg-subtle: #08210e;
  --bs-info-bg-subtle: #052025;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #320000;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #35737a;
  --bs-secondary-border-subtle: #915768;
  --bs-success-border-subtle: #186429;
  --bs-info-border-subtle: #0e616e;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #950000;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #9bd9e0;
  --bs-link-hover-color: #afe1e6;
  --bs-link-color-rgb: 155, 217, 224;
  --bs-link-hover-color-rgb: 175, 225, 230;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}
*, *::before, *::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bs-heading-color);
}
h1, .h1 {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.25rem;
  }
}
h2, .h2 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 1.75rem;
  }
}
h3, .h3 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}
h4, .h4 {
  font-size: 1.25rem;
}
h5, .h5 {
  font-size: 1rem;
}
h6, .h6 {
  font-size: 0.875rem;
}
p {
  margin-top: 0;
  margin-bottom: 2rem;
}
abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol, ul {
  padding-left: 2rem;
}
ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b, strong {
  font-weight: bolder;
}
small, .small {
  font-size: 0.875em;
}
mark, .mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}
sub, sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
  text-decoration: underline;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre, code, kbd, samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: #ffffff;
  background-color: var(--bs-body-color);
  border-radius: 0.4rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}
figure {
  margin: 0 0 1rem;
}
img, svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}
th {
  font-weight: 500;
  text-align: inherit;
  text-align: -webkit-match-parent;
}
thead, tbody, tfoot, tr, td, th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button, select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
iframe {
  border: 0;
}
summary {
  display: list-item;
  cursor: pointer;
}
progress {
  vertical-align: baseline;
}
[hidden] {
  display: none !important;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}
.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}
.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}
.container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container, .cms-section .boxed, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .cms-section .boxed, .container-sm, .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .cms-section .boxed, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .cms-section .boxed, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .cms-section .boxed, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container, .cms-section .boxed, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl {
    max-width: 1560px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
  --bs-breakpoint-xxxl: 1600px;
}
.row, .is-act-cartpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-confirmpage .checkout .checkout-container, .is-ctl-accountorder .checkout .checkout-container, .is-act-finishpage .checkout .checkout-container {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > *, .is-act-cartpage .checkout .checkout-container > *, .is-act-checkoutregisterpage .checkout .checkout-container > *, .is-act-confirmpage .checkout .checkout-container > *, .is-ctl-accountorder .checkout .checkout-container > *, .is-act-finishpage .checkout .checkout-container > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
.grid {
  display: grid;
  grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
  grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
  gap: var(--bs-gap, 40px);
}
.grid .g-col-1 {
  grid-column: auto / span 1;
}
.grid .g-col-2 {
  grid-column: auto / span 2;
}
.grid .g-col-3 {
  grid-column: auto / span 3;
}
.grid .g-col-4 {
  grid-column: auto / span 4;
}
.grid .g-col-5 {
  grid-column: auto / span 5;
}
.grid .g-col-6 {
  grid-column: auto / span 6;
}
.grid .g-col-7 {
  grid-column: auto / span 7;
}
.grid .g-col-8 {
  grid-column: auto / span 8;
}
.grid .g-col-9 {
  grid-column: auto / span 9;
}
.grid .g-col-10 {
  grid-column: auto / span 10;
}
.grid .g-col-11 {
  grid-column: auto / span 11;
}
.grid .g-col-12 {
  grid-column: auto / span 12;
}
.grid .g-start-1 {
  grid-column-start: 1;
}
.grid .g-start-2 {
  grid-column-start: 2;
}
.grid .g-start-3 {
  grid-column-start: 3;
}
.grid .g-start-4 {
  grid-column-start: 4;
}
.grid .g-start-5 {
  grid-column-start: 5;
}
.grid .g-start-6 {
  grid-column-start: 6;
}
.grid .g-start-7 {
  grid-column-start: 7;
}
.grid .g-start-8 {
  grid-column-start: 8;
}
.grid .g-start-9 {
  grid-column-start: 9;
}
.grid .g-start-10 {
  grid-column-start: 10;
}
.grid .g-start-11 {
  grid-column-start: 11;
}
@media (min-width: 576px) {
  .grid .g-col-sm-1 {
    grid-column: auto / span 1;
  }
  .grid .g-col-sm-2 {
    grid-column: auto / span 2;
  }
  .grid .g-col-sm-3 {
    grid-column: auto / span 3;
  }
  .grid .g-col-sm-4 {
    grid-column: auto / span 4;
  }
  .grid .g-col-sm-5 {
    grid-column: auto / span 5;
  }
  .grid .g-col-sm-6 {
    grid-column: auto / span 6;
  }
  .grid .g-col-sm-7 {
    grid-column: auto / span 7;
  }
  .grid .g-col-sm-8 {
    grid-column: auto / span 8;
  }
  .grid .g-col-sm-9 {
    grid-column: auto / span 9;
  }
  .grid .g-col-sm-10 {
    grid-column: auto / span 10;
  }
  .grid .g-col-sm-11 {
    grid-column: auto / span 11;
  }
  .grid .g-col-sm-12 {
    grid-column: auto / span 12;
  }
  .grid .g-start-sm-1 {
    grid-column-start: 1;
  }
  .grid .g-start-sm-2 {
    grid-column-start: 2;
  }
  .grid .g-start-sm-3 {
    grid-column-start: 3;
  }
  .grid .g-start-sm-4 {
    grid-column-start: 4;
  }
  .grid .g-start-sm-5 {
    grid-column-start: 5;
  }
  .grid .g-start-sm-6 {
    grid-column-start: 6;
  }
  .grid .g-start-sm-7 {
    grid-column-start: 7;
  }
  .grid .g-start-sm-8 {
    grid-column-start: 8;
  }
  .grid .g-start-sm-9 {
    grid-column-start: 9;
  }
  .grid .g-start-sm-10 {
    grid-column-start: 10;
  }
  .grid .g-start-sm-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 768px) {
  .grid .g-col-md-1 {
    grid-column: auto / span 1;
  }
  .grid .g-col-md-2 {
    grid-column: auto / span 2;
  }
  .grid .g-col-md-3 {
    grid-column: auto / span 3;
  }
  .grid .g-col-md-4 {
    grid-column: auto / span 4;
  }
  .grid .g-col-md-5 {
    grid-column: auto / span 5;
  }
  .grid .g-col-md-6 {
    grid-column: auto / span 6;
  }
  .grid .g-col-md-7 {
    grid-column: auto / span 7;
  }
  .grid .g-col-md-8 {
    grid-column: auto / span 8;
  }
  .grid .g-col-md-9 {
    grid-column: auto / span 9;
  }
  .grid .g-col-md-10 {
    grid-column: auto / span 10;
  }
  .grid .g-col-md-11 {
    grid-column: auto / span 11;
  }
  .grid .g-col-md-12 {
    grid-column: auto / span 12;
  }
  .grid .g-start-md-1 {
    grid-column-start: 1;
  }
  .grid .g-start-md-2 {
    grid-column-start: 2;
  }
  .grid .g-start-md-3 {
    grid-column-start: 3;
  }
  .grid .g-start-md-4 {
    grid-column-start: 4;
  }
  .grid .g-start-md-5 {
    grid-column-start: 5;
  }
  .grid .g-start-md-6 {
    grid-column-start: 6;
  }
  .grid .g-start-md-7 {
    grid-column-start: 7;
  }
  .grid .g-start-md-8 {
    grid-column-start: 8;
  }
  .grid .g-start-md-9 {
    grid-column-start: 9;
  }
  .grid .g-start-md-10 {
    grid-column-start: 10;
  }
  .grid .g-start-md-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 992px) {
  .grid .g-col-lg-1 {
    grid-column: auto / span 1;
  }
  .grid .g-col-lg-2 {
    grid-column: auto / span 2;
  }
  .grid .g-col-lg-3 {
    grid-column: auto / span 3;
  }
  .grid .g-col-lg-4 {
    grid-column: auto / span 4;
  }
  .grid .g-col-lg-5 {
    grid-column: auto / span 5;
  }
  .grid .g-col-lg-6 {
    grid-column: auto / span 6;
  }
  .grid .g-col-lg-7 {
    grid-column: auto / span 7;
  }
  .grid .g-col-lg-8 {
    grid-column: auto / span 8;
  }
  .grid .g-col-lg-9 {
    grid-column: auto / span 9;
  }
  .grid .g-col-lg-10 {
    grid-column: auto / span 10;
  }
  .grid .g-col-lg-11 {
    grid-column: auto / span 11;
  }
  .grid .g-col-lg-12 {
    grid-column: auto / span 12;
  }
  .grid .g-start-lg-1 {
    grid-column-start: 1;
  }
  .grid .g-start-lg-2 {
    grid-column-start: 2;
  }
  .grid .g-start-lg-3 {
    grid-column-start: 3;
  }
  .grid .g-start-lg-4 {
    grid-column-start: 4;
  }
  .grid .g-start-lg-5 {
    grid-column-start: 5;
  }
  .grid .g-start-lg-6 {
    grid-column-start: 6;
  }
  .grid .g-start-lg-7 {
    grid-column-start: 7;
  }
  .grid .g-start-lg-8 {
    grid-column-start: 8;
  }
  .grid .g-start-lg-9 {
    grid-column-start: 9;
  }
  .grid .g-start-lg-10 {
    grid-column-start: 10;
  }
  .grid .g-start-lg-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1200px) {
  .grid .g-col-xl-1 {
    grid-column: auto / span 1;
  }
  .grid .g-col-xl-2 {
    grid-column: auto / span 2;
  }
  .grid .g-col-xl-3 {
    grid-column: auto / span 3;
  }
  .grid .g-col-xl-4 {
    grid-column: auto / span 4;
  }
  .grid .g-col-xl-5 {
    grid-column: auto / span 5;
  }
  .grid .g-col-xl-6 {
    grid-column: auto / span 6;
  }
  .grid .g-col-xl-7 {
    grid-column: auto / span 7;
  }
  .grid .g-col-xl-8 {
    grid-column: auto / span 8;
  }
  .grid .g-col-xl-9 {
    grid-column: auto / span 9;
  }
  .grid .g-col-xl-10 {
    grid-column: auto / span 10;
  }
  .grid .g-col-xl-11 {
    grid-column: auto / span 11;
  }
  .grid .g-col-xl-12 {
    grid-column: auto / span 12;
  }
  .grid .g-start-xl-1 {
    grid-column-start: 1;
  }
  .grid .g-start-xl-2 {
    grid-column-start: 2;
  }
  .grid .g-start-xl-3 {
    grid-column-start: 3;
  }
  .grid .g-start-xl-4 {
    grid-column-start: 4;
  }
  .grid .g-start-xl-5 {
    grid-column-start: 5;
  }
  .grid .g-start-xl-6 {
    grid-column-start: 6;
  }
  .grid .g-start-xl-7 {
    grid-column-start: 7;
  }
  .grid .g-start-xl-8 {
    grid-column-start: 8;
  }
  .grid .g-start-xl-9 {
    grid-column-start: 9;
  }
  .grid .g-start-xl-10 {
    grid-column-start: 10;
  }
  .grid .g-start-xl-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1400px) {
  .grid .g-col-xxl-1 {
    grid-column: auto / span 1;
  }
  .grid .g-col-xxl-2 {
    grid-column: auto / span 2;
  }
  .grid .g-col-xxl-3 {
    grid-column: auto / span 3;
  }
  .grid .g-col-xxl-4 {
    grid-column: auto / span 4;
  }
  .grid .g-col-xxl-5 {
    grid-column: auto / span 5;
  }
  .grid .g-col-xxl-6 {
    grid-column: auto / span 6;
  }
  .grid .g-col-xxl-7 {
    grid-column: auto / span 7;
  }
  .grid .g-col-xxl-8 {
    grid-column: auto / span 8;
  }
  .grid .g-col-xxl-9 {
    grid-column: auto / span 9;
  }
  .grid .g-col-xxl-10 {
    grid-column: auto / span 10;
  }
  .grid .g-col-xxl-11 {
    grid-column: auto / span 11;
  }
  .grid .g-col-xxl-12 {
    grid-column: auto / span 12;
  }
  .grid .g-start-xxl-1 {
    grid-column-start: 1;
  }
  .grid .g-start-xxl-2 {
    grid-column-start: 2;
  }
  .grid .g-start-xxl-3 {
    grid-column-start: 3;
  }
  .grid .g-start-xxl-4 {
    grid-column-start: 4;
  }
  .grid .g-start-xxl-5 {
    grid-column-start: 5;
  }
  .grid .g-start-xxl-6 {
    grid-column-start: 6;
  }
  .grid .g-start-xxl-7 {
    grid-column-start: 7;
  }
  .grid .g-start-xxl-8 {
    grid-column-start: 8;
  }
  .grid .g-start-xxl-9 {
    grid-column-start: 9;
  }
  .grid .g-start-xxl-10 {
    grid-column-start: 10;
  }
  .grid .g-start-xxl-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1600px) {
  .grid .g-col-xxxl-1 {
    grid-column: auto / span 1;
  }
  .grid .g-col-xxxl-2 {
    grid-column: auto / span 2;
  }
  .grid .g-col-xxxl-3 {
    grid-column: auto / span 3;
  }
  .grid .g-col-xxxl-4 {
    grid-column: auto / span 4;
  }
  .grid .g-col-xxxl-5 {
    grid-column: auto / span 5;
  }
  .grid .g-col-xxxl-6 {
    grid-column: auto / span 6;
  }
  .grid .g-col-xxxl-7 {
    grid-column: auto / span 7;
  }
  .grid .g-col-xxxl-8 {
    grid-column: auto / span 8;
  }
  .grid .g-col-xxxl-9 {
    grid-column: auto / span 9;
  }
  .grid .g-col-xxxl-10 {
    grid-column: auto / span 10;
  }
  .grid .g-col-xxxl-11 {
    grid-column: auto / span 11;
  }
  .grid .g-col-xxxl-12 {
    grid-column: auto / span 12;
  }
  .grid .g-start-xxxl-1 {
    grid-column-start: 1;
  }
  .grid .g-start-xxxl-2 {
    grid-column-start: 2;
  }
  .grid .g-start-xxxl-3 {
    grid-column-start: 3;
  }
  .grid .g-start-xxxl-4 {
    grid-column-start: 4;
  }
  .grid .g-start-xxxl-5 {
    grid-column-start: 5;
  }
  .grid .g-start-xxxl-6 {
    grid-column-start: 6;
  }
  .grid .g-start-xxxl-7 {
    grid-column-start: 7;
  }
  .grid .g-start-xxxl-8 {
    grid-column-start: 8;
  }
  .grid .g-start-xxxl-9 {
    grid-column-start: 9;
  }
  .grid .g-start-xxxl-10 {
    grid-column-start: 10;
  }
  .grid .g-start-xxxl-11 {
    grid-column-start: 11;
  }
}
.col, .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-act-finishpage .checkout .checkout-aside {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
.g-0, .gx-0 {
  --bs-gutter-x: 0;
}
.g-0, .gy-0 {
  --bs-gutter-y: 0;
}
.g-1, .gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1, .gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2, .gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2, .gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3, .gx-3 {
  --bs-gutter-x: 0.75rem;
}
.g-3, .gy-3 {
  --bs-gutter-y: 0.75rem;
}
.g-4, .gx-4 {
  --bs-gutter-x: 1rem;
}
.g-4, .gy-4 {
  --bs-gutter-y: 1rem;
}
.g-5, .gx-5 {
  --bs-gutter-x: 1.25rem;
}
.g-5, .gy-5 {
  --bs-gutter-y: 1.25rem;
}
.g-6, .gx-6 {
  --bs-gutter-x: 1.5rem;
}
.g-6, .gy-6 {
  --bs-gutter-y: 1.5rem;
}
.g-7, .gx-7 {
  --bs-gutter-x: 2rem;
}
.g-7, .gy-7 {
  --bs-gutter-y: 2rem;
}
.g-8, .gx-8 {
  --bs-gutter-x: 2.5rem;
}
.g-8, .gy-8 {
  --bs-gutter-y: 2.5rem;
}
.g-9, .gx-9 {
  --bs-gutter-x: 3rem;
}
.g-9, .gy-9 {
  --bs-gutter-y: 3rem;
}
.g-10, .gx-10 {
  --bs-gutter-x: 3.5rem;
}
.g-10, .gy-10 {
  --bs-gutter-y: 3.5rem;
}
.g-11, .gx-11 {
  --bs-gutter-x: 4rem;
}
.g-11, .gy-11 {
  --bs-gutter-y: 4rem;
}
.g-12, .gx-12 {
  --bs-gutter-x: 4.5rem;
}
.g-12, .gy-12 {
  --bs-gutter-y: 4.5rem;
}
.g-13, .gx-13 {
  --bs-gutter-x: 5rem;
}
.g-13, .gy-13 {
  --bs-gutter-y: 5rem;
}
.g-14, .gx-14 {
  --bs-gutter-x: 5.5rem;
}
.g-14, .gy-14 {
  --bs-gutter-y: 5.5rem;
}
.g-15, .gx-15 {
  --bs-gutter-x: 6rem;
}
.g-15, .gy-15 {
  --bs-gutter-y: 6rem;
}
.g-16, .gx-16 {
  --bs-gutter-x: 7rem;
}
.g-16, .gy-16 {
  --bs-gutter-y: 7rem;
}
.g-17, .gx-17 {
  --bs-gutter-x: 8rem;
}
.g-17, .gy-17 {
  --bs-gutter-y: 8rem;
}
.g-18, .gx-18 {
  --bs-gutter-x: 9rem;
}
.g-18, .gy-18 {
  --bs-gutter-y: 9rem;
}
.g-19, .gx-19 {
  --bs-gutter-x: 10rem;
}
.g-19, .gy-19 {
  --bs-gutter-y: 10rem;
}
.g-20, .gx-20 {
  --bs-gutter-x: 12rem;
}
.g-20, .gy-20 {
  --bs-gutter-y: 12rem;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6, .is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7, .is-act-finishpage .checkout .checkout-additional, .is-act-finishpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5, .is-act-finishpage .checkout .checkout-aside {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0, .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0, .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1, .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1, .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2, .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2, .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3, .gx-sm-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-sm-3, .gy-sm-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-sm-4, .gx-sm-4 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-4, .gy-sm-4 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-5, .gx-sm-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-sm-5, .gy-sm-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-sm-6, .gx-sm-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-6, .gy-sm-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-7, .gx-sm-7 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-7, .gy-sm-7 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-8, .gx-sm-8 {
    --bs-gutter-x: 2.5rem;
  }
  .g-sm-8, .gy-sm-8 {
    --bs-gutter-y: 2.5rem;
  }
  .g-sm-9, .gx-sm-9 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-9, .gy-sm-9 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-10, .gx-sm-10 {
    --bs-gutter-x: 3.5rem;
  }
  .g-sm-10, .gy-sm-10 {
    --bs-gutter-y: 3.5rem;
  }
  .g-sm-11, .gx-sm-11 {
    --bs-gutter-x: 4rem;
  }
  .g-sm-11, .gy-sm-11 {
    --bs-gutter-y: 4rem;
  }
  .g-sm-12, .gx-sm-12 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-12, .gy-sm-12 {
    --bs-gutter-y: 4.5rem;
  }
  .g-sm-13, .gx-sm-13 {
    --bs-gutter-x: 5rem;
  }
  .g-sm-13, .gy-sm-13 {
    --bs-gutter-y: 5rem;
  }
  .g-sm-14, .gx-sm-14 {
    --bs-gutter-x: 5.5rem;
  }
  .g-sm-14, .gy-sm-14 {
    --bs-gutter-y: 5.5rem;
  }
  .g-sm-15, .gx-sm-15 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-15, .gy-sm-15 {
    --bs-gutter-y: 6rem;
  }
  .g-sm-16, .gx-sm-16 {
    --bs-gutter-x: 7rem;
  }
  .g-sm-16, .gy-sm-16 {
    --bs-gutter-y: 7rem;
  }
  .g-sm-17, .gx-sm-17 {
    --bs-gutter-x: 8rem;
  }
  .g-sm-17, .gy-sm-17 {
    --bs-gutter-y: 8rem;
  }
  .g-sm-18, .gx-sm-18 {
    --bs-gutter-x: 9rem;
  }
  .g-sm-18, .gy-sm-18 {
    --bs-gutter-y: 9rem;
  }
  .g-sm-19, .gx-sm-19 {
    --bs-gutter-x: 10rem;
  }
  .g-sm-19, .gy-sm-19 {
    --bs-gutter-y: 10rem;
  }
  .g-sm-20, .gx-sm-20 {
    --bs-gutter-x: 12rem;
  }
  .g-sm-20, .gy-sm-20 {
    --bs-gutter-y: 12rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4, .is-act-checkoutregisterpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5, .is-act-cartpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6, .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-act-finishpage .checkout .checkout-additional, .is-act-finishpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6, .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-act-finishpage .checkout .checkout-aside {
    margin-left: 50%;
  }
  .offset-md-7, .is-act-cartpage .checkout .checkout-aside {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0, .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0, .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1, .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1, .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2, .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2, .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3, .gx-md-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-md-3, .gy-md-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-md-4, .gx-md-4 {
    --bs-gutter-x: 1rem;
  }
  .g-md-4, .gy-md-4 {
    --bs-gutter-y: 1rem;
  }
  .g-md-5, .gx-md-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-md-5, .gy-md-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-md-6, .gx-md-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-6, .gy-md-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-7, .gx-md-7 {
    --bs-gutter-x: 2rem;
  }
  .g-md-7, .gy-md-7 {
    --bs-gutter-y: 2rem;
  }
  .g-md-8, .gx-md-8 {
    --bs-gutter-x: 2.5rem;
  }
  .g-md-8, .gy-md-8 {
    --bs-gutter-y: 2.5rem;
  }
  .g-md-9, .gx-md-9 {
    --bs-gutter-x: 3rem;
  }
  .g-md-9, .gy-md-9 {
    --bs-gutter-y: 3rem;
  }
  .g-md-10, .gx-md-10 {
    --bs-gutter-x: 3.5rem;
  }
  .g-md-10, .gy-md-10 {
    --bs-gutter-y: 3.5rem;
  }
  .g-md-11, .gx-md-11 {
    --bs-gutter-x: 4rem;
  }
  .g-md-11, .gy-md-11 {
    --bs-gutter-y: 4rem;
  }
  .g-md-12, .gx-md-12 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-12, .gy-md-12 {
    --bs-gutter-y: 4.5rem;
  }
  .g-md-13, .gx-md-13 {
    --bs-gutter-x: 5rem;
  }
  .g-md-13, .gy-md-13 {
    --bs-gutter-y: 5rem;
  }
  .g-md-14, .gx-md-14 {
    --bs-gutter-x: 5.5rem;
  }
  .g-md-14, .gy-md-14 {
    --bs-gutter-y: 5.5rem;
  }
  .g-md-15, .gx-md-15 {
    --bs-gutter-x: 6rem;
  }
  .g-md-15, .gy-md-15 {
    --bs-gutter-y: 6rem;
  }
  .g-md-16, .gx-md-16 {
    --bs-gutter-x: 7rem;
  }
  .g-md-16, .gy-md-16 {
    --bs-gutter-y: 7rem;
  }
  .g-md-17, .gx-md-17 {
    --bs-gutter-x: 8rem;
  }
  .g-md-17, .gy-md-17 {
    --bs-gutter-y: 8rem;
  }
  .g-md-18, .gx-md-18 {
    --bs-gutter-x: 9rem;
  }
  .g-md-18, .gy-md-18 {
    --bs-gutter-y: 9rem;
  }
  .g-md-19, .gx-md-19 {
    --bs-gutter-x: 10rem;
  }
  .g-md-19, .gy-md-19 {
    --bs-gutter-y: 10rem;
  }
  .g-md-20, .gx-md-20 {
    --bs-gutter-x: 12rem;
  }
  .g-md-20, .gy-md-20 {
    --bs-gutter-y: 12rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4, .is-act-cartpage .checkout .checkout-aside, .is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional, .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-act-finishpage .checkout .checkout-additional, .is-act-finishpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8, .is-act-cartpage .checkout .checkout-main, .is-act-checkoutregisterpage .checkout .checkout-main, .is-act-confirmpage .checkout .checkout-main, .is-ctl-accountorder .checkout .checkout-main, .is-act-finishpage .checkout .checkout-main {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0, .is-act-cartpage .checkout .checkout-aside {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2, .is-act-confirmpage .checkout .checkout-main, .is-ctl-accountorder .checkout .checkout-main, .is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional, .is-act-finishpage .checkout .checkout-main, .is-act-finishpage .checkout .checkout-additional {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0, .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0, .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1, .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1, .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2, .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2, .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3, .gx-lg-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-lg-3, .gy-lg-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-lg-4, .gx-lg-4 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-4, .gy-lg-4 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-5, .gx-lg-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-lg-5, .gy-lg-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-lg-6, .gx-lg-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-6, .gy-lg-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-7, .gx-lg-7 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-7, .gy-lg-7 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-8, .gx-lg-8 {
    --bs-gutter-x: 2.5rem;
  }
  .g-lg-8, .gy-lg-8 {
    --bs-gutter-y: 2.5rem;
  }
  .g-lg-9, .gx-lg-9 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-9, .gy-lg-9 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-10, .gx-lg-10 {
    --bs-gutter-x: 3.5rem;
  }
  .g-lg-10, .gy-lg-10 {
    --bs-gutter-y: 3.5rem;
  }
  .g-lg-11, .gx-lg-11 {
    --bs-gutter-x: 4rem;
  }
  .g-lg-11, .gy-lg-11 {
    --bs-gutter-y: 4rem;
  }
  .g-lg-12, .gx-lg-12 {
    --bs-gutter-x: 4.5rem;
  }
  .g-lg-12, .gy-lg-12 {
    --bs-gutter-y: 4.5rem;
  }
  .g-lg-13, .gx-lg-13 {
    --bs-gutter-x: 5rem;
  }
  .g-lg-13, .gy-lg-13 {
    --bs-gutter-y: 5rem;
  }
  .g-lg-14, .gx-lg-14 {
    --bs-gutter-x: 5.5rem;
  }
  .g-lg-14, .gy-lg-14 {
    --bs-gutter-y: 5.5rem;
  }
  .g-lg-15, .gx-lg-15 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-15, .gy-lg-15 {
    --bs-gutter-y: 6rem;
  }
  .g-lg-16, .gx-lg-16 {
    --bs-gutter-x: 7rem;
  }
  .g-lg-16, .gy-lg-16 {
    --bs-gutter-y: 7rem;
  }
  .g-lg-17, .gx-lg-17 {
    --bs-gutter-x: 8rem;
  }
  .g-lg-17, .gy-lg-17 {
    --bs-gutter-y: 8rem;
  }
  .g-lg-18, .gx-lg-18 {
    --bs-gutter-x: 9rem;
  }
  .g-lg-18, .gy-lg-18 {
    --bs-gutter-y: 9rem;
  }
  .g-lg-19, .gx-lg-19 {
    --bs-gutter-x: 10rem;
  }
  .g-lg-19, .gy-lg-19 {
    --bs-gutter-y: 10rem;
  }
  .g-lg-20, .gx-lg-20 {
    --bs-gutter-x: 12rem;
  }
  .g-lg-20, .gy-lg-20 {
    --bs-gutter-y: 12rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4, .is-act-cartpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0, .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0, .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1, .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1, .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2, .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2, .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3, .gx-xl-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xl-3, .gy-xl-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xl-4, .gx-xl-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-4, .gy-xl-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-5, .gx-xl-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xl-5, .gy-xl-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xl-6, .gx-xl-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-6, .gy-xl-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-7, .gx-xl-7 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-7, .gy-xl-7 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-8, .gx-xl-8 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xl-8, .gy-xl-8 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xl-9, .gx-xl-9 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-9, .gy-xl-9 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-10, .gx-xl-10 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xl-10, .gy-xl-10 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xl-11, .gx-xl-11 {
    --bs-gutter-x: 4rem;
  }
  .g-xl-11, .gy-xl-11 {
    --bs-gutter-y: 4rem;
  }
  .g-xl-12, .gx-xl-12 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-12, .gy-xl-12 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xl-13, .gx-xl-13 {
    --bs-gutter-x: 5rem;
  }
  .g-xl-13, .gy-xl-13 {
    --bs-gutter-y: 5rem;
  }
  .g-xl-14, .gx-xl-14 {
    --bs-gutter-x: 5.5rem;
  }
  .g-xl-14, .gy-xl-14 {
    --bs-gutter-y: 5.5rem;
  }
  .g-xl-15, .gx-xl-15 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-15, .gy-xl-15 {
    --bs-gutter-y: 6rem;
  }
  .g-xl-16, .gx-xl-16 {
    --bs-gutter-x: 7rem;
  }
  .g-xl-16, .gy-xl-16 {
    --bs-gutter-y: 7rem;
  }
  .g-xl-17, .gx-xl-17 {
    --bs-gutter-x: 8rem;
  }
  .g-xl-17, .gy-xl-17 {
    --bs-gutter-y: 8rem;
  }
  .g-xl-18, .gx-xl-18 {
    --bs-gutter-x: 9rem;
  }
  .g-xl-18, .gy-xl-18 {
    --bs-gutter-y: 9rem;
  }
  .g-xl-19, .gx-xl-19 {
    --bs-gutter-x: 10rem;
  }
  .g-xl-19, .gy-xl-19 {
    --bs-gutter-y: 10rem;
  }
  .g-xl-20, .gx-xl-20 {
    --bs-gutter-x: 12rem;
  }
  .g-xl-20, .gy-xl-20 {
    --bs-gutter-y: 12rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0, .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0, .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1, .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1, .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2, .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2, .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3, .gx-xxl-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xxl-3, .gy-xxl-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xxl-4, .gx-xxl-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-4, .gy-xxl-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-5, .gx-xxl-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xxl-5, .gy-xxl-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xxl-6, .gx-xxl-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-6, .gy-xxl-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-7, .gx-xxl-7 {
    --bs-gutter-x: 2rem;
  }
  .g-xxl-7, .gy-xxl-7 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-8, .gx-xxl-8 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxl-8, .gy-xxl-8 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxl-9, .gx-xxl-9 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-9, .gy-xxl-9 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-10, .gx-xxl-10 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xxl-10, .gy-xxl-10 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xxl-11, .gx-xxl-11 {
    --bs-gutter-x: 4rem;
  }
  .g-xxl-11, .gy-xxl-11 {
    --bs-gutter-y: 4rem;
  }
  .g-xxl-12, .gx-xxl-12 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxl-12, .gy-xxl-12 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xxl-13, .gx-xxl-13 {
    --bs-gutter-x: 5rem;
  }
  .g-xxl-13, .gy-xxl-13 {
    --bs-gutter-y: 5rem;
  }
  .g-xxl-14, .gx-xxl-14 {
    --bs-gutter-x: 5.5rem;
  }
  .g-xxl-14, .gy-xxl-14 {
    --bs-gutter-y: 5.5rem;
  }
  .g-xxl-15, .gx-xxl-15 {
    --bs-gutter-x: 6rem;
  }
  .g-xxl-15, .gy-xxl-15 {
    --bs-gutter-y: 6rem;
  }
  .g-xxl-16, .gx-xxl-16 {
    --bs-gutter-x: 7rem;
  }
  .g-xxl-16, .gy-xxl-16 {
    --bs-gutter-y: 7rem;
  }
  .g-xxl-17, .gx-xxl-17 {
    --bs-gutter-x: 8rem;
  }
  .g-xxl-17, .gy-xxl-17 {
    --bs-gutter-y: 8rem;
  }
  .g-xxl-18, .gx-xxl-18 {
    --bs-gutter-x: 9rem;
  }
  .g-xxl-18, .gy-xxl-18 {
    --bs-gutter-y: 9rem;
  }
  .g-xxl-19, .gx-xxl-19 {
    --bs-gutter-x: 10rem;
  }
  .g-xxl-19, .gy-xxl-19 {
    --bs-gutter-y: 10rem;
  }
  .g-xxl-20, .gx-xxl-20 {
    --bs-gutter-x: 12rem;
  }
  .g-xxl-20, .gy-xxl-20 {
    --bs-gutter-y: 12rem;
  }
}
@media (min-width: 1600px) {
  .col-xxxl {
    flex: 1 0 0%;
  }
  .row-cols-xxxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxxl-0, .gx-xxxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxxl-0, .gy-xxxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxxl-1, .gx-xxxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxxl-1, .gy-xxxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxxl-2, .gx-xxxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxxl-2, .gy-xxxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxxl-3, .gx-xxxl-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xxxl-3, .gy-xxxl-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xxxl-4, .gx-xxxl-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xxxl-4, .gy-xxxl-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xxxl-5, .gx-xxxl-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xxxl-5, .gy-xxxl-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xxxl-6, .gx-xxxl-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxxl-6, .gy-xxxl-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxxl-7, .gx-xxxl-7 {
    --bs-gutter-x: 2rem;
  }
  .g-xxxl-7, .gy-xxxl-7 {
    --bs-gutter-y: 2rem;
  }
  .g-xxxl-8, .gx-xxxl-8 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxxl-8, .gy-xxxl-8 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxxl-9, .gx-xxxl-9 {
    --bs-gutter-x: 3rem;
  }
  .g-xxxl-9, .gy-xxxl-9 {
    --bs-gutter-y: 3rem;
  }
  .g-xxxl-10, .gx-xxxl-10 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xxxl-10, .gy-xxxl-10 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xxxl-11, .gx-xxxl-11 {
    --bs-gutter-x: 4rem;
  }
  .g-xxxl-11, .gy-xxxl-11 {
    --bs-gutter-y: 4rem;
  }
  .g-xxxl-12, .gx-xxxl-12 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxxl-12, .gy-xxxl-12 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xxxl-13, .gx-xxxl-13 {
    --bs-gutter-x: 5rem;
  }
  .g-xxxl-13, .gy-xxxl-13 {
    --bs-gutter-y: 5rem;
  }
  .g-xxxl-14, .gx-xxxl-14 {
    --bs-gutter-x: 5.5rem;
  }
  .g-xxxl-14, .gy-xxxl-14 {
    --bs-gutter-y: 5.5rem;
  }
  .g-xxxl-15, .gx-xxxl-15 {
    --bs-gutter-x: 6rem;
  }
  .g-xxxl-15, .gy-xxxl-15 {
    --bs-gutter-y: 6rem;
  }
  .g-xxxl-16, .gx-xxxl-16 {
    --bs-gutter-x: 7rem;
  }
  .g-xxxl-16, .gy-xxxl-16 {
    --bs-gutter-y: 7rem;
  }
  .g-xxxl-17, .gx-xxxl-17 {
    --bs-gutter-x: 8rem;
  }
  .g-xxxl-17, .gy-xxxl-17 {
    --bs-gutter-y: 8rem;
  }
  .g-xxxl-18, .gx-xxxl-18 {
    --bs-gutter-x: 9rem;
  }
  .g-xxxl-18, .gy-xxxl-18 {
    --bs-gutter-y: 9rem;
  }
  .g-xxxl-19, .gx-xxxl-19 {
    --bs-gutter-x: 10rem;
  }
  .g-xxxl-19, .gy-xxxl-19 {
    --bs-gutter-y: 10rem;
  }
  .g-xxxl-20, .gx-xxxl-20 {
    --bs-gutter-x: 12rem;
  }
  .g-xxxl-20, .gy-xxxl-20 {
    --bs-gutter-y: 12rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: #ffffff;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: #f9f9f9;
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}
.caption-top {
  caption-side: top;
}
.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}
.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}
.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}
.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #def2f5;
  --bs-table-border-color: #b2c2c4;
  --bs-table-striped-bg: #d3e6e9;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c8dadd;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #cde0e3;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #fce9ef;
  --bs-table-border-color: #cababf;
  --bs-table-striped-bg: #efdde3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e3d2d7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e9d8dd;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d4edda;
  --bs-table-border-color: #aabeae;
  --bs-table-striped-bg: #c9e1cf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bfd5c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c4dbca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #d1ecf1;
  --bs-table-border-color: #a7bdc1;
  --bs-table-striped-bg: #c7e0e5;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd4d9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1dadf;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #ccc2a4;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #fecccc;
  --bs-table-border-color: #cba3a3;
  --bs-table-striped-bg: #f1c2c2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e5b8b8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ebbdbd;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f1ead6;
  --bs-table-border-color: #c1bbab;
  --bs-table-striped-bg: #e5decb;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d9d3c1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #dfd8c6;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #313131;
  --bs-table-border-color: #5a5a5a;
  --bs-table-striped-bg: #3b3b3b;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #464646;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #404040;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1599.98px) {
  .table-responsive-xxxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 3px;
}
.col-form-label {
  padding-top: calc(0.438rem + var(--bs-border-width));
  padding-bottom: calc(0.438rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}
.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: rgba(31, 62, 79, 0.5);
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.438rem 0.5625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
  appearance: none;
  background-color: transparent;
  background-clip: padding-box;
  border: var(--bs-border-width) solid #ced8de;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type="file"] {
  overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: inherit;
  background-color: transparent;
  border-color: #0042a0;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::placeholder {
  color: rgba(31, 62, 79, 0.5);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.438rem 0.5625rem;
  margin: calc(-0.438rem) calc(-0.5625rem);
  margin-inline-end: 0.5625rem;
  color: inherit;
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.438rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  min-height: calc(1.5 * 1em + 0.25rem * 2 + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: calc(-0.25rem) calc(-0.5rem);
  margin-inline-end: 0.5rem;
}
.form-control-lg {
  min-height: calc(1.5 * 1em + 0.5rem * 2 + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: calc(-0.5rem) calc(-1rem);
  margin-inline-end: 1rem;
}
textarea.form-control {
  min-height: calc(1.5 * 1em + 0.438rem * 2 + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5 * 1em + 0.25rem * 2 + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5 * 1em + 0.5rem * 2 + calc(var(--bs-border-width) * 2));
}
.form-control-color {
  width: 3rem;
  height: calc(1.5 * 1em + 0.438rem * 2 + calc(var(--bs-border-width) * 2));
  padding: 0.438rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.5 * 1em + 0.25rem * 2 + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5 * 1em + 0.5rem * 2 + calc(var(--bs-border-width) * 2));
}
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.438rem 1.6875rem 0.438rem 0.5625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
  appearance: none;
  background-color: transparent;
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.5625rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid #ced8de;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #0042a0;
  outline: 0;
  box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.5625rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 inherit;
}
.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
[data-bs-theme="dark"] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5rem;
}
.form-check-reverse {
  padding-right: 1.5rem;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5rem;
  margin-left: 0;
}
.form-check-input {
  --bs-form-check-bg: transparent;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  vertical-align: top;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #ced8de;
  print-color-adjust: exact;
  transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-check-input {
    transition: none;
  }
}
.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #0042a0;
  outline: 0;
  box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.form-check-input:checked {
  background-color: #59c0cc;
  border-color: #59c0cc;
}
.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
  background-color: #59c0cc;
  border-color: #59c0cc;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}
.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%230042a0'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}
.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .active-campaign-form form[id^="_form_"] .btn-check[disabled] + ._submit, .btn-check:disabled + .btn, .active-campaign-form form[id^="_form_"] .btn-check:disabled + ._submit {
  pointer-events: none;
  filter: none;
  opacity: 1;
}
[data-bs-theme="dark"] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f5f2f0, inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f5f2f0, inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  appearance: none;
  background-color: #59c0cc;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #cdecf0;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  appearance: none;
  background-color: #59c0cc;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #cdecf0;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}
.form-floating {
  position: relative;
}
.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 0.5625rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 1rem 0.5625rem;
}
.form-floating > .form-control::placeholder, .form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill, .form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label, .form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 0.28125rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: transparent;
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label, .form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}
.form-floating > :disabled ~ label::after, .form-floating > .form-control:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control, .input-group > .form-select, .input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus, .input-group > .form-select:focus, .input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn, .input-group .active-campaign-form form[id^="_form_"] ._submit, .active-campaign-form form[id^="_form_"] .input-group ._submit {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus, .input-group .active-campaign-form form[id^="_form_"] ._submit:focus, .active-campaign-form form[id^="_form_"] .input-group ._submit:focus {
  z-index: 5;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.438rem 0.5625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid #ced8de;
  border-radius: var(--bs-border-radius);
}
.input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text, .input-group-lg > .btn, .active-campaign-form form[id^="_form_"] .input-group-lg > ._submit {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text, .input-group-sm > .btn, .active-campaign-form form[id^="_form_"] .input-group-sm > ._submit {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.input-group-lg > .form-select, .input-group-sm > .form-select {
  padding-right: 2.25rem;
}
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4), .input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-control, .input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}
.was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip, .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.5 * 1em + 0.438rem * 2);
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='%233c6e64' stroke='%233c6e64' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill-rule='evenodd'%3e%3cpath d='M20.333 6.271 8.875 17.729l-5.208-5.208' fill='none'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(1.5 * 0.25em + (0.438rem * 0.5)) center;
  background-size: calc(1.5 * 0.5em + 0.438rem) calc(1.5 * 0.5em + 0.438rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.35);
}
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5 * 1em + 0.438rem * 2);
  background-position: top calc(1.5 * 0.25em + (0.438rem * 0.5)) right calc(1.5 * 0.25em + (0.438rem * 0.5));
}
.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='%233c6e64' stroke='%233c6e64' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill-rule='evenodd'%3e%3cpath d='M20.333 6.271 8.875 17.729l-5.208-5.208' fill='none'/%3e%3c/g%3e%3c/svg%3e");
  padding-right: 3.09375rem;
  background-position: right 0.5625rem center, center right 1.6875rem;
  background-size: 16px 12px, calc(1.5 * 0.5em + 0.438rem) calc(1.5 * 0.5em + 0.438rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.35);
}
.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5 * 1em + 0.438rem * 2));
}
.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.35);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}
.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}
.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .was-validated .input-group > .form-select:not(:focus):valid, .input-group > .form-select:not(:focus).is-valid, .was-validated .input-group > .form-floating:not(:focus-within):valid, .input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}
.was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip, .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5 * 1em + 0.438rem * 2);
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 32 32' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='%23f80000' stroke='%23f80000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill-rule='evenodd'%3e%3cpath d='m16 5.5-12.5 21 7.851-.219L28.5 26.5c-1.386-1.72-2.846-3.869-4.382-6.45C22.582 17.47 19.876 12.62 16 5.5Z' fill='none'/%3e%3cpath d='M16 22v.2M16 14l.005 4' fill='none'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(1.5 * 0.25em + (0.438rem * 0.5)) center;
  background-size: calc(1.5 * 0.5em + 0.438rem) calc(1.5 * 0.5em + 0.438rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.35);
}
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5 * 1em + 0.438rem * 2);
  background-position: top calc(1.5 * 0.25em + (0.438rem * 0.5)) right calc(1.5 * 0.25em + (0.438rem * 0.5));
}
.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg viewBox='0 0 32 32' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='%23f80000' stroke='%23f80000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill-rule='evenodd'%3e%3cpath d='m16 5.5-12.5 21 7.851-.219L28.5 26.5c-1.386-1.72-2.846-3.869-4.382-6.45C22.582 17.47 19.876 12.62 16 5.5Z' fill='none'/%3e%3cpath d='M16 22v.2M16 14l.005 4' fill='none'/%3e%3c/g%3e%3c/svg%3e");
  padding-right: 3.09375rem;
  background-position: right 0.5625rem center, center right 1.6875rem;
  background-size: 16px 12px, calc(1.5 * 0.5em + 0.438rem) calc(1.5 * 0.5em + 0.438rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.35);
}
.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5 * 1em + 0.438rem * 2));
}
.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.35);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}
.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}
.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .was-validated .input-group > .form-select:not(:focus):invalid, .input-group > .form-select:not(:focus).is-invalid, .was-validated .input-group > .form-floating:not(:focus-within):invalid, .input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}
.btn, .active-campaign-form form[id^="_form_"] ._submit {
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: calc(1rem - 1px);
  --bs-btn-font-family: Barlow Condensed, sans-serif;
  --bs-btn-font-size: 1.125rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 24px;
  --bs-btn-color: currentColor;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 100px;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-opacity: 1;
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn, .active-campaign-form form[id^="_form_"] ._submit {
    transition: none;
  }
}
.btn:hover, .active-campaign-form form[id^="_form_"] ._submit:hover {
  color: var(--bs-btn-hover-color);
  text-decoration: none;
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover, .active-campaign-form form[id^="_form_"] .btn-check + ._submit:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible, .active-campaign-form form[id^="_form_"] ._submit:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn, .active-campaign-form form[id^="_form_"] .btn-check:focus-visible + ._submit {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, .active-campaign-form form[id^="_form_"] .btn-check:checked + ._submit, :not(.btn-check) + .btn:active, .active-campaign-form form[id^="_form_"] :not(.btn-check) + ._submit:active, .btn:first-child:active, .active-campaign-form form[id^="_form_"] ._submit:first-child:active, .btn.active, .active-campaign-form form[id^="_form_"] .active._submit, .btn.show, .active-campaign-form form[id^="_form_"] .show._submit {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, .active-campaign-form form[id^="_form_"] .btn-check:checked + ._submit:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .active-campaign-form form[id^="_form_"] :not(.btn-check) + ._submit:active:focus-visible, .btn:first-child:active:focus-visible, .active-campaign-form form[id^="_form_"] ._submit:first-child:active:focus-visible, .btn.active:focus-visible, .active-campaign-form form[id^="_form_"] .active._submit:focus-visible, .btn.show:focus-visible, .active-campaign-form form[id^="_form_"] .show._submit:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn, .active-campaign-form form[id^="_form_"] .btn-check:checked:focus-visible + ._submit {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .active-campaign-form form[id^="_form_"] ._submit:disabled, .btn.disabled, .active-campaign-form form[id^="_form_"] .disabled._submit, fieldset:disabled .btn, fieldset:disabled .active-campaign-form form[id^="_form_"] ._submit, .active-campaign-form form[id^="_form_"] fieldset:disabled ._submit {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}
.btn-primary, .active-campaign-form form[id^="_form_"] ._submit {
  --bs-btn-color: #000;
  --bs-btn-bg: #59c0cc;
  --bs-btn-border-color: #59c0cc;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #72c9d4;
  --bs-btn-hover-border-color: #6ac6d1;
  --bs-btn-focus-shadow-rgb: 76, 163, 173;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #7acdd6;
  --bs-btn-active-border-color: #6ac6d1;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #59c0cc;
  --bs-btn-disabled-border-color: #59c0cc;
}
.btn-secondary {
  --bs-btn-color: #000;
  --bs-btn-bg: #f191ae;
  --bs-btn-border-color: #f191ae;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f3a2ba;
  --bs-btn-hover-border-color: #f29cb6;
  --bs-btn-focus-shadow-rgb: 205, 123, 148;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f4a7be;
  --bs-btn-active-border-color: #f29cb6;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f191ae;
  --bs-btn-disabled-border-color: #f191ae;
}
.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #28a745;
  --bs-btn-border-color: #28a745;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #48b461;
  --bs-btn-hover-border-color: #3eb058;
  --bs-btn-focus-shadow-rgb: 34, 142, 59;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #53b96a;
  --bs-btn-active-border-color: #3eb058;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #28a745;
  --bs-btn-disabled-border-color: #28a745;
}
.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #17a2b8;
  --bs-btn-border-color: #17a2b8;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #3ab0c3;
  --bs-btn-hover-border-color: #2eabbf;
  --bs-btn-focus-shadow-rgb: 20, 138, 156;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #45b5c6;
  --bs-btn-active-border-color: #2eabbf;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #17a2b8;
  --bs-btn-disabled-border-color: #17a2b8;
}
.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}
.btn-danger {
  --bs-btn-color: #000;
  --bs-btn-bg: #f80000;
  --bs-btn-border-color: #f80000;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f92626;
  --bs-btn-hover-border-color: #f91a1a;
  --bs-btn-focus-shadow-rgb: 211, 0, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f93333;
  --bs-btn-active-border-color: #f91a1a;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f80000;
  --bs-btn-disabled-border-color: #f80000;
}
.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f1ead6;
  --bs-btn-border-color: #f1ead6;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #cdc7b6;
  --bs-btn-hover-border-color: #c1bbab;
  --bs-btn-focus-shadow-rgb: 205, 199, 182;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c1bbab;
  --bs-btn-active-border-color: #b5b0a1;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f1ead6;
  --bs-btn-disabled-border-color: #f1ead6;
}
.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #313131;
  --bs-btn-border-color: #313131;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #505050;
  --bs-btn-hover-border-color: #464646;
  --bs-btn-focus-shadow-rgb: 80, 80, 80;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #5a5a5a;
  --bs-btn-active-border-color: #464646;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #313131;
  --bs-btn-disabled-border-color: #313131;
}
.btn-accent-primary {
  --bs-btn-color: #000;
  --bs-btn-bg: #ced8de;
  --bs-btn-border-color: #ced8de;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d5dee3;
  --bs-btn-hover-border-color: #d3dce1;
  --bs-btn-focus-shadow-rgb: 175, 184, 189;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #d8e0e5;
  --bs-btn-active-border-color: #d3dce1;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ced8de;
  --bs-btn-disabled-border-color: #ced8de;
}
.btn-accent-secondary {
  --bs-btn-color: #000;
  --bs-btn-bg: #78929d;
  --bs-btn-border-color: #78929d;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #8ca2ac;
  --bs-btn-hover-border-color: #869da7;
  --bs-btn-focus-shadow-rgb: 102, 124, 133;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #93a8b1;
  --bs-btn-active-border-color: #869da7;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #78929d;
  --bs-btn-disabled-border-color: #78929d;
}
.btn-outline-primary {
  --bs-btn-color: #59c0cc;
  --bs-btn-border-color: #59c0cc;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #59c0cc;
  --bs-btn-hover-border-color: #59c0cc;
  --bs-btn-focus-shadow-rgb: 89, 192, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #59c0cc;
  --bs-btn-active-border-color: #59c0cc;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #59c0cc;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #59c0cc;
  --bs-gradient: none;
}
.btn-outline-secondary {
  --bs-btn-color: #f191ae;
  --bs-btn-border-color: #f191ae;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f191ae;
  --bs-btn-hover-border-color: #f191ae;
  --bs-btn-focus-shadow-rgb: 241, 145, 174;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f191ae;
  --bs-btn-active-border-color: #f191ae;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #f191ae;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f191ae;
  --bs-gradient: none;
}
.btn-outline-success {
  --bs-btn-color: #28a745;
  --bs-btn-border-color: #28a745;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #28a745;
  --bs-btn-hover-border-color: #28a745;
  --bs-btn-focus-shadow-rgb: 40, 167, 69;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #28a745;
  --bs-btn-active-border-color: #28a745;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #28a745;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #28a745;
  --bs-gradient: none;
}
.btn-outline-info {
  --bs-btn-color: #17a2b8;
  --bs-btn-border-color: #17a2b8;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #17a2b8;
  --bs-btn-hover-border-color: #17a2b8;
  --bs-btn-focus-shadow-rgb: 23, 162, 184;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #17a2b8;
  --bs-btn-active-border-color: #17a2b8;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #17a2b8;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #17a2b8;
  --bs-gradient: none;
}
.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}
.btn-outline-danger {
  --bs-btn-color: #f80000;
  --bs-btn-border-color: #f80000;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f80000;
  --bs-btn-hover-border-color: #f80000;
  --bs-btn-focus-shadow-rgb: 248, 0, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f80000;
  --bs-btn-active-border-color: #f80000;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #f80000;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f80000;
  --bs-gradient: none;
}
.btn-outline-light {
  --bs-btn-color: #f1ead6;
  --bs-btn-border-color: #f1ead6;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f1ead6;
  --bs-btn-hover-border-color: #f1ead6;
  --bs-btn-focus-shadow-rgb: 241, 234, 214;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f1ead6;
  --bs-btn-active-border-color: #f1ead6;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #f1ead6;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f1ead6;
  --bs-gradient: none;
}
.btn-outline-dark {
  --bs-btn-color: #313131;
  --bs-btn-border-color: #313131;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #313131;
  --bs-btn-hover-border-color: #313131;
  --bs-btn-focus-shadow-rgb: 49, 49, 49;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #313131;
  --bs-btn-active-border-color: #313131;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #313131;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #313131;
  --bs-gradient: none;
}
.btn-outline-accent-primary {
  --bs-btn-color: #ced8de;
  --bs-btn-border-color: #ced8de;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ced8de;
  --bs-btn-hover-border-color: #ced8de;
  --bs-btn-focus-shadow-rgb: 206, 216, 222;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ced8de;
  --bs-btn-active-border-color: #ced8de;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #ced8de;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ced8de;
  --bs-gradient: none;
}
.btn-outline-accent-secondary {
  --bs-btn-color: #78929d;
  --bs-btn-border-color: #78929d;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #78929d;
  --bs-btn-hover-border-color: #78929d;
  --bs-btn-focus-shadow-rgb: 120, 146, 157;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #78929d;
  --bs-btn-active-border-color: #78929d;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #78929d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #78929d;
  --bs-gradient: none;
}
.btn-link, .filter-panel-active-container .btn.filter-reset-all, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: #1f3e4f;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #1f3e4f;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: #1f3e4f;
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: rgba(31, 62, 79, 0.5);
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 65, 91, 105;
  text-decoration: underline;
}
.btn-link:hover, .filter-panel-active-container .btn.filter-reset-all:hover, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:hover, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:hover, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:hover, .btn-link:focus-visible, .filter-panel-active-container .btn.filter-reset-all:focus-visible, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:focus-visible, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:focus-visible, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:focus-visible, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:focus-visible, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:focus-visible, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:focus-visible {
  text-decoration: underline;
}
.btn-link:focus-visible, .filter-panel-active-container .btn.filter-reset-all:focus-visible, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:focus-visible, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:focus-visible, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:focus-visible, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:focus-visible, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:focus-visible, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover, .filter-panel-active-container .btn.filter-reset-all:hover, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:hover, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:hover, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:hover {
  color: var(--bs-btn-hover-color);
}
.btn-lg, .btn-group-lg > .btn, .active-campaign-form form[id^="_form_"] .btn-group-lg > ._submit, .btn-buy, .btn-read {
  --bs-btn-padding-y: 2px;
  --bs-btn-padding-x: 12px;
  --bs-btn-font-size: 1rem;
  --bs-btn-border-radius: 100px;
}
.btn-sm, .btn-group-sm > .btn, .active-campaign-form form[id^="_form_"] .btn-group-sm > ._submit {
  --bs-btn-padding-y: calc(0.75rem - 1px);
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-border-radius: 100px;
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
.dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center {
  position: relative;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: currentColor;
  --bs-dropdown-bg: #ffffff;
  --bs-dropdown-border-color: #ced8de;
  --bs-dropdown-border-radius: 0.5rem;
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(0.5rem - var(--bs-border-width));
  --bs-dropdown-divider-bg: #ced8de;
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #59c0cc;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}
.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}
.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}
@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1600px) {
  .dropdown-menu-xxxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}
.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}
.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: #ced8de;
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: #ced8de;
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #59c0cc;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}
.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, .active-campaign-form form[id^="_form_"] .btn-group > ._submit, .btn-group-vertical > .btn, .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn, .active-campaign-form form[id^="_form_"] .btn-group > .btn-check:checked + ._submit, .btn-group > .btn-check:focus + .btn, .active-campaign-form form[id^="_form_"] .btn-group > .btn-check:focus + ._submit, .btn-group > .btn:hover, .active-campaign-form form[id^="_form_"] .btn-group > ._submit:hover, .btn-group > .btn:focus, .active-campaign-form form[id^="_form_"] .btn-group > ._submit:focus, .btn-group > .btn:active, .active-campaign-form form[id^="_form_"] .btn-group > ._submit:active, .btn-group > .btn.active, .active-campaign-form form[id^="_form_"] .btn-group > .active._submit, .btn-group-vertical > .btn-check:checked + .btn, .active-campaign-form form[id^="_form_"] .btn-group-vertical > .btn-check:checked + ._submit, .btn-group-vertical > .btn-check:focus + .btn, .active-campaign-form form[id^="_form_"] .btn-group-vertical > .btn-check:focus + ._submit, .btn-group-vertical > .btn:hover, .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit:hover, .btn-group-vertical > .btn:focus, .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit:focus, .btn-group-vertical > .btn:active, .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit:active, .btn-group-vertical > .btn.active, .active-campaign-form form[id^="_form_"] .btn-group-vertical > .active._submit {
  z-index: 1;
}
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group {
  border-radius: 100px;
}
.btn-group > :not(.btn-check:first-child) + .btn, .active-campaign-form form[id^="_form_"] .btn-group > :not(.btn-check:first-child) + ._submit, .btn-group > .btn-group:not(:first-child) {
  margin-left: calc(1px * -1);
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .active-campaign-form form[id^="_form_"] .btn-group > ._submit:not(:last-child):not(.dropdown-toggle), .btn-group > .btn.dropdown-toggle-split:first-child, .active-campaign-form form[id^="_form_"] .btn-group > .dropdown-toggle-split._submit:first-child, .btn-group > .btn-group:not(:last-child) > .btn, .active-campaign-form form[id^="_form_"] .btn-group > .btn-group:not(:last-child) > ._submit {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n + 3), .active-campaign-form form[id^="_form_"] .btn-group > ._submit:nth-child(n + 3), .btn-group > :not(.btn-check) + .btn, .active-campaign-form form[id^="_form_"] .btn-group > :not(.btn-check) + ._submit, .btn-group > .btn-group:not(:first-child) > .btn, .active-campaign-form form[id^="_form_"] .btn-group > .btn-group:not(:first-child) > ._submit {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .active-campaign-form form[id^="_form_"] .btn-group-sm > ._submit + .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .active-campaign-form form[id^="_form_"] .btn-group-lg > ._submit + .dropdown-toggle-split, .btn-buy + .dropdown-toggle-split, .btn-read + .dropdown-toggle-split {
  padding-right: 9px;
  padding-left: 9px;
}
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn, .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit, .btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(1px * -1);
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn, .active-campaign-form form[id^="_form_"] .btn-group-vertical > .btn-group:not(:last-child) > ._submit {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn, .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit ~ .btn, .active-campaign-form form[id^="_form_"] .btn-group-vertical > .btn ~ ._submit, .active-campaign-form form[id^="_form_"] .btn-group-vertical > ._submit ~ ._submit, .btn-group-vertical > .btn-group:not(:first-child) > .btn, .active-campaign-form form[id^="_form_"] .btn-group-vertical > .btn-group:not(:first-child) > ._submit {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-size: 1rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
  text-decoration: none;
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #59c0cc;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}
.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active, .nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}
.nav-fill > .nav-link, .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified > .nav-link, .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
  width: 100%;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: currentColor;
  --bs-navbar-disabled-color: rgba(currentColor, 0.5);
  --bs-navbar-active-color: currentColor;
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: currentColor;
  --bs-navbar-brand-hover-color: currentColor;
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 62, 79, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: 100px;
  --bs-navbar-toggler-focus-width: 0;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container, .cms-section .navbar > .boxed, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl, .navbar > .container-xxxl, .cms-section .navbar > .full-width, .navbar > .cms-breadcrumb, .navbar > .breadcrumb.cms-breadcrumb {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
  text-decoration: none;
}
.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-size: 1rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}
.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a, .navbar-text a:hover, .navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1600px) {
  .navbar-expand-xxxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}
.navbar-dark, .navbar[data-bs-theme="dark"] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
[data-bs-theme="dark"] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.card {
  --bs-card-spacer-y: 2rem;
  --bs-card-spacer-x: 2rem;
  --bs-card-title-spacer-y: 2rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: 0;
  --bs-card-border-color: transparent;
  --bs-card-border-radius: 0.5rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: 0.5rem;
  --bs-card-cap-padding-y: 1rem;
  --bs-card-cap-padding-x: 2rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #ffffff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group, .card > .list-group + .card-footer {
  border-top: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}
.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}
.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}
.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}
.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}
.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}
.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}
.card-img, .card-img-top, .card-img-bottom {
  width: 100%;
}
.card-img, .card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card-img, .card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: #ced8de;
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 0.75rem;
  --bs-accordion-btn-padding-y: 0.75rem;
  --bs-accordion-btn-color: #59c0cc;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("/bundles/clienttheme/icon/default/accordion-down.svg");
  --bs-accordion-btn-icon-width: 48px;
  --bs-accordion-btn-icon-transform: none;
  --bs-accordion-btn-icon-transition: none;
  --bs-accordion-btn-active-icon: url("/bundles/clienttheme/icon/default/accordion-up.svg");
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0.75rem;
  --bs-accordion-body-padding-y: 0.75rem;
  --bs-accordion-active-color: #f191ae;
  --bs-accordion-active-bg: transparent;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}
.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}
.accordion-flush > .accordion-item > .accordion-collapse {
  border-radius: 0;
}
[data-bs-theme="dark"] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239bd9e0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239bd9e0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 0;
  --bs-breadcrumb-bg: transparent;
  --bs-breadcrumb-border-radius: 0;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.595rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: #1f3e4f;
  --bs-pagination-bg: #ffffff;
  --bs-pagination-border-width: 0;
  --bs-pagination-border-color: #ced8de;
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: #1f3e4f;
  --bs-pagination-hover-bg: #e9ecef;
  --bs-pagination-hover-border-color: #ced8de;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #59c0cc;
  --bs-pagination-active-border-color: #59c0cc;
  --bs-pagination-disabled-color: #6c757d;
  --bs-pagination-disabled-bg: #ffffff;
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}
.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  text-decoration: none;
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}
.page-item:not(:first-child) .page-link {
  margin-left: calc(0 * -1);
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}
.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}
.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}
.badge {
  --bs-badge-padding-x: 0.75rem;
  --bs-badge-padding-y: 0;
  --bs-badge-font-size: 0.75rem;
  --bs-badge-font-weight: 500;
  --bs-badge-color: #1f3e4f;
  --bs-badge-border-radius: 50px;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}
.btn .badge, .active-campaign-form form[id^="_form_"] ._submit .badge {
  position: relative;
  top: -1px;
}
.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 0.5rem;
  --bs-alert-padding-y: 0.5rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}
.alert-dismissible {
  padding-right: 1.5rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.625rem 0.5rem;
}
.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}
.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}
.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}
.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}
.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}
.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}
.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}
.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}
.alert-accent-primary {
  --bs-alert-color: var(--bs-accent-primary-text-emphasis);
  --bs-alert-bg: var(--bs-accent-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-accent-primary-border-subtle);
  --bs-alert-link-color: var(--bs-accent-primary-text-emphasis);
}
.alert-accent-secondary {
  --bs-alert-color: var(--bs-accent-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-accent-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-accent-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-accent-secondary-text-emphasis);
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress, .progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #59c0cc;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}
.progress-stacked > .progress {
  overflow: visible;
}
.progress-stacked > .progress > .progress-bar {
  width: 100%;
}
.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}
.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: #ffffff;
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: #ffffff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #59c0cc;
  --bs-list-group-active-border-color: #59c0cc;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}
.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}
.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}
.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}
@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1600px) {
  .list-group-horizontal-xxxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}
.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}
.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}
.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}
.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}
.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}
.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}
.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}
.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}
.list-group-item-accent-primary {
  --bs-list-group-color: var(--bs-accent-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-accent-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-accent-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-accent-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-accent-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-accent-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-accent-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-accent-primary-text-emphasis);
}
.list-group-item-accent-secondary {
  --bs-list-group-color: var(--bs-accent-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-accent-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-accent-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-accent-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-accent-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-accent-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-accent-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-accent-secondary-text-emphasis);
}
.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
  border: 0;
  border-radius: 0.8rem;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}
.btn-close-white {
  filter: var(--bs-btn-close-white-filter);
}
[data-bs-theme="dark"] .btn-close {
  filter: var(--bs-btn-close-white-filter);
}
.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 40px;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: #ffffff;
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: #ffffff;
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}
.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}
.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}
.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #ffffff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - 0);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem 0;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 0;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: opacity 0.45s cubic-bezier(0.3, 0, 0.15, 1), visibility 0.45s linear;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}
.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: rgba(0, 0, 0, 0.5);
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}
.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * .5);
}
@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg, .quickview-modal .modal-dialog, .subscription-edit-shipping-address-modal .modal-dialog, .subscription-edit-billing-address-modal .modal-dialog, .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header, .modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header, .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header, .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header, .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header, .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header, .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1599.98px) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-header, .modal-fullscreen-xxxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: #ffffff;
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  border-top-color: var(--bs-tooltip-bg);
}
/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  border-right-color: var(--bs-tooltip-bg);
}
/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}
/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}
/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}
.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: #ffffff;
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: #1f3e4f;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}
.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}
/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}
/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}
/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}
/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}
.carousel {
  position: relative;
}
.carousel.pointer-event {
  touch-action: pan-y;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item.active, .carousel-item-next, .carousel-item-prev {
  display: block;
}
.carousel-item-next:not(.carousel-item-start), .active.carousel-item-end {
  transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start {
  transform: translateX(-100%);
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}
.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev, .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 1;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")*/;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")*/;
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
.carousel-dark .carousel-control-prev-icon, .carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}
[data-bs-theme="dark"] .carousel .carousel-control-prev-icon, [data-bs-theme="dark"] .carousel .carousel-control-next-icon, [data-bs-theme="dark"].carousel .carousel-control-prev-icon, [data-bs-theme="dark"].carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
[data-bs-theme="dark"] .carousel .carousel-indicators [data-bs-target], [data-bs-theme="dark"].carousel .carousel-indicators [data-bs-target] {
  background-color: #000;
}
[data-bs-theme="dark"] .carousel .carousel-caption, [data-bs-theme="dark"].carousel .carousel-caption {
  color: #000;
}
.spinner-grow, .spinner-border, .loader {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border, .loader {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
  --bs-spinner-vertical-align: 0;
  --bs-spinner-border-width: 2px;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}
.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
  --bs-spinner-vertical-align: 0;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}
.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .spinner-border, .loader, .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas-sm, .offcanvas-md, .offcanvas-lg, .offcanvas-xl, .offcanvas-xxl, .offcanvas-xxxl, .offcanvas {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 472px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 2rem;
  --bs-offcanvas-padding-y: 2rem;
  --bs-offcanvas-color: #1f3e4f;
  --bs-offcanvas-bg: #ffffff;
  --bs-offcanvas-border-width: 0;
  --bs-offcanvas-border-color: transparent;
  --bs-offcanvas-box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}
@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 1599.98px) {
  .offcanvas-xxxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
  .offcanvas-xxxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxxl.showing, .offcanvas-xxxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxxl.showing, .offcanvas-xxxl.hiding, .offcanvas-xxxl.show {
    visibility: visible;
  }
}
@media (max-width: 1599.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxxl {
    transition: none;
  }
}
@media (min-width: 1600px) {
  .offcanvas-xxxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 1;
}
.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
  margin: calc(-.5 * var(--bs-offcanvas-padding-y)) calc(-.5 * var(--bs-offcanvas-padding-x)) calc(-.5 * var(--bs-offcanvas-padding-y)) auto;
}
.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}
.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}
.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before, .active-campaign-form form[id^="_form_"] .placeholder._submit::before {
  display: inline-block;
  content: "";
}
.placeholder-xs {
  min-height: 0.6em;
}
.placeholder-sm {
  min-height: 0.8em;
}
.placeholder-lg {
  min-height: 1.2em;
}
.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}
@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}
@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.text-bg-primary {
  color: #000 !important;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-secondary {
  color: #000 !important;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-success {
  color: #000 !important;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-info {
  color: #000 !important;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-warning {
  color: #000 !important;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-danger {
  color: #000 !important;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-light {
  color: #000 !important;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-dark {
  color: #fff !important;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-accent-primary {
  color: #000 !important;
  background-color: rgba(var(--bs-accent-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-accent-secondary {
  color: #000 !important;
  background-color: rgba(var(--bs-accent-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}
.link-primary {
  color: rgba(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: rgba(122, 205, 214, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(122, 205, 214, var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary {
  color: rgba(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: rgba(244, 167, 190, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(244, 167, 190, var(--bs-link-underline-opacity, 1)) !important;
}
.link-success {
  color: rgba(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: rgba(83, 185, 106, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(83, 185, 106, var(--bs-link-underline-opacity, 1)) !important;
}
.link-info {
  color: rgba(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: rgba(69, 181, 198, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(69, 181, 198, var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning {
  color: rgba(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: rgba(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger {
  color: rgba(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: rgba(249, 51, 51, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(249, 51, 51, var(--bs-link-underline-opacity, 1)) !important;
}
.link-light {
  color: rgba(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: rgba(244, 238, 222, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(244, 238, 222, var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark {
  color: rgba(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: rgba(39, 39, 39, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(39, 39, 39, var(--bs-link-underline-opacity, 1)) !important;
}
.link-accent-primary {
  color: rgba(var(--bs-accent-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-accent-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-accent-primary:hover, .link-accent-primary:focus {
  color: rgba(216, 224, 229, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(216, 224, 229, var(--bs-link-underline-opacity, 1)) !important;
}
.link-accent-secondary {
  color: rgba(var(--bs-accent-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-accent-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-accent-secondary:hover, .link-accent-secondary:focus {
  color: rgba(147, 168, 177, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(147, 168, 177, var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis {
  color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}
.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}
.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}
.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}
.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}
.fixed-top, .header-main.headroom.headroom--pinned.headroom--not-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}
.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1600px) {
  .sticky-xxxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}
.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption), .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.float-start {
  float: left !important;
}
.float-end {
  float: right !important;
}
.float-none {
  float: none !important;
}
.object-fit-contain {
  object-fit: contain !important;
}
.object-fit-cover {
  object-fit: cover !important;
}
.object-fit-fill {
  object-fit: fill !important;
}
.object-fit-scale {
  object-fit: scale-down !important;
}
.object-fit-none {
  object-fit: none !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-x-auto {
  overflow-x: auto !important;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.overflow-x-visible {
  overflow-x: visible !important;
}
.overflow-x-scroll {
  overflow-x: scroll !important;
}
.overflow-y-auto {
  overflow-y: auto !important;
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}
.overflow-y-visible {
  overflow-y: visible !important;
}
.overflow-y-scroll {
  overflow-y: scroll !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}
.shadow-sm, .header-main.headroom.headroom--pinned.headroom--not-top .header__nav-col .main-navigation-menu, .header-main.headroom.headroom--pinned.headroom--not-top .header__actions-col .header-actions-wrapper {
  box-shadow: var(--bs-box-shadow-sm) !important;
}
.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-accent-primary {
  --bs-focus-ring-color: rgba(var(--bs-accent-primary-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-accent-secondary {
  --bs-focus-ring-color: rgba(var(--bs-accent-secondary-rgb), var(--bs-focus-ring-opacity));
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.top-0 {
  top: 0 !important;
}
.top-50 {
  top: 50% !important;
}
.top-100 {
  top: 100% !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.bottom-50 {
  bottom: 50% !important;
}
.bottom-100 {
  bottom: 100% !important;
}
.start-0 {
  left: 0 !important;
}
.start-50 {
  left: 50% !important;
}
.start-100 {
  left: 100% !important;
}
.end-0 {
  right: 0 !important;
}
.end-50 {
  right: 50% !important;
}
.end-100 {
  right: 100% !important;
}
.translate-middle {
  transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
  transform: translateX(-50%) !important;
}
.translate-middle-y {
  transform: translateY(-50%) !important;
}
.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}
.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}
.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}
.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}
.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.border-accent-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-accent-primary-rgb), var(--bs-border-opacity)) !important;
}
.border-accent-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-accent-secondary-rgb), var(--bs-border-opacity)) !important;
}
.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}
.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}
.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}
.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}
.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}
.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}
.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}
.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}
.border-1 {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-3 {
  border-width: 3px !important;
}
.border-4 {
  border-width: 4px !important;
}
.border-5 {
  border-width: 5px !important;
}
.border-opacity-10 {
  --bs-border-opacity: 0.1;
}
.border-opacity-25 {
  --bs-border-opacity: 0.25;
}
.border-opacity-50 {
  --bs-border-opacity: 0.5;
}
.border-opacity-75 {
  --bs-border-opacity: 0.75;
}
.border-opacity-100 {
  --bs-border-opacity: 1;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.vw-100 {
  width: 100vw !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mh-100 {
  max-height: 100% !important;
}
.vh-100 {
  height: 100vh !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.order-first {
  order: -1 !important;
}
.order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-last {
  order: 6 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 0.75rem !important;
}
.m-4 {
  margin: 1rem !important;
}
.m-5 {
  margin: 1.25rem !important;
}
.m-6 {
  margin: 1.5rem !important;
}
.m-7 {
  margin: 2rem !important;
}
.m-8 {
  margin: 2.5rem !important;
}
.m-9 {
  margin: 3rem !important;
}
.m-10 {
  margin: 3.5rem !important;
}
.m-11 {
  margin: 4rem !important;
}
.m-12 {
  margin: 4.5rem !important;
}
.m-13 {
  margin: 5rem !important;
}
.m-14 {
  margin: 5.5rem !important;
}
.m-15 {
  margin: 6rem !important;
}
.m-16 {
  margin: 7rem !important;
}
.m-17 {
  margin: 8rem !important;
}
.m-18 {
  margin: 9rem !important;
}
.m-19 {
  margin: 10rem !important;
}
.m-20 {
  margin: 12rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}
.mx-4 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-5 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}
.mx-6 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-7 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}
.mx-8 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}
.mx-9 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-10 {
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}
.mx-11 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}
.mx-12 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}
.mx-13 {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}
.mx-14 {
  margin-right: 5.5rem !important;
  margin-left: 5.5rem !important;
}
.mx-15 {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}
.mx-16 {
  margin-right: 7rem !important;
  margin-left: 7rem !important;
}
.mx-17 {
  margin-right: 8rem !important;
  margin-left: 8rem !important;
}
.mx-18 {
  margin-right: 9rem !important;
  margin-left: 9rem !important;
}
.mx-19 {
  margin-right: 10rem !important;
  margin-left: 10rem !important;
}
.mx-20 {
  margin-right: 12rem !important;
  margin-left: 12rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-7 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-8 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
.my-9 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-10 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}
.my-11 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.my-12 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}
.my-13 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.my-14 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}
.my-15 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}
.my-16 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}
.my-17 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}
.my-18 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}
.my-19 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}
.my-20 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 0.75rem !important;
}
.mt-4 {
  margin-top: 1rem !important;
}
.mt-5 {
  margin-top: 1.25rem !important;
}
.mt-6 {
  margin-top: 1.5rem !important;
}
.mt-7 {
  margin-top: 2rem !important;
}
.mt-8 {
  margin-top: 2.5rem !important;
}
.mt-9 {
  margin-top: 3rem !important;
}
.mt-10 {
  margin-top: 3.5rem !important;
}
.mt-11 {
  margin-top: 4rem !important;
}
.mt-12 {
  margin-top: 4.5rem !important;
}
.mt-13 {
  margin-top: 5rem !important;
}
.mt-14 {
  margin-top: 5.5rem !important;
}
.mt-15 {
  margin-top: 6rem !important;
}
.mt-16 {
  margin-top: 7rem !important;
}
.mt-17 {
  margin-top: 8rem !important;
}
.mt-18 {
  margin-top: 9rem !important;
}
.mt-19 {
  margin-top: 10rem !important;
}
.mt-20 {
  margin-top: 12rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 0.75rem !important;
}
.me-4 {
  margin-right: 1rem !important;
}
.me-5 {
  margin-right: 1.25rem !important;
}
.me-6 {
  margin-right: 1.5rem !important;
}
.me-7 {
  margin-right: 2rem !important;
}
.me-8 {
  margin-right: 2.5rem !important;
}
.me-9 {
  margin-right: 3rem !important;
}
.me-10 {
  margin-right: 3.5rem !important;
}
.me-11 {
  margin-right: 4rem !important;
}
.me-12 {
  margin-right: 4.5rem !important;
}
.me-13 {
  margin-right: 5rem !important;
}
.me-14 {
  margin-right: 5.5rem !important;
}
.me-15 {
  margin-right: 6rem !important;
}
.me-16 {
  margin-right: 7rem !important;
}
.me-17 {
  margin-right: 8rem !important;
}
.me-18 {
  margin-right: 9rem !important;
}
.me-19 {
  margin-right: 10rem !important;
}
.me-20 {
  margin-right: 12rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 0.75rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-5 {
  margin-bottom: 1.25rem !important;
}
.mb-6 {
  margin-bottom: 1.5rem !important;
}
.mb-7 {
  margin-bottom: 2rem !important;
}
.mb-8 {
  margin-bottom: 2.5rem !important;
}
.mb-9 {
  margin-bottom: 3rem !important;
}
.mb-10 {
  margin-bottom: 3.5rem !important;
}
.mb-11 {
  margin-bottom: 4rem !important;
}
.mb-12 {
  margin-bottom: 4.5rem !important;
}
.mb-13 {
  margin-bottom: 5rem !important;
}
.mb-14 {
  margin-bottom: 5.5rem !important;
}
.mb-15 {
  margin-bottom: 6rem !important;
}
.mb-16 {
  margin-bottom: 7rem !important;
}
.mb-17 {
  margin-bottom: 8rem !important;
}
.mb-18 {
  margin-bottom: 9rem !important;
}
.mb-19 {
  margin-bottom: 10rem !important;
}
.mb-20 {
  margin-bottom: 12rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 0.75rem !important;
}
.ms-4 {
  margin-left: 1rem !important;
}
.ms-5 {
  margin-left: 1.25rem !important;
}
.ms-6 {
  margin-left: 1.5rem !important;
}
.ms-7 {
  margin-left: 2rem !important;
}
.ms-8 {
  margin-left: 2.5rem !important;
}
.ms-9 {
  margin-left: 3rem !important;
}
.ms-10 {
  margin-left: 3.5rem !important;
}
.ms-11 {
  margin-left: 4rem !important;
}
.ms-12 {
  margin-left: 4.5rem !important;
}
.ms-13 {
  margin-left: 5rem !important;
}
.ms-14 {
  margin-left: 5.5rem !important;
}
.ms-15 {
  margin-left: 6rem !important;
}
.ms-16 {
  margin-left: 7rem !important;
}
.ms-17 {
  margin-left: 8rem !important;
}
.ms-18 {
  margin-left: 9rem !important;
}
.ms-19 {
  margin-left: 10rem !important;
}
.ms-20 {
  margin-left: 12rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 0.75rem !important;
}
.p-4 {
  padding: 1rem !important;
}
.p-5 {
  padding: 1.25rem !important;
}
.p-6 {
  padding: 1.5rem !important;
}
.p-7 {
  padding: 2rem !important;
}
.p-8 {
  padding: 2.5rem !important;
}
.p-9 {
  padding: 3rem !important;
}
.p-10 {
  padding: 3.5rem !important;
}
.p-11 {
  padding: 4rem !important;
}
.p-12 {
  padding: 4.5rem !important;
}
.p-13 {
  padding: 5rem !important;
}
.p-14 {
  padding: 5.5rem !important;
}
.p-15 {
  padding: 6rem !important;
}
.p-16 {
  padding: 7rem !important;
}
.p-17 {
  padding: 8rem !important;
}
.p-18 {
  padding: 9rem !important;
}
.p-19 {
  padding: 10rem !important;
}
.p-20 {
  padding: 12rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}
.px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-5 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}
.px-6 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-7 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
.px-8 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}
.px-9 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.px-10 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}
.px-11 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}
.px-12 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}
.px-13 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}
.px-14 {
  padding-right: 5.5rem !important;
  padding-left: 5.5rem !important;
}
.px-15 {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}
.px-16 {
  padding-right: 7rem !important;
  padding-left: 7rem !important;
}
.px-17 {
  padding-right: 8rem !important;
  padding-left: 8rem !important;
}
.px-18 {
  padding-right: 9rem !important;
  padding-left: 9rem !important;
}
.px-19 {
  padding-right: 10rem !important;
  padding-left: 10rem !important;
}
.px-20 {
  padding-right: 12rem !important;
  padding-left: 12rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-7 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-8 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.py-9 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-10 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}
.py-11 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-12 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
.py-13 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.py-14 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}
.py-15 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
.py-16 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}
.py-17 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}
.py-18 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}
.py-19 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}
.py-20 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 0.75rem !important;
}
.pt-4 {
  padding-top: 1rem !important;
}
.pt-5 {
  padding-top: 1.25rem !important;
}
.pt-6 {
  padding-top: 1.5rem !important;
}
.pt-7 {
  padding-top: 2rem !important;
}
.pt-8 {
  padding-top: 2.5rem !important;
}
.pt-9 {
  padding-top: 3rem !important;
}
.pt-10 {
  padding-top: 3.5rem !important;
}
.pt-11 {
  padding-top: 4rem !important;
}
.pt-12 {
  padding-top: 4.5rem !important;
}
.pt-13 {
  padding-top: 5rem !important;
}
.pt-14 {
  padding-top: 5.5rem !important;
}
.pt-15 {
  padding-top: 6rem !important;
}
.pt-16 {
  padding-top: 7rem !important;
}
.pt-17 {
  padding-top: 8rem !important;
}
.pt-18 {
  padding-top: 9rem !important;
}
.pt-19 {
  padding-top: 10rem !important;
}
.pt-20 {
  padding-top: 12rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 0.75rem !important;
}
.pe-4 {
  padding-right: 1rem !important;
}
.pe-5 {
  padding-right: 1.25rem !important;
}
.pe-6 {
  padding-right: 1.5rem !important;
}
.pe-7 {
  padding-right: 2rem !important;
}
.pe-8 {
  padding-right: 2.5rem !important;
}
.pe-9 {
  padding-right: 3rem !important;
}
.pe-10 {
  padding-right: 3.5rem !important;
}
.pe-11 {
  padding-right: 4rem !important;
}
.pe-12 {
  padding-right: 4.5rem !important;
}
.pe-13 {
  padding-right: 5rem !important;
}
.pe-14 {
  padding-right: 5.5rem !important;
}
.pe-15 {
  padding-right: 6rem !important;
}
.pe-16 {
  padding-right: 7rem !important;
}
.pe-17 {
  padding-right: 8rem !important;
}
.pe-18 {
  padding-right: 9rem !important;
}
.pe-19 {
  padding-right: 10rem !important;
}
.pe-20 {
  padding-right: 12rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 0.75rem !important;
}
.pb-4 {
  padding-bottom: 1rem !important;
}
.pb-5 {
  padding-bottom: 1.25rem !important;
}
.pb-6 {
  padding-bottom: 1.5rem !important;
}
.pb-7 {
  padding-bottom: 2rem !important;
}
.pb-8 {
  padding-bottom: 2.5rem !important;
}
.pb-9 {
  padding-bottom: 3rem !important;
}
.pb-10 {
  padding-bottom: 3.5rem !important;
}
.pb-11 {
  padding-bottom: 4rem !important;
}
.pb-12 {
  padding-bottom: 4.5rem !important;
}
.pb-13 {
  padding-bottom: 5rem !important;
}
.pb-14 {
  padding-bottom: 5.5rem !important;
}
.pb-15 {
  padding-bottom: 6rem !important;
}
.pb-16 {
  padding-bottom: 7rem !important;
}
.pb-17 {
  padding-bottom: 8rem !important;
}
.pb-18 {
  padding-bottom: 9rem !important;
}
.pb-19 {
  padding-bottom: 10rem !important;
}
.pb-20 {
  padding-bottom: 12rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 0.75rem !important;
}
.ps-4 {
  padding-left: 1rem !important;
}
.ps-5 {
  padding-left: 1.25rem !important;
}
.ps-6 {
  padding-left: 1.5rem !important;
}
.ps-7 {
  padding-left: 2rem !important;
}
.ps-8 {
  padding-left: 2.5rem !important;
}
.ps-9 {
  padding-left: 3rem !important;
}
.ps-10 {
  padding-left: 3.5rem !important;
}
.ps-11 {
  padding-left: 4rem !important;
}
.ps-12 {
  padding-left: 4.5rem !important;
}
.ps-13 {
  padding-left: 5rem !important;
}
.ps-14 {
  padding-left: 5.5rem !important;
}
.ps-15 {
  padding-left: 6rem !important;
}
.ps-16 {
  padding-left: 7rem !important;
}
.ps-17 {
  padding-left: 8rem !important;
}
.ps-18 {
  padding-left: 9rem !important;
}
.ps-19 {
  padding-left: 10rem !important;
}
.ps-20 {
  padding-left: 12rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 0.75rem !important;
}
.gap-4 {
  gap: 1rem !important;
}
.gap-5 {
  gap: 1.25rem !important;
}
.gap-6 {
  gap: 1.5rem !important;
}
.gap-7 {
  gap: 2rem !important;
}
.gap-8 {
  gap: 2.5rem !important;
}
.gap-9 {
  gap: 3rem !important;
}
.gap-10 {
  gap: 3.5rem !important;
}
.gap-11 {
  gap: 4rem !important;
}
.gap-12 {
  gap: 4.5rem !important;
}
.gap-13 {
  gap: 5rem !important;
}
.gap-14 {
  gap: 5.5rem !important;
}
.gap-15 {
  gap: 6rem !important;
}
.gap-16 {
  gap: 7rem !important;
}
.gap-17 {
  gap: 8rem !important;
}
.gap-18 {
  gap: 9rem !important;
}
.gap-19 {
  gap: 10rem !important;
}
.gap-20 {
  gap: 12rem !important;
}
.row-gap-0 {
  row-gap: 0 !important;
}
.row-gap-1 {
  row-gap: 0.25rem !important;
}
.row-gap-2 {
  row-gap: 0.5rem !important;
}
.row-gap-3 {
  row-gap: 0.75rem !important;
}
.row-gap-4 {
  row-gap: 1rem !important;
}
.row-gap-5 {
  row-gap: 1.25rem !important;
}
.row-gap-6 {
  row-gap: 1.5rem !important;
}
.row-gap-7 {
  row-gap: 2rem !important;
}
.row-gap-8 {
  row-gap: 2.5rem !important;
}
.row-gap-9 {
  row-gap: 3rem !important;
}
.row-gap-10 {
  row-gap: 3.5rem !important;
}
.row-gap-11 {
  row-gap: 4rem !important;
}
.row-gap-12 {
  row-gap: 4.5rem !important;
}
.row-gap-13 {
  row-gap: 5rem !important;
}
.row-gap-14 {
  row-gap: 5.5rem !important;
}
.row-gap-15 {
  row-gap: 6rem !important;
}
.row-gap-16 {
  row-gap: 7rem !important;
}
.row-gap-17 {
  row-gap: 8rem !important;
}
.row-gap-18 {
  row-gap: 9rem !important;
}
.row-gap-19 {
  row-gap: 10rem !important;
}
.row-gap-20 {
  row-gap: 12rem !important;
}
.column-gap-0 {
  column-gap: 0 !important;
}
.column-gap-1 {
  column-gap: 0.25rem !important;
}
.column-gap-2 {
  column-gap: 0.5rem !important;
}
.column-gap-3 {
  column-gap: 0.75rem !important;
}
.column-gap-4 {
  column-gap: 1rem !important;
}
.column-gap-5 {
  column-gap: 1.25rem !important;
}
.column-gap-6 {
  column-gap: 1.5rem !important;
}
.column-gap-7 {
  column-gap: 2rem !important;
}
.column-gap-8 {
  column-gap: 2.5rem !important;
}
.column-gap-9 {
  column-gap: 3rem !important;
}
.column-gap-10 {
  column-gap: 3.5rem !important;
}
.column-gap-11 {
  column-gap: 4rem !important;
}
.column-gap-12 {
  column-gap: 4.5rem !important;
}
.column-gap-13 {
  column-gap: 5rem !important;
}
.column-gap-14 {
  column-gap: 5.5rem !important;
}
.column-gap-15 {
  column-gap: 6rem !important;
}
.column-gap-16 {
  column-gap: 7rem !important;
}
.column-gap-17 {
  column-gap: 8rem !important;
}
.column-gap-18 {
  column-gap: 9rem !important;
}
.column-gap-19 {
  column-gap: 10rem !important;
}
.column-gap-20 {
  column-gap: 12rem !important;
}
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
.fs-1 {
  font-size: calc(1.35rem + 1.2vw) !important;
}
.fs-2 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-3 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-4 {
  font-size: 1.25rem !important;
}
.fs-5 {
  font-size: 1rem !important;
}
.fs-6 {
  font-size: 0.875rem !important;
}
.fst-italic {
  font-style: italic !important;
}
.fst-normal {
  font-style: normal !important;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-bolder {
  font-weight: bolder !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.25 !important;
}
.lh-base {
  line-height: 1.5 !important;
}
.lh-lg {
  line-height: 2 !important;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-decoration-underline {
  text-decoration: underline !important;
}
.text-decoration-line-through {
  text-decoration: line-through !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
/* rtl:end:remove */
.text-primary, .loader {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-accent-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-accent-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-accent-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-accent-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}
.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}
.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}
.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}
.text-opacity-25 {
  --bs-text-opacity: 0.25;
}
.text-opacity-50 {
  --bs-text-opacity: 0.5;
}
.text-opacity-75 {
  --bs-text-opacity: 0.75;
}
.text-opacity-100 {
  --bs-text-opacity: 1;
}
.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}
.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}
.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}
.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}
.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}
.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}
.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}
.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}
.link-opacity-10 {
  --bs-link-opacity: 0.1;
}
.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}
.link-opacity-25 {
  --bs-link-opacity: 0.25;
}
.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}
.link-opacity-50 {
  --bs-link-opacity: 0.5;
}
.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}
.link-opacity-75 {
  --bs-link-opacity: 0.75;
}
.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}
.link-opacity-100 {
  --bs-link-opacity: 1;
}
.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}
.link-offset-1 {
  text-underline-offset: 0.125em !important;
}
.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}
.link-offset-2 {
  text-underline-offset: 0.25em !important;
}
.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}
.link-offset-3 {
  text-underline-offset: 0.375em !important;
}
.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}
.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-accent-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-accent-primary-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-accent-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-accent-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}
.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}
.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}
.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}
.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}
.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}
.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}
.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}
.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}
.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}
.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}
.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light, .order-detail-table-footer {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-accent-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-accent-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-accent-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-accent-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}
.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
  --bs-bg-opacity: 1;
}
.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}
.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}
.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}
.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}
.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}
.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}
.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}
.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}
.bg-gradient {
  background-image: var(--bs-gradient) !important;
}
.user-select-all {
  user-select: all !important;
}
.user-select-auto {
  user-select: auto !important;
}
.user-select-none {
  user-select: none !important;
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
.rounded {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}
.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}
.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}
.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}
.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}
.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}
.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}
.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}
.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}
.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}
.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}
.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}
.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}
.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}
.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}
.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}
.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}
.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}
.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}
.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}
.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}
.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}
.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}
.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.z-n1 {
  z-index: -1 !important;
}
.z-0 {
  z-index: 0 !important;
}
.z-1 {
  z-index: 1 !important;
}
.z-2 {
  z-index: 2 !important;
}
.z-3 {
  z-index: 3 !important;
}
.z-4 {
  z-index: 4 !important;
}
.z-5 {
  z-index: 5 !important;
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 0.75rem !important;
  }
  .m-sm-4 {
    margin: 1rem !important;
  }
  .m-sm-5 {
    margin: 1.25rem !important;
  }
  .m-sm-6 {
    margin: 1.5rem !important;
  }
  .m-sm-7 {
    margin: 2rem !important;
  }
  .m-sm-8 {
    margin: 2.5rem !important;
  }
  .m-sm-9 {
    margin: 3rem !important;
  }
  .m-sm-10 {
    margin: 3.5rem !important;
  }
  .m-sm-11 {
    margin: 4rem !important;
  }
  .m-sm-12 {
    margin: 4.5rem !important;
  }
  .m-sm-13 {
    margin: 5rem !important;
  }
  .m-sm-14 {
    margin: 5.5rem !important;
  }
  .m-sm-15 {
    margin: 6rem !important;
  }
  .m-sm-16 {
    margin: 7rem !important;
  }
  .m-sm-17 {
    margin: 8rem !important;
  }
  .m-sm-18 {
    margin: 9rem !important;
  }
  .m-sm-19 {
    margin: 10rem !important;
  }
  .m-sm-20 {
    margin: 12rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-sm-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-sm-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-8 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-9 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-10 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-11 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-12 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-sm-13 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-14 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-sm-15 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-16 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-sm-17 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-sm-18 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-sm-19 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-sm-20 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-sm-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-sm-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-8 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-9 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-10 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-11 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-12 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-sm-13 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-14 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-sm-15 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-16 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-sm-17 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-sm-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-sm-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-sm-20 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 0.75rem !important;
  }
  .mt-sm-4 {
    margin-top: 1rem !important;
  }
  .mt-sm-5 {
    margin-top: 1.25rem !important;
  }
  .mt-sm-6 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-7 {
    margin-top: 2rem !important;
  }
  .mt-sm-8 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-9 {
    margin-top: 3rem !important;
  }
  .mt-sm-10 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-11 {
    margin-top: 4rem !important;
  }
  .mt-sm-12 {
    margin-top: 4.5rem !important;
  }
  .mt-sm-13 {
    margin-top: 5rem !important;
  }
  .mt-sm-14 {
    margin-top: 5.5rem !important;
  }
  .mt-sm-15 {
    margin-top: 6rem !important;
  }
  .mt-sm-16 {
    margin-top: 7rem !important;
  }
  .mt-sm-17 {
    margin-top: 8rem !important;
  }
  .mt-sm-18 {
    margin-top: 9rem !important;
  }
  .mt-sm-19 {
    margin-top: 10rem !important;
  }
  .mt-sm-20 {
    margin-top: 12rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 0.75rem !important;
  }
  .me-sm-4 {
    margin-right: 1rem !important;
  }
  .me-sm-5 {
    margin-right: 1.25rem !important;
  }
  .me-sm-6 {
    margin-right: 1.5rem !important;
  }
  .me-sm-7 {
    margin-right: 2rem !important;
  }
  .me-sm-8 {
    margin-right: 2.5rem !important;
  }
  .me-sm-9 {
    margin-right: 3rem !important;
  }
  .me-sm-10 {
    margin-right: 3.5rem !important;
  }
  .me-sm-11 {
    margin-right: 4rem !important;
  }
  .me-sm-12 {
    margin-right: 4.5rem !important;
  }
  .me-sm-13 {
    margin-right: 5rem !important;
  }
  .me-sm-14 {
    margin-right: 5.5rem !important;
  }
  .me-sm-15 {
    margin-right: 6rem !important;
  }
  .me-sm-16 {
    margin-right: 7rem !important;
  }
  .me-sm-17 {
    margin-right: 8rem !important;
  }
  .me-sm-18 {
    margin-right: 9rem !important;
  }
  .me-sm-19 {
    margin-right: 10rem !important;
  }
  .me-sm-20 {
    margin-right: 12rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-12 {
    margin-bottom: 4.5rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-14 {
    margin-bottom: 5.5rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-16 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-17 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-18 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-19 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-20 {
    margin-bottom: 12rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 0.75rem !important;
  }
  .ms-sm-4 {
    margin-left: 1rem !important;
  }
  .ms-sm-5 {
    margin-left: 1.25rem !important;
  }
  .ms-sm-6 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-7 {
    margin-left: 2rem !important;
  }
  .ms-sm-8 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-9 {
    margin-left: 3rem !important;
  }
  .ms-sm-10 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-11 {
    margin-left: 4rem !important;
  }
  .ms-sm-12 {
    margin-left: 4.5rem !important;
  }
  .ms-sm-13 {
    margin-left: 5rem !important;
  }
  .ms-sm-14 {
    margin-left: 5.5rem !important;
  }
  .ms-sm-15 {
    margin-left: 6rem !important;
  }
  .ms-sm-16 {
    margin-left: 7rem !important;
  }
  .ms-sm-17 {
    margin-left: 8rem !important;
  }
  .ms-sm-18 {
    margin-left: 9rem !important;
  }
  .ms-sm-19 {
    margin-left: 10rem !important;
  }
  .ms-sm-20 {
    margin-left: 12rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 0.75rem !important;
  }
  .p-sm-4 {
    padding: 1rem !important;
  }
  .p-sm-5 {
    padding: 1.25rem !important;
  }
  .p-sm-6 {
    padding: 1.5rem !important;
  }
  .p-sm-7 {
    padding: 2rem !important;
  }
  .p-sm-8 {
    padding: 2.5rem !important;
  }
  .p-sm-9 {
    padding: 3rem !important;
  }
  .p-sm-10 {
    padding: 3.5rem !important;
  }
  .p-sm-11 {
    padding: 4rem !important;
  }
  .p-sm-12 {
    padding: 4.5rem !important;
  }
  .p-sm-13 {
    padding: 5rem !important;
  }
  .p-sm-14 {
    padding: 5.5rem !important;
  }
  .p-sm-15 {
    padding: 6rem !important;
  }
  .p-sm-16 {
    padding: 7rem !important;
  }
  .p-sm-17 {
    padding: 8rem !important;
  }
  .p-sm-18 {
    padding: 9rem !important;
  }
  .p-sm-19 {
    padding: 10rem !important;
  }
  .p-sm-20 {
    padding: 12rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-sm-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-sm-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-8 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-9 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-10 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-11 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-12 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-sm-13 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-14 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-sm-15 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-16 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-sm-17 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-sm-18 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-sm-19 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-sm-20 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-sm-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-sm-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-8 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-9 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-10 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-11 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-12 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-sm-13 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-14 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-sm-15 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-16 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-sm-17 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-sm-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-sm-20 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 0.75rem !important;
  }
  .pt-sm-4 {
    padding-top: 1rem !important;
  }
  .pt-sm-5 {
    padding-top: 1.25rem !important;
  }
  .pt-sm-6 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-7 {
    padding-top: 2rem !important;
  }
  .pt-sm-8 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-9 {
    padding-top: 3rem !important;
  }
  .pt-sm-10 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-11 {
    padding-top: 4rem !important;
  }
  .pt-sm-12 {
    padding-top: 4.5rem !important;
  }
  .pt-sm-13 {
    padding-top: 5rem !important;
  }
  .pt-sm-14 {
    padding-top: 5.5rem !important;
  }
  .pt-sm-15 {
    padding-top: 6rem !important;
  }
  .pt-sm-16 {
    padding-top: 7rem !important;
  }
  .pt-sm-17 {
    padding-top: 8rem !important;
  }
  .pt-sm-18 {
    padding-top: 9rem !important;
  }
  .pt-sm-19 {
    padding-top: 10rem !important;
  }
  .pt-sm-20 {
    padding-top: 12rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 0.75rem !important;
  }
  .pe-sm-4 {
    padding-right: 1rem !important;
  }
  .pe-sm-5 {
    padding-right: 1.25rem !important;
  }
  .pe-sm-6 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-7 {
    padding-right: 2rem !important;
  }
  .pe-sm-8 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-9 {
    padding-right: 3rem !important;
  }
  .pe-sm-10 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-11 {
    padding-right: 4rem !important;
  }
  .pe-sm-12 {
    padding-right: 4.5rem !important;
  }
  .pe-sm-13 {
    padding-right: 5rem !important;
  }
  .pe-sm-14 {
    padding-right: 5.5rem !important;
  }
  .pe-sm-15 {
    padding-right: 6rem !important;
  }
  .pe-sm-16 {
    padding-right: 7rem !important;
  }
  .pe-sm-17 {
    padding-right: 8rem !important;
  }
  .pe-sm-18 {
    padding-right: 9rem !important;
  }
  .pe-sm-19 {
    padding-right: 10rem !important;
  }
  .pe-sm-20 {
    padding-right: 12rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-12 {
    padding-bottom: 4.5rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-14 {
    padding-bottom: 5.5rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-16 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-17 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-18 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-19 {
    padding-bottom: 10rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 12rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 0.75rem !important;
  }
  .ps-sm-4 {
    padding-left: 1rem !important;
  }
  .ps-sm-5 {
    padding-left: 1.25rem !important;
  }
  .ps-sm-6 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-7 {
    padding-left: 2rem !important;
  }
  .ps-sm-8 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-9 {
    padding-left: 3rem !important;
  }
  .ps-sm-10 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-11 {
    padding-left: 4rem !important;
  }
  .ps-sm-12 {
    padding-left: 4.5rem !important;
  }
  .ps-sm-13 {
    padding-left: 5rem !important;
  }
  .ps-sm-14 {
    padding-left: 5.5rem !important;
  }
  .ps-sm-15 {
    padding-left: 6rem !important;
  }
  .ps-sm-16 {
    padding-left: 7rem !important;
  }
  .ps-sm-17 {
    padding-left: 8rem !important;
  }
  .ps-sm-18 {
    padding-left: 9rem !important;
  }
  .ps-sm-19 {
    padding-left: 10rem !important;
  }
  .ps-sm-20 {
    padding-left: 12rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 0.75rem !important;
  }
  .gap-sm-4 {
    gap: 1rem !important;
  }
  .gap-sm-5 {
    gap: 1.25rem !important;
  }
  .gap-sm-6 {
    gap: 1.5rem !important;
  }
  .gap-sm-7 {
    gap: 2rem !important;
  }
  .gap-sm-8 {
    gap: 2.5rem !important;
  }
  .gap-sm-9 {
    gap: 3rem !important;
  }
  .gap-sm-10 {
    gap: 3.5rem !important;
  }
  .gap-sm-11 {
    gap: 4rem !important;
  }
  .gap-sm-12 {
    gap: 4.5rem !important;
  }
  .gap-sm-13 {
    gap: 5rem !important;
  }
  .gap-sm-14 {
    gap: 5.5rem !important;
  }
  .gap-sm-15 {
    gap: 6rem !important;
  }
  .gap-sm-16 {
    gap: 7rem !important;
  }
  .gap-sm-17 {
    gap: 8rem !important;
  }
  .gap-sm-18 {
    gap: 9rem !important;
  }
  .gap-sm-19 {
    gap: 10rem !important;
  }
  .gap-sm-20 {
    gap: 12rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-sm-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-7 {
    row-gap: 2rem !important;
  }
  .row-gap-sm-8 {
    row-gap: 2.5rem !important;
  }
  .row-gap-sm-9 {
    row-gap: 3rem !important;
  }
  .row-gap-sm-10 {
    row-gap: 3.5rem !important;
  }
  .row-gap-sm-11 {
    row-gap: 4rem !important;
  }
  .row-gap-sm-12 {
    row-gap: 4.5rem !important;
  }
  .row-gap-sm-13 {
    row-gap: 5rem !important;
  }
  .row-gap-sm-14 {
    row-gap: 5.5rem !important;
  }
  .row-gap-sm-15 {
    row-gap: 6rem !important;
  }
  .row-gap-sm-16 {
    row-gap: 7rem !important;
  }
  .row-gap-sm-17 {
    row-gap: 8rem !important;
  }
  .row-gap-sm-18 {
    row-gap: 9rem !important;
  }
  .row-gap-sm-19 {
    row-gap: 10rem !important;
  }
  .row-gap-sm-20 {
    row-gap: 12rem !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 0.75rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 1rem !important;
  }
  .column-gap-sm-5 {
    column-gap: 1.25rem !important;
  }
  .column-gap-sm-6 {
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-7 {
    column-gap: 2rem !important;
  }
  .column-gap-sm-8 {
    column-gap: 2.5rem !important;
  }
  .column-gap-sm-9 {
    column-gap: 3rem !important;
  }
  .column-gap-sm-10 {
    column-gap: 3.5rem !important;
  }
  .column-gap-sm-11 {
    column-gap: 4rem !important;
  }
  .column-gap-sm-12 {
    column-gap: 4.5rem !important;
  }
  .column-gap-sm-13 {
    column-gap: 5rem !important;
  }
  .column-gap-sm-14 {
    column-gap: 5.5rem !important;
  }
  .column-gap-sm-15 {
    column-gap: 6rem !important;
  }
  .column-gap-sm-16 {
    column-gap: 7rem !important;
  }
  .column-gap-sm-17 {
    column-gap: 8rem !important;
  }
  .column-gap-sm-18 {
    column-gap: 9rem !important;
  }
  .column-gap-sm-19 {
    column-gap: 10rem !important;
  }
  .column-gap-sm-20 {
    column-gap: 12rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 0.75rem !important;
  }
  .m-md-4 {
    margin: 1rem !important;
  }
  .m-md-5 {
    margin: 1.25rem !important;
  }
  .m-md-6 {
    margin: 1.5rem !important;
  }
  .m-md-7 {
    margin: 2rem !important;
  }
  .m-md-8 {
    margin: 2.5rem !important;
  }
  .m-md-9 {
    margin: 3rem !important;
  }
  .m-md-10 {
    margin: 3.5rem !important;
  }
  .m-md-11 {
    margin: 4rem !important;
  }
  .m-md-12 {
    margin: 4.5rem !important;
  }
  .m-md-13 {
    margin: 5rem !important;
  }
  .m-md-14 {
    margin: 5.5rem !important;
  }
  .m-md-15 {
    margin: 6rem !important;
  }
  .m-md-16 {
    margin: 7rem !important;
  }
  .m-md-17 {
    margin: 8rem !important;
  }
  .m-md-18 {
    margin: 9rem !important;
  }
  .m-md-19 {
    margin: 10rem !important;
  }
  .m-md-20 {
    margin: 12rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-md-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-md-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-8 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-9 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-10 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-11 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-12 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-md-13 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-14 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-md-15 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-16 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-md-17 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-md-18 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-md-19 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-md-20 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-md-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-md-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-8 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-9 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-10 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-11 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-12 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-md-13 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-14 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-md-15 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-16 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-md-17 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-md-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-md-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-md-20 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 0.75rem !important;
  }
  .mt-md-4 {
    margin-top: 1rem !important;
  }
  .mt-md-5 {
    margin-top: 1.25rem !important;
  }
  .mt-md-6 {
    margin-top: 1.5rem !important;
  }
  .mt-md-7 {
    margin-top: 2rem !important;
  }
  .mt-md-8 {
    margin-top: 2.5rem !important;
  }
  .mt-md-9 {
    margin-top: 3rem !important;
  }
  .mt-md-10 {
    margin-top: 3.5rem !important;
  }
  .mt-md-11 {
    margin-top: 4rem !important;
  }
  .mt-md-12 {
    margin-top: 4.5rem !important;
  }
  .mt-md-13 {
    margin-top: 5rem !important;
  }
  .mt-md-14 {
    margin-top: 5.5rem !important;
  }
  .mt-md-15 {
    margin-top: 6rem !important;
  }
  .mt-md-16 {
    margin-top: 7rem !important;
  }
  .mt-md-17 {
    margin-top: 8rem !important;
  }
  .mt-md-18 {
    margin-top: 9rem !important;
  }
  .mt-md-19 {
    margin-top: 10rem !important;
  }
  .mt-md-20 {
    margin-top: 12rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 0.75rem !important;
  }
  .me-md-4 {
    margin-right: 1rem !important;
  }
  .me-md-5 {
    margin-right: 1.25rem !important;
  }
  .me-md-6 {
    margin-right: 1.5rem !important;
  }
  .me-md-7 {
    margin-right: 2rem !important;
  }
  .me-md-8 {
    margin-right: 2.5rem !important;
  }
  .me-md-9 {
    margin-right: 3rem !important;
  }
  .me-md-10 {
    margin-right: 3.5rem !important;
  }
  .me-md-11 {
    margin-right: 4rem !important;
  }
  .me-md-12 {
    margin-right: 4.5rem !important;
  }
  .me-md-13 {
    margin-right: 5rem !important;
  }
  .me-md-14 {
    margin-right: 5.5rem !important;
  }
  .me-md-15 {
    margin-right: 6rem !important;
  }
  .me-md-16 {
    margin-right: 7rem !important;
  }
  .me-md-17 {
    margin-right: 8rem !important;
  }
  .me-md-18 {
    margin-right: 9rem !important;
  }
  .me-md-19 {
    margin-right: 10rem !important;
  }
  .me-md-20 {
    margin-right: 12rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1rem !important;
  }
  .mb-md-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-md-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-7 {
    margin-bottom: 2rem !important;
  }
  .mb-md-8 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-9 {
    margin-bottom: 3rem !important;
  }
  .mb-md-10 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-11 {
    margin-bottom: 4rem !important;
  }
  .mb-md-12 {
    margin-bottom: 4.5rem !important;
  }
  .mb-md-13 {
    margin-bottom: 5rem !important;
  }
  .mb-md-14 {
    margin-bottom: 5.5rem !important;
  }
  .mb-md-15 {
    margin-bottom: 6rem !important;
  }
  .mb-md-16 {
    margin-bottom: 7rem !important;
  }
  .mb-md-17 {
    margin-bottom: 8rem !important;
  }
  .mb-md-18 {
    margin-bottom: 9rem !important;
  }
  .mb-md-19 {
    margin-bottom: 10rem !important;
  }
  .mb-md-20 {
    margin-bottom: 12rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 0.75rem !important;
  }
  .ms-md-4 {
    margin-left: 1rem !important;
  }
  .ms-md-5 {
    margin-left: 1.25rem !important;
  }
  .ms-md-6 {
    margin-left: 1.5rem !important;
  }
  .ms-md-7 {
    margin-left: 2rem !important;
  }
  .ms-md-8 {
    margin-left: 2.5rem !important;
  }
  .ms-md-9 {
    margin-left: 3rem !important;
  }
  .ms-md-10 {
    margin-left: 3.5rem !important;
  }
  .ms-md-11 {
    margin-left: 4rem !important;
  }
  .ms-md-12 {
    margin-left: 4.5rem !important;
  }
  .ms-md-13 {
    margin-left: 5rem !important;
  }
  .ms-md-14 {
    margin-left: 5.5rem !important;
  }
  .ms-md-15 {
    margin-left: 6rem !important;
  }
  .ms-md-16 {
    margin-left: 7rem !important;
  }
  .ms-md-17 {
    margin-left: 8rem !important;
  }
  .ms-md-18 {
    margin-left: 9rem !important;
  }
  .ms-md-19 {
    margin-left: 10rem !important;
  }
  .ms-md-20 {
    margin-left: 12rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 0.75rem !important;
  }
  .p-md-4 {
    padding: 1rem !important;
  }
  .p-md-5 {
    padding: 1.25rem !important;
  }
  .p-md-6 {
    padding: 1.5rem !important;
  }
  .p-md-7 {
    padding: 2rem !important;
  }
  .p-md-8 {
    padding: 2.5rem !important;
  }
  .p-md-9 {
    padding: 3rem !important;
  }
  .p-md-10 {
    padding: 3.5rem !important;
  }
  .p-md-11 {
    padding: 4rem !important;
  }
  .p-md-12 {
    padding: 4.5rem !important;
  }
  .p-md-13 {
    padding: 5rem !important;
  }
  .p-md-14 {
    padding: 5.5rem !important;
  }
  .p-md-15 {
    padding: 6rem !important;
  }
  .p-md-16 {
    padding: 7rem !important;
  }
  .p-md-17 {
    padding: 8rem !important;
  }
  .p-md-18 {
    padding: 9rem !important;
  }
  .p-md-19 {
    padding: 10rem !important;
  }
  .p-md-20 {
    padding: 12rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-md-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-md-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-8 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-9 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-10 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-11 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-12 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-md-13 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-14 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-md-15 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-16 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-md-17 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-md-18 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-md-19 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-md-20 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-md-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-md-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-8 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-9 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-10 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-11 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-12 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-md-13 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-14 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-md-15 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-16 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-md-17 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-md-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-md-20 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 0.75rem !important;
  }
  .pt-md-4 {
    padding-top: 1rem !important;
  }
  .pt-md-5 {
    padding-top: 1.25rem !important;
  }
  .pt-md-6 {
    padding-top: 1.5rem !important;
  }
  .pt-md-7 {
    padding-top: 2rem !important;
  }
  .pt-md-8 {
    padding-top: 2.5rem !important;
  }
  .pt-md-9 {
    padding-top: 3rem !important;
  }
  .pt-md-10 {
    padding-top: 3.5rem !important;
  }
  .pt-md-11 {
    padding-top: 4rem !important;
  }
  .pt-md-12 {
    padding-top: 4.5rem !important;
  }
  .pt-md-13 {
    padding-top: 5rem !important;
  }
  .pt-md-14 {
    padding-top: 5.5rem !important;
  }
  .pt-md-15 {
    padding-top: 6rem !important;
  }
  .pt-md-16 {
    padding-top: 7rem !important;
  }
  .pt-md-17 {
    padding-top: 8rem !important;
  }
  .pt-md-18 {
    padding-top: 9rem !important;
  }
  .pt-md-19 {
    padding-top: 10rem !important;
  }
  .pt-md-20 {
    padding-top: 12rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 0.75rem !important;
  }
  .pe-md-4 {
    padding-right: 1rem !important;
  }
  .pe-md-5 {
    padding-right: 1.25rem !important;
  }
  .pe-md-6 {
    padding-right: 1.5rem !important;
  }
  .pe-md-7 {
    padding-right: 2rem !important;
  }
  .pe-md-8 {
    padding-right: 2.5rem !important;
  }
  .pe-md-9 {
    padding-right: 3rem !important;
  }
  .pe-md-10 {
    padding-right: 3.5rem !important;
  }
  .pe-md-11 {
    padding-right: 4rem !important;
  }
  .pe-md-12 {
    padding-right: 4.5rem !important;
  }
  .pe-md-13 {
    padding-right: 5rem !important;
  }
  .pe-md-14 {
    padding-right: 5.5rem !important;
  }
  .pe-md-15 {
    padding-right: 6rem !important;
  }
  .pe-md-16 {
    padding-right: 7rem !important;
  }
  .pe-md-17 {
    padding-right: 8rem !important;
  }
  .pe-md-18 {
    padding-right: 9rem !important;
  }
  .pe-md-19 {
    padding-right: 10rem !important;
  }
  .pe-md-20 {
    padding-right: 12rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1rem !important;
  }
  .pb-md-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-md-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-7 {
    padding-bottom: 2rem !important;
  }
  .pb-md-8 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-9 {
    padding-bottom: 3rem !important;
  }
  .pb-md-10 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-11 {
    padding-bottom: 4rem !important;
  }
  .pb-md-12 {
    padding-bottom: 4.5rem !important;
  }
  .pb-md-13 {
    padding-bottom: 5rem !important;
  }
  .pb-md-14 {
    padding-bottom: 5.5rem !important;
  }
  .pb-md-15 {
    padding-bottom: 6rem !important;
  }
  .pb-md-16 {
    padding-bottom: 7rem !important;
  }
  .pb-md-17 {
    padding-bottom: 8rem !important;
  }
  .pb-md-18 {
    padding-bottom: 9rem !important;
  }
  .pb-md-19 {
    padding-bottom: 10rem !important;
  }
  .pb-md-20 {
    padding-bottom: 12rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 0.75rem !important;
  }
  .ps-md-4 {
    padding-left: 1rem !important;
  }
  .ps-md-5 {
    padding-left: 1.25rem !important;
  }
  .ps-md-6 {
    padding-left: 1.5rem !important;
  }
  .ps-md-7 {
    padding-left: 2rem !important;
  }
  .ps-md-8 {
    padding-left: 2.5rem !important;
  }
  .ps-md-9 {
    padding-left: 3rem !important;
  }
  .ps-md-10 {
    padding-left: 3.5rem !important;
  }
  .ps-md-11 {
    padding-left: 4rem !important;
  }
  .ps-md-12 {
    padding-left: 4.5rem !important;
  }
  .ps-md-13 {
    padding-left: 5rem !important;
  }
  .ps-md-14 {
    padding-left: 5.5rem !important;
  }
  .ps-md-15 {
    padding-left: 6rem !important;
  }
  .ps-md-16 {
    padding-left: 7rem !important;
  }
  .ps-md-17 {
    padding-left: 8rem !important;
  }
  .ps-md-18 {
    padding-left: 9rem !important;
  }
  .ps-md-19 {
    padding-left: 10rem !important;
  }
  .ps-md-20 {
    padding-left: 12rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 0.75rem !important;
  }
  .gap-md-4 {
    gap: 1rem !important;
  }
  .gap-md-5 {
    gap: 1.25rem !important;
  }
  .gap-md-6 {
    gap: 1.5rem !important;
  }
  .gap-md-7 {
    gap: 2rem !important;
  }
  .gap-md-8 {
    gap: 2.5rem !important;
  }
  .gap-md-9 {
    gap: 3rem !important;
  }
  .gap-md-10 {
    gap: 3.5rem !important;
  }
  .gap-md-11 {
    gap: 4rem !important;
  }
  .gap-md-12 {
    gap: 4.5rem !important;
  }
  .gap-md-13 {
    gap: 5rem !important;
  }
  .gap-md-14 {
    gap: 5.5rem !important;
  }
  .gap-md-15 {
    gap: 6rem !important;
  }
  .gap-md-16 {
    gap: 7rem !important;
  }
  .gap-md-17 {
    gap: 8rem !important;
  }
  .gap-md-18 {
    gap: 9rem !important;
  }
  .gap-md-19 {
    gap: 10rem !important;
  }
  .gap-md-20 {
    gap: 12rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1rem !important;
  }
  .row-gap-md-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-md-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-7 {
    row-gap: 2rem !important;
  }
  .row-gap-md-8 {
    row-gap: 2.5rem !important;
  }
  .row-gap-md-9 {
    row-gap: 3rem !important;
  }
  .row-gap-md-10 {
    row-gap: 3.5rem !important;
  }
  .row-gap-md-11 {
    row-gap: 4rem !important;
  }
  .row-gap-md-12 {
    row-gap: 4.5rem !important;
  }
  .row-gap-md-13 {
    row-gap: 5rem !important;
  }
  .row-gap-md-14 {
    row-gap: 5.5rem !important;
  }
  .row-gap-md-15 {
    row-gap: 6rem !important;
  }
  .row-gap-md-16 {
    row-gap: 7rem !important;
  }
  .row-gap-md-17 {
    row-gap: 8rem !important;
  }
  .row-gap-md-18 {
    row-gap: 9rem !important;
  }
  .row-gap-md-19 {
    row-gap: 10rem !important;
  }
  .row-gap-md-20 {
    row-gap: 12rem !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    column-gap: 0.75rem !important;
  }
  .column-gap-md-4 {
    column-gap: 1rem !important;
  }
  .column-gap-md-5 {
    column-gap: 1.25rem !important;
  }
  .column-gap-md-6 {
    column-gap: 1.5rem !important;
  }
  .column-gap-md-7 {
    column-gap: 2rem !important;
  }
  .column-gap-md-8 {
    column-gap: 2.5rem !important;
  }
  .column-gap-md-9 {
    column-gap: 3rem !important;
  }
  .column-gap-md-10 {
    column-gap: 3.5rem !important;
  }
  .column-gap-md-11 {
    column-gap: 4rem !important;
  }
  .column-gap-md-12 {
    column-gap: 4.5rem !important;
  }
  .column-gap-md-13 {
    column-gap: 5rem !important;
  }
  .column-gap-md-14 {
    column-gap: 5.5rem !important;
  }
  .column-gap-md-15 {
    column-gap: 6rem !important;
  }
  .column-gap-md-16 {
    column-gap: 7rem !important;
  }
  .column-gap-md-17 {
    column-gap: 8rem !important;
  }
  .column-gap-md-18 {
    column-gap: 9rem !important;
  }
  .column-gap-md-19 {
    column-gap: 10rem !important;
  }
  .column-gap-md-20 {
    column-gap: 12rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block, .is-act-checkoutregisterpage .checkout .checkout-aside {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 0.75rem !important;
  }
  .m-lg-4 {
    margin: 1rem !important;
  }
  .m-lg-5 {
    margin: 1.25rem !important;
  }
  .m-lg-6 {
    margin: 1.5rem !important;
  }
  .m-lg-7 {
    margin: 2rem !important;
  }
  .m-lg-8 {
    margin: 2.5rem !important;
  }
  .m-lg-9 {
    margin: 3rem !important;
  }
  .m-lg-10 {
    margin: 3.5rem !important;
  }
  .m-lg-11 {
    margin: 4rem !important;
  }
  .m-lg-12 {
    margin: 4.5rem !important;
  }
  .m-lg-13 {
    margin: 5rem !important;
  }
  .m-lg-14 {
    margin: 5.5rem !important;
  }
  .m-lg-15 {
    margin: 6rem !important;
  }
  .m-lg-16 {
    margin: 7rem !important;
  }
  .m-lg-17 {
    margin: 8rem !important;
  }
  .m-lg-18 {
    margin: 9rem !important;
  }
  .m-lg-19 {
    margin: 10rem !important;
  }
  .m-lg-20 {
    margin: 12rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-lg-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-lg-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-8 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-9 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-10 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-11 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-12 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-lg-13 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-14 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-lg-15 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-16 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-lg-17 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-lg-18 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-lg-19 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-lg-20 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-lg-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-lg-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-8 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-9 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-10 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-11 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-12 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-lg-13 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-14 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-lg-15 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-16 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-lg-17 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-lg-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-lg-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-lg-20 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 0.75rem !important;
  }
  .mt-lg-4 {
    margin-top: 1rem !important;
  }
  .mt-lg-5 {
    margin-top: 1.25rem !important;
  }
  .mt-lg-6 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-7 {
    margin-top: 2rem !important;
  }
  .mt-lg-8 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-9 {
    margin-top: 3rem !important;
  }
  .mt-lg-10 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-11 {
    margin-top: 4rem !important;
  }
  .mt-lg-12 {
    margin-top: 4.5rem !important;
  }
  .mt-lg-13 {
    margin-top: 5rem !important;
  }
  .mt-lg-14 {
    margin-top: 5.5rem !important;
  }
  .mt-lg-15 {
    margin-top: 6rem !important;
  }
  .mt-lg-16 {
    margin-top: 7rem !important;
  }
  .mt-lg-17 {
    margin-top: 8rem !important;
  }
  .mt-lg-18 {
    margin-top: 9rem !important;
  }
  .mt-lg-19 {
    margin-top: 10rem !important;
  }
  .mt-lg-20 {
    margin-top: 12rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 0.75rem !important;
  }
  .me-lg-4 {
    margin-right: 1rem !important;
  }
  .me-lg-5 {
    margin-right: 1.25rem !important;
  }
  .me-lg-6 {
    margin-right: 1.5rem !important;
  }
  .me-lg-7 {
    margin-right: 2rem !important;
  }
  .me-lg-8 {
    margin-right: 2.5rem !important;
  }
  .me-lg-9 {
    margin-right: 3rem !important;
  }
  .me-lg-10 {
    margin-right: 3.5rem !important;
  }
  .me-lg-11 {
    margin-right: 4rem !important;
  }
  .me-lg-12 {
    margin-right: 4.5rem !important;
  }
  .me-lg-13 {
    margin-right: 5rem !important;
  }
  .me-lg-14 {
    margin-right: 5.5rem !important;
  }
  .me-lg-15 {
    margin-right: 6rem !important;
  }
  .me-lg-16 {
    margin-right: 7rem !important;
  }
  .me-lg-17 {
    margin-right: 8rem !important;
  }
  .me-lg-18 {
    margin-right: 9rem !important;
  }
  .me-lg-19 {
    margin-right: 10rem !important;
  }
  .me-lg-20 {
    margin-right: 12rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-12 {
    margin-bottom: 4.5rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-14 {
    margin-bottom: 5.5rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-16 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-17 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-18 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-19 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-20 {
    margin-bottom: 12rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 0.75rem !important;
  }
  .ms-lg-4 {
    margin-left: 1rem !important;
  }
  .ms-lg-5 {
    margin-left: 1.25rem !important;
  }
  .ms-lg-6 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-7 {
    margin-left: 2rem !important;
  }
  .ms-lg-8 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-9 {
    margin-left: 3rem !important;
  }
  .ms-lg-10 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-11 {
    margin-left: 4rem !important;
  }
  .ms-lg-12 {
    margin-left: 4.5rem !important;
  }
  .ms-lg-13 {
    margin-left: 5rem !important;
  }
  .ms-lg-14 {
    margin-left: 5.5rem !important;
  }
  .ms-lg-15 {
    margin-left: 6rem !important;
  }
  .ms-lg-16 {
    margin-left: 7rem !important;
  }
  .ms-lg-17 {
    margin-left: 8rem !important;
  }
  .ms-lg-18 {
    margin-left: 9rem !important;
  }
  .ms-lg-19 {
    margin-left: 10rem !important;
  }
  .ms-lg-20 {
    margin-left: 12rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 0.75rem !important;
  }
  .p-lg-4 {
    padding: 1rem !important;
  }
  .p-lg-5 {
    padding: 1.25rem !important;
  }
  .p-lg-6 {
    padding: 1.5rem !important;
  }
  .p-lg-7 {
    padding: 2rem !important;
  }
  .p-lg-8 {
    padding: 2.5rem !important;
  }
  .p-lg-9 {
    padding: 3rem !important;
  }
  .p-lg-10 {
    padding: 3.5rem !important;
  }
  .p-lg-11 {
    padding: 4rem !important;
  }
  .p-lg-12 {
    padding: 4.5rem !important;
  }
  .p-lg-13 {
    padding: 5rem !important;
  }
  .p-lg-14 {
    padding: 5.5rem !important;
  }
  .p-lg-15 {
    padding: 6rem !important;
  }
  .p-lg-16 {
    padding: 7rem !important;
  }
  .p-lg-17 {
    padding: 8rem !important;
  }
  .p-lg-18 {
    padding: 9rem !important;
  }
  .p-lg-19 {
    padding: 10rem !important;
  }
  .p-lg-20 {
    padding: 12rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-lg-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-lg-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-8 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-9 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-10 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-11 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-12 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-lg-13 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-14 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-lg-15 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-16 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-lg-17 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-lg-18 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-lg-19 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-lg-20 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-lg-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-lg-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-8 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-9 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-10 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-11 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-12 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-lg-13 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-14 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-lg-15 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-16 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-lg-17 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-lg-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-lg-20 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 0.75rem !important;
  }
  .pt-lg-4 {
    padding-top: 1rem !important;
  }
  .pt-lg-5 {
    padding-top: 1.25rem !important;
  }
  .pt-lg-6 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-7 {
    padding-top: 2rem !important;
  }
  .pt-lg-8 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-9 {
    padding-top: 3rem !important;
  }
  .pt-lg-10 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-11 {
    padding-top: 4rem !important;
  }
  .pt-lg-12 {
    padding-top: 4.5rem !important;
  }
  .pt-lg-13 {
    padding-top: 5rem !important;
  }
  .pt-lg-14 {
    padding-top: 5.5rem !important;
  }
  .pt-lg-15 {
    padding-top: 6rem !important;
  }
  .pt-lg-16 {
    padding-top: 7rem !important;
  }
  .pt-lg-17 {
    padding-top: 8rem !important;
  }
  .pt-lg-18 {
    padding-top: 9rem !important;
  }
  .pt-lg-19 {
    padding-top: 10rem !important;
  }
  .pt-lg-20 {
    padding-top: 12rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 0.75rem !important;
  }
  .pe-lg-4 {
    padding-right: 1rem !important;
  }
  .pe-lg-5 {
    padding-right: 1.25rem !important;
  }
  .pe-lg-6 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-7 {
    padding-right: 2rem !important;
  }
  .pe-lg-8 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-9 {
    padding-right: 3rem !important;
  }
  .pe-lg-10 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-11 {
    padding-right: 4rem !important;
  }
  .pe-lg-12 {
    padding-right: 4.5rem !important;
  }
  .pe-lg-13 {
    padding-right: 5rem !important;
  }
  .pe-lg-14 {
    padding-right: 5.5rem !important;
  }
  .pe-lg-15 {
    padding-right: 6rem !important;
  }
  .pe-lg-16 {
    padding-right: 7rem !important;
  }
  .pe-lg-17 {
    padding-right: 8rem !important;
  }
  .pe-lg-18 {
    padding-right: 9rem !important;
  }
  .pe-lg-19 {
    padding-right: 10rem !important;
  }
  .pe-lg-20 {
    padding-right: 12rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-12 {
    padding-bottom: 4.5rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-14 {
    padding-bottom: 5.5rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-16 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-17 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-18 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-19 {
    padding-bottom: 10rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 12rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 0.75rem !important;
  }
  .ps-lg-4 {
    padding-left: 1rem !important;
  }
  .ps-lg-5 {
    padding-left: 1.25rem !important;
  }
  .ps-lg-6 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-7 {
    padding-left: 2rem !important;
  }
  .ps-lg-8 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-9 {
    padding-left: 3rem !important;
  }
  .ps-lg-10 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-11 {
    padding-left: 4rem !important;
  }
  .ps-lg-12 {
    padding-left: 4.5rem !important;
  }
  .ps-lg-13 {
    padding-left: 5rem !important;
  }
  .ps-lg-14 {
    padding-left: 5.5rem !important;
  }
  .ps-lg-15 {
    padding-left: 6rem !important;
  }
  .ps-lg-16 {
    padding-left: 7rem !important;
  }
  .ps-lg-17 {
    padding-left: 8rem !important;
  }
  .ps-lg-18 {
    padding-left: 9rem !important;
  }
  .ps-lg-19 {
    padding-left: 10rem !important;
  }
  .ps-lg-20 {
    padding-left: 12rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 0.75rem !important;
  }
  .gap-lg-4 {
    gap: 1rem !important;
  }
  .gap-lg-5 {
    gap: 1.25rem !important;
  }
  .gap-lg-6 {
    gap: 1.5rem !important;
  }
  .gap-lg-7 {
    gap: 2rem !important;
  }
  .gap-lg-8 {
    gap: 2.5rem !important;
  }
  .gap-lg-9 {
    gap: 3rem !important;
  }
  .gap-lg-10 {
    gap: 3.5rem !important;
  }
  .gap-lg-11 {
    gap: 4rem !important;
  }
  .gap-lg-12 {
    gap: 4.5rem !important;
  }
  .gap-lg-13 {
    gap: 5rem !important;
  }
  .gap-lg-14 {
    gap: 5.5rem !important;
  }
  .gap-lg-15 {
    gap: 6rem !important;
  }
  .gap-lg-16 {
    gap: 7rem !important;
  }
  .gap-lg-17 {
    gap: 8rem !important;
  }
  .gap-lg-18 {
    gap: 9rem !important;
  }
  .gap-lg-19 {
    gap: 10rem !important;
  }
  .gap-lg-20 {
    gap: 12rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-lg-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-7 {
    row-gap: 2rem !important;
  }
  .row-gap-lg-8 {
    row-gap: 2.5rem !important;
  }
  .row-gap-lg-9 {
    row-gap: 3rem !important;
  }
  .row-gap-lg-10 {
    row-gap: 3.5rem !important;
  }
  .row-gap-lg-11 {
    row-gap: 4rem !important;
  }
  .row-gap-lg-12 {
    row-gap: 4.5rem !important;
  }
  .row-gap-lg-13 {
    row-gap: 5rem !important;
  }
  .row-gap-lg-14 {
    row-gap: 5.5rem !important;
  }
  .row-gap-lg-15 {
    row-gap: 6rem !important;
  }
  .row-gap-lg-16 {
    row-gap: 7rem !important;
  }
  .row-gap-lg-17 {
    row-gap: 8rem !important;
  }
  .row-gap-lg-18 {
    row-gap: 9rem !important;
  }
  .row-gap-lg-19 {
    row-gap: 10rem !important;
  }
  .row-gap-lg-20 {
    row-gap: 12rem !important;
  }
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    column-gap: 0.75rem !important;
  }
  .column-gap-lg-4 {
    column-gap: 1rem !important;
  }
  .column-gap-lg-5 {
    column-gap: 1.25rem !important;
  }
  .column-gap-lg-6 {
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-7 {
    column-gap: 2rem !important;
  }
  .column-gap-lg-8 {
    column-gap: 2.5rem !important;
  }
  .column-gap-lg-9 {
    column-gap: 3rem !important;
  }
  .column-gap-lg-10 {
    column-gap: 3.5rem !important;
  }
  .column-gap-lg-11 {
    column-gap: 4rem !important;
  }
  .column-gap-lg-12 {
    column-gap: 4.5rem !important;
  }
  .column-gap-lg-13 {
    column-gap: 5rem !important;
  }
  .column-gap-lg-14 {
    column-gap: 5.5rem !important;
  }
  .column-gap-lg-15 {
    column-gap: 6rem !important;
  }
  .column-gap-lg-16 {
    column-gap: 7rem !important;
  }
  .column-gap-lg-17 {
    column-gap: 8rem !important;
  }
  .column-gap-lg-18 {
    column-gap: 9rem !important;
  }
  .column-gap-lg-19 {
    column-gap: 10rem !important;
  }
  .column-gap-lg-20 {
    column-gap: 12rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 0.75rem !important;
  }
  .m-xl-4 {
    margin: 1rem !important;
  }
  .m-xl-5 {
    margin: 1.25rem !important;
  }
  .m-xl-6 {
    margin: 1.5rem !important;
  }
  .m-xl-7 {
    margin: 2rem !important;
  }
  .m-xl-8 {
    margin: 2.5rem !important;
  }
  .m-xl-9 {
    margin: 3rem !important;
  }
  .m-xl-10 {
    margin: 3.5rem !important;
  }
  .m-xl-11 {
    margin: 4rem !important;
  }
  .m-xl-12 {
    margin: 4.5rem !important;
  }
  .m-xl-13 {
    margin: 5rem !important;
  }
  .m-xl-14 {
    margin: 5.5rem !important;
  }
  .m-xl-15 {
    margin: 6rem !important;
  }
  .m-xl-16 {
    margin: 7rem !important;
  }
  .m-xl-17 {
    margin: 8rem !important;
  }
  .m-xl-18 {
    margin: 9rem !important;
  }
  .m-xl-19 {
    margin: 10rem !important;
  }
  .m-xl-20 {
    margin: 12rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-8 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-9 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-10 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-11 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-12 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xl-13 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-14 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-xl-15 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-16 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xl-17 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xl-18 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xl-19 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xl-20 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-8 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-9 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-10 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-11 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-12 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xl-13 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-14 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-xl-15 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-16 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xl-17 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xl-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xl-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xl-20 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xl-4 {
    margin-top: 1rem !important;
  }
  .mt-xl-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xl-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-7 {
    margin-top: 2rem !important;
  }
  .mt-xl-8 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-9 {
    margin-top: 3rem !important;
  }
  .mt-xl-10 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-11 {
    margin-top: 4rem !important;
  }
  .mt-xl-12 {
    margin-top: 4.5rem !important;
  }
  .mt-xl-13 {
    margin-top: 5rem !important;
  }
  .mt-xl-14 {
    margin-top: 5.5rem !important;
  }
  .mt-xl-15 {
    margin-top: 6rem !important;
  }
  .mt-xl-16 {
    margin-top: 7rem !important;
  }
  .mt-xl-17 {
    margin-top: 8rem !important;
  }
  .mt-xl-18 {
    margin-top: 9rem !important;
  }
  .mt-xl-19 {
    margin-top: 10rem !important;
  }
  .mt-xl-20 {
    margin-top: 12rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 0.75rem !important;
  }
  .me-xl-4 {
    margin-right: 1rem !important;
  }
  .me-xl-5 {
    margin-right: 1.25rem !important;
  }
  .me-xl-6 {
    margin-right: 1.5rem !important;
  }
  .me-xl-7 {
    margin-right: 2rem !important;
  }
  .me-xl-8 {
    margin-right: 2.5rem !important;
  }
  .me-xl-9 {
    margin-right: 3rem !important;
  }
  .me-xl-10 {
    margin-right: 3.5rem !important;
  }
  .me-xl-11 {
    margin-right: 4rem !important;
  }
  .me-xl-12 {
    margin-right: 4.5rem !important;
  }
  .me-xl-13 {
    margin-right: 5rem !important;
  }
  .me-xl-14 {
    margin-right: 5.5rem !important;
  }
  .me-xl-15 {
    margin-right: 6rem !important;
  }
  .me-xl-16 {
    margin-right: 7rem !important;
  }
  .me-xl-17 {
    margin-right: 8rem !important;
  }
  .me-xl-18 {
    margin-right: 9rem !important;
  }
  .me-xl-19 {
    margin-right: 10rem !important;
  }
  .me-xl-20 {
    margin-right: 12rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-12 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-14 {
    margin-bottom: 5.5rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-16 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-17 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-18 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-19 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-20 {
    margin-bottom: 12rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xl-4 {
    margin-left: 1rem !important;
  }
  .ms-xl-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xl-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-7 {
    margin-left: 2rem !important;
  }
  .ms-xl-8 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-9 {
    margin-left: 3rem !important;
  }
  .ms-xl-10 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-11 {
    margin-left: 4rem !important;
  }
  .ms-xl-12 {
    margin-left: 4.5rem !important;
  }
  .ms-xl-13 {
    margin-left: 5rem !important;
  }
  .ms-xl-14 {
    margin-left: 5.5rem !important;
  }
  .ms-xl-15 {
    margin-left: 6rem !important;
  }
  .ms-xl-16 {
    margin-left: 7rem !important;
  }
  .ms-xl-17 {
    margin-left: 8rem !important;
  }
  .ms-xl-18 {
    margin-left: 9rem !important;
  }
  .ms-xl-19 {
    margin-left: 10rem !important;
  }
  .ms-xl-20 {
    margin-left: 12rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 0.75rem !important;
  }
  .p-xl-4 {
    padding: 1rem !important;
  }
  .p-xl-5 {
    padding: 1.25rem !important;
  }
  .p-xl-6 {
    padding: 1.5rem !important;
  }
  .p-xl-7 {
    padding: 2rem !important;
  }
  .p-xl-8 {
    padding: 2.5rem !important;
  }
  .p-xl-9 {
    padding: 3rem !important;
  }
  .p-xl-10 {
    padding: 3.5rem !important;
  }
  .p-xl-11 {
    padding: 4rem !important;
  }
  .p-xl-12 {
    padding: 4.5rem !important;
  }
  .p-xl-13 {
    padding: 5rem !important;
  }
  .p-xl-14 {
    padding: 5.5rem !important;
  }
  .p-xl-15 {
    padding: 6rem !important;
  }
  .p-xl-16 {
    padding: 7rem !important;
  }
  .p-xl-17 {
    padding: 8rem !important;
  }
  .p-xl-18 {
    padding: 9rem !important;
  }
  .p-xl-19 {
    padding: 10rem !important;
  }
  .p-xl-20 {
    padding: 12rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-8 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-9 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-10 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-11 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-12 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xl-13 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-14 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-xl-15 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-16 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xl-17 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xl-18 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xl-19 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xl-20 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-8 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-9 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-10 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-11 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-12 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xl-13 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-14 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-xl-15 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-16 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xl-17 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xl-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xl-20 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xl-4 {
    padding-top: 1rem !important;
  }
  .pt-xl-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xl-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-7 {
    padding-top: 2rem !important;
  }
  .pt-xl-8 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-9 {
    padding-top: 3rem !important;
  }
  .pt-xl-10 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-11 {
    padding-top: 4rem !important;
  }
  .pt-xl-12 {
    padding-top: 4.5rem !important;
  }
  .pt-xl-13 {
    padding-top: 5rem !important;
  }
  .pt-xl-14 {
    padding-top: 5.5rem !important;
  }
  .pt-xl-15 {
    padding-top: 6rem !important;
  }
  .pt-xl-16 {
    padding-top: 7rem !important;
  }
  .pt-xl-17 {
    padding-top: 8rem !important;
  }
  .pt-xl-18 {
    padding-top: 9rem !important;
  }
  .pt-xl-19 {
    padding-top: 10rem !important;
  }
  .pt-xl-20 {
    padding-top: 12rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xl-4 {
    padding-right: 1rem !important;
  }
  .pe-xl-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xl-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-7 {
    padding-right: 2rem !important;
  }
  .pe-xl-8 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-9 {
    padding-right: 3rem !important;
  }
  .pe-xl-10 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-11 {
    padding-right: 4rem !important;
  }
  .pe-xl-12 {
    padding-right: 4.5rem !important;
  }
  .pe-xl-13 {
    padding-right: 5rem !important;
  }
  .pe-xl-14 {
    padding-right: 5.5rem !important;
  }
  .pe-xl-15 {
    padding-right: 6rem !important;
  }
  .pe-xl-16 {
    padding-right: 7rem !important;
  }
  .pe-xl-17 {
    padding-right: 8rem !important;
  }
  .pe-xl-18 {
    padding-right: 9rem !important;
  }
  .pe-xl-19 {
    padding-right: 10rem !important;
  }
  .pe-xl-20 {
    padding-right: 12rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-12 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-14 {
    padding-bottom: 5.5rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-16 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-17 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-18 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-19 {
    padding-bottom: 10rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 12rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xl-4 {
    padding-left: 1rem !important;
  }
  .ps-xl-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xl-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-7 {
    padding-left: 2rem !important;
  }
  .ps-xl-8 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-9 {
    padding-left: 3rem !important;
  }
  .ps-xl-10 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-11 {
    padding-left: 4rem !important;
  }
  .ps-xl-12 {
    padding-left: 4.5rem !important;
  }
  .ps-xl-13 {
    padding-left: 5rem !important;
  }
  .ps-xl-14 {
    padding-left: 5.5rem !important;
  }
  .ps-xl-15 {
    padding-left: 6rem !important;
  }
  .ps-xl-16 {
    padding-left: 7rem !important;
  }
  .ps-xl-17 {
    padding-left: 8rem !important;
  }
  .ps-xl-18 {
    padding-left: 9rem !important;
  }
  .ps-xl-19 {
    padding-left: 10rem !important;
  }
  .ps-xl-20 {
    padding-left: 12rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 0.75rem !important;
  }
  .gap-xl-4 {
    gap: 1rem !important;
  }
  .gap-xl-5 {
    gap: 1.25rem !important;
  }
  .gap-xl-6 {
    gap: 1.5rem !important;
  }
  .gap-xl-7 {
    gap: 2rem !important;
  }
  .gap-xl-8 {
    gap: 2.5rem !important;
  }
  .gap-xl-9 {
    gap: 3rem !important;
  }
  .gap-xl-10 {
    gap: 3.5rem !important;
  }
  .gap-xl-11 {
    gap: 4rem !important;
  }
  .gap-xl-12 {
    gap: 4.5rem !important;
  }
  .gap-xl-13 {
    gap: 5rem !important;
  }
  .gap-xl-14 {
    gap: 5.5rem !important;
  }
  .gap-xl-15 {
    gap: 6rem !important;
  }
  .gap-xl-16 {
    gap: 7rem !important;
  }
  .gap-xl-17 {
    gap: 8rem !important;
  }
  .gap-xl-18 {
    gap: 9rem !important;
  }
  .gap-xl-19 {
    gap: 10rem !important;
  }
  .gap-xl-20 {
    gap: 12rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xl-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-7 {
    row-gap: 2rem !important;
  }
  .row-gap-xl-8 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xl-9 {
    row-gap: 3rem !important;
  }
  .row-gap-xl-10 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xl-11 {
    row-gap: 4rem !important;
  }
  .row-gap-xl-12 {
    row-gap: 4.5rem !important;
  }
  .row-gap-xl-13 {
    row-gap: 5rem !important;
  }
  .row-gap-xl-14 {
    row-gap: 5.5rem !important;
  }
  .row-gap-xl-15 {
    row-gap: 6rem !important;
  }
  .row-gap-xl-16 {
    row-gap: 7rem !important;
  }
  .row-gap-xl-17 {
    row-gap: 8rem !important;
  }
  .row-gap-xl-18 {
    row-gap: 9rem !important;
  }
  .row-gap-xl-19 {
    row-gap: 10rem !important;
  }
  .row-gap-xl-20 {
    row-gap: 12rem !important;
  }
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    column-gap: 0.75rem !important;
  }
  .column-gap-xl-4 {
    column-gap: 1rem !important;
  }
  .column-gap-xl-5 {
    column-gap: 1.25rem !important;
  }
  .column-gap-xl-6 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-7 {
    column-gap: 2rem !important;
  }
  .column-gap-xl-8 {
    column-gap: 2.5rem !important;
  }
  .column-gap-xl-9 {
    column-gap: 3rem !important;
  }
  .column-gap-xl-10 {
    column-gap: 3.5rem !important;
  }
  .column-gap-xl-11 {
    column-gap: 4rem !important;
  }
  .column-gap-xl-12 {
    column-gap: 4.5rem !important;
  }
  .column-gap-xl-13 {
    column-gap: 5rem !important;
  }
  .column-gap-xl-14 {
    column-gap: 5.5rem !important;
  }
  .column-gap-xl-15 {
    column-gap: 6rem !important;
  }
  .column-gap-xl-16 {
    column-gap: 7rem !important;
  }
  .column-gap-xl-17 {
    column-gap: 8rem !important;
  }
  .column-gap-xl-18 {
    column-gap: 9rem !important;
  }
  .column-gap-xl-19 {
    column-gap: 10rem !important;
  }
  .column-gap-xl-20 {
    column-gap: 12rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 0.75rem !important;
  }
  .m-xxl-4 {
    margin: 1rem !important;
  }
  .m-xxl-5 {
    margin: 1.25rem !important;
  }
  .m-xxl-6 {
    margin: 1.5rem !important;
  }
  .m-xxl-7 {
    margin: 2rem !important;
  }
  .m-xxl-8 {
    margin: 2.5rem !important;
  }
  .m-xxl-9 {
    margin: 3rem !important;
  }
  .m-xxl-10 {
    margin: 3.5rem !important;
  }
  .m-xxl-11 {
    margin: 4rem !important;
  }
  .m-xxl-12 {
    margin: 4.5rem !important;
  }
  .m-xxl-13 {
    margin: 5rem !important;
  }
  .m-xxl-14 {
    margin: 5.5rem !important;
  }
  .m-xxl-15 {
    margin: 6rem !important;
  }
  .m-xxl-16 {
    margin: 7rem !important;
  }
  .m-xxl-17 {
    margin: 8rem !important;
  }
  .m-xxl-18 {
    margin: 9rem !important;
  }
  .m-xxl-19 {
    margin: 10rem !important;
  }
  .m-xxl-20 {
    margin: 12rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-8 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-9 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-10 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxl-11 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-12 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xxl-13 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-14 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-xxl-15 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-16 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxl-17 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxl-18 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxl-19 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxl-20 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-8 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-9 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-10 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxl-11 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-12 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xxl-13 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-14 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-xxl-15 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-16 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxl-17 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxl-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxl-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxl-20 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1rem !important;
  }
  .mt-xxl-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xxl-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-7 {
    margin-top: 2rem !important;
  }
  .mt-xxl-8 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-9 {
    margin-top: 3rem !important;
  }
  .mt-xxl-10 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-11 {
    margin-top: 4rem !important;
  }
  .mt-xxl-12 {
    margin-top: 4.5rem !important;
  }
  .mt-xxl-13 {
    margin-top: 5rem !important;
  }
  .mt-xxl-14 {
    margin-top: 5.5rem !important;
  }
  .mt-xxl-15 {
    margin-top: 6rem !important;
  }
  .mt-xxl-16 {
    margin-top: 7rem !important;
  }
  .mt-xxl-17 {
    margin-top: 8rem !important;
  }
  .mt-xxl-18 {
    margin-top: 9rem !important;
  }
  .mt-xxl-19 {
    margin-top: 10rem !important;
  }
  .mt-xxl-20 {
    margin-top: 12rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 0.75rem !important;
  }
  .me-xxl-4 {
    margin-right: 1rem !important;
  }
  .me-xxl-5 {
    margin-right: 1.25rem !important;
  }
  .me-xxl-6 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-7 {
    margin-right: 2rem !important;
  }
  .me-xxl-8 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-9 {
    margin-right: 3rem !important;
  }
  .me-xxl-10 {
    margin-right: 3.5rem !important;
  }
  .me-xxl-11 {
    margin-right: 4rem !important;
  }
  .me-xxl-12 {
    margin-right: 4.5rem !important;
  }
  .me-xxl-13 {
    margin-right: 5rem !important;
  }
  .me-xxl-14 {
    margin-right: 5.5rem !important;
  }
  .me-xxl-15 {
    margin-right: 6rem !important;
  }
  .me-xxl-16 {
    margin-right: 7rem !important;
  }
  .me-xxl-17 {
    margin-right: 8rem !important;
  }
  .me-xxl-18 {
    margin-right: 9rem !important;
  }
  .me-xxl-19 {
    margin-right: 10rem !important;
  }
  .me-xxl-20 {
    margin-right: 12rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-11 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-12 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-14 {
    margin-bottom: 5.5rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-16 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-17 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-18 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-19 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-20 {
    margin-bottom: 12rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1rem !important;
  }
  .ms-xxl-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xxl-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-7 {
    margin-left: 2rem !important;
  }
  .ms-xxl-8 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-9 {
    margin-left: 3rem !important;
  }
  .ms-xxl-10 {
    margin-left: 3.5rem !important;
  }
  .ms-xxl-11 {
    margin-left: 4rem !important;
  }
  .ms-xxl-12 {
    margin-left: 4.5rem !important;
  }
  .ms-xxl-13 {
    margin-left: 5rem !important;
  }
  .ms-xxl-14 {
    margin-left: 5.5rem !important;
  }
  .ms-xxl-15 {
    margin-left: 6rem !important;
  }
  .ms-xxl-16 {
    margin-left: 7rem !important;
  }
  .ms-xxl-17 {
    margin-left: 8rem !important;
  }
  .ms-xxl-18 {
    margin-left: 9rem !important;
  }
  .ms-xxl-19 {
    margin-left: 10rem !important;
  }
  .ms-xxl-20 {
    margin-left: 12rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 0.75rem !important;
  }
  .p-xxl-4 {
    padding: 1rem !important;
  }
  .p-xxl-5 {
    padding: 1.25rem !important;
  }
  .p-xxl-6 {
    padding: 1.5rem !important;
  }
  .p-xxl-7 {
    padding: 2rem !important;
  }
  .p-xxl-8 {
    padding: 2.5rem !important;
  }
  .p-xxl-9 {
    padding: 3rem !important;
  }
  .p-xxl-10 {
    padding: 3.5rem !important;
  }
  .p-xxl-11 {
    padding: 4rem !important;
  }
  .p-xxl-12 {
    padding: 4.5rem !important;
  }
  .p-xxl-13 {
    padding: 5rem !important;
  }
  .p-xxl-14 {
    padding: 5.5rem !important;
  }
  .p-xxl-15 {
    padding: 6rem !important;
  }
  .p-xxl-16 {
    padding: 7rem !important;
  }
  .p-xxl-17 {
    padding: 8rem !important;
  }
  .p-xxl-18 {
    padding: 9rem !important;
  }
  .p-xxl-19 {
    padding: 10rem !important;
  }
  .p-xxl-20 {
    padding: 12rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-8 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-9 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-10 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxl-11 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-12 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xxl-13 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-14 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-xxl-15 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-16 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxl-17 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxl-18 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxl-19 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xxl-20 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-8 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-9 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-10 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-11 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-12 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xxl-13 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-14 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-xxl-15 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-16 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxl-17 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxl-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxl-20 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1rem !important;
  }
  .pt-xxl-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xxl-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-7 {
    padding-top: 2rem !important;
  }
  .pt-xxl-8 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-9 {
    padding-top: 3rem !important;
  }
  .pt-xxl-10 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-11 {
    padding-top: 4rem !important;
  }
  .pt-xxl-12 {
    padding-top: 4.5rem !important;
  }
  .pt-xxl-13 {
    padding-top: 5rem !important;
  }
  .pt-xxl-14 {
    padding-top: 5.5rem !important;
  }
  .pt-xxl-15 {
    padding-top: 6rem !important;
  }
  .pt-xxl-16 {
    padding-top: 7rem !important;
  }
  .pt-xxl-17 {
    padding-top: 8rem !important;
  }
  .pt-xxl-18 {
    padding-top: 9rem !important;
  }
  .pt-xxl-19 {
    padding-top: 10rem !important;
  }
  .pt-xxl-20 {
    padding-top: 12rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1rem !important;
  }
  .pe-xxl-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xxl-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-7 {
    padding-right: 2rem !important;
  }
  .pe-xxl-8 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-9 {
    padding-right: 3rem !important;
  }
  .pe-xxl-10 {
    padding-right: 3.5rem !important;
  }
  .pe-xxl-11 {
    padding-right: 4rem !important;
  }
  .pe-xxl-12 {
    padding-right: 4.5rem !important;
  }
  .pe-xxl-13 {
    padding-right: 5rem !important;
  }
  .pe-xxl-14 {
    padding-right: 5.5rem !important;
  }
  .pe-xxl-15 {
    padding-right: 6rem !important;
  }
  .pe-xxl-16 {
    padding-right: 7rem !important;
  }
  .pe-xxl-17 {
    padding-right: 8rem !important;
  }
  .pe-xxl-18 {
    padding-right: 9rem !important;
  }
  .pe-xxl-19 {
    padding-right: 10rem !important;
  }
  .pe-xxl-20 {
    padding-right: 12rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-11 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-12 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-14 {
    padding-bottom: 5.5rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-16 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-17 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-18 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-19 {
    padding-bottom: 10rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 12rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1rem !important;
  }
  .ps-xxl-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xxl-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-7 {
    padding-left: 2rem !important;
  }
  .ps-xxl-8 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-9 {
    padding-left: 3rem !important;
  }
  .ps-xxl-10 {
    padding-left: 3.5rem !important;
  }
  .ps-xxl-11 {
    padding-left: 4rem !important;
  }
  .ps-xxl-12 {
    padding-left: 4.5rem !important;
  }
  .ps-xxl-13 {
    padding-left: 5rem !important;
  }
  .ps-xxl-14 {
    padding-left: 5.5rem !important;
  }
  .ps-xxl-15 {
    padding-left: 6rem !important;
  }
  .ps-xxl-16 {
    padding-left: 7rem !important;
  }
  .ps-xxl-17 {
    padding-left: 8rem !important;
  }
  .ps-xxl-18 {
    padding-left: 9rem !important;
  }
  .ps-xxl-19 {
    padding-left: 10rem !important;
  }
  .ps-xxl-20 {
    padding-left: 12rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 0.75rem !important;
  }
  .gap-xxl-4 {
    gap: 1rem !important;
  }
  .gap-xxl-5 {
    gap: 1.25rem !important;
  }
  .gap-xxl-6 {
    gap: 1.5rem !important;
  }
  .gap-xxl-7 {
    gap: 2rem !important;
  }
  .gap-xxl-8 {
    gap: 2.5rem !important;
  }
  .gap-xxl-9 {
    gap: 3rem !important;
  }
  .gap-xxl-10 {
    gap: 3.5rem !important;
  }
  .gap-xxl-11 {
    gap: 4rem !important;
  }
  .gap-xxl-12 {
    gap: 4.5rem !important;
  }
  .gap-xxl-13 {
    gap: 5rem !important;
  }
  .gap-xxl-14 {
    gap: 5.5rem !important;
  }
  .gap-xxl-15 {
    gap: 6rem !important;
  }
  .gap-xxl-16 {
    gap: 7rem !important;
  }
  .gap-xxl-17 {
    gap: 8rem !important;
  }
  .gap-xxl-18 {
    gap: 9rem !important;
  }
  .gap-xxl-19 {
    gap: 10rem !important;
  }
  .gap-xxl-20 {
    gap: 12rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xxl-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-7 {
    row-gap: 2rem !important;
  }
  .row-gap-xxl-8 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxl-9 {
    row-gap: 3rem !important;
  }
  .row-gap-xxl-10 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xxl-11 {
    row-gap: 4rem !important;
  }
  .row-gap-xxl-12 {
    row-gap: 4.5rem !important;
  }
  .row-gap-xxl-13 {
    row-gap: 5rem !important;
  }
  .row-gap-xxl-14 {
    row-gap: 5.5rem !important;
  }
  .row-gap-xxl-15 {
    row-gap: 6rem !important;
  }
  .row-gap-xxl-16 {
    row-gap: 7rem !important;
  }
  .row-gap-xxl-17 {
    row-gap: 8rem !important;
  }
  .row-gap-xxl-18 {
    row-gap: 9rem !important;
  }
  .row-gap-xxl-19 {
    row-gap: 10rem !important;
  }
  .row-gap-xxl-20 {
    row-gap: 12rem !important;
  }
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    column-gap: 0.75rem !important;
  }
  .column-gap-xxl-4 {
    column-gap: 1rem !important;
  }
  .column-gap-xxl-5 {
    column-gap: 1.25rem !important;
  }
  .column-gap-xxl-6 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-7 {
    column-gap: 2rem !important;
  }
  .column-gap-xxl-8 {
    column-gap: 2.5rem !important;
  }
  .column-gap-xxl-9 {
    column-gap: 3rem !important;
  }
  .column-gap-xxl-10 {
    column-gap: 3.5rem !important;
  }
  .column-gap-xxl-11 {
    column-gap: 4rem !important;
  }
  .column-gap-xxl-12 {
    column-gap: 4.5rem !important;
  }
  .column-gap-xxl-13 {
    column-gap: 5rem !important;
  }
  .column-gap-xxl-14 {
    column-gap: 5.5rem !important;
  }
  .column-gap-xxl-15 {
    column-gap: 6rem !important;
  }
  .column-gap-xxl-16 {
    column-gap: 7rem !important;
  }
  .column-gap-xxl-17 {
    column-gap: 8rem !important;
  }
  .column-gap-xxl-18 {
    column-gap: 9rem !important;
  }
  .column-gap-xxl-19 {
    column-gap: 10rem !important;
  }
  .column-gap-xxl-20 {
    column-gap: 12rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1600px) {
  .float-xxxl-start {
    float: left !important;
  }
  .float-xxxl-end {
    float: right !important;
  }
  .float-xxxl-none {
    float: none !important;
  }
  .object-fit-xxxl-contain {
    object-fit: contain !important;
  }
  .object-fit-xxxl-cover {
    object-fit: cover !important;
  }
  .object-fit-xxxl-fill {
    object-fit: fill !important;
  }
  .object-fit-xxxl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xxxl-none {
    object-fit: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-grid {
    display: grid !important;
  }
  .d-xxxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxxl-none {
    display: none !important;
  }
  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxxl-row {
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    justify-content: center !important;
  }
  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    align-items: center !important;
  }
  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    align-content: center !important;
  }
  .align-content-xxxl-between {
    align-content: space-between !important;
  }
  .align-content-xxxl-around {
    align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    align-self: auto !important;
  }
  .align-self-xxxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    align-self: center !important;
  }
  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }
  .order-xxxl-first {
    order: -1 !important;
  }
  .order-xxxl-0 {
    order: 0 !important;
  }
  .order-xxxl-1 {
    order: 1 !important;
  }
  .order-xxxl-2 {
    order: 2 !important;
  }
  .order-xxxl-3 {
    order: 3 !important;
  }
  .order-xxxl-4 {
    order: 4 !important;
  }
  .order-xxxl-5 {
    order: 5 !important;
  }
  .order-xxxl-last {
    order: 6 !important;
  }
  .m-xxxl-0 {
    margin: 0 !important;
  }
  .m-xxxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxxl-3 {
    margin: 0.75rem !important;
  }
  .m-xxxl-4 {
    margin: 1rem !important;
  }
  .m-xxxl-5 {
    margin: 1.25rem !important;
  }
  .m-xxxl-6 {
    margin: 1.5rem !important;
  }
  .m-xxxl-7 {
    margin: 2rem !important;
  }
  .m-xxxl-8 {
    margin: 2.5rem !important;
  }
  .m-xxxl-9 {
    margin: 3rem !important;
  }
  .m-xxxl-10 {
    margin: 3.5rem !important;
  }
  .m-xxxl-11 {
    margin: 4rem !important;
  }
  .m-xxxl-12 {
    margin: 4.5rem !important;
  }
  .m-xxxl-13 {
    margin: 5rem !important;
  }
  .m-xxxl-14 {
    margin: 5.5rem !important;
  }
  .m-xxxl-15 {
    margin: 6rem !important;
  }
  .m-xxxl-16 {
    margin: 7rem !important;
  }
  .m-xxxl-17 {
    margin: 8rem !important;
  }
  .m-xxxl-18 {
    margin: 9rem !important;
  }
  .m-xxxl-19 {
    margin: 10rem !important;
  }
  .m-xxxl-20 {
    margin: 12rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxxl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxxl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxxl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxxl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxxl-7 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxxl-8 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxxl-9 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxxl-10 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxxl-11 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxxl-12 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xxxl-13 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxxl-14 {
    margin-right: 5.5rem !important;
    margin-left: 5.5rem !important;
  }
  .mx-xxxl-15 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxxl-16 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxxl-17 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxxl-18 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxxl-19 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxxl-20 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxxl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxxl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxxl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxxl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxxl-7 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxxl-8 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxxl-9 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxxl-10 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxxl-11 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxxl-12 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xxxl-13 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxxl-14 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .my-xxxl-15 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxxl-16 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxxl-17 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxxl-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxxl-19 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxxl-20 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxxl-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xxxl-4 {
    margin-top: 1rem !important;
  }
  .mt-xxxl-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xxxl-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xxxl-7 {
    margin-top: 2rem !important;
  }
  .mt-xxxl-8 {
    margin-top: 2.5rem !important;
  }
  .mt-xxxl-9 {
    margin-top: 3rem !important;
  }
  .mt-xxxl-10 {
    margin-top: 3.5rem !important;
  }
  .mt-xxxl-11 {
    margin-top: 4rem !important;
  }
  .mt-xxxl-12 {
    margin-top: 4.5rem !important;
  }
  .mt-xxxl-13 {
    margin-top: 5rem !important;
  }
  .mt-xxxl-14 {
    margin-top: 5.5rem !important;
  }
  .mt-xxxl-15 {
    margin-top: 6rem !important;
  }
  .mt-xxxl-16 {
    margin-top: 7rem !important;
  }
  .mt-xxxl-17 {
    margin-top: 8rem !important;
  }
  .mt-xxxl-18 {
    margin-top: 9rem !important;
  }
  .mt-xxxl-19 {
    margin-top: 10rem !important;
  }
  .mt-xxxl-20 {
    margin-top: 12rem !important;
  }
  .mt-xxxl-auto {
    margin-top: auto !important;
  }
  .me-xxxl-0 {
    margin-right: 0 !important;
  }
  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxxl-3 {
    margin-right: 0.75rem !important;
  }
  .me-xxxl-4 {
    margin-right: 1rem !important;
  }
  .me-xxxl-5 {
    margin-right: 1.25rem !important;
  }
  .me-xxxl-6 {
    margin-right: 1.5rem !important;
  }
  .me-xxxl-7 {
    margin-right: 2rem !important;
  }
  .me-xxxl-8 {
    margin-right: 2.5rem !important;
  }
  .me-xxxl-9 {
    margin-right: 3rem !important;
  }
  .me-xxxl-10 {
    margin-right: 3.5rem !important;
  }
  .me-xxxl-11 {
    margin-right: 4rem !important;
  }
  .me-xxxl-12 {
    margin-right: 4.5rem !important;
  }
  .me-xxxl-13 {
    margin-right: 5rem !important;
  }
  .me-xxxl-14 {
    margin-right: 5.5rem !important;
  }
  .me-xxxl-15 {
    margin-right: 6rem !important;
  }
  .me-xxxl-16 {
    margin-right: 7rem !important;
  }
  .me-xxxl-17 {
    margin-right: 8rem !important;
  }
  .me-xxxl-18 {
    margin-right: 9rem !important;
  }
  .me-xxxl-19 {
    margin-right: 10rem !important;
  }
  .me-xxxl-20 {
    margin-right: 12rem !important;
  }
  .me-xxxl-auto {
    margin-right: auto !important;
  }
  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxxl-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxxl-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xxxl-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxxl-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxxl-7 {
    margin-bottom: 2rem !important;
  }
  .mb-xxxl-8 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxxl-9 {
    margin-bottom: 3rem !important;
  }
  .mb-xxxl-10 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxxl-11 {
    margin-bottom: 4rem !important;
  }
  .mb-xxxl-12 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xxxl-13 {
    margin-bottom: 5rem !important;
  }
  .mb-xxxl-14 {
    margin-bottom: 5.5rem !important;
  }
  .mb-xxxl-15 {
    margin-bottom: 6rem !important;
  }
  .mb-xxxl-16 {
    margin-bottom: 7rem !important;
  }
  .mb-xxxl-17 {
    margin-bottom: 8rem !important;
  }
  .mb-xxxl-18 {
    margin-bottom: 9rem !important;
  }
  .mb-xxxl-19 {
    margin-bottom: 10rem !important;
  }
  .mb-xxxl-20 {
    margin-bottom: 12rem !important;
  }
  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxxl-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xxxl-4 {
    margin-left: 1rem !important;
  }
  .ms-xxxl-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xxxl-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xxxl-7 {
    margin-left: 2rem !important;
  }
  .ms-xxxl-8 {
    margin-left: 2.5rem !important;
  }
  .ms-xxxl-9 {
    margin-left: 3rem !important;
  }
  .ms-xxxl-10 {
    margin-left: 3.5rem !important;
  }
  .ms-xxxl-11 {
    margin-left: 4rem !important;
  }
  .ms-xxxl-12 {
    margin-left: 4.5rem !important;
  }
  .ms-xxxl-13 {
    margin-left: 5rem !important;
  }
  .ms-xxxl-14 {
    margin-left: 5.5rem !important;
  }
  .ms-xxxl-15 {
    margin-left: 6rem !important;
  }
  .ms-xxxl-16 {
    margin-left: 7rem !important;
  }
  .ms-xxxl-17 {
    margin-left: 8rem !important;
  }
  .ms-xxxl-18 {
    margin-left: 9rem !important;
  }
  .ms-xxxl-19 {
    margin-left: 10rem !important;
  }
  .ms-xxxl-20 {
    margin-left: 12rem !important;
  }
  .ms-xxxl-auto {
    margin-left: auto !important;
  }
  .p-xxxl-0 {
    padding: 0 !important;
  }
  .p-xxxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxxl-3 {
    padding: 0.75rem !important;
  }
  .p-xxxl-4 {
    padding: 1rem !important;
  }
  .p-xxxl-5 {
    padding: 1.25rem !important;
  }
  .p-xxxl-6 {
    padding: 1.5rem !important;
  }
  .p-xxxl-7 {
    padding: 2rem !important;
  }
  .p-xxxl-8 {
    padding: 2.5rem !important;
  }
  .p-xxxl-9 {
    padding: 3rem !important;
  }
  .p-xxxl-10 {
    padding: 3.5rem !important;
  }
  .p-xxxl-11 {
    padding: 4rem !important;
  }
  .p-xxxl-12 {
    padding: 4.5rem !important;
  }
  .p-xxxl-13 {
    padding: 5rem !important;
  }
  .p-xxxl-14 {
    padding: 5.5rem !important;
  }
  .p-xxxl-15 {
    padding: 6rem !important;
  }
  .p-xxxl-16 {
    padding: 7rem !important;
  }
  .p-xxxl-17 {
    padding: 8rem !important;
  }
  .p-xxxl-18 {
    padding: 9rem !important;
  }
  .p-xxxl-19 {
    padding: 10rem !important;
  }
  .p-xxxl-20 {
    padding: 12rem !important;
  }
  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxxl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxxl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxxl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxxl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxxl-7 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxxl-8 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxxl-9 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxxl-10 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxxl-11 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxxl-12 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xxxl-13 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxxl-14 {
    padding-right: 5.5rem !important;
    padding-left: 5.5rem !important;
  }
  .px-xxxl-15 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxxl-16 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxxl-17 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxxl-18 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxxl-19 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xxxl-20 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxxl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxxl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxxl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxxl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxxl-7 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxxl-8 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxxl-9 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxxl-10 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxxl-11 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxxl-12 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xxxl-13 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxxl-14 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .py-xxxl-15 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxxl-16 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxxl-17 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxxl-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxxl-19 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxxl-20 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .pt-xxxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxxl-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xxxl-4 {
    padding-top: 1rem !important;
  }
  .pt-xxxl-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xxxl-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xxxl-7 {
    padding-top: 2rem !important;
  }
  .pt-xxxl-8 {
    padding-top: 2.5rem !important;
  }
  .pt-xxxl-9 {
    padding-top: 3rem !important;
  }
  .pt-xxxl-10 {
    padding-top: 3.5rem !important;
  }
  .pt-xxxl-11 {
    padding-top: 4rem !important;
  }
  .pt-xxxl-12 {
    padding-top: 4.5rem !important;
  }
  .pt-xxxl-13 {
    padding-top: 5rem !important;
  }
  .pt-xxxl-14 {
    padding-top: 5.5rem !important;
  }
  .pt-xxxl-15 {
    padding-top: 6rem !important;
  }
  .pt-xxxl-16 {
    padding-top: 7rem !important;
  }
  .pt-xxxl-17 {
    padding-top: 8rem !important;
  }
  .pt-xxxl-18 {
    padding-top: 9rem !important;
  }
  .pt-xxxl-19 {
    padding-top: 10rem !important;
  }
  .pt-xxxl-20 {
    padding-top: 12rem !important;
  }
  .pe-xxxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxxl-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xxxl-4 {
    padding-right: 1rem !important;
  }
  .pe-xxxl-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xxxl-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xxxl-7 {
    padding-right: 2rem !important;
  }
  .pe-xxxl-8 {
    padding-right: 2.5rem !important;
  }
  .pe-xxxl-9 {
    padding-right: 3rem !important;
  }
  .pe-xxxl-10 {
    padding-right: 3.5rem !important;
  }
  .pe-xxxl-11 {
    padding-right: 4rem !important;
  }
  .pe-xxxl-12 {
    padding-right: 4.5rem !important;
  }
  .pe-xxxl-13 {
    padding-right: 5rem !important;
  }
  .pe-xxxl-14 {
    padding-right: 5.5rem !important;
  }
  .pe-xxxl-15 {
    padding-right: 6rem !important;
  }
  .pe-xxxl-16 {
    padding-right: 7rem !important;
  }
  .pe-xxxl-17 {
    padding-right: 8rem !important;
  }
  .pe-xxxl-18 {
    padding-right: 9rem !important;
  }
  .pe-xxxl-19 {
    padding-right: 10rem !important;
  }
  .pe-xxxl-20 {
    padding-right: 12rem !important;
  }
  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxxl-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxxl-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xxxl-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxxl-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxxl-7 {
    padding-bottom: 2rem !important;
  }
  .pb-xxxl-8 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxxl-9 {
    padding-bottom: 3rem !important;
  }
  .pb-xxxl-10 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxxl-11 {
    padding-bottom: 4rem !important;
  }
  .pb-xxxl-12 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xxxl-13 {
    padding-bottom: 5rem !important;
  }
  .pb-xxxl-14 {
    padding-bottom: 5.5rem !important;
  }
  .pb-xxxl-15 {
    padding-bottom: 6rem !important;
  }
  .pb-xxxl-16 {
    padding-bottom: 7rem !important;
  }
  .pb-xxxl-17 {
    padding-bottom: 8rem !important;
  }
  .pb-xxxl-18 {
    padding-bottom: 9rem !important;
  }
  .pb-xxxl-19 {
    padding-bottom: 10rem !important;
  }
  .pb-xxxl-20 {
    padding-bottom: 12rem !important;
  }
  .ps-xxxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxxl-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xxxl-4 {
    padding-left: 1rem !important;
  }
  .ps-xxxl-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xxxl-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xxxl-7 {
    padding-left: 2rem !important;
  }
  .ps-xxxl-8 {
    padding-left: 2.5rem !important;
  }
  .ps-xxxl-9 {
    padding-left: 3rem !important;
  }
  .ps-xxxl-10 {
    padding-left: 3.5rem !important;
  }
  .ps-xxxl-11 {
    padding-left: 4rem !important;
  }
  .ps-xxxl-12 {
    padding-left: 4.5rem !important;
  }
  .ps-xxxl-13 {
    padding-left: 5rem !important;
  }
  .ps-xxxl-14 {
    padding-left: 5.5rem !important;
  }
  .ps-xxxl-15 {
    padding-left: 6rem !important;
  }
  .ps-xxxl-16 {
    padding-left: 7rem !important;
  }
  .ps-xxxl-17 {
    padding-left: 8rem !important;
  }
  .ps-xxxl-18 {
    padding-left: 9rem !important;
  }
  .ps-xxxl-19 {
    padding-left: 10rem !important;
  }
  .ps-xxxl-20 {
    padding-left: 12rem !important;
  }
  .gap-xxxl-0 {
    gap: 0 !important;
  }
  .gap-xxxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxxl-3 {
    gap: 0.75rem !important;
  }
  .gap-xxxl-4 {
    gap: 1rem !important;
  }
  .gap-xxxl-5 {
    gap: 1.25rem !important;
  }
  .gap-xxxl-6 {
    gap: 1.5rem !important;
  }
  .gap-xxxl-7 {
    gap: 2rem !important;
  }
  .gap-xxxl-8 {
    gap: 2.5rem !important;
  }
  .gap-xxxl-9 {
    gap: 3rem !important;
  }
  .gap-xxxl-10 {
    gap: 3.5rem !important;
  }
  .gap-xxxl-11 {
    gap: 4rem !important;
  }
  .gap-xxxl-12 {
    gap: 4.5rem !important;
  }
  .gap-xxxl-13 {
    gap: 5rem !important;
  }
  .gap-xxxl-14 {
    gap: 5.5rem !important;
  }
  .gap-xxxl-15 {
    gap: 6rem !important;
  }
  .gap-xxxl-16 {
    gap: 7rem !important;
  }
  .gap-xxxl-17 {
    gap: 8rem !important;
  }
  .gap-xxxl-18 {
    gap: 9rem !important;
  }
  .gap-xxxl-19 {
    gap: 10rem !important;
  }
  .gap-xxxl-20 {
    gap: 12rem !important;
  }
  .row-gap-xxxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxxl-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxxl-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xxxl-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xxxl-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxxl-7 {
    row-gap: 2rem !important;
  }
  .row-gap-xxxl-8 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxxl-9 {
    row-gap: 3rem !important;
  }
  .row-gap-xxxl-10 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xxxl-11 {
    row-gap: 4rem !important;
  }
  .row-gap-xxxl-12 {
    row-gap: 4.5rem !important;
  }
  .row-gap-xxxl-13 {
    row-gap: 5rem !important;
  }
  .row-gap-xxxl-14 {
    row-gap: 5.5rem !important;
  }
  .row-gap-xxxl-15 {
    row-gap: 6rem !important;
  }
  .row-gap-xxxl-16 {
    row-gap: 7rem !important;
  }
  .row-gap-xxxl-17 {
    row-gap: 8rem !important;
  }
  .row-gap-xxxl-18 {
    row-gap: 9rem !important;
  }
  .row-gap-xxxl-19 {
    row-gap: 10rem !important;
  }
  .row-gap-xxxl-20 {
    row-gap: 12rem !important;
  }
  .column-gap-xxxl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xxxl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xxxl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xxxl-3 {
    column-gap: 0.75rem !important;
  }
  .column-gap-xxxl-4 {
    column-gap: 1rem !important;
  }
  .column-gap-xxxl-5 {
    column-gap: 1.25rem !important;
  }
  .column-gap-xxxl-6 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xxxl-7 {
    column-gap: 2rem !important;
  }
  .column-gap-xxxl-8 {
    column-gap: 2.5rem !important;
  }
  .column-gap-xxxl-9 {
    column-gap: 3rem !important;
  }
  .column-gap-xxxl-10 {
    column-gap: 3.5rem !important;
  }
  .column-gap-xxxl-11 {
    column-gap: 4rem !important;
  }
  .column-gap-xxxl-12 {
    column-gap: 4.5rem !important;
  }
  .column-gap-xxxl-13 {
    column-gap: 5rem !important;
  }
  .column-gap-xxxl-14 {
    column-gap: 5.5rem !important;
  }
  .column-gap-xxxl-15 {
    column-gap: 6rem !important;
  }
  .column-gap-xxxl-16 {
    column-gap: 7rem !important;
  }
  .column-gap-xxxl-17 {
    column-gap: 8rem !important;
  }
  .column-gap-xxxl-18 {
    column-gap: 9rem !important;
  }
  .column-gap-xxxl-19 {
    column-gap: 10rem !important;
  }
  .column-gap-xxxl-20 {
    column-gap: 12rem !important;
  }
  .text-xxxl-start {
    text-align: left !important;
  }
  .text-xxxl-end {
    text-align: right !important;
  }
  .text-xxxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.25rem !important;
  }
  .fs-2 {
    font-size: 1.75rem !important;
  }
  .fs-3 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/*
Tiny slider
==================================================
Import of Tiny slider vendor.

https://github.com/ganlanyuan/tiny-slider

@sw-package framework
*/
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}
.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}
.tns-no-calc {
  position: relative;
  left: 0;
}
.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.tns-autowidth {
  display: inline-block;
}
.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}
.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}
.tns-ovh {
  overflow: hidden;
}
.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}
.tns-transparent {
  opacity: 0;
  visibility: hidden;
}
.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}
.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}
.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}
.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714286%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left;
}
/*
Datepicker
==================================================
Import of flatpickr vendor.

https://flatpickr.js.org/getting-started/
*/
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0;
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0;
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch \0 ;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}
.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*
 * Base stuff
 * ---------- */
/*
Base
==================================================
Contains global base styles for all pages

@sw-package framework
*/
html {
  /* stylelint-disable selector-class-pattern -- allow BEM here as it is a generated class name from the administration
     * sw-text-editor component adds a column selector to configure the width of table columns
     * this must no be shown in the storefront as it breaks table layouts
     */
  /* stylelint-enable selector-class-pattern */
}
html.no-scroll {
  position: relative;
  overflow: hidden;
}
html .sw-text-editor-table .sw-text-editor-table__col {
  border: 1px solid #000;
  padding: 8px;
  text-align: left;
}
html .sw-text-editor-table .sw-text-editor-table__col-selector {
  display: none;
}
html .sw-text-editor-table__head td {
  background: #e9ecef;
}
@media (max-width: 575.98px) {
  :root {
    --sw-current-breakpoint: "xs";
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --sw-current-breakpoint: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  :root {
    --sw-current-breakpoint: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  :root {
    --sw-current-breakpoint: "lg";
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  :root {
    --sw-current-breakpoint: "xl";
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  :root {
    --sw-current-breakpoint: "xxl";
  }
}
/*
Reboot
==================================================
Reboot styles using only element selectors.

@sw-package framework

https://getbootstrap.com/docs/5.2/content/reboot
*/
input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
a[data-ajax-modal] {
  text-decoration: underline;
}
/*
 * Components
 * ---------- */
/*
Alert
==============================================
Custom styling for bootstrap alert component.

https://getbootstrap.com/docs/5.2/components/alerts
*/
.alert-list {
  padding-left: 20px;
  margin-bottom: 0;
}
/*
Card
==============================================
Custom styling for bootstrap card component.

https://getbootstrap.com/docs/5.2/components/card
*/
.card-title {
  color: #1f3e4f;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.card-col {
  margin-bottom: 1rem;
  display: flex;
}
.card-col .card {
  width: 100%;
}
.card-col .card-body {
  display: flex;
  flex-direction: column;
}
.card-actions {
  align-items: flex-start;
  margin-top: auto;
}
/*
Sidebar category navigation
==============================================
Styling for category navigation component.
*/
.category-navigation {
  list-style: none;
  margin: 0;
  padding-left: 20px;
}
.category-navigation.level-0 > .category-navigation-entry {
  border-bottom: 1px solid #ced8de;
}
.category-navigation.level-0 {
  padding-left: 0;
  font-size: 16px;
}
.category-navigation.level-1 {
  font-size: 14px;
}
.category-navigation.level-2 {
  font-size: 12px;
}
.category-navigation-entry {
  margin: 0;
  padding: 0;
}
.category-navigation-link {
  display: block;
  padding: 8px 20px;
  font-weight: 400;
  color: #1f3e4f;
  text-decoration: none;
}
.category-navigation-link:hover {
  text-decoration: none;
}
.category-navigation-link.is-active {
  color: #0042a0;
  font-weight: 700;
}
.category-navigation-link.in-path {
  font-weight: 700;
}
/*
Backdrop
==============================================
Custom styling for backdrop used by bootstrap modal und custom offcanvas component.

https://getbootstrap.com/docs/5.2/components/modal
*/
.modal-backdrop {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.3, 0, 0.15, 1), visibility 0.45s linear;
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop {
    transition: none;
  }
}
.modal-backdrop.modal-backdrop-open {
  opacity: 1;
}
.modal-backdrop > .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
}
/*
Base slider
==============================================
Styling for base slider component.
Contains minimal styling for a slider with arrow and/or dot navigation.
based on: https://github.com/ganlanyuan/tiny-slider
*/
.base-slider {
  position: relative;
  overflow: hidden;
}
.base-slider .tns-nav, .base-slider .base-slider-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 10px 0;
}
.base-slider .tns-nav .base-slider-dot, .base-slider .tns-nav button, .base-slider .base-slider-dots .base-slider-dot, .base-slider .base-slider-dots button {
  background-color: #343a40;
  border: 0;
  height: 8px;
  width: 8px;
  padding: 8px;
  border-radius: 50%;
  margin: 0 8px;
}
.base-slider .tns-nav .base-slider-dot:hover, .base-slider .tns-nav .base-slider-dot.tns-nav-active, .base-slider .tns-nav button:hover, .base-slider .tns-nav button.tns-nav-active, .base-slider .base-slider-dots .base-slider-dot:hover, .base-slider .base-slider-dots .base-slider-dot.tns-nav-active, .base-slider .base-slider-dots button:hover, .base-slider .base-slider-dots button.tns-nav-active {
  background-color: #59c0cc;
}
.base-slider .tns-nav .base-slider-dot.tns-nav-active, .base-slider .tns-nav button.tns-nav-active, .base-slider .base-slider-dots .base-slider-dot.tns-nav-active, .base-slider .base-slider-dots button.tns-nav-active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.base-slider .tns-nav .base-slider-dot:focus, .base-slider .tns-nav button:focus, .base-slider .base-slider-dots .base-slider-dot:focus, .base-slider .base-slider-dots button:focus {
  outline: none;
}
.base-slider.has-dots-outside {
  padding-bottom: 40px;
}
.base-slider.has-dots-outside .tns-nav, .base-slider.has-dots-outside .base-slider-dots {
  bottom: auto;
}
.base-slider.has-nav-outside {
  padding-left: 25px;
  padding-right: 25px;
}
.base-slider .tns-ovh {
  overflow: visible;
}
.base-slider-controls {
  margin-bottom: 0;
}
.base-slider-controls-prev, .base-slider-controls-next {
  display: block;
  width: 30px;
  height: 65px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 68px;
  transition: opacity 0.15s ease;
  cursor: pointer;
  padding: 0;
  color: #1f3e4f;
  background: #f5f2f0;
  border: 1px solid #f5f2f0;
}
.base-slider-controls-prev .icon, .base-slider-controls-next .icon {
  color: currentColor;
}
.base-slider-controls-prev:hover, .base-slider-controls-next:hover {
  border-color: #59c0cc;
  color: #59c0cc;
}
.base-slider-controls-prev[disabled], .base-slider-controls-next[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.base-slider-controls-prev {
  border-radius: 0 0.8rem 0.8rem 0;
}
.base-slider-controls-prev.is-nav-prev-outside {
  border-radius: 0.8rem 0 0 0.8rem;
}
.base-slider-controls-next {
  border-radius: 0.8rem 0 0 0.8rem;
}
.base-slider-controls-next.is-nav-next-outside {
  border-radius: 0 0.8rem 0.8rem 0;
}
@media (min-width: 768px) {
  .base-slider .tns-nav .base-slider-dot, .base-slider .tns-nav button, .base-slider .base-slider-dots .base-slider-dot, .base-slider .base-slider-dots button {
    margin: 0 5px;
  }
  .base-slider .tns-nav.hide-dots, .base-slider .base-slider-dots.hide-dots {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .base-slider .tns-nav, .base-slider .base-slider-dots {
    width: 55%;
    text-align: center;
  }
  .base-slider .tns-nav.hide-dots, .base-slider .tns-nav.hide-dots-mobile, .base-slider .base-slider-dots.hide-dots, .base-slider .base-slider-dots.hide-dots-mobile {
    display: none;
  }
}
/*
Image slider
==============================================
Styling for image slider component.
Displays images in a reusable slider component.
based on "base-slider" component and "tiny-slider" (https://github.com/ganlanyuan/tiny-slider)
*/
.image-slider.has-nav-outside .image-slider-item-container {
  padding: 0 25px;
}
.image-slider-container {
  position: relative;
  height: 100%;
}
.image-slider-container .image-slider-image {
  display: block;
  width: 100%;
}
.image-slider-container .image-slider-item {
  display: grid;
  max-width: 100%;
  position: relative;
}
.image-slider-container .image-slider-item.is-not-first {
  display: none;
}
.image-slider-container .image-slider-item.is-cover {
  height: 100%;
}
.image-slider-container .image-slider-item.is-cover .image-slider-image {
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image-slider-container .image-slider-link {
  display: block;
}
.js-slider-initialized .image-slider-item.is-not-first {
  display: block;
}
.image-slider-controls-prev.is-nav-prev-inside {
  left: 0;
}
.image-slider-controls-prev.is-nav-prev-outside {
  left: 0;
}
.image-slider-controls-next.is-nav-next-inside {
  right: 0;
}
.image-slider-controls-next.is-nav-next-outside {
  right: 0;
}
@media (min-width: 768px) {
  .image-slider-controls-prev.is-nav-prev-outside {
    left: -5px;
  }
  .image-slider-controls-next.is-nav-next-outside {
    right: -5px;
  }
}
/*
Product slider
==============================================
Styling for product slider component.
Displays product-boxes in a reusable slider component.
based on "base-slider" component and "tiny-slider" (https://github.com/ganlanyuan/tiny-slider)
*/
.product-slider.has-border {
  border: 1px solid #ced8de;
  border-radius: 0.8rem;
  padding: 25px;
}
.product-slider-container {
  padding-bottom: 1px;
}
.product-slider-controls-prev, .product-slider-controls-next {
  border: 0;
  background: none;
}
.product-slider-controls-prev.is-nav-prev-inside, .product-slider-controls-prev.is-nav-next-inside, .product-slider-controls-next.is-nav-prev-inside, .product-slider-controls-next.is-nav-next-inside {
  background: var(--bs-gray-200);
}
.product-slider-controls-prev {
  left: -10px;
}
.product-slider-controls-prev.has-border {
  left: 0;
}
.product-slider-controls-prev.is-nav-prev-inside {
  left: 0;
}
.product-slider-controls-prev.is-nav-prev-inside.has-border {
  left: 25px;
}
.product-slider-controls-next {
  right: -10px;
}
.product-slider-controls-next.has-border {
  right: 0;
}
.product-slider-controls-next.is-nav-next-inside {
  right: 0;
}
.product-slider-controls-next.is-nav-next-inside.has-border {
  right: 25px;
}
/*
Gallery slider
==============================================
Styling for gallery slider component.
Displays images in a slider gallery with thumbnail navigation.
based on "base-slider" component and "tiny-slider" (https://github.com/ganlanyuan/tiny-slider)
*/
.gallery-slider {
  width: 99.9%;
}
.gallery-slider.has-nav-outside .gallery-slider-item-container {
  padding: 0 25px;
}
.gallery-slider-row {
  margin-bottom: 1rem;
}
.gallery-slider-row.is-loading {
  height: auto;
  overflow: hidden;
}
.gallery-slider-row.is-loading .gallery-slider-item-container:not(:first-child) {
  display: none;
}
.gallery-slider-row.is-loading .gallery-slider-thumbnails-col.is-underneath {
  display: none;
}
.gallery-slider-row.is-single-image {
  justify-content: center;
}
.gallery-slider-single-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-slider-container {
  position: relative;
  height: 100%;
}
.gallery-slider-container .gallery-slider-image {
  display: block;
}
.gallery-slider-item, .gallery-slider-single-image {
  position: relative;
  backface-visibility: hidden;
  cursor: default;
  display: block;
  height: 100%;
  max-width: 100%;
}
.gallery-slider-item.is-cover, .gallery-slider-item.is-contain, .gallery-slider-single-image.is-cover, .gallery-slider-single-image.is-contain {
  height: 100%;
}
.gallery-slider-item.is-cover .gallery-slider-image, .gallery-slider-item.is-contain .gallery-slider-image, .gallery-slider-single-image.is-cover .gallery-slider-image, .gallery-slider-single-image.is-contain .gallery-slider-image {
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
}
.gallery-slider-item.is-cover .gallery-slider-image, .gallery-slider-single-image.is-cover .gallery-slider-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-slider-item.is-contain .gallery-slider-image, .gallery-slider-single-image.is-contain .gallery-slider-image {
  margin: auto;
  object-fit: contain;
}
.gallery-slider-controls-prev {
  left: 0;
}
.gallery-slider-controls-prev.is-nav-prev-outside {
  left: 0;
}
.gallery-slider-controls-next {
  right: 0;
}
.gallery-slider-controls-next.is-nav-next-outside {
  right: 0;
}
.gallery-slider-thumbnails-container {
  position: relative;
}
.gallery-slider-thumbnails-container .tns-inner {
  display: flex;
  justify-content: center;
}
.gallery-slider-thumbnails-container.is-underneath .tns-inner {
  display: block;
}
.gallery-slider-thumbnails-container.is-underneath .tns-outer {
  margin: 0 30px;
}
.gallery-slider-thumbnails-container.hide-thumbs {
  display: none;
}
.gallery-slider-thumbnails-col .gallery-slider-thumbnails-controls-prev, .gallery-slider-thumbnails-col .gallery-slider-thumbnails-controls-next {
  border: 0;
  background: none;
  height: 30px;
  width: 65px;
  line-height: normal;
}
.gallery-slider-thumbnails-col.is-left {
  padding-right: 0;
}
.gallery-slider-thumbnails-col.is-left .gallery-slider-thumbnails-controls-prev {
  top: -30px;
}
.gallery-slider-thumbnails-col.is-left .gallery-slider-thumbnails-controls-next {
  bottom: -20px;
  top: auto;
}
.gallery-slider-thumbnails-col.is-left .gallery-slider-thumbnails-controls-prev, .gallery-slider-thumbnails-col.is-left .gallery-slider-thumbnails-controls-next {
  left: 50%;
  transform: translateX(-50%);
}
.gallery-slider-thumbnails-col.is-underneath .gallery-slider-thumbnails-controls-prev {
  left: -25px;
}
.gallery-slider-thumbnails-col.is-underneath .gallery-slider-thumbnails-controls-next {
  right: -25px;
}
.gallery-slider-thumbnails-col.is-underneath .gallery-slider-thumbnails-controls-prev, .gallery-slider-thumbnails-col.is-underneath .gallery-slider-thumbnails-controls-next {
  transform: translateY(-30%);
}
.gallery-slider-modal-controls {
  z-index: 10;
}
.gallery-slider-modal-controls .gallery-slider-thumbnails-controls-prev {
  left: 0;
}
.gallery-slider-modal-controls .gallery-slider-thumbnails-controls-next {
  right: 0;
}
.gallery-slider-thumbnails.is-underneath {
  display: flex;
  margin-top: 1rem;
}
.gallery-slider-thumbnails.is-underneath .gallery-slider-thumbnails-item {
  width: auto;
}
.gallery-slider-thumbnails-item {
  cursor: pointer;
  height: 75px;
  width: 75px;
}
.gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner {
  border-color: #59c0cc;
}
.gallery-slider-thumbnails-item-inner {
  border: 1px solid #ced8de;
  border-radius: 0.8rem;
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}
.gallery-slider-thumbnails-image, .gallery-slider-image {
  flex: 0 0 auto;
  max-height: 100%;
  max-width: 100%;
}
.gallery-slider-thumbnails-play-button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gallery-slider-thumbnails-play-button::before, .gallery-slider-thumbnails-play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
}
.gallery-slider-thumbnails-play-button::before {
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
}
.gallery-slider-thumbnails-play-button::after {
  transform: translate(-40%, -50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}
.gallery-slider-thumbnails-controls {
  display: none;
  margin: 0;
}
.gallery-slider-canvas-disabled .spatial-canvas-spinner {
  display: none;
}
.gallery-slider-canvas-disabled .gallery-slider-spatial-canvas-wrapper {
  display: none;
}
.spatial-canvas-note {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #6c757d;
  color: #fff;
  padding: 0 8px;
  border-radius: 8px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.spatial-canvas-note.spatial-canvas-note--hidden {
  opacity: 0;
}
.spatial-canvas-note.spatial-slider-movement-note {
  bottom: 86px;
}
.ar-button {
  top: 10px;
  right: 9px;
  height: 32px;
  border: 2px solid #dee2e6;
  border-radius: 5px;
  background-color: #fff;
}
.ar-button .icon-augmented {
  height: 18px;
  width: 18px;
  margin-right: 5px;
}
.ar-button .icon-augmented svg {
  top: unset;
}
.ar-button:hover {
  box-shadow: 0 0 11px #dee2e6;
}
.gallery-slider-spatial-canvas-wrapper {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery-slider-spatial-canvas-wrapper.spatial-canvas-display {
  background-color: #fff;
  opacity: 1;
}
@media (max-width: 575.98px) {
  .gallery-slider-item.is-cover, .gallery-slider-item.is-contain {
    min-height: 225px !important;
  }
}
@media (max-width: 767.98px) {
  .gallery-slider-single-image.is-cover, .gallery-slider-single-image.is-contain {
    min-height: 225px !important;
  }
}
@media (min-width: 768px) {
  .gallery-slider-row {
    justify-content: center;
  }
  .gallery-slider-thumbnails-controls {
    display: block;
  }
  .gallery-slider-thumbnails-col.is-left .gallery-slider-thumbnails-item {
    margin-bottom: 0 !important;
    padding-bottom: 10px;
  }
}
/*
Magnifier
==============================================
Styling for magnifier component.
Displays a lens over a single image or gallery slider and shows the magnified version of the image.
*/
.magnifier-overlay, .magnifier-zoom-image {
  background-clip: padding-box;
  opacity: 0;
  animation: magnifyLensFade 0.5s forwards;
  pointer-events: none;
  z-index: 1100;
}
.magnifier-overlay {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #ced8de;
}
.magnifier-zoom-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0 0;
  top: 0;
  left: 0;
}
@keyframes magnifyLensFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
Zoom modal
==============================================
Styling for zoom modal component.
Displays a single image or a gallery slider in a zoom modal with zoom functions.
*/
.zoom-modal-wrapper {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.modal.zoom-modal {
  overflow: hidden;
}
.modal.zoom-modal .zoom-modal-actions, .modal.zoom-modal .btn-close {
  position: absolute;
  top: 0;
  opacity: 1;
  z-index: 1051;
  margin: 15px;
}
.modal.zoom-modal .zoom-modal-actions {
  left: 0;
}
.modal.zoom-modal .btn-close {
  right: 0;
}
.modal.zoom-modal .modal-dialog .modal-content, .modal.zoom-modal .modal-dialog .modal-body {
  padding: 0;
  overflow: hidden;
}
.modal.zoom-modal .modal-footer {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 1rem;
  justify-content: center;
  background-color: #fff;
  margin: 0 30px;
}
.modal.zoom-modal .gallery-slider {
  top: 0;
  bottom: 0;
  position: absolute;
  height: auto;
  width: 100%;
}
.modal.zoom-modal .gallery-slider-thumbnails {
  margin: 0 auto;
}
.modal.zoom-modal .gallery-slider-controls-next {
  right: 0;
}
.modal.zoom-modal .gallery-slider-controls-prev {
  left: 0;
}
.modal.zoom-modal .gallery-slider-thumbnails-item {
  width: auto;
}
.modal.zoom-modal .gallery-slider-thumbnails-controls-next {
  right: -30px;
}
.modal.zoom-modal .gallery-slider-thumbnails-controls-prev {
  left: -30px;
}
.modal.zoom-modal .image-zoom-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  touch-action: auto !important;
  -webkit-user-select: auto !important;
  -webkit-touch-callout: default !important;
  -webkit-user-drag: auto !important;
}
.modal.zoom-modal .image-zoom-container > * {
  position: relative;
}
.modal.zoom-modal .image-zoom-btn.disabled {
  opacity: 0.3;
}
@media (min-width: 768px) {
  .modal.zoom-modal .gallery-slider {
    bottom: 100px;
  }
  .modal.zoom-modal .modal-footer {
    display: flex;
  }
}
/*
Product box
==============================================
Styling for productbox component.
*/
.product-box {
  height: 100%;
}
.product-box.box-standard .stretched-link::after, .product-box.box-minimal .stretched-link::after {
  height: calc(200px + var(--bs-card-spacer-y));
}
.product-box.box-image .stretched-link::after {
  height: calc(332px + var(--bs-card-spacer-y));
}
.product-box.box-image .product-image-wrapper {
  height: 332px;
}
.product-box.box-image .product-image {
  max-height: 332px;
}
.product-box.box-image .product-image.is-standard {
  height: 100%;
  object-fit: cover;
}
.product-variant-characteristics {
  min-height: 3em;
}
.product-variant-characteristics .product-variant-characteristics-text {
  overflow: hidden;
  line-height: 1.5em;
  height: 3em;
  text-align: justify;
  margin-right: -1em;
  padding-right: 1em;
  max-width: 95%;
  /* stylelint-disable */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* stylelint-enable */
  line-clamp: 2;
  text-overflow: ellipsis;
  font-size: 0.875rem;
}
.product-variant-characteristics .product-variant-characteristics-option {
  font-weight: 700;
}
.product-image-wrapper {
  height: 200px;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 180px;
  margin-bottom: 15px;
  position: relative;
}
.product-image-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-link.is-cover {
  align-items: flex-start;
}
.product-image {
  display: block;
  max-width: 100%;
  max-height: 200px;
}
.product-image.is-standard, .product-image.is-cover, .product-image.is-contain {
  width: 100%;
  height: 100%;
}
.product-image.is-cover {
  object-fit: cover;
}
.product-image.is-contain {
  object-fit: contain;
}
.product-image.is-standard {
  object-fit: scale-down;
}
.product-image-placeholder {
  max-width: 180px;
  height: 100%;
}
.product-rating {
  margin-bottom: 10px;
  height: 25px;
}
/* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
.product-name {
  color: #1f3e4f;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  height: 2.75rem;
  margin-bottom: 10px;
  font-size: 1.125rem;
  line-height: 1.375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.product-name:hover {
  color: var(--text-color-brand-primary);
  text-decoration: none;
}
.product-description {
  height: 4.5rem;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
.product-price-info {
  margin-top: 10px;
}
.product-price-info .product-advanced-list-price-wrapper {
  font-weight: 400;
}
.product-price-unit {
  height: 36px;
  font-size: 0.875rem;
  line-height: 1.125rem;
  overflow: hidden;
}
.product-unit-label {
  font-weight: 700;
}
.product-cheapest-price {
  min-height: 20px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 32px;
}
.product-cheapest-price .product-cheapest-price-price {
  font-weight: 700;
}
.product-cheapest-price.with-regulation-price, .product-cheapest-price.with-list-price {
  margin-bottom: 6px;
}
.product-cheapest-price.with-from-price {
  margin-bottom: 5px;
}
.product-price {
  color: #1f3e4f;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25rem;
  overflow: hidden;
}
.product-price.with-list-price {
  color: #f80000;
}
.product-price .list-price {
  color: #1f3e4f;
  font-weight: 400;
  padding-left: 5px;
  font-size: 0.75rem;
}
.product-price .list-price .list-price-price {
  text-decoration: line-through;
}
.product-price .regulation-price {
  color: #1f3e4f;
  font-weight: 400;
  font-size: 0.75rem;
  padding-left: 0;
}
.product-price .list-price-no-line-through .list-price-price {
  text-decoration: none;
}
.product-price .strikeprice-text {
  color: #1f3e4f;
  font-weight: 400;
  padding-left: 5px;
  font-size: 0.75rem;
}
.product-action {
  margin-top: 20px;
}
.product-badges {
  position: absolute;
  top: 30px;
  left: -1px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.product-badges .badge {
  --bs-badge-padding-x: 8px;
  --bs-badge-padding-y: 0;
  --bs-badge-font-size: 1.125rem;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #1f3e4f;
  --bs-badge-border-radius: 0 3px 3px 0;
  width: max-content;
  height: 2rem;
  margin: 0 0 8px;
  line-height: 2rem;
  letter-spacing: 0;
}
.product-price-wrapper {
  font-size: 1.125rem;
}
/*
Loader
==============================================
Defines the loader icon
*/
.loader {
  --bs-spinner-border-width: 3px;
}
/*
Element loader
==============================================
Element loader can be applied to any element.
*/
.has-element-loader {
  z-index: 15;
  pointer-events: none;
  position: relative;
}
.element-loader-backdrop {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.3, 0, 0.15, 1), visibility 0.45s linear;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 11px 7px rgba(255, 255, 255, 0.5);
  z-index: 15;
}
.element-loader-backdrop.element-loader-backdrop-open {
  opacity: 1;
}
.element-loader-backdrop > .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
}
/*
Skeleton screen
==============================================
Skeleton screen for reloading product-listing with subtle shimmer effect
*/
@keyframes skeletonShimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
.has-element-loader .cms-element-product-listing .product-badges, .has-element-loader .cms-element-product-listing .product-image-link, .has-element-loader .cms-element-product-listing .product-image, .has-element-loader .cms-element-product-listing .product-review-rating {
  display: none;
}
.has-element-loader .cms-element-product-listing .product-image-wrapper, .has-element-loader .cms-element-product-listing .product-rating, .has-element-loader .cms-element-product-listing .product-name, .has-element-loader .cms-element-product-listing .product-variant-characteristics, .has-element-loader .cms-element-product-listing .product-description, .has-element-loader .cms-element-product-listing .product-price-unit, .has-element-loader .cms-element-product-listing .product-cheapest-price-price, .has-element-loader .cms-element-product-listing .product-price {
  border-radius: 0.8rem;
  color: transparent;
  animation: skeletonShimmer 1.5s linear 0s infinite normal forwards running;
  background: linear-gradient(to right, #dee2e6 8%, #f8f9fa 18%, #dee2e6 28%);
  background-size: 800px 100px;
}
.has-element-loader .cms-element-product-listing .product-rating {
  width: 50%;
}
.has-element-loader .cms-element-product-listing .product-name {
  width: 75%;
}
.has-element-loader .cms-element-product-listing .product-price {
  width: 35%;
}
.has-element-loader .cms-element-product-listing .product-wishlist-info-item {
  border-radius: 0.8rem;
  color: transparent;
  animation: skeletonShimmer 1.5s linear 0s infinite normal forwards running;
  background: linear-gradient(to right, #dee2e6 8%, #f8f9fa 18%, #dee2e6 28%);
  background-size: 800px 100px;
}
.has-element-loader .cms-element-product-listing .product-wishlist-info-status {
  display: none;
}
.has-element-loader .cms-element-product-listing .product-variant-characteristics-text, .has-element-loader .cms-element-product-listing .product-wishlist-remove {
  display: none;
}
/*
Button loading indicator
==============================================
Can be shown before or after the button text or replace it.
*/
.btn > .loader, .active-campaign-form form[id^="_form_"] ._submit > .loader {
  --bs-spinner-width: 18px;
  --bs-spinner-height: 18px;
  --bs-spinner-vertical-align: -0.25em;
  color: var(--bs-btn-color);
}
.btn.is-loading-indicator-before .loader, .active-campaign-form form[id^="_form_"] .is-loading-indicator-before._submit .loader {
  margin-right: var(--bs-btn-padding-x);
}
.btn.is-loading-indicator-after .loader, .active-campaign-form form[id^="_form_"] .is-loading-indicator-after._submit .loader {
  margin-left: var(--bs-btn-padding-x);
}
@keyframes slide-in {
  0% {
    opacity: 0;
    margin-bottom: -30px;
  }
  100% {
    opacity: 1;
    margin-bottom: 0;
  }
}
.btn.is-loading-indicator-inner .loader, .active-campaign-form form[id^="_form_"] .is-loading-indicator-inner._submit .loader {
  animation: 0.15s ease-out 0s 1 slide-in, var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  /* stylelint-enable */
}
/*
Modal
==============================================
Custom styling for bootstrap modal component.

https://getbootstrap.com/docs/5.2/components/modal
*/
.modal .modal-header.only-close {
  border-bottom-color: transparent;
}
.modal .modal-close:focus {
  outline: 0;
}
.modal .cms-section-default .boxed {
  padding: 0;
}
.modal.is-fullscreen .modal-dialog, .modal.is-fullscreen .modal-content {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: absolute;
  max-width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  overflow-y: scroll;
  box-shadow: none;
}
.modal.is-fullscreen .modal-dialog, .modal.is-fullscreen .modal-content, .modal.is-fullscreen .modal-header, .modal.is-fullscreen .modal-body, .modal.is-fullscreen .modal-footer {
  border-radius: 0;
}
/*
Language flags
==================================================
Displays a country flag the size of 14px x 11px used for language selections purposes.

inspired by: https://github.com/dhanishgajjar/css-flags

en-GB: we need to use svg for en-GB, cause it's smaller than the CSS-Version
*/
.language-flag {
  display: inline-block;
  height: 12px;
  width: 16px;
  border: 1px solid #adb5bd;
  margin-top: 1px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
}
.language-flag.country-de {
  background-image: linear-gradient(to bottom, #000 33%, #f00 33%, #f00 66%, #fc0 66%);
}
.language-flag.country-gb {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb24tY3NzLWdiIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iIzAxMjE2OSIgZD0iTTAgMGg2NDB2NDgwSDB6Ii8+CiAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTc1IDBsMjQ0IDE4MUw1NjIgMGg3OHY2Mkw0MDAgMjQxbDI0MCAxNzh2NjFoLTgwTDMyMCAzMDEgODEgNDgwSDB2LTYwbDIzOS0xNzhMMCA2NFYwaDc1eiIvPgogIDxwYXRoIGZpbGw9IiNDODEwMkUiIGQ9Ik00MjQgMjgxbDIxNiAxNTl2NDBMMzY5IDI4MWg1NXptLTE4NCAyMGw2IDM1TDU0IDQ4MEgwbDI0MC0xNzl6TTY0MCAwdjNMMzkxIDE5MWwyLTQ0TDU5MCAwaDUwek0wIDBsMjM5IDE3NmgtNjBMMCA0MlYweiIvPgogIDxwYXRoIGZpbGw9IiNGRkYiIGQ9Ik0yNDEgMHY0ODBoMTYwVjBIMjQxek0wIDE2MHYxNjBoNjQwVjE2MEgweiIvPgogIDxwYXRoIGZpbGw9IiNDODEwMkUiIGQ9Ik0wIDE5M3Y5Nmg2NDB2LTk2SDB6TTI3MyAwdjQ4MGg5NlYwaC05NnoiLz4KPC9zdmc+Cg==");
}
.language-flag.country-us {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb24tY3NzLXVzIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgIDxnIHN0cm9rZS13aWR0aD0iMXB0Ij4KICAgICAgPHBhdGggZmlsbD0iI2JkM2Q0NCIgZD0iTTAgMGg5NzIuOHYzOS40SDB6bTAgNzguOGg5NzIuOHYzOS40SDB6bTAgNzguN2g5NzIuOFYxOTdIMHptMCA3OC44aDk3Mi44djM5LjRIMHptMCA3OC44aDk3Mi44djM5LjRIMHptMCA3OC43aDk3Mi44djM5LjRIMHptMCA3OC44aDk3Mi44VjUxMkgweiIgdHJhbnNmb3JtPSJzY2FsZSguOTM3NSkiLz4KICAgICAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMzkuNGg5NzIuOHYzOS40SDB6bTAgNzguOGg5NzIuOHYzOS4zSDB6bTAgNzguN2g5NzIuOHYzOS40SDB6bTAgNzguOGg5NzIuOHYzOS40SDB6bTAgNzguOGg5NzIuOHYzOS40SDB6bTAgNzguN2g5NzIuOHYzOS40SDB6IiB0cmFuc2Zvcm09InNjYWxlKC45Mzc1KSIvPgogICAgPC9nPgogICAgPHBhdGggZmlsbD0iIzE5MmY1ZCIgZD0iTTAgMGgzODkuMXYyNzUuN0gweiIgdHJhbnNmb3JtPSJzY2FsZSguOTM3NSkiLz4KICAgIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0zMi40IDExLjhMMzYgMjIuN2gxMS40bC05LjIgNi43IDMuNSAxMS05LjMtNi44LTkuMiA2LjcgMy41LTEwLjktOS4zLTYuN0gyOXptNjQuOSAwbDMuNSAxMC45aDExLjVsLTkuMyA2LjcgMy41IDExLTkuMi02LjgtOS4zIDYuNyAzLjUtMTAuOS05LjItNi43aDExLjR6bTY0LjggMGwzLjYgMTAuOUgxNzdsLTkuMiA2LjcgMy41IDExLTkuMy02LjgtOS4yIDYuNyAzLjUtMTAuOS05LjMtNi43aDExLjV6bTY0LjkgMGwzLjUgMTAuOUgyNDJsLTkuMyA2LjcgMy42IDExLTkuMy02LjgtOS4zIDYuNyAzLjYtMTAuOS05LjMtNi43aDExLjR6bTY0LjggMGwzLjYgMTAuOWgxMS40bC05LjIgNi43IDMuNSAxMS05LjMtNi44LTkuMiA2LjcgMy41LTEwLjktOS4yLTYuN2gxMS40em02NC45IDBsMy41IDEwLjloMTEuNWwtOS4zIDYuNyAzLjYgMTEtOS4zLTYuOC05LjMgNi43IDMuNi0xMC45LTkuMy02LjdoMTEuNXpNNjQuOSAzOS40bDMuNSAxMC45aDExLjVMNzAuNiA1NyA3NCA2Ny45bC05LTYuNy05LjMgNi43TDU5IDU3bC05LTYuN2gxMS40em02NC44IDBsMy42IDEwLjloMTEuNGwtOS4zIDYuNyAzLjYgMTAuOS05LjMtNi43LTkuMyA2LjdMMTI0IDU3bC05LjMtNi43aDExLjV6bTY0LjkgMGwzLjUgMTAuOWgxMS41bC05LjMgNi43IDMuNSAxMC45LTkuMi02LjctOS4zIDYuNyAzLjUtMTAuOS05LjItNi43SDE5MXptNjQuOCAwbDMuNiAxMC45aDExLjRsLTkuMyA2LjcgMy42IDEwLjktOS4zLTYuNy05LjIgNi43IDMuNS0xMC45LTkuMy02LjdIMjU2em02NC45IDBsMy41IDEwLjloMTEuNUwzMzAgNTdsMy41IDEwLjktOS4yLTYuNy05LjMgNi43IDMuNS0xMC45LTkuMi02LjdoMTEuNHpNMzIuNCA2Ni45TDM2IDc4aDExLjRsLTkuMiA2LjcgMy41IDEwLjktOS4zLTYuOC05LjIgNi44IDMuNS0xMS05LjMtNi43SDI5em02NC45IDBsMy41IDExaDExLjVsLTkuMyA2LjcgMy41IDEwLjktOS4yLTYuOC05LjMgNi44IDMuNS0xMS05LjItNi43aDExLjR6bTY0LjggMGwzLjYgMTFIMTc3bC05LjIgNi43IDMuNSAxMC45LTkuMy02LjgtOS4yIDYuOCAzLjUtMTEtOS4zLTYuN2gxMS41em02NC45IDBsMy41IDExSDI0MmwtOS4zIDYuNyAzLjYgMTAuOS05LjMtNi44LTkuMyA2LjggMy42LTExLTkuMy02LjdoMTEuNHptNjQuOCAwbDMuNiAxMWgxMS40bC05LjIgNi43IDMuNSAxMC45LTkuMy02LjgtOS4yIDYuOCAzLjUtMTEtOS4yLTYuN2gxMS40em02NC45IDBsMy41IDExaDExLjVsLTkuMyA2LjcgMy42IDEwLjktOS4zLTYuOC05LjMgNi44IDMuNi0xMS05LjMtNi43aDExLjV6TTY0LjkgOTQuNWwzLjUgMTAuOWgxMS41bC05LjMgNi43IDMuNSAxMS05LjItNi44LTkuMyA2LjcgMy41LTEwLjktOS4yLTYuN2gxMS40em02NC44IDBsMy42IDEwLjloMTEuNGwtOS4zIDYuNyAzLjYgMTEtOS4zLTYuOC05LjMgNi43IDMuNi0xMC45LTkuMy02LjdoMTEuNXptNjQuOSAwbDMuNSAxMC45aDExLjVsLTkuMyA2LjcgMy41IDExLTkuMi02LjgtOS4zIDYuNyAzLjUtMTAuOS05LjItNi43SDE5MXptNjQuOCAwbDMuNiAxMC45aDExLjRsLTkuMiA2LjcgMy41IDExLTkuMy02LjgtOS4yIDYuNyAzLjUtMTAuOS05LjMtNi43SDI1NnptNjQuOSAwbDMuNSAxMC45aDExLjVsLTkuMyA2LjcgMy41IDExLTkuMi02LjgtOS4zIDYuNyAzLjUtMTAuOS05LjItNi43aDExLjR6TTMyLjQgMTIyLjFMMzYgMTMzaDExLjRsLTkuMiA2LjcgMy41IDExLTkuMy02LjgtOS4yIDYuNyAzLjUtMTAuOS05LjMtNi43SDI5em02NC45IDBsMy41IDEwLjloMTEuNWwtOS4zIDYuNyAzLjUgMTAuOS05LjItNi43LTkuMyA2LjcgMy41LTEwLjktOS4yLTYuN2gxMS40em02NC44IDBsMy42IDEwLjlIMTc3bC05LjIgNi43IDMuNSAxMS05LjMtNi44LTkuMiA2LjcgMy41LTEwLjktOS4zLTYuN2gxMS41em02NC45IDBsMy41IDEwLjlIMjQybC05LjMgNi43IDMuNiAxMS05LjMtNi44LTkuMyA2LjcgMy42LTEwLjktOS4zLTYuN2gxMS40em02NC44IDBsMy42IDEwLjloMTEuNGwtOS4yIDYuNyAzLjUgMTEtOS4zLTYuOC05LjIgNi43IDMuNS0xMC45LTkuMi02LjdoMTEuNHptNjQuOSAwbDMuNSAxMC45aDExLjVsLTkuMyA2LjcgMy42IDExLTkuMy02LjgtOS4zIDYuNyAzLjYtMTAuOS05LjMtNi43aDExLjV6TTY0LjkgMTQ5LjdsMy41IDEwLjloMTEuNWwtOS4zIDYuNyAzLjUgMTAuOS05LjItNi44LTkuMyA2LjggMy41LTExLTkuMi02LjdoMTEuNHptNjQuOCAwbDMuNiAxMC45aDExLjRsLTkuMyA2LjcgMy42IDEwLjktOS4zLTYuOC05LjMgNi44IDMuNi0xMS05LjMtNi43aDExLjV6bTY0LjkgMGwzLjUgMTAuOWgxMS41bC05LjMgNi43IDMuNSAxMC45LTkuMi02LjgtOS4zIDYuOCAzLjUtMTEtOS4yLTYuN0gxOTF6bTY0LjggMGwzLjYgMTAuOWgxMS40bC05LjIgNi43IDMuNSAxMC45LTkuMy02LjgtOS4yIDYuOCAzLjUtMTEtOS4zLTYuN0gyNTZ6bTY0LjkgMGwzLjUgMTAuOWgxMS41bC05LjMgNi43IDMuNSAxMC45LTkuMi02LjgtOS4zIDYuOCAzLjUtMTEtOS4yLTYuN2gxMS40ek0zMi40IDE3Ny4ybDMuNiAxMWgxMS40bC05LjIgNi43IDMuNSAxMC44LTkuMy02LjctOS4yIDYuNyAzLjUtMTAuOS05LjMtNi43SDI5em02NC45IDBsMy41IDExaDExLjVsLTkuMyA2LjcgMy42IDEwLjgtOS4zLTYuNy05LjMgNi43IDMuNi0xMC45LTkuMy02LjdoMTEuNHptNjQuOCAwbDMuNiAxMUgxNzdsLTkuMiA2LjcgMy41IDEwLjgtOS4zLTYuNy05LjIgNi43IDMuNS0xMC45LTkuMy02LjdoMTEuNXptNjQuOSAwbDMuNSAxMUgyNDJsLTkuMyA2LjcgMy42IDEwLjgtOS4zLTYuNy05LjMgNi43IDMuNi0xMC45LTkuMy02LjdoMTEuNHptNjQuOCAwbDMuNiAxMWgxMS40bC05LjIgNi43IDMuNSAxMC44LTkuMy02LjctOS4yIDYuNyAzLjUtMTAuOS05LjItNi43aDExLjR6bTY0LjkgMGwzLjUgMTFoMTEuNWwtOS4zIDYuNyAzLjYgMTAuOC05LjMtNi43LTkuMyA2LjcgMy42LTEwLjktOS4zLTYuN2gxMS41ek02NC45IDIwNC44bDMuNSAxMC45aDExLjVsLTkuMyA2LjcgMy41IDExLTkuMi02LjgtOS4zIDYuNyAzLjUtMTAuOS05LjItNi43aDExLjR6bTY0LjggMGwzLjYgMTAuOWgxMS40bC05LjMgNi43IDMuNiAxMS05LjMtNi44LTkuMyA2LjcgMy42LTEwLjktOS4zLTYuN2gxMS41em02NC45IDBsMy41IDEwLjloMTEuNWwtOS4zIDYuNyAzLjUgMTEtOS4yLTYuOC05LjMgNi43IDMuNS0xMC45LTkuMi02LjdIMTkxem02NC44IDBsMy42IDEwLjloMTEuNGwtOS4yIDYuNyAzLjUgMTEtOS4zLTYuOC05LjIgNi43IDMuNS0xMC45LTkuMy02LjdIMjU2em02NC45IDBsMy41IDEwLjloMTEuNWwtOS4zIDYuNyAzLjUgMTEtOS4yLTYuOC05LjMgNi43IDMuNS0xMC45LTkuMi02LjdoMTEuNHpNMzIuNCAyMzIuNGwzLjYgMTAuOWgxMS40bC05LjIgNi43IDMuNSAxMC45LTkuMy02LjctOS4yIDYuNyAzLjUtMTEtOS4zLTYuN0gyOXptNjQuOSAwbDMuNSAxMC45aDExLjVMMTAzIDI1MGwzLjYgMTAuOS05LjMtNi43LTkuMyA2LjcgMy42LTExLTkuMy02LjdoMTEuNHptNjQuOCAwbDMuNiAxMC45SDE3N2wtOSA2LjcgMy41IDEwLjktOS4zLTYuNy05LjIgNi43IDMuNS0xMS05LjMtNi43aDExLjV6bTY0LjkgMGwzLjUgMTAuOUgyNDJsLTkuMyA2LjcgMy42IDEwLjktOS4zLTYuNy05LjMgNi43IDMuNi0xMS05LjMtNi43aDExLjR6bTY0LjggMGwzLjYgMTAuOWgxMS40bC05LjIgNi43IDMuNSAxMC45LTkuMy02LjctOS4yIDYuNyAzLjUtMTEtOS4yLTYuN2gxMS40em02NC45IDBsMy41IDEwLjloMTEuNWwtOS4zIDYuNyAzLjYgMTAuOS05LjMtNi43LTkuMyA2LjcgMy42LTExLTkuMy02LjdoMTEuNXoiIHRyYW5zZm9ybT0ic2NhbGUoLjkzNzUpIi8+CiAgPC9nPgo8L3N2Zz4K");
}
/*
Icons
==============================================
Basic styling for icon component plus helper classes for sizing and colors.
Credit: https://github.com/FortAwesome/Font-Awesome
*/
.icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-self: center;
  font-size: inherit;
  overflow: visible;
  color: #4a545b;
}
.icon > svg {
  width: 100%;
  height: 100%;
  top: 0;
  position: relative;
}
.icon-primary {
  color: var(--text-color-brand-primary);
}
.icon-secondary {
  color: #f191ae;
}
.icon-success {
  color: #28a745;
}
.icon-info {
  color: #17a2b8;
}
.icon-warning {
  color: #ffc107;
}
.icon-danger {
  color: #f80000;
}
.icon-light {
  color: #e9ecef;
}
.icon-dark {
  color: #313131;
}
.icon-review {
  color: #fedc70;
}
.icon-fluid {
  width: 100%;
  height: 100%;
}
.icon-lg {
  width: 32px;
  height: 32px;
}
.icon-sm, .navigation-offcanvas-link-icon .loader {
  width: 21px;
  height: 21px;
}
.icon-xs {
  width: 18px;
  height: 18px;
}
.icon-1x {
  width: 24px;
  height: 24px;
}
.icon-2x {
  width: 48px;
  height: 48px;
}
.icon-3x {
  width: 72px;
  height: 72px;
}
.icon-4x {
  width: 96px;
  height: 96px;
}
.icon-5x {
  width: 120px;
  height: 120px;
}
.icon-6x {
  width: 144px;
  height: 144px;
}
.icon-7x {
  width: 168px;
  height: 168px;
}
.icon-8x {
  width: 192px;
  height: 192px;
}
.icon-9x {
  width: 216px;
  height: 216px;
}
.icon-10x {
  width: 240px;
  height: 240px;
}
.icon-rotate-90 svg {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}
.icon-rotate-180 svg {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}
.icon-rotate-270 svg {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}
.icon-flip-horizontal svg {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
.icon-flip-vertical svg {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}
.icon-flip-both svg, .icon-flip-horizontal.icon-flip-vertical svg {
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}
:root .icon-rotate-90 svg, :root .icon-rotate-180 svg, :root .icon-rotate-270 svg, :root .icon-flip-horizontal svg, :root .icon-flip-vertical svg, :root .icon-flip-both svg {
  filter: none;
}
.alert-primary .icon {
  color: #59c0cc;
}
.alert-secondary .icon {
  color: #f191ae;
}
.alert-success .icon {
  color: #28a745;
}
.alert-info .icon {
  color: #17a2b8;
}
.alert-warning .icon {
  color: #ffc107;
}
.alert-danger .icon {
  color: #f80000;
}
.alert-light .icon {
  color: #f1ead6;
}
.alert-dark .icon {
  color: #313131;
}
.alert-accent-primary .icon {
  color: #ced8de;
}
.alert-accent-secondary .icon {
  color: #78929d;
}
.btn-primary .icon, .active-campaign-form form[id^="_form_"] ._submit .icon {
  color: #000;
}
.btn-secondary .icon {
  color: #000;
}
.btn-success .icon {
  color: #000;
}
.btn-info .icon {
  color: #000;
}
.btn-warning .icon {
  color: #000;
}
.btn-danger .icon {
  color: #000;
}
.btn-light .icon {
  color: #000;
}
.btn-dark .icon {
  color: #fff;
}
.btn-accent-primary .icon {
  color: #000;
}
.btn-accent-secondary .icon {
  color: #000;
}
.pagination .icon {
  width: 13px;
  height: 13px;
}
/*
Pagination
==============================================
Custom styling for bootstrap pagination component.

https://getbootstrap.com/docs/5.2/components/pagination
*/
.pagination {
  margin-bottom: 0;
}
.pagination .page-link {
  cursor: pointer;
  margin-bottom: 0;
}
/*
CMS sections
==============================================
General styling for cms sections
*/
.cms-section {
  overflow: hidden;
}
.cms-section.bg-image {
  background-repeat: no-repeat;
  background-position: 50%;
}
.cms-section .cms-section-sidebar > .row, .cms-section .is-act-cartpage .checkout .cms-section-sidebar > .checkout-container, .is-act-cartpage .checkout .cms-section .cms-section-sidebar > .checkout-container, .cms-section .is-act-checkoutregisterpage .checkout .cms-section-sidebar > .checkout-container, .is-act-checkoutregisterpage .checkout .cms-section .cms-section-sidebar > .checkout-container, .cms-section .is-act-confirmpage .checkout .cms-section-sidebar > .checkout-container, .is-act-confirmpage .checkout .cms-section .cms-section-sidebar > .checkout-container, .cms-section .is-ctl-accountorder .checkout .cms-section-sidebar > .checkout-container, .is-ctl-accountorder .checkout .cms-section .cms-section-sidebar > .checkout-container, .cms-section .is-act-finishpage .checkout .cms-section-sidebar > .checkout-container, .is-act-finishpage .checkout .cms-section .cms-section-sidebar > .checkout-container {
  --bs-gutter-x: 60px;
}
@media (max-width: 767.98px) {
  .cms-section-sidebar-mobile-wrap {
    flex-direction: column;
  }
  .cms-section-sidebar-mobile-hidden .cms-section-sidebar-sidebar-content {
    display: none;
  }
}
/*
CMS blocks
==============================================
General styling for cms blocks and
specific styling for elements dependent on their parent block
*/
.cms-block.bg-image {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%;
}
.cms-block .cms-block-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: none;
}
.cms-block .cms-block-background.media-mode--contain {
  object-fit: contain;
}
.cms-block .cms-block-background.media-mode--cover {
  object-fit: cover;
}
.cms-block .cms-block-container {
  position: relative;
}
.cms-block .cms-block-container .cms-block-container-row {
  flex-direction: row;
}
.cms-block-center-text .cms-element-text {
  padding: 30px;
}
.cms-block-image-three-cover .row, .cms-block-image-three-cover .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .cms-block-image-three-cover .checkout-container, .cms-block-image-three-cover .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .cms-block-image-three-cover .checkout-container, .cms-block-image-three-cover .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .cms-block-image-three-cover .checkout-container, .cms-block-image-three-cover .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .cms-block-image-three-cover .checkout-container, .cms-block-image-three-cover .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .cms-block-image-three-cover .checkout-container {
  margin: 0;
}
.cms-block-image-three-cover [class^="col-"] {
  padding: 0;
}
.cms-block-image-text-bubble .cms-element-image .cms-image-container, .cms-block-image-bubble-row .cms-element-image .cms-image-container {
  height: 300px;
  width: 300px;
  margin: auto;
  border-radius: 50%;
  background-clip: padding-box;
  overflow: hidden;
}
.cms-block-image-highlight-row .cms-element-image {
  border: 12px solid #fff;
}
.cms-block-image-text-bubble .cms-element-text, .cms-block-image-text-row .cms-element-text {
  padding-top: 20px;
}
.cms-block-image-text-gallery .image-text-gallery-card {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}
.cms-block-image-text-gallery .cms-element-text {
  padding: 20px;
}
.cms-block-text-on-image .cms-element-text {
  padding: 30px;
  align-items: center;
  min-height: 240px;
}
.cms-block-image-text-cover .cms-element-text {
  padding-top: 30px;
}
.cms-block-image-simple-grid .left-top {
  margin-bottom: 40px;
}
.cms-block-image-simple-grid .right {
  height: 100%;
}
@media (min-width: 992px) {
  .cms-block-container .cms-block-container-row.has--sidebar {
    flex-direction: column;
  }
  .cms-block-container .cms-block-container-row.has--sidebar > div {
    flex-basis: auto;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .cms-block-image-text-gallery .cms-row > :not(:last-child), .cms-block-image-two-column .cms-row > :not(:last-child), .cms-block-image-three-column .cms-row > :not(:last-child), .cms-block-image-four-column .cms-row > :not(:last-child), .cms-block-image-bubble-row .cms-row > :not(:last-child), .cms-block-image-highlight-row .cms-row > :not(:last-child) {
    margin-bottom: 40px;
  }
  .cms-block-image-text .cms-row > :first-child, .cms-block-image-text-cover .cms-row > :first-child {
    margin-bottom: 40px;
  }
  .cms-block-image-simple-grid .left-bottom {
    margin-bottom: 40px;
  }
}
.cms-block-sidebar-filter {
  overflow: visible;
  /*
    The filter's col is set to "initial" because the "boundary" option
    of the filter panel bootstrap dropdown is not working otherwise.
    The "boundary" option sets the dropdown container to "static" to
    be able to "break out" of "overflow: hidden". But this interferes
    with position "relative" on surrounding columns.
    */
}
.cms-block-sidebar-filter .col-12 {
  position: initial;
}
.cms-element-product-name {
  display: inline-block;
}
.cms-element-manufacturer-logo .cms-image-link {
  height: 100%;
}
.cms-element-manufacturer-logo .cms-image-container.is-standard img {
  max-width: 200px;
  max-height: 70px;
}
/*
CMS elements
==============================================
General styling for cms elements
*/
.cms-element-image {
  position: relative;
  height: 100%;
}
.cms-element-image .cms-image {
  display: block;
  max-width: 100%;
}
.cms-element-image .cms-image-container {
  display: block;
  max-width: 100%;
  position: relative;
}
.cms-element-image .cms-image-container.is-cover {
  object-fit: contain;
  height: 100%;
}
.cms-element-image .cms-image-container.is-cover .cms-image {
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cms-element-image .cms-image-container.is-cover .cms-image, .cms-element-image .cms-image-container.is-stretch .cms-image {
  width: 100%;
}
.cms-element-image .cms-image-link {
  display: block;
}
.cms-element-youtube-video {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-element-youtube-video.is--streched {
  height: 100%;
}
.cms-element-youtube-video::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: calc((9 / 16) * 100%);
}
.cms-element-youtube-video__video, .cms-element-youtube-video__placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0 none;
}
.cms-element-youtube-video__placeholder img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cms-element-youtube-video__backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cms-element-youtube-video__backdrop > div {
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
}
.cms-element-vimeo-video {
  position: relative;
  width: 100%;
}
.cms-element-vimeo-video::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.cms-element-vimeo-video__video, .cms-element-vimeo-video__placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0 none;
}
.cms-element-vimeo-video__placeholder img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cms-element-vimeo-video__backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cms-element-vimeo-video__backdrop > div {
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
}
.cms-element-vimeo-video__container:hover .js-vimeo-link {
  display: block;
}
.cms-element-product-listing-actions {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cms-element-product-listing-actions .sorting {
  margin-left: auto;
}
.cms-element-buy-box, .cms-element-product-box {
  width: 100%;
}
.cms-element-product-slider .cms-element-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f3e4f;
}
.cms-element-product-slider.has-border .cms-element-title {
  margin-top: 0.5rem;
}
.cms-element-text, .cms-element-image, .cms-element-product-box, .cms-element-buy-box, .cms-element-product-slider, .cms-element-image-slider, .cms-element-product-description-reviews, .cms-element-image-gallery {
  word-break: break-word;
}
.cms-element-text.has-vertical-alignment, .cms-element-image.has-vertical-alignment, .cms-element-product-box.has-vertical-alignment, .cms-element-buy-box.has-vertical-alignment, .cms-element-product-slider.has-vertical-alignment, .cms-element-image-slider.has-vertical-alignment, .cms-element-product-description-reviews.has-vertical-alignment, .cms-element-image-gallery.has-vertical-alignment {
  display: flex;
  height: 100%;
}
.cms-element-image-gallery .js-magnifier-zoom-image-container .magnifier-overlay {
  display: none;
}
@media (max-width: 991.98px) {
  .cms-element-product-listing-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}
div.card-tabs .cms-card-header {
  padding-left: 0;
  padding-right: 0;
}
.cms-element-text {
  position: relative;
}
.confirm-message {
  padding: 10% 20%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.confirm-message div.alert {
  margin-top: 1em;
}
.confirm-alert {
  padding: 1em 1em 3em;
}
@media (max-width: 767.98px) {
  .confirm-message {
    padding: 10% 0;
  }
}
/*
Form
==============================================
Custom styling for bootstrap forms.

https://getbootstrap.com/docs/5.2/forms/overview
*/
.was-validated .form-control:valid, .form-control.is-valid {
  background-position: 97% 50%;
}
.was-validated .form-control:invalid, .form-control.is-invalid {
  background-position: 97% 50%;
}
.was-validated .custom-control-input:valid ~ .custom-control-label.no-validation {
  color: inherit;
}
.was-validated .custom-control-input:valid ~ .custom-control-label.no-validation::before {
  border-color: inherit;
}
.required-fields {
  margin-bottom: 1rem;
}
.form-text {
  font-size: 1rem;
}
.forms-boolean {
  display: block;
  border: 1px solid #ced8de;
  padding: 0 36px;
  margin: 12px 0;
  height: 40px;
  border-radius: 3px;
  cursor: pointer;
}
.forms-boolean.is-active {
  border-color: #59c0cc;
}
.forms-boolean:hover {
  border-color: #59c0cc;
  color: #59c0cc;
}
.forms-boolean-label {
  cursor: pointer;
  height: 38px;
  line-height: 38px;
  width: 100%;
}
.forms-boolean-label::before, .forms-boolean-label::after {
  top: 11px;
}
.address-manager-modal {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.address-manager-modal .btn-icon-hover-white:hover span.icon, .address-manager-modal .btn-icon-hover-white:focus span.icon {
  color: #fff;
}
.address-manager-modal .loader {
  color: #fff;
}
.address-manager-modal .address-manager-modal-header-content {
  width: 100%;
}
.address-manager-modal .modal-body {
  padding-top: 0;
  height: 550px;
}
.address-manager-modal .modal-footer {
  background-color: #f8f9fa;
}
.address-manager-modal .address-manager-modal-select-address:hover {
  border-color: #59c0cc;
  cursor: pointer;
}
.address-manager-modal .address-manager-modal-select-address {
  height: 210px;
}
.sorting {
  display: inline-block;
  width: 260px;
}
/*
Delivery status
==============================================
Shows the delivery status for products e.g. on detail page.
*/
.delivery-status-indicator {
  border-radius: 100%;
  background-clip: padding-box;
  display: inline-block;
  height: 10px;
  line-height: 10px;
  margin-right: 5px;
  position: relative;
  width: 10px;
}
.quickview-minimal-top, .quickview-minimal-image {
  margin-bottom: 1rem;
}
.quickview-minimal-product-manufacturer-logo {
  width: 100%;
}
@media (min-width: 768px) {
  .quickview-minimal-top {
    margin-bottom: 1.5rem;
  }
}
/*
Payment method
==============================================
Custom styling for payment form used e.g. on account and checkout pages.
*/
.payment-method-image {
  max-height: 24px;
  max-width: 100%;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
  float: right;
}
/*
Shipping method
==============================================
Custom styling for shipping form used e.g. on account and checkout pages.
*/
.shipping-method-image {
  max-height: 24px;
  max-width: 100%;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
  float: right;
}
/*
Filter panel
==============================================
Styling for filter panel component.
This file contains the generic styling for all filter items.
*/
.filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-bottom: 8px;
}
.icon.icon-filter-panel-item-toggle {
  margin-left: 8px;
}
.icon.icon-filter-panel-item-toggle > svg {
  top: 4px;
}
.filter-panel-items-container {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-bottom: 8px;
  width: 100%;
}
.filter-panel-item {
  margin-right: 12px;
  margin-bottom: 12px;
}
.filter-panel-item .filter-panel-item-toggle {
  --bs-btn-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
  --bs-btn-border-color: #ced8de;
  --bs-btn-hover-border-color: #ced8de;
  --bs-btn-active-border-color: #59c0cc;
  --bs-btn-active-color: #59c0cc;
  --bs-btn-font-weight: 400;
}
.filter-panel-item-toggle.show .icon-filter-panel-item-toggle svg {
  color: #59c0cc;
  transform: rotate(180deg);
}
.filter-panel-item-dropdown {
  min-width: 240px;
  max-height: 200px;
  overflow: auto;
  padding: 13px 0;
}
.filter-panel-submit {
  height: 40px;
  margin-bottom: 12px;
  border: 1px solid #59c0cc;
  background-color: #fff;
  color: #313131;
}
.filter-active {
  --bs-btn-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
  --bs-btn-border-color: #ced8de;
  --bs-btn-hover-border-color: #59c0cc;
  --bs-btn-hover-color: #59c0cc;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-active-border-color: #59c0cc;
  --bs-btn-active-color: #59c0cc;
  --bs-btn-font-weight: 400;
  --bs-btn-border-radius: 50rem;
  --bs-btn-padding-y: 0.125rem;
  --bs-btn-line-height: 1.625rem;
}
.filter-active-preview {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #ced8de;
  margin-right: 0.25rem;
  background-position: center center;
  background-size: cover;
  vertical-align: -0.125em;
}
.btn.filter-reset-all, .active-campaign-form form[id^="_form_"] .filter-reset-all._submit {
  --bs-btn-border-radius: 50rem;
  --bs-btn-padding-y: 0.125rem;
  --bs-btn-line-height: 1.625rem;
  --bs-btn-font-weight: 400;
}
.is--sidebar .filter-panel, .is--sidebar .filter-panel-items-container {
  display: block;
}
.is--sidebar .filter-panel-item-dropdown {
  min-width: 100%;
  border: 1px solid #59c0cc;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}
.is--sidebar .filter-panel-item {
  margin-right: 0;
  width: 100%;
}
.is--sidebar .filter-panel-item-toggle {
  text-align: left;
  display: flex;
}
.is--sidebar .filter-panel-item-toggle[aria-expanded="true"] {
  color: #59c0cc;
  border-color: #59c0cc;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0 none;
}
.is--sidebar .filter-panel-item-toggle[aria-expanded="true"] svg {
  color: #59c0cc;
  transform: rotate(180deg);
}
.is--sidebar .icon-filter-panel-item-toggle {
  margin-left: auto;
}
.is--sidebar .icon-filter-panel-item-toggle > svg {
  top: 0;
}
.is-loading .filter-panel-item-toggle, .is-loading .filter-active, .is-loading .filter-reset-all, .is-loading .filter-boolean, .is-loading .filter-panel-submit {
  pointer-events: none;
  opacity: 0.6;
}
.btn.filter-panel-wrapper-toggle, .active-campaign-form form[id^="_form_"] .filter-panel-wrapper-toggle._submit {
  display: none;
}
.filter-panel-offcanvas-header {
  height: 80px;
  align-items: center;
  padding: 25px;
  display: none;
}
.filter-panel-offcanvas-title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1f3e4f;
}
.filter-panel-offcanvas-close {
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .btn.filter-panel-wrapper-toggle, .active-campaign-form form[id^="_form_"] .filter-panel-wrapper-toggle._submit {
    display: block;
  }
  .filter-panel-wrapper {
    display: none;
  }
}
.offcanvas-filter {
  overflow: hidden;
}
.offcanvas-filter .filter-panel {
  height: calc(100% - 80px);
  overflow-y: auto;
  width: 100%;
  padding: 0 25px 25px;
}
.offcanvas-filter .filter-panel-offcanvas-header {
  display: flex;
}
/*
Filter multi select
==============================================
Styling for multi select filter item.
This filter item should only be used inside a filter panel.
*/
.filter-multi-select .filter-panel-item-toggle.disabled {
  cursor: default;
}
.filter-multi-select-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.filter-multi-select-list-item {
  padding: 5px 15px;
}
.filter-multi-select-list-item.disabled {
  opacity: 0.3;
}
.filter-multi-select-list-item.disabled .filter-multi-select-item-label {
  cursor: default;
}
.filter-multi-select-item-label {
  cursor: pointer;
  margin-bottom: 0;
  padding: 0 10px;
  width: 100%;
}
.filter-multi-select-count {
  margin-left: 3px;
}
/*
Filter property select
==============================================
Styling for property select filter item.
This filter item should only be used inside a filter panel.
*/
.filter-property-select-list-item {
  display: flex;
  align-items: center;
}
.filter-property-select-preview {
  width: 32px;
  height: 32px;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #ced8de;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90'%3E%3Cpath fill='%23cdd5db' d='M0 0h30v30H0zM30 30h30v30H30zM60 0h30v30H60zM60 60h30v30H60zM0 60h30v30H0z'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: cover;
  position: relative;
  flex-shrink: 0;
}
.filter-property-select-preview-checkmark {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  transform: translateY(-5px);
  background-color: #59c0cc;
  border: 0.125rem solid #f5f2f0;
  top: -0.375rem;
  right: -0.375rem;
}
.filter-property-select-preview-checkmark .icon {
  width: 10px;
  height: 10px;
  color: #fff;
}
.filter-property-select-preview-checkmark .icon svg {
  top: 0;
}
.filter-property-select-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  appearance: none;
  background-color: transparent;
  outline: none;
}
.filter-property-select-checkbox:focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.filter-property-select-checkbox:checked ~ .filter-property-select-preview-checkmark {
  transform: translateY(0);
  opacity: 1;
}
/*
Filter boolean
==============================================
Styling for boolean filter item.
This filter item should only be used inside a filter panel.
*/
.filter-boolean {
  display: inline-block;
  border: 1px solid #ced8de;
  padding-left: 12px;
  padding-right: 12px;
  height: 40px;
  border-radius: 0.8rem;
  cursor: pointer;
}
.filter-boolean.is-active {
  border-color: #59c0cc;
}
.filter-boolean:hover {
  border-color: #59c0cc;
  color: #59c0cc;
}
.filter-boolean.disabled {
  cursor: default;
  background: #eee;
  border-color: #eee;
}
.filter-boolean.disabled .filter-boolean-label {
  color: #dee2e6;
  cursor: default;
}
.filter-boolean-input {
  margin-top: 11px;
}
.filter-boolean-label {
  cursor: pointer;
  height: 38px;
  line-height: 38px;
  width: 100%;
}
/*
Filter range
==============================================
Styling for range filter item.
This filter item should only be used inside a filter panel.
*/
.filter-range-dropdown {
  padding: 0;
  overflow: hidden;
}
.filter-range-container {
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.filter-range-error {
  padding: 0 16px 16px;
  font-size: 13px;
  color: #f80000;
}
.filter-range-min, .filter-range-max {
  width: calc(50% - 14px);
  margin-bottom: 0;
  font-size: 11px;
  position: relative;
}
.min-input, .max-input {
  margin-bottom: 0;
  height: 28px;
  padding: 6px 10px;
  appearance: none;
}
.min-input::-webkit-inner-spin-button, .min-input::-webkit-outer-spin-button, .max-input::-webkit-inner-spin-button, .max-input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}
.filter-range-unit {
  position: absolute;
  bottom: 1px;
  right: 1px;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  padding: 0 10px;
  background-color: #fff;
  border-radius: 0.8rem;
}
.filter-range-divider {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: 700;
}
/*
Filter rating select
==============================================
Styling for rating select filter item.
This filter item should only be used inside a filter panel.
*/
.filter-rating-select-radio {
  appearance: none;
  opacity: 0;
}
.filter-rating-select-radio:checked ~ .filter-rating-select-item-checkmark {
  transform: translateY(2px);
  opacity: 1;
}
.filter-rating-select-radio:focus-visible ~ .filter-rating-select-item-label {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.filter-rating-select-radio:focus-visible ~ .filter-rating-select-item-label .filter-rating-select-item-label-text {
  color: #59c0cc;
  font-weight: 700;
}
.filter-rating-select-item-label {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.filter-rating-select-item-label .product-review-rating {
  margin-right: 8px;
  display: inline-block;
  margin-top: 3px;
}
.filter-rating-select-item-label:hover .icon-review {
  color: #fed03d;
}
.filter-rating-select-item-label:hover .filter-rating-select-item-label-text {
  color: #0042a0;
  font-weight: 700;
}
.filter-rating-select-list-item {
  display: flex;
  position: relative;
  margin-left: 16px;
}
.filter-rating-select-list-item .filter-rating-select-item-label {
  margin-bottom: 5px;
}
.filter-rating-select-list-item:last-child.filter-rating-select-item-label {
  margin-bottom: 0;
}
.filter-rating-select-list-item.disabled {
  opacity: 0.3;
}
.filter-rating-select-list-item.disabled .icon-review {
  color: #dee2e6;
}
.filter-rating-select-list-item.disabled .filter-rating-select-item-label {
  cursor: default;
}
.filter-rating-select-list-item.disabled:hover .filter-rating-select-item-label-text {
  color: #1f3e4f;
  font-weight: 400;
}
.filter-rating-select-item-checkmark {
  width: 20px;
  height: 20px;
  background-color: #6c757d;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50%;
  top: -8px;
  left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  transform: translateY(-7px);
}
.filter-rating-select-item-checkmark .icon {
  width: 10px;
  height: 10px;
  color: #fff;
}
.filter-rating-select-item-checkmark .icon svg {
  top: 0;
}
.filter-multi-select-rating .filter-panel-item-dropdown {
  padding-bottom: 6px;
}
.product-feature-list-list {
  list-style: none;
  padding-left: unset;
}
.product-feature-feature {
  font-size: 0.875rem;
}
.product-feature-value {
  font-weight: 700;
}
/*
Notification dot
==============================================
Styling for notification dot component.
*/
.notification-dot {
  background-color: #dee2e6;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.notification-dot.notification-dot-primary {
  background-color: #59c0cc;
}
.notification-dot.notification-dot-secondary {
  background-color: #f191ae;
}
.notification-dot.notification-dot-success {
  background-color: #28a745;
}
.notification-dot.notification-dot-danger {
  background-color: #f80000;
}
.notification-dot.notification-dot-warning {
  background-color: #ffc107;
}
.notification-dot.notification-dot-info {
  background-color: #17a2b8;
}
.notification-dot.notification-dot-light {
  background-color: #f1ead6;
}
.notification-dot.notification-dot-dark {
  background-color: #313131;
}
/*
Product box for wishlist
==============================================
Styling for productbox component.
*/
.product-box.box-wishlist .stretched-link::after {
  height: calc(200px + var(--bs-card-spacer-y));
}
.product-wishlist {
  margin-top: 10px;
}
.product-wishlist .icon-wishlist svg {
  top: 0;
}
.product-wishlist-not-added .icon-wishlist-added, .product-wishlist-not-added .text-wishlist-remove {
  display: none;
}
.product-wishlist-not-added .icon-wishlist-not-added, .product-wishlist-not-added .text-wishlist-not-added {
  display: inline-flex;
}
.product-wishlist-not-added .icon-wishlist-not-added {
  animation: pulse 0.5s alternate;
}
.product-wishlist-added .icon-wishlist-added, .product-wishlist-added .text-wishlist-remove {
  display: inline-flex;
}
.product-wishlist-added .icon-wishlist-added {
  animation: pulse 0.5s alternate;
}
.product-wishlist-added .icon-wishlist-not-added, .product-wishlist-added .text-wishlist-not-added {
  display: none;
}
.product-wishlist-action-circle {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.product-wishlist-action-circle.btn, .active-campaign-form form[id^="_form_"] .product-wishlist-action-circle._submit {
  text-overflow: initial;
}
.product-wishlist-action-circle::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
}
.product-wishlist-action {
  background: transparent;
  border-style: none;
  padding: 0;
  display: inline-flex;
}
.product-wishlist-btn {
  --bs-btn-border-radius: 50%;
  --bs-btn-border-width: 0;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-color: var(--bs-gray-800);
  --bs-btn-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
  height: 40px;
  width: 40px;
}
.product-wishlist-btn-remove {
  z-index: 10;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}
.product-wishlist .icon-wishlist svg, .product-wishlist .icon-wishlist-remove svg {
  top: 0;
}
.product-wishlist-btn-content {
  text-decoration: underline;
}
.product-wishlist-btn-content-md {
  margin-left: 8px;
  font-size: 14px;
}
.product-wishlist-btn-content-sm {
  margin-left: 6px;
  font-size: 12px;
}
.product-wishlist-btn-content-disabled {
  display: none;
}
.product-wishlist-btn-content-active {
  display: inline-flex;
}
.product-wishlist-info {
  /* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
}
.product-wishlist-info-item {
  min-height: 2em;
  font-size: 0.875rem;
}
.product-wishlist-info-text {
  font-weight: 700;
}
.product-wishlist-info-manufacturer {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-wishlist-info .product-variant-characteristics-text {
  text-transform: capitalize;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.quantity-selector-group .quantity-selector-group-input {
  -moz-appearance: textfield;
  text-align: center;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
  line-height: 1rem;
}
.quantity-selector-group .quantity-selector-group-input:disabled {
  color: #6c757d;
}
.quantity-selector-group .quantity-selector-group-input::-webkit-outer-spin-button, .quantity-selector-group .quantity-selector-group-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-selector-group .btn-outline-light {
  --bs-btn-disabled-bg: #e9ecef;
  --bs-btn-disabled-border-color: #ced8de;
  --bs-btn-border-color: #ced8de;
  --bs-btn-active-border-color: #ced8de;
  --bs-btn-hover-border-color: #ced8de;
  --bs-btn-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.quantity-selector-group .btn-outline-light.btn-plus {
  border-left: 0;
}
.quantity-selector-group .btn-outline-light.btn-minus {
  border-right: 0;
}
.quantity-selector-group .btn-outline-light:disabled .icon {
  color: #dee2e6;
}
.quantity-selector-group .btn-outline-light svg {
  top: 4px;
}
.quantity-selector-group .input-group-text {
  line-height: 1rem;
}
.basic-captcha-content-image {
  width: 85%;
}
.basic-captcha-content-image img {
  border: 1px solid #ced8de;
  border-radius: 0.8rem;
  width: 100%;
}
.basic-captcha-content-code {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25em;
  max-width: 440px;
}
.basic-captcha-content-refresh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  height: 42px;
  align-self: flex-end;
  border-color: #ced8de;
}
.basic-captcha-content-refresh-icon.btn .icon > svg, .active-campaign-form form[id^="_form_"] .basic-captcha-content-refresh-icon._submit .icon > svg {
  top: 0;
}
.basic-captcha-content-refresh-icon:hover {
  cursor: pointer;
  border-color: #59c0cc;
  background-color: #fff;
}
.basic-captcha-content-refresh-icon:hover .icon.icon-arrow-switch {
  color: #59c0cc;
}
.line-item {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #ced8de;
}
.line-item.is-discount .line-item-total-price {
  color: #28a745;
}
.line-item:last-child {
  border-bottom: 0;
}
.line-item-info {
  order: 1;
  margin-bottom: 1rem;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 83.33333333%;
}
@media (min-width: 768px) {
  .line-item-info {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}
.line-item-details {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .line-item-details {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
@media (min-width: 768px) {
  .line-item-details {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
.line-item-quantity {
  order: 3;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .line-item-quantity {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
@media (min-width: 768px) {
  .line-item-quantity {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}
.line-item-quantity-label {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 50%;
}
@media (min-width: 576px) {
  .line-item-quantity-label {
    flex: 0 0 auto;
    width: 100%;
  }
}
.line-item-quantity-select-wrapper {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 50%;
}
@media (min-width: 576px) {
  .line-item-quantity-select-wrapper {
    flex: 0 0 auto;
    width: 100%;
  }
}
.line-item-unit-price {
  display: none;
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .line-item-unit-price {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
@media (min-width: 768px) {
  .line-item-unit-price {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}
.line-item-tax-price {
  justify-content: flex-end;
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .line-item-tax-price {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
@media (min-width: 768px) {
  .line-item-tax-price {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}
.line-item-total-price {
  order: 4;
  justify-content: flex-end;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .line-item-total-price {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
@media (min-width: 768px) {
  .line-item-total-price {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}
.line-item-remove {
  order: 2;
  text-align: right;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 16.66666667%;
}
@media (min-width: 768px) {
  .line-item-remove {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}
.is-offcanvas .line-item-info {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.is-offcanvas .line-item-details {
  flex: 0 0 auto;
  width: 100%;
}
.is-offcanvas .line-item-quantity {
  flex: 0 0 auto;
  width: 100%;
}
.is-offcanvas .line-item-quantity-label {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.is-offcanvas .line-item-quantity-select-wrapper {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.is-offcanvas .line-item-unit-price {
  flex: 0 0 auto;
  width: 100%;
  display: none;
  font-size: 0.875rem;
  font-style: italic;
}
.is-offcanvas .line-item-unit-price.is-shown {
  display: flex;
  justify-content: flex-end;
}
.is-offcanvas .line-item-tax-price {
  flex: 0 0 auto;
  width: 100%;
}
.is-offcanvas .line-item-total-price {
  flex: 0 0 auto;
  width: 100%;
}
.is-offcanvas .line-item-remove {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.is-offcanvas .line-item-details-container {
  padding-left: 0;
}
.is-offcanvas .line-item-unit-price-value-descriptor {
  display: inline;
}
.is-offcanvas .line-item-unit-price-label, .is-offcanvas .line-item-tax-price-label, .is-offcanvas .line-item-total-price-label {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.is-offcanvas .line-item-unit-price-label:not(caption), .is-offcanvas .line-item-tax-price-label:not(caption), .is-offcanvas .line-item-total-price-label:not(caption) {
  position: absolute !important;
}
@media (min-width: 768px) {
  .no-remove-button .line-item-info {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .no-remove-button .line-item-details {
    flex: 0 0 auto;
    width: 75%;
  }
}
@media (min-width: 768px) {
  .no-summary .line-item-info {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
@media (min-width: 768px) {
  .no-summary .line-item-details {
    flex: 0 0 auto;
    width: 75%;
  }
}
@media (min-width: 768px) {
  .no-summary.no-remove-button .line-item-info {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
@media (min-width: 768px) {
  .no-summary.no-remove-button .line-item-details {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
.line-item.is-order {
  margin-left: 20px;
  margin-right: 20px;
}
.line-item.is-order .line-item-children .line-item {
  margin-left: 0;
  margin-right: 0;
}
.line-item-info, .line-item-details, .line-item-quantity, .line-item-unit-price, .line-item-total-price, .line-item-tax-price, .line-item-remove {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.line-item-discount-icon, .line-item-icon {
  text-align: center;
  height: 100%;
}
.line-item-discount-icon .icon, .line-item-icon .icon {
  height: 100%;
}
.line-item-discount-icon .icon > svg, .line-item-icon .icon > svg {
  top: 0;
}
.line-item-discount .line-item-icon .icon, .line-item-promotion .line-item-icon .icon {
  color: #28a745;
}
.line-item-container .line-item-icon .icon {
  color: #f191ae;
}
.line-item-nested-icon {
  background-color: #6c757d;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  display: flex;
  margin: 0 auto;
  width: 65px;
  height: 65px;
}
.line-item-nested-icon .icon > svg {
  top: 0;
}
.line-item-unit-price, .line-item-tax-price {
  order: 5;
}
.line-item-img-container {
  text-align: center;
  width: 70px;
  margin-bottom: 0.5rem;
}
.line-item-img-link {
  display: block;
}
.line-item-total-price, .line-item-tax-price {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 575.98px) {
  .line-item-tax-price, .line-item-unit-price {
    font-size: 0.875rem;
    font-style: italic;
  }
}
@media (min-width: 576px) {
  .line-item-unit-price {
    display: flex;
    justify-content: flex-end;
  }
}
.line-item-unit-price.is-shown {
  display: flex;
  justify-content: flex-end;
}
.line-item-quantity-label, .line-item-unit-price-label, .line-item-total-price-label, .line-item-tax-price-label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.line-item-quantity-row {
  align-items: center;
  margin-bottom: 0.5rem;
}
.line-item-details-characteristics {
  font-size: 0.875rem;
  margin: 0.5rem 0;
}
.line-item-details-characteristics .line-item-details-characteristics-option {
  font-weight: 700;
}
.line-item-variants {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.line-item-variants-properties {
  display: flex;
}
.line-item-variants-properties-name {
  font-weight: 700;
  margin-right: 0.5rem;
}
@media (min-width: 576px) {
  .is-default .line-item-quantity-container, .is-order .line-item-quantity-container {
    margin-left: auto;
  }
  .is-default .line-item-quantity-row, .is-order .line-item-quantity-row {
    align-items: normal;
    margin-bottom: 0;
  }
  .is-default .line-item-quantity, .is-order .line-item-quantity {
    flex-direction: column;
    display: flex;
  }
  .is-default .line-item-unit-price, .is-default .line-item-total-price, .is-default .line-item-tax-price, .is-order .line-item-unit-price, .is-order .line-item-total-price, .is-order .line-item-tax-price {
    justify-content: normal;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .is-default .line-item-info, .is-default .line-item-quantity, .is-default .line-item-unit-price, .is-default .line-item-total-price, .is-default .line-item-tax-price, .is-default .line-item-remove, .is-order .line-item-info, .is-order .line-item-quantity, .is-order .line-item-unit-price, .is-order .line-item-total-price, .is-order .line-item-tax-price, .is-order .line-item-remove {
    order: 0;
  }
  .is-default .line-item-quantity-label, .is-order .line-item-quantity-label {
    display: none;
  }
}
.line-item-children {
  background-color: #f8f9fa;
  font-size: 0.875rem;
  width: 100%;
  padding: 10px 20px;
  order: 10;
  margin-top: 10px;
  flex-shrink: initial;
}
.line-item-children .line-item-children-elements {
  padding: 12px 0 0;
}
.line-item-children .line-item-headline {
  padding: 0;
  font-weight: 600;
}
.line-item-children .line-item-change-button {
  width: fit-content;
  margin: 0 12px;
  font-size: 12px;
  text-decoration: underline;
  background-color: transparent;
  border-style: none;
}
.line-item-children .line-item-change-button:focus {
  outline: none;
}
.line-item-children .line-item-collapse {
  margin: 0;
  align-items: center;
}
.line-item-children .line-item-collapse-container, .line-item-children .line-item-child-label {
  padding: 0;
}
.line-item-children .line-item-child-label {
  position: relative;
}
.line-item-children .line-item-collapse-icon-container {
  padding: 0;
  text-align: right;
}
.line-item-children .line-item-collapse-button, .line-item-children .line-item-child-remove-icon {
  background-color: transparent;
  border-style: none;
}
.line-item-children .line-item-collapse-button:focus, .line-item-children .line-item-child-remove-icon:focus {
  outline: none;
}
.line-item-children .line-item-collapse-button > .line-item-collapse-icon {
  transform: rotate(180deg);
  transition: all 0.2s ease-out;
}
.line-item-children .line-item-collapse-button.collapsed > .line-item-collapse-icon {
  transform: rotate(0deg);
}
.line-item-children .line-item-children-element {
  margin: 0;
  padding: 8px 4px 0;
}
.line-item-children .line-item-children-element > .nesting-level-0 {
  list-style: none;
}
.line-item-children .line-item-children-element:last-child, .line-item-children .line-item-children-element-divider:last-child {
  border-style: none;
}
.line-item-children .line-item-child-label-bullet {
  display: list-item;
}
.line-item-children .line-item-child-total-price {
  padding: 0;
  text-align: right;
  font-weight: 600;
}
.line-item-children .line-item-child-remove-icon-container {
  padding: 0;
  text-align: right;
}
.line-item-children .line-item-children-element-divider {
  border-top: 1px solid #ced8de;
  margin: 1rem 0;
}
.line-item-children.nesting-level-2 {
  background-color: #eef0f3;
}
.line-item-children.nesting-level-3 {
  background-color: #e8ebee;
}
.line-item-children .line-item-details-container {
  padding-left: 0;
}
.line-item-children .line-item-headline-text {
  font-weight: normal;
}
@media (min-width: 768px) {
  .line-item-children.nesting-level-1 {
    margin-left: 96px;
  }
}
@media (min-width: 992px) {
  .line-item-children.nesting-level-1 {
    margin-left: 4px;
  }
}
@media (min-width: 1200px) {
  .line-item-children.nesting-level-1 {
    margin-left: 96px;
  }
}
.is-offcanvas .line-item-children {
  margin-left: 0;
  padding-left: 12px;
  padding-right: 12px;
}
.line-item-product-number {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.line-item-delivery-date {
  font-size: 0.875rem;
}
.line-item-label {
  color: #1f3e4f;
  font-weight: 700;
}
a.line-item-label:hover {
  color: #59c0cc;
}
.line-item-tax-price-label {
  display: inline;
  font-weight: normal;
  margin-right: 5px;
}
@media (max-width: 575.98px) {
  .line-item-unit-price-label, .line-item-total-price-label {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .line-item-unit-price-label:not(caption), .line-item-total-price-label:not(caption) {
    position: absolute !important;
  }
}
@media (min-width: 768px) {
  .line-item-unit-price-label, .line-item-tax-price-label, .line-item-total-price-label {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .line-item-unit-price-label:not(caption), .line-item-tax-price-label:not(caption), .line-item-total-price-label:not(caption) {
    position: absolute !important;
  }
}
@media (min-width: 576px) {
  .line-item-unit-price-value-descriptor {
    display: none;
  }
  .line-item-tax-price-label {
    display: block;
    font-weight: bold;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .line-item-details-container {
    padding-left: 0.25rem;
  }
}
.line-item-characteristics {
  margin: 0.5rem 0;
  font-size: 0.875rem;
}
.line-item-characteristics .line-item-characteristics-option {
  font-weight: 700;
}
.line-item-remove-button .icon {
  color: inherit;
}
@media (max-width: 767.98px) {
  .hidden-mobile {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hidden-tablet {
    display: none;
  }
}
@media (min-width: 992px) {
  .hidden-desktop {
    display: none;
  }
}
.spatial-ar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(1, 0, 0, 0.5);
  display: none;
  z-index: 1100;
}
.spatial-ar-overlay .spatial-ar-exit-button {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1101;
  background-color: #000;
  border: 1px solid #fff;
}
.spatial-ar-overlay .spatial-ar-exit-button svg {
  color: #fff;
}
.spatial-ar-overlay .spatial-ar-placement-hint {
  display: none;
  background-color: black;
}
.spatial-ar-overlay .spatial-ar-movement-hint {
  display: none;
  background-color: rgba(0, 0, 0, 0.45);
}
.spatial-ar-overlay .spatial-ar-movement-hint svg {
  color: #fff;
}
.spatial-ar-overlay .spatial-ar-movement-hint .ar-anim-container {
  position: relative;
  margin-bottom: 90px;
  margin-left: -200px;
}
.spatial-ar-overlay .spatial-ar-movement-hint .ar-anim-container .icon-ar-icon-surface {
  position: absolute;
  width: 200px;
  height: auto;
}
.spatial-ar-overlay .spatial-ar-movement-hint .ar-anim-container .icon-ar-icon-phone {
  position: absolute;
  bottom: -75px;
  left: 2px;
  width: 30px;
  height: auto;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-name: move-around;
}
@keyframes move-around {
  0% {
    bottom: -75px;
    left: 2px;
  }
  25% {
    bottom: -100px;
    left: 80px;
  }
  50% {
    bottom: -75px;
    left: 165px;
  }
  75% {
    bottom: -100px;
    left: 80px;
  }
  100% {
    bottom: -75px;
    left: 2px;
  }
}
.spatial-ar-overlay .progress {
  bottom: 80px;
  height: 4px;
}
.spatial-ar-overlay.is--visible {
  display: block;
}
.spatial-ar-overlay.is--session-running .spatial-ar-exit-button {
  display: block;
}
.spatial-ar-overlay.is--session-running:not(.is--tracking):not(.is--placement-hint):not(.is--loading) .spatial-ar-movement-hint {
  display: block;
}
.spatial-ar-overlay.is--placement-hint .spatial-ar-placement-hint, .spatial-ar-overlay.is--loading .spatial-ar-placement-hint {
  display: block;
}
.ar-qr-modal-open-session .ar-splash-screen {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.ar-qr-modal-open-session .ar-splash-screen .cube-splash-icon {
  max-width: 200px;
  left: 0px;
  right: 0px;
}
.ar-qr-modal-open-session .ar-splash-screen .floor-splash-icon {
  max-width: 400px;
  left: 0px;
  right: 0px;
  margin-top: 33%;
}
.ar-qr-modal-open-session .ar-splash-screen .ar-btn-open-session {
  max-width: 170px;
  left: 0px;
  right: 0px;
  margin-top: 75%;
}
.ar-qr-modal-open-session .icon-cube-3d-shade {
  color: transparent;
}
.ar-qr-modal-open-session .ar-btn-icon-with-label {
  vertical-align: middle;
}
.ar-qr-modal-open-session .ar-btn-icon-with-label span {
  vertical-align: middle;
}
.ar-qr-modal-open-session .ar-btn-icon-with-label svg {
  vertical-align: middle;
  top: 0px;
}
.ar-qr-modal .ar-qr-modal-content {
  width: 30.25rem;
}
.ar-qr-modal .ar-qr-modal-content .ar-qr-modal-header {
  height: 5rem;
  padding: 0 2rem 0 4rem;
}
.ar-qr-modal .ar-qr-modal-content .ar-qr-modal-body {
  padding: 1.5rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  font-weight: 600;
  font-size: 0.875rem;
}
.ar-qr-modal .ar-qr-modal-content .ar-qr-modal-body .ar-qr-modal-body-qr-code {
  max-width: 300px;
  max-height: 300px;
}
.ar-qr-modal .ar-qr-modal-content .ar-qr-modal-footer {
  padding: 0 2rem 2rem 2rem;
  justify-content: center;
  font-weight: 400;
  font-size: 0.75rem;
}
.ar-qr-modal .ar-qr-modal-content .ar-qr-modal-footer .ar-qr-modal-footer-headline {
  font-weight: 600;
}
/*
 * Layout-related sections
 * ----------------------- */
/*
Container
==============================================
Additional styling for bootstrap container layout.

https://getbootstrap.com/docs/5.2/layout/containers
*/
.container-main {
  padding: 20px 0;
  min-height: 200px;
}
@media (min-width: 1200px) {
  .container-main {
    min-height: 700px;
  }
}
/*
Header
==================================================
Contains custom styles for the header at the top of the page.
The header contains the shop logo, the search form and various actions like the offcanvas cart button.
*/
.header-row {
  padding: 0.5rem 0;
}
.header-logo-picture {
  max-width: 300px;
  min-width: 200px;
}
.header-search-btn.is-loading-indicator-before .loader {
  margin: 0;
}
.header-search-btn .loader ~ .header-search-icon, .header-search-btn .loader ~ .header-close-btn {
  display: none;
}
.header-cart .header-cart-badge, .header-wishlist .header-wishlist-badge {
  position: absolute;
  right: -0.25rem;
  top: 0;
}
.header-actions-btn {
  position: relative;
}
@media (min-width: 576px) {
  .header-row {
    padding-bottom: 1rem;
  }
  .header-search-col .collapse:not(.show) {
    display: block;
  }
  .header-search {
    max-width: 400px;
  }
}
.storefront-staging-info .icon {
  color: #fff;
}
.storefront-staging-info .icon svg {
  top: 0;
}
/*
Header minimal
==================================================
Contains custom styles for the minimal header which is used on checkout pages.
*/
.header-minimal {
  background: #fff;
  border-bottom: 1px solid var(--text-color-brand-primary);
}
.header-minimal.fixed-top, .header-minimal.header-main.headroom.headroom--pinned.headroom--not-top {
  position: static;
}
.header-minimal-row {
  justify-content: space-between;
  align-items: center;
}
.header-minimal-contact {
  display: none;
}
.header-minimal-contact a {
  color: #59c0cc;
}
.header-minimal-back-to-shop {
  display: flex;
  justify-content: flex-end;
}
.header-minimal-back-to-shop-button {
  color: #1f3e4f;
}
.header-minimal-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.header-minimal-home {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-minimal-home-btn {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .header-minimal-contact {
    display: block;
  }
  .header-minimal-logo, .header-minimal-switch {
    margin-bottom: 0;
  }
}
/*
Navigation offcanvas
==============================================
Custom styling for navigation offcanvas which replaces main navigation on smaller screens.
Based on custom offcanvas component.
*/
.navigation-offcanvas {
  --bs-offcanvas-padding-x: 0;
  --bs-offcanvas-padding-y: 0;
  overflow-x: hidden;
}
.navigation-offcanvas-container {
  position: relative;
}
.navigation-offcanvas-overlay.has-transition {
  transition: left 0.5s ease-in;
}
.navigation-offcanvas-placeholder, .navigation-offcanvas-overlay {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.navigation-offcanvas-actions {
  padding-top: 1rem;
  margin-bottom: 0.5rem;
}
.navigation-offcanvas-actions .top-bar-nav-item {
  padding: 0 1rem;
}
.navigation-offcanvas-actions .top-bar-nav-name {
  display: inline;
}
.navigation-offcanvas-headline {
  padding: 20px 1rem 1rem;
}
.navigation-offcanvas-link-icon {
  display: inline-flex;
}
.navigation-offcanvas-link {
  transition: color 0.45s cubic-bezier(0.3, 0, 0.15, 1);
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 12px 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .navigation-offcanvas-link {
    transition: none;
  }
}
.navigation-offcanvas-link.is-home-link, .navigation-offcanvas-link.is-back-link {
  justify-content: flex-start;
}
.navigation-offcanvas-link.is-home-link .navigation-offcanvas-link-icon, .navigation-offcanvas-link.is-back-link .navigation-offcanvas-link-icon {
  margin-right: 0.5rem;
}
/*
Offcanvas cart
==============================================
Extends the basic offcanvas component with additional cart styles.
*/
.offcanvas-cart .alert {
  margin-top: 1rem;
}
.offcanvas-cart-items, .offcanvas-summary {
  margin: 1rem 0;
}
.offcanvas-cart-items {
  border-bottom: 1px solid #ced8de;
}
.offcanvas-summary-list {
  margin-bottom: 0;
  justify-content: space-between;
}
.offcanvas-summary-list > * {
  width: initial;
}
.offcanvas-shipping-info {
  justify-content: space-between;
}
.offcanvas-shipping-info > * {
  width: initial;
}
.offcanvas-cart-promotion-form {
  margin-bottom: 1rem;
}
.offcanvas-cart-promotion-form .offcanvas-cart-promotion-button .icon-checkmark {
  color: inherit;
}
.offcanvas-summary .js-toggle-shipping-selection {
  --bs-btn-font-weight: var(--bs-body-font-weight);
  --bs-btn-padding-y: 0;
  --bs-btn-padding-x: 0;
  --bs-btn-font-size: 90%;
  --bs-btn-color: var($primary);
  --bs-btn-line-height: inherit;
}
.offcanvas-summary .offcanvas-shipping-preference {
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  max-height: 100px;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.offcanvas-summary .offcanvas-shipping-preference--hidden {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0 !important;
}
.offcanvas-summary .summary-value, .offcanvas-summary .shipping-value {
  text-align: right;
}
/*
Cookie permission
==============================================
Shows a cookie permission alert at the bottom of the page.

@sw-package framework
*/
.cookie-permission-container {
  display: none;
  border-top: 1px solid #ced8de;
  background: #fff;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  z-index: 1100;
}
.cookie-permission-content {
  margin-bottom: 0.5rem;
}
.cookie-permission-content a {
  display: inline-block;
}
.cookie-permission-actions {
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .cookie-permission-content {
    text-align: left;
    margin-bottom: 0;
  }
}
/*
Cookie configuration
==============================================
Offcanvas containing a list of cookies which need to be manually selected by the user.

@sw-package framework
*/
.offcanvas-cookie-description, .offcanvas-cookie-list {
  margin-bottom: 32px;
  border-bottom: 1px solid #ced8de;
}
.offcanvas-cookie-list {
  padding-bottom: 32px;
}
.offcanvas-cookie-group {
  position: relative;
  margin: 12px 0;
}
.offcanvas-cookie-group input ~ label {
  user-select: none;
}
.offcanvas-cookie-group input:not([disabled]) ~ label {
  cursor: pointer;
}
@supports (-webkit-hyphens: none) {
  .offcanvas-cookie-group .form-check .form-check-input {
    float: none;
    display: inline-block;
  }
}
.offcanvas-cookie-entries-toggle {
  position: absolute;
  top: -4px;
  right: 0;
}
.offcanvas-cookie-entries-toggle svg {
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.offcanvas-cookie-entries-toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}
.offcanvas-cookie-entries > p, .offcanvas-cookie-entries .offcanvas-cookie-entry {
  padding: 8px 8px 0 24px;
  margin: 0;
}
.offcanvas-cookie-entries > p > p, .offcanvas-cookie-entries .offcanvas-cookie-entry > p {
  margin: 8px 0;
}
.offcanvas-cookie-entries .offcanvas-cookie-entry {
  margin-left: 24px;
  overflow: visible;
}
.offcanvas-cookie-entries .offcanvas-cookie-entry.custom-control, .offcanvas-cookie-entries .offcanvas-cookie-entry.form-check {
  min-height: unset;
}
/*
Scroll up
==============================================
Shows a scroll up button at the bottom right of the page.
*/
.scroll-up-button {
  bottom: 1.5rem;
  cursor: pointer;
  opacity: 0;
  position: fixed;
  right: 1.5rem;
  transform: scale(0);
  transition: 0.45s cubic-bezier(0.3, 0, 0.15, 1);
  visibility: hidden;
  z-index: 1035;
}
.scroll-up-button.is-visible {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}
.grecaptcha-v2-container iframe.has-error {
  border: 1px solid #dc3545;
  border-radius: 3px;
}
/*
 * Page-specific styles
 * -------------------- */
.product-detail-headline {
  margin-bottom: 3rem;
}
.product-detail-content {
  margin-bottom: 1.5rem;
}
.product-detail-content .product-breadcrumb {
  padding: 0;
  margin: 1rem 0;
}
.product-detail-name-container {
  display: flex;
  align-items: center;
}
.product-detail-name-container .product-detail-variant-characteristics {
  padding-left: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #adb5bd;
}
.product-detail-buy {
  margin-bottom: 1rem;
}
.product-detail-price {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .product-detail-price {
    font-size: 1.75rem;
  }
}
.product-detail-price-unit {
  font-size: 0.875rem;
}
.product-detail-tax {
  font-size: 1rem;
}
.product-detail-delivery-information {
  margin-bottom: 1.5rem;
}
.product-detail-form-container {
  margin-bottom: 1rem;
}
.product-detail-ordernumber-container {
  margin-bottom: 1rem;
}
.product-block-prices-grid thead {
  background-color: #f8f9fa;
}
.product-block-prices-grid th {
  font-weight: 400;
}
.product-block-prices-grid td {
  font-weight: 700;
}
.product-block-prices-grid .product-block-prices-cell {
  border: 0 none;
  padding: 10px 0 10px 16px;
  line-height: 20px;
}
.product-block-prices-grid .product-block-prices-cell.product-block-prices-cell-thin {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 22px;
}
.product-block-prices-grid .product-block-prices-body .product-block-prices-row {
  border-top: 1px solid #e9ecef;
}
.product-block-prices-grid .product-block-prices-body .product-block-prices-row:first-of-type {
  border-top: 0 none;
}
.product-detail-configurator-option-label {
  --bs-btn-font-weight: 400;
  --bs-btn-border-color: #ced8de;
  --bs-btn-color: #1f3e4f;
  --bs-btn-padding-y: 0.125rem;
  --bs-btn-line-height: 1.625rem;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-color: #1f3e4f;
  --bs-btn-active-border-color: #59c0cc;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-btn-disabled-color: #1f3e4f;
  --bs-btn-disabled-opacity: 0.65;
}
.product-detail-configurator-option-label.disabled {
  pointer-events: auto;
  text-decoration: line-through;
}
.product-detail-configurator-option-label.is-display-color, .product-detail-configurator-option-label.is-display-media {
  --bs-btn-padding-x: 0.125rem;
  background-clip: content-box;
  min-width: 3.75rem;
  height: 3.75rem;
}
.btn-check:checked + .product-detail-configurator-option-label {
  --bs-btn-border-width: 2px;
}
.product-detail-tabs-content {
  display: none;
}
.product-detail-tabs-content .offcanvas-body {
  overflow: initial;
  padding: 0;
}
.product-detail-description-text {
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .product-detail-tabs-content {
    display: block;
  }
  .product-detail-tabs .offcanvas-close, .product-detail-tab-navigation-icon, .product-detail-tab-preview {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .product-detail-tab-preview {
    flex-basis: 100%;
  }
}
.product-detail-review-widget {
  margin-bottom: 1rem;
  z-index: 1;
}
.product-detail-reviews {
  margin-bottom: 1rem;
}
.product-detail-reviews .icon svg {
  top: 2px;
}
.product-detail-review-teaser-btn .product-detail-review-teaser-hide {
  display: none;
}
.product-detail-review-teaser-btn.collapsed .product-detail-review-teaser-show {
  display: none;
}
.product-detail-review-teaser-btn.collapsed .product-detail-review-teaser-hide {
  display: block;
}
.product-review-rating {
  margin-right: 1rem;
}
.product-detail-review-item-points {
  margin-bottom: 0.5rem;
}
.product-detail-review-item-content {
  word-break: break-word;
}
.product-detail-review-form-radio {
  display: none;
}
.product-detail-review-form-rating-input {
  display: flex;
  align-items: center;
}
.product-review-point svg {
  top: 0;
}
.product-review-point, .point-container {
  display: inline-block;
  position: relative;
}
.point-rating {
  display: block;
  top: 0;
  left: 0;
}
.point-rating.point-blank .icon {
  color: #e9ecef;
}
.point-partial {
  position: absolute;
}
.product-detail-review-form-rating-text {
  margin-left: 0.5rem;
  margin-bottom: 0;
}
.product-detail-review-form-star {
  margin-right: 10px;
}
.product-detail-review-login .login-card .card-body {
  padding-top: 0;
}
.product-detail-review-language {
  margin-bottom: 1rem;
}
.product-detail-review-sortby-label {
  margin-right: 0.25rem;
}
.product-detail-review-cancel {
  margin-right: 5px;
}
.offcanvas .product-detail-review-widget {
  position: static;
}
.offcanvas .product-detail-review-form-rating-input .product-review-point {
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .product-detail-review-widget {
    margin-bottom: 0;
  }
  .product-detail-review-sortby-form {
    justify-content: flex-end;
  }
  .product-detail-review-language {
    margin-bottom: 0;
  }
  .product-detail-review-item-points {
    padding-right: 0;
    margin-bottom: 0;
  }
  .product-detail-review-item-title {
    padding-left: 0;
  }
  .product-detail-review-form-star {
    margin-right: 5px;
  }
}
.account-welcome {
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}
.account-address .address-action-create .icon {
  margin-top: 2px;
  margin-right: 0.5rem;
}
.account-address .btn > .icon, .account-address .active-campaign-form form[id^="_form_"] ._submit > .icon, .active-campaign-form form[id^="_form_"] .account-address ._submit > .icon {
  vertical-align: top;
}
.account-address .account-address-back:hover span.icon, .account-address .account-address-back:focus span.icon {
  color: #fff;
}
.address-manager-select-address {
  min-height: 200px;
}
.address-manager-modal-address-form .icon {
  color: currentColor;
}
.account-overview-card {
  margin-bottom: 3rem;
}
.register-form .privacy-notice {
  margin-bottom: 1rem;
}
.register-different-shipping {
  margin-top: 1rem;
}
.register-shipping {
  margin-top: 3rem;
}
.order-table {
  margin-bottom: 1.5rem;
  border: 1px solid #ced8de;
  position: relative;
}
.order-table .order-item-detail {
  border-top: 0 none;
}
.order-table .order-detail-content {
  border-top: 1px solid #ced8de;
  padding: 0;
  box-shadow: none;
}
.order-table-header {
  display: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 20px;
  padding-right: 20px;
}
.order-table-header :first-child {
  position: relative;
}
.order-table-header:last-of-type {
  border-bottom: 0;
}
.order-hide-btn .order-hide-btn-text {
  display: block;
}
.order-hide-btn .order-view-btn-text {
  display: none;
}
.order-hide-btn.collapsed .order-hide-btn-text {
  display: none;
}
.order-hide-btn.collapsed .order-view-btn-text {
  display: block;
}
.order-wrapper:last-of-type {
  border-bottom: 0;
}
.order-item-header {
  padding: 0.5rem 20px;
}
.order-table-header-heading, .order-table-header-order-status, .order-table-header-context-menu {
  display: inline-block;
}
.order-table-header-order-status {
  font-weight: 700;
}
.order-table-header-context-menu-wrapper {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.order-table-header-context-menu-wrapper, .order-table-header-heading {
  margin-top: 0.5rem;
}
.order-table-header-order-number {
  display: block;
  font-weight: 400;
  margin-bottom: 1.5rem;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.order-table-header-order-number .order-table-header-label {
  display: inline;
}
.order-table-header-order-table-body, .order-table-header-order-table-header {
  padding-left: 0;
  padding-right: 0;
}
.order-table-header-order-table-body {
  border-top: 1px solid #ced8de;
  font-weight: 400;
}
.order-table-header-order-table-body .order-table-header-order-table-body-cell[class*="col-"] {
  margin-top: 10px;
}
.order-table-header-order-table-body .order-table-header-order-table-body-cell[class*="col-"]:first-of-type {
  padding-left: 0;
}
.order-table-header-order-table-body .order-table-header-order-table-body-cell[class*="col-"]:last-of-type {
  padding-right: 0;
}
.order-table-header-order-table-header {
  font-weight: 700;
}
.order-table-header-order-table-header .order-table-header-order-table-header-cell[class*="col-"] {
  margin-bottom: 10px;
}
.order-table-header-order-table-header .order-table-header-order-table-header-cell[class*="col-"]:first-of-type {
  padding-left: 0;
}
.order-table-header-order-table-header .order-table-header-order-table-header-cell[class*="col-"]:last-of-type {
  padding-right: 0;
}
.order-table-header-order-table {
  width: 100%;
}
.payment-control input, .payment-control label {
  cursor: pointer;
}
.order-item {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.order-item-actions {
  text-align: center;
}
.order-item-label {
  float: left;
  width: 50%;
}
.order-item-value {
  width: 50%;
}
.order-table-header-context-menu-indicator {
  position: absolute;
  top: -3px;
  right: 7px;
}
.order-item-status-badge {
  /*
     * Set colors of the order status badge according to the order state.
     * The stylelint rule `selector-class-pattern` is disabled.
     * The technicalName of the order state includes underscores.
     */
  /* stylelint-disable selector-class-pattern */
  /* stylelint-enable selector-class-pattern */
}
.order-item-status-badge.order-item-status-badge-open, .order-item-status-badge.order-item-status-badge-in_progress {
  background-color: #17a2b8;
  color: #fff;
}
.order-item-status-badge.order-item-status-badge-completed {
  background-color: #28a745;
  color: #fff;
}
.order-item-status-badge.order-item-status-badge-failed, .order-item-status-badge.order-item-status-badge-cancelled {
  background-color: #f80000;
  color: #fff;
}
.order-item-status-badge .icon {
  color: currentColor;
}
.order-item-status-badge .icon svg {
  top: 5px;
}
@media (min-width: 768px) {
  .order-table-header {
    display: block;
  }
  .order-table-header, .order-item-header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .order-item {
    padding-top: 0;
    padding-bottom: 0;
  }
  .order-item-actions {
    text-align: right;
  }
}
@media (min-width: 576px) {
  .order-table-header-order-table-body .order-table-header-label {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .order-table-header-order-table-body .order-table-header-label:not(caption) {
    position: absolute !important;
  }
}
@media (max-width: 575.98px) {
  .order-table-header-order-table-header {
    display: none;
  }
  .order-table-header-order-table-body {
    border-top: 0;
  }
  .order-table-header-label {
    display: block;
    float: left;
    width: 50%;
  }
  .order-table-header-order-number {
    margin-bottom: 0;
  }
  .order-table-body-value {
    width: 50%;
  }
  .order-table-header-order-status {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .order-table-header-context-menu-wrapper {
    top: 0.5rem;
    right: 1rem;
  }
  .order-table-header-context-menu-indicator {
    top: -3px;
    right: -3px;
  }
}
.edit-order {
  padding-top: 70px;
  display: flex;
  justify-content: center;
}
.edit-order-container {
  max-width: 895px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.edit-order-tos-checkbox, .edit-order-tos-label {
  cursor: pointer;
}
.edit-order-checkout-aside {
  width: 50%;
  margin-left: 50%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .edit-order {
    padding-top: 0;
  }
  .edit-order-checkout-aside {
    width: 100%;
    margin-left: 0;
  }
}
.order-detail-content {
  border-top: 1px solid #ced8de;
}
.order-detail-content-header {
  display: none;
  padding-left: 0;
  padding-right: 0;
  margin-right: 20px;
  margin-left: 20px;
}
.document-detail-content-header {
  display: block;
  border-bottom: 1px solid #ced8de;
  padding-bottom: 0.5rem;
}
.download-detail-content-header {
  display: block;
  border-bottom: 1px solid #ced8de;
  padding-bottom: 0.5rem;
}
.order-detail-content-body.has-element-loader {
  min-height: 70px;
  display: flex;
}
.order-detail-content-body .element-loader-backdrop {
  box-shadow: none;
}
.order-detail-content-row {
  font-weight: 400;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-right: 20px;
  margin-left: 20px;
}
.order-detail-content-row .document-item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.order-detail-content-row .order-item:last-of-type, .order-detail-content-row .document-item:last-of-type {
  padding-right: 0;
}
.order-detail-content-row .order-item:first-of-type, .order-detail-content-row .document-item:first-of-type {
  padding-left: 0;
}
.order-detail-content-row .download-item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.order-detail-content-row .download-item:last-of-type {
  padding-right: 0;
}
.order-detail-content-row .download-item:first-of-type {
  padding-left: 0;
}
.order-detail-content-row .card-title, .order-detail-content-row .card-content {
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .order-item, .document-item {
    padding-left: 0;
    padding-right: 0;
  }
}
.order-item-detail-list-item {
  margin-bottom: 1rem;
}
.order-item-detail-list-item-divider {
  border-top: 1px solid #ced8de;
  margin: 1rem 20px;
}
.order-item-detail-list-item:last-of-type .order-detail-content-row {
  border-bottom: 0 none;
}
.order-item-detail-list-item.is-discount .cart-item-total-price {
  color: #28a745;
}
.order-item-discount-icon {
  text-align: center;
}
.order-item-total {
  font-weight: 700;
}
.order-item-nested-icon {
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  display: flex;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}
.order-item-nested-icon .icon > svg {
  top: 0;
}
.order-item-reorder {
  display: flex;
  justify-content: center;
}
.order-item-detail-footer {
  padding: 1rem;
  padding-left: 20px;
  padding-right: 20px;
}
.order-item-detail-footer dl dt.col, .order-item-detail-footer dl .is-act-confirmpage .checkout dt.checkout-aside, .is-act-confirmpage .checkout .order-item-detail-footer dl dt.checkout-aside, .order-item-detail-footer dl .is-ctl-accountorder .checkout dt.checkout-aside, .is-ctl-accountorder .checkout .order-item-detail-footer dl dt.checkout-aside, .order-item-detail-footer dl .is-act-finishpage .checkout dt.checkout-aside, .is-act-finishpage .checkout .order-item-detail-footer dl dt.checkout-aside, .order-item-detail-footer dl dt[class*="col-"] {
  margin-bottom: 0.5rem;
  padding-right: 0.5rem;
}
.order-item-detail-labels {
  margin-bottom: 0;
}
.order-item-detail-labels-value {
  font-weight: 400;
}
.order-item-detail-summary, .order-item-detail-summary dd:last-child {
  margin-bottom: 0;
}
.order-detail-comment {
  border-top: 0;
  display: block;
  padding-top: 0;
  padding-bottom: 1rem;
}
.card-title.order-detail-comment-title {
  margin-bottom: 0;
  padding: 1rem;
}
.order-detail-comment-body {
  padding: 1rem;
}
.order-detail-comment-value {
  margin-bottom: 0;
}
.order-item-variants-properties {
  display: flex;
}
.order-item-variants-properties-name {
  margin-right: 0.5rem;
}
.order-detail-form {
  float: right;
}
.document-item-view-file {
  text-align: right;
}
.download-item-download-file {
  text-align: right;
}
.order-download-row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.order-item-detail-footnote {
  background-color: #f8f9fa;
  padding: 0 1rem 1rem;
}
@media (min-width: 768px) {
  .order-detail-content-header {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ced8de;
  }
  .order-item-label {
    display: none;
  }
  .order-detail-content {
    border-top: 0;
  }
  .order-header-tax-price, .order-header-price, .order-item-price, .order-header-total, .order-item-total, .order-header-actions {
    text-align: right;
  }
  .order-header-quantity, .order-item-quantity {
    text-align: center;
  }
  .order-item-reorder {
    justify-content: flex-end;
  }
  .order-item-detail-summary dt, .order-item-detail-summary dd {
    text-align: right;
  }
  .document-item-view-file-icon-btn {
    display: none;
  }
  .download-item-view-file-icon-btn {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .document-header-date {
    display: none;
  }
  .document-item-view-file-text-btn {
    display: none;
  }
  .download-header-date {
    display: none;
  }
  .download-item-view-file-text-btn {
    display: none;
  }
}
.checkout-container {
  margin-bottom: 1.5rem;
}
.checkout-product-table {
  margin-bottom: 1.5rem;
}
.checkout-confirm-tos-checkbox, .checkout-confirm-tos-label {
  cursor: pointer;
}
.is-ctl-checkout .footer-minimal .footer-service-menu-list, .is-act-checkoutregisterpage .footer-minimal .footer-service-menu-list {
  display: block;
}
.checkout-aside-summary-label {
  font-weight: 400;
}
.checkout-aside-summary-list.display-rounded .checkout-aside-summary-total {
  font-weight: 400;
  font-size: 1rem;
}
.checkout-aside-summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 13px;
  border-top: 1px solid #ced8de;
  margin-top: 5px;
}
.checkout-aside-summary-total-rounded {
  font-size: 1.25rem;
  font-weight: 700;
}
.checkout-aside-summary-label.summary-net, .checkout-aside-summary-value.summary-net {
  margin-top: 10px;
}
.checkout-aside-summary-header {
  margin-bottom: 20px;
}
.checkout-aside-summary-value {
  text-align: right;
}
.checkout-aside-action {
  margin-top: 1rem;
}
.checkout-aside-add-promotion-button .icon-checkmark {
  color: inherit;
}
.is-act-cartpage .checkout .checkout-main {
  margin-bottom: 1.5rem;
}
.is-act-cartpage .checkout .checkout-aside-container {
  position: sticky;
  top: 0;
  z-index: 1;
}
.cart-main-header {
  margin-bottom: 1.5rem;
}
.cart-table-header {
  display: none;
}
.cart-header-unit-price, .cart-header-total-price, .cart-header-tax-price {
  text-align: right;
}
.cart-header-quantity {
  text-align: center;
}
.cart-header-row, .line-item-row {
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}
.cart-header-row > .col, .is-act-confirmpage .checkout .cart-header-row > .checkout-aside, .is-ctl-accountorder .checkout .cart-header-row > .checkout-aside, .is-act-finishpage .checkout .cart-header-row > .checkout-aside, .cart-header-row > [class*="col-"], .line-item-row > .col, .is-act-confirmpage .checkout .line-item-row > .checkout-aside, .is-ctl-accountorder .checkout .line-item-row > .checkout-aside, .is-act-finishpage .checkout .line-item-row > .checkout-aside, .line-item-row > [class*="col-"] {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.cart-add-product-container {
  margin-bottom: 1rem;
}
.cart-add-product-container .add-product-button .icon-checkmark {
  color: inherit;
}
.cart-shipping-costs-container {
  align-self: center;
}
.cart-shipping-costs-btn {
  padding-left: 0;
  margin: 1px 0;
}
@media (min-width: 768px) {
  .cart-table-header {
    display: block;
  }
  .cart-add-product-container {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cart-table-header {
    display: block;
  }
}
.is-act-checkoutregisterpage .checkout {
  padding-top: 70px;
}
.is-act-checkoutregisterpage .checkout .checkout-main {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .is-act-checkoutregisterpage .checkout .checkout-main {
    margin-bottom: 0;
  }
}
.is-act-confirmpage .checkout, .is-ctl-accountorder .checkout {
  padding-top: 70px;
}
.is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.is-act-confirmpage .checkout .checkout-aside-no-offset, .is-ctl-accountorder .checkout .checkout-aside-no-offset {
  margin-left: 0;
}
.confirm-main-header, .confirm-tos, .confirm-address, .confirm-payment-shipping, .confirm-payment, .confirm-product {
  margin-bottom: 1.5rem;
}
.confirm-payment-current, .confirm-shipping-current {
  margin-bottom: 3rem;
}
.confirm-payment-current.is-invalid, .confirm-shipping-current.is-invalid {
  color: #f80000;
}
.confirm-method-tooltip {
  margin-left: 0.25rem;
}
.payment-method-label, .shipping-method-label {
  width: 100%;
}
.payment-method-label .payment-method-description, .payment-method-label .shipping-method-description, .shipping-method-label .payment-method-description, .shipping-method-label .shipping-method-description {
  width: 66%;
}
.is-act-finishpage .checkout {
  padding-top: 70px;
}
.is-act-finishpage .checkout .checkout-additional {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.is-act-finishpage .checkout .checkout-aside-no-offset {
  margin-left: 0;
}
.finish-content {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
}
.finish-ordernumber {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.finish-teaser {
  text-align: center;
}
.finish-header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.finish-order-subtitle {
  text-align: center;
}
.finish-change-payment-wrapper {
  text-align: center;
}
.finish-action {
  text-align: center;
  margin-bottom: 3rem;
}
.finish-info {
  margin-bottom: 3rem;
}
.search-page .filter-panel-wrapper-toggle {
  margin-bottom: 1rem;
}
.wishlist-headline {
  margin: 0;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-listing-col {
  margin-top: 86px;
}
.wishlist-listing-col .wishlist-listing-empty {
  height: 250px;
  width: 100%;
}
.wishlist-listing-col .wishlist-listing-header {
  font-weight: bold;
  color: #1f3e4f;
}
.wishlist-listing-col .wishlist-listing-description {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .wishlist-listing-header {
    margin-top: 53px;
    font-size: 36px;
    line-height: 40px;
  }
  .wishlist-listing-empty {
    max-height: 200px;
  }
}
@media (max-width: 767.98px) {
  .wishlist-listing-empty {
    max-height: 120px;
  }
  .wishlist-listing-header {
    margin-top: 48px;
    font-size: 23px;
    line-height: 34px;
  }
}
/*
Shopware skin
==================================================
Contains the imports to all Shopware skin styles.

The file organization follows the 7-1 pattern architecture
https://sass-guidelin.es/#the-7-1-pattern

@sw-package framework
*/
/*
 * Vendors
 * ------- */
/*
 * Variables, Mixins, Functions
 * ---------------------------- */
/*
 * Base stuff
 * ---------- */
/*
Base
==================================================
Contains global base styles for all pages

@sw-package framework
*/
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
main {
  flex-grow: 1;
}
/*
Typography
==============================================
Custom styling for bootstrap typography.

https://getbootstrap.com/docs/5.2/content/typography

@sw-package framework
*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-bottom: 1rem;
}
h1, .h1 {
  line-height: 2.5rem;
}
h2, .h2 {
  line-height: 2.125rem;
}
h3, .h3 {
  line-height: 2.063rem;
}
h4, .h4 {
  line-height: 1.5rem;
}
h5, .h5 {
  line-height: 1.313rem;
}
h6, .h6 {
  line-height: 1.25rem;
}
ol, ul, dl {
  margin-bottom: 2rem;
}
/*
 * Components
 * ---------- */
/*
Alert
==============================================
Custom skin styling for bootstrap alert component.

https://getbootstrap.com/docs/5.2/components/alerts
*/
.alert .icon {
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.alert .icon svg {
  top: 0;
}
.alert-primary {
  --bs-alert-border-color: #59c0cc;
  --bs-alert-bg: #eafdfe;
  --bs-alert-color: #1f3e4f;
}
.alert-secondary {
  --bs-alert-border-color: #f191ae;
  --bs-alert-bg: #fff3f7;
  --bs-alert-color: #1f3e4f;
}
.alert-success {
  --bs-alert-border-color: #28a745;
  --bs-alert-bg: #e4fce8;
  --bs-alert-color: #1f3e4f;
}
.alert-info {
  --bs-alert-border-color: #17a2b8;
  --bs-alert-bg: #e2fbfe;
  --bs-alert-color: #1f3e4f;
}
.alert-warning {
  --bs-alert-border-color: #ffc107;
  --bs-alert-bg: #fff9e6;
  --bs-alert-color: #1f3e4f;
}
.alert-danger {
  --bs-alert-border-color: #f80000;
  --bs-alert-bg: #ffe5e5;
  --bs-alert-color: #1f3e4f;
}
.alert-light {
  --bs-alert-border-color: #f1ead6;
  --bs-alert-bg: #fffdfa;
  --bs-alert-color: #1f3e4f;
}
.alert-dark {
  --bs-alert-border-color: #313131;
  --bs-alert-bg: #f2e2e2;
  --bs-alert-color: #1f3e4f;
}
.alert-accent-primary {
  --bs-alert-border-color: #ced8de;
  --bs-alert-bg: #f8fbfe;
  --bs-alert-color: #1f3e4f;
}
.alert-accent-secondary {
  --bs-alert-border-color: #78929d;
  --bs-alert-bg: #edf6fa;
  --bs-alert-color: #1f3e4f;
}
/*
Badge
==============================================
Custom skin styling for bootstrap badge component.

https://getbootstrap.com/docs/5.2/components/badge/
*/
.badge {
  border: 0;
  box-sizing: content-box;
  height: 20px;
  line-height: 20px;
  margin: 0 5px;
  min-width: 10px;
}
.badge-lg {
  height: 28px;
  line-height: 28px;
  padding: 0 10px;
}
/*
Button
==============================================
Custom skin styling for bootstrap button component.

https://getbootstrap.com/docs/5.2/components/buttons
*/
.btn, .active-campaign-form form[id^="_form_"] ._submit {
  --bs-btn-disabled-color: rgba(31, 62, 79, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-buy {
  --bs-btn-color: #fbdbdb;
  --bs-btn-bg: #7e2337;
  --bs-btn-border-color: #7e2337;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #914455;
  --bs-btn-hover-border-color: #8b394b;
  --bs-btn-focus-shadow-rgb: 145, 63, 80;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #984f5f;
  --bs-btn-active-border-color: #8b394b;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #7e2337;
  --bs-btn-disabled-border-color: #7e2337;
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-buy.disabled, .btn-buy:disabled {
  opacity: 1;
  background: #eee;
  border-color: #eee;
  color: #dee2e6;
}
.btn-link, .filter-panel-active-container .btn.filter-reset-all, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link {
  --bs-btn-font-weight: 600;
  --bs-btn-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.btn-link-inline {
  --bs-btn-color: #1f3e4f;
  --bs-btn-hover-color: #1f3e4f;
  --bs-btn-font-weight: 400;
  --bs-btn-font-size: inherit;
  --bs-btn-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
  --bs-btn-line-height: 1.5;
  --bs-btn-padding-y: 0;
  --bs-btn-padding-x: 0;
  --bs-btn-border-width: 0;
  text-decoration: underline;
  vertical-align: baseline;
  text-align: left;
  white-space: normal;
}
.btn-link-inline:hover {
  text-decoration: underline;
}
.btn-primary, .active-campaign-form form[id^="_form_"] ._submit, .btn-outline-primary {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-secondary, .btn-outline-secondary {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-success, .btn-outline-success {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-info, .btn-outline-info {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-warning, .btn-outline-warning {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-danger, .btn-outline-danger {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-light, .btn-outline-light {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-dark, .btn-outline-dark {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-accent-primary, .btn-outline-accent-primary {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
.btn-accent-secondary, .btn-outline-accent-secondary {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #f5f2f0, 0 0 0 0.25rem rgba(89, 192, 204, 0.35);
}
/*
Card
==============================================
Custom skin styling for bootstrap card component.

https://getbootstrap.com/docs/5.2/components/card
*/
.card-title {
  border-bottom: 1px solid #ced8de;
  padding-bottom: 10px;
}
/*
Custom Select
==============================================
Custom skin styling for bootstrap custom select menu.

https://getbootstrap.com/docs/5.2/forms/select
*/
.custom-select {
  cursor: pointer;
}
.custom-select:invalid {
  color: rgba(31, 62, 79, 0.5);
}
.custom-select:hover {
  border-color: #59c0cc;
  color: #59c0cc;
}
/*
Modal
==============================================
Custom skin styling for bootstrap modal component.

https://getbootstrap.com/docs/5.2/components/modal
*/
.modal-content {
  box-shadow: var(--bs-modal-box-shadow);
}
.modal-content .modal-title {
  margin: 0;
  line-height: 1.5;
}
.js-pseudo-modal-back-btn .icon {
  color: currentColor;
  margin-right: 0.5rem;
}
/*
Product box
==============================================
Styling for productbox component.
*/
.product-box {
  border-color: #ced8de;
  background-color: #fff;
}
.product-box .card-body {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
}
.product-name {
  font-weight: 600;
}
.product-price {
  color: #2b3136;
}
/*
Tab Menu
==============================================
Custom skin styling for bootstrap card with included tab navigation.

https://getbootstrap.com/docs/5.2/components/card/#navigation
*/
.card-tabs {
  --bs-card-border-width: 0;
}
.card-tabs .card-header {
  --bs-card-cap-bg: none;
  --bs-card-cap-padding-x: 10px;
}
.card-tabs .nav-item {
  margin-right: 10px;
}
.card-tabs .nav-link {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 5px;
  --bs-nav-link-color: #1f3e4f;
  --bs-nav-tabs-border-width: 0;
  --bs-nav-tabs-border-radius: 0;
  --bs-nav-tabs-link-hover-border-color: #59c0cc;
  --bs-nav-link-hover-color: #59c0cc;
  --bs-nav-tabs-link-active-color: #1f3e4f;
  --bs-nav-tabs-link-active-border-color: #59c0cc;
  border-bottom: 2px solid #ced8de;
}
.card-tabs .nav-link.active, .card-tabs .nav-link:hover {
  background-image: none;
}
.card-tabs .nav-link .product-cross-selling-tab-navigation {
  padding: 0;
}
.card-tabs .nav-link:hover {
  background-color: #ccbdb3;
}
.card-tabs .card-body {
  padding-top: 30px;
}
/*
CMS blocks
==============================================
Skin styling for cms blocks and
specific skin styling for elements dependent on their parent block
*/
.cms-block-text-hero .cms-element-text hr {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #e9edf0;
}
/*
CMS elements
==============================================
Skin styling for cms elements
*/
.cms-element-product-listing .cms-listing-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  margin-bottom: 1.5rem;
}
.cms-element-text blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 24px;
  margin-top: 16px;
  margin-left: 20px;
  position: relative;
}
.cms-element-text blockquote::before {
  content: '"';
  font-size: 40px;
  line-height: 16px;
  color: #9aa7be;
  position: absolute;
  top: 10px;
  left: -24px;
}
.quickview-minimal-product-name {
  color: #1f3e4f;
}
.quickview-minimal-product-name:hover {
  text-decoration: none;
}
.quickview-minimal-product-number {
  font-size: 0.875rem;
}
.quickview-minimal-footer-heading {
  border-bottom: 1px solid #ced8de;
}
.pagination .page-link {
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 576px) {
  .pagination .page-link {
    min-width: 40px;
  }
}
.pagination .page-link .icon {
  color: inherit;
}
/*
 * Layout-related sections
 * ----------------------- */
/*
Offcanvas cart
==============================================
Custom skin styling for the cart offcanvas.
*/
.offcanvas-cart-header-count {
  color: rgba(31, 62, 79, 0.5);
  font-weight: 700;
}
.offcanvas-cart-tax {
  color: rgba(31, 62, 79, 0.5);
}
/*
 * Page-specific styles
 * -------------------- */
.product-detail-name {
  color: #1f3e4f;
}
.product-detail-manufacturer-logo {
  max-width: 200px;
  max-height: 70px;
}
.product-detail-price {
  color: #2b3136;
  margin-bottom: 0;
  font-weight: 700;
  vertical-align: middle;
}
.product-detail-price.with-list-price {
  color: #c20017;
  display: inline-block;
}
.product-detail-price.with-regulation-price {
  display: inline-block;
}
.product-detail-price.with-advanced-list-price {
  color: #c20017;
  font-size: 1rem;
  display: inline-block;
}
.list-price-badge {
  display: inline-block;
  background: #c20017;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  line-height: 32px;
  height: 32px;
  width: 32px;
  font-size: 18px;
  font-weight: 600;
  vertical-align: middle;
  margin-bottom: 8px;
  margin-left: 5px;
  margin-right: 6px;
}
.product-detail-regulation-price-wrapper, .product-detail-list-price-wrapper {
  color: #1f3e4f;
  font-weight: 400;
  font-size: 0.75rem;
  display: inline-block;
  height: 1.625rem;
  vertical-align: bottom;
}
@media (max-width: 991.98px) {
  .product-detail-regulation-price-wrapper, .product-detail-list-price-wrapper {
    height: 1.375rem;
  }
}
.product-detail-regulation-price-wrapper .list-price-price, .product-detail-list-price-wrapper .list-price-price {
  text-decoration: line-through;
}
.product-detail-advanced-regulation-price-wrapper, .product-detail-advanced-list-price-wrapper {
  color: #1f3e4f;
  font-weight: 400;
  font-size: 12px;
  vertical-align: bottom;
  display: block;
  padding-left: 0;
}
.product-detail-advanced-regulation-price-wrapper .list-price-price, .product-detail-advanced-list-price-wrapper .list-price-price {
  text-decoration: line-through;
}
.product-detail-advanced-regulation-price-wrapper.with-list-price, .product-detail-advanced-list-price-wrapper.with-list-price {
  padding-left: 0;
}
.product-detail-advanced-regulation-price-wrapper-no-line-through .list-price-price, .product-detail-advanced-list-price-wrapper-no-line-through .list-price-price {
  text-decoration: none;
}
@media (min-width: 576px) {
  .product-detail-advanced-list-price-wrapper {
    display: inline-block;
    padding-left: 8px;
  }
}
@media (min-width: 992px) {
  .product-detail-advanced-list-price-wrapper {
    display: block;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .product-detail-advanced-list-price-wrapper {
    display: inline-block;
    padding-left: 8px;
  }
}
.product-detail-ordernumber-label {
  font-weight: 700;
}
.product-detail-quantity-select {
  height: 100%;
}
.product-detail-tabs {
  margin-bottom: 1.5rem;
}
.product-detail-tabs .product-detail-tab-navigation {
  padding: 0;
}
.product-detail-tab-navigation-list {
  flex-direction: column;
  padding-bottom: 5px;
}
.product-detail-properties-table th, .product-detail-properties-table td {
  border: 0;
}
.product-detail-tab-preview {
  font-weight: 400;
  margin-top: 0.5rem;
}
.product-detail-tab-preview-more {
  color: #59c0cc;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .product-detail-tabs .product-detail-tab-navigation-link {
    background: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: 700;
    word-wrap: normal;
  }
}
@media (min-width: 576px) {
  .product-detail-tabs {
    margin-bottom: 0;
  }
  .product-detail-tab-navigation-list {
    border: 0;
    flex-direction: row;
    padding-bottom: 0;
  }
}
.product-detail-review-widget {
  top: 20px;
}
.product-detail-review-progressbar-container {
  height: 14px;
  margin-top: 4px;
}
.product-detail-review-progressbar-bar {
  background-color: #fedc70;
}
.product-detail-review-item {
  border-bottom: 1px solid #ced8de;
  margin-bottom: 10px;
}
.product-detail-review-item-date {
  color: #6c757d;
}
.product-detail-review-item-verify {
  text-align: right;
}
.product-detail-review-item-likebox {
  text-align: right;
}
.product-detail-review-form-star.is-active .icon {
  color: #fedc70;
}
.product-detail-review-form-star .icon:hover {
  cursor: pointer;
}
@media (min-width: 768px) {
  .product-detail-review-rating {
    display: flex;
  }
  .product-detail-review-form-footer {
    display: flex;
  }
  .product-detail-review-form-footer .product-detail-review-form-actions {
    margin-left: auto;
  }
}
@media (max-width: 575.98px) {
  .product-detail-cross-selling .product-detail-tabs-content {
    display: block;
  }
  .product-detail-cross-selling .product-cross-selling-tab-navigation {
    display: none;
  }
  .product-detail-cross-selling .tab-pane {
    margin-top: 1.5rem;
    display: block;
    opacity: 1;
  }
  .product-detail-cross-selling .tab-pane .cms-element-title {
    display: block;
  }
  .product-detail-cross-selling .tab-pane .cms-element-title-paragraph {
    margin: 0;
  }
}
.product-detail-cross-selling .card {
  margin-top: 1.5rem;
}
.product-detail-cross-selling .cms-element-title {
  display: none;
}
.account-aside-header {
  background: none;
  color: #1f3e4f;
  font-weight: 700;
  margin-bottom: 1rem;
}
.account-aside-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-action-active-color: #59c0cc;
  --bs-list-group-action-active-bg: #ffffff;
  --bs-list-group-action-hover-color: #59c0cc;
  --bs-list-group-action-hover-bg: #ffffff;
  --bs-list-group-border-width: 0;
}
.account-aside-item.is-active {
  color: #59c0cc;
  font-weight: 700;
}
.account-aside-footer {
  background: none;
  margin-top: 1px;
  border-top: 1px solid #ced8de;
}
.account-aside-btn {
  line-height: normal;
  padding: 3px 0;
}
.account-aside-btn .icon {
  vertical-align: middle;
  margin-right: 0.25rem;
}
.account-aside-btn .icon svg {
  top: 0;
}
.account-guest-abort {
  border-top: 0;
}
@media (min-width: 768px) {
  .register-submit {
    text-align: right;
  }
}
.account-address .address-action-create {
  font-size: 1.1em;
  text-align: left;
}
.account-address .address-action-create:hover {
  border: 1px solid #ced8de;
}
.account-address .address-card .card-body .address:first-line {
  font-weight: 700;
}
.account-profile-mail-label {
  font-weight: 700;
}
.account-profile-change {
  font-weight: 700;
  font-size: 1rem;
}
.order-item-status-badge {
  margin: 10px 0;
}
@media (max-width: 575.98px) {
  .order-item-status-badge {
    margin-top: 0;
  }
}
.order-table-header .row, .order-table-header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .order-table-header .checkout-container, .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container, .order-table-header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .order-table-header .checkout-container, .order-table-header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .order-table-header .checkout-container, .order-table-header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .order-table-header .checkout-container, .order-item-header .row, .order-item-header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .order-item-header .checkout-container, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container, .order-item-header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .order-item-header .checkout-container, .order-item-header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .order-item-header .checkout-container, .order-item-header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .order-item-header .checkout-container, .order-detail-content-header .row, .order-detail-content-header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .order-detail-content-header .checkout-container, .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container, .order-detail-content-header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .order-detail-content-header .checkout-container, .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container, .order-detail-content-header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .order-detail-content-header .checkout-container {
  margin-right: 0;
  margin-left: 0;
}
.order-table-header .row > .col, .order-table-header .is-act-cartpage .checkout .checkout-container > .col, .order-table-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-table-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-table-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-finishpage .checkout .checkout-container > .col, .order-table-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .row > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .row > .checkout-aside, .order-table-header .is-act-finishpage .checkout .row > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .row > .checkout-aside, .order-table-header .row > [class*="col-"], .order-table-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-item-header .row > .col, .order-item-header .is-act-cartpage .checkout .checkout-container > .col, .order-item-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-item-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-item-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-finishpage .checkout .checkout-container > .col, .order-item-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .row > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .row > .checkout-aside, .order-item-header .is-act-finishpage .checkout .row > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .row > .checkout-aside, .order-item-header .row > [class*="col-"], .order-item-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-detail-content-header .row > .col, .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .row > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .row > [class*="col-"], .order-detail-content-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-detail-content-header .checkout-container > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
@media (max-width: 575.98px) {
  .order-table-header .row > .col, .order-table-header .is-act-cartpage .checkout .checkout-container > .col, .order-table-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-table-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-table-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-finishpage .checkout .checkout-container > .col, .order-table-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .row > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .row > .checkout-aside, .order-table-header .is-act-finishpage .checkout .row > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .row > .checkout-aside, .order-table-header .row > [class*="col-"], .order-table-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-item-header .row > .col, .order-item-header .is-act-cartpage .checkout .checkout-container > .col, .order-item-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-item-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-item-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-finishpage .checkout .checkout-container > .col, .order-item-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .row > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .row > .checkout-aside, .order-item-header .is-act-finishpage .checkout .row > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .row > .checkout-aside, .order-item-header .row > [class*="col-"], .order-item-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-detail-content-header .row > .col, .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .row > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .row > [class*="col-"], .order-detail-content-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-detail-content-header .checkout-container > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}
.order-table-header {
  font-weight: 700;
}
.order-item-header .row > .order-table-header-heading, .order-item-header .is-act-cartpage .checkout .checkout-container > .order-table-header-heading, .is-act-cartpage .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-header-heading, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-header-heading, .is-act-confirmpage .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-header-heading, .is-ctl-accountorder .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .is-act-finishpage .checkout .checkout-container > .order-table-header-heading, .is-act-finishpage .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .row > .order-table-header-order-number, .order-item-header .is-act-cartpage .checkout .checkout-container > .order-table-header-order-number, .is-act-cartpage .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-header-order-number, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-header-order-number, .is-act-confirmpage .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-header-order-number, .is-ctl-accountorder .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .is-act-finishpage .checkout .checkout-container > .order-table-header-order-number, .is-act-finishpage .checkout .order-item-header .checkout-container > .order-table-header-order-number {
  padding-right: 0;
  padding-left: 0;
}
.order-item-name {
  color: #343a40;
}
.order-detail-content-header {
  margin-top: 1rem;
  font-weight: 700;
}
.order-detail-content-header .order-detail-content-header-cell[class*="col-"]:first-of-type {
  padding-left: 0;
}
.order-detail-content-header .order-detail-content-header-cell[class*="col-"]:last-of-type {
  padding-right: 0;
}
.order-item-product-name {
  color: #1f3e4f;
}
.order-item-product-name:hover {
  color: #59c0cc;
  text-decoration: none;
}
.order-item-product-name strong {
  font-weight: 700;
}
@media (min-width: 768px) {
  .order-item-product-image .product-image-link {
    justify-content: normal;
  }
  .order-item-product-image img {
    max-width: 100px;
  }
}
.order-item-number-value {
  font-weight: 700;
}
.order-pseudo-price-value {
  text-decoration: line-through;
}
.order-item-detail-list-item {
  margin: 0;
}
.order-item-detail-list-item.is-child {
  background-color: #f8f9fa;
}
.order-item-nested-icon {
  background-color: #6c757d;
}
.order-item-detail-footer {
  background-color: #f8f9fa;
}
.order-price-unit {
  font-size: 0.875rem;
}
.order-item-variants {
  font-size: 0.875rem;
}
.order-item-variants-properties-name {
  font-weight: 700;
}
.checkout-aside-summary {
  background-color: #f1ead6;
}
.checkout-aside-summary, .checkout-aside-products {
  padding: 1rem;
}
@media (max-width: 767.98px) {
  .cart-table {
    border: 0;
  }
  .cart-table-body {
    padding: 0;
  }
}
.contact-action {
  display: flex;
  justify-content: flex-end;
}
.newsletter-action {
  display: flex;
  justify-content: flex-end;
}
.summary-lenz-creditmanagement-credit {
  color: #28a745;
  font-weight: bold;
}
.summary-lenz-creditmanagement-credit.is-first {
  border-top: 1px solid #ced8de;
  padding-top: 13px;
  margin-top: 5px;
}
.summary-lenz-creditmanagement-credit-paysum {
  font-weight: bold;
}
.isw-advarics-voucher-notice {
  clear: both;
  padding-top: 10px;
}
.checkout .checkout-aside .checkout-aside-add-lenz-creditmanagement-redeem-credit {
  margin-top: 1rem;
}
.lenz-platform-credit-management-checkout-redeemable-credits {
  border: 1px solid #ced8de;
  padding: 10px;
  margin-bottom: 20px;
}
.lenz-platform-credit-management-checkout-redeemable-credits .lenz-platform-credit-management-checkout-redeemable-credits-table-headline {
  font-size: 1rem;
  font-weight: bold;
}
.lenz-platform-credit-management-checkout-redeemable-credits .btn-link, .lenz-platform-credit-management-checkout-redeemable-credits .filter-panel-active-container .btn.filter-reset-all, .lenz-platform-credit-management-checkout-redeemable-credits .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit, .active-campaign-form form[id^="_form_"] .lenz-platform-credit-management-checkout-redeemable-credits .filter-panel-active-container .filter-reset-all._submit, .filter-panel-active-container .lenz-platform-credit-management-checkout-redeemable-credits .btn.filter-reset-all, .lenz-platform-credit-management-checkout-redeemable-credits .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light, .lenz-platform-credit-management-checkout-redeemable-credits .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit, .active-campaign-form form[id^="_form_"] .lenz-platform-credit-management-checkout-redeemable-credits .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .lenz-platform-credit-management-checkout-redeemable-credits .btn.btn-light, .lenz-platform-credit-management-checkout-redeemable-credits .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .lenz-platform-credit-management-checkout-redeemable-credits .btn.btn-link {
  padding: 0;
  margin: 0;
  line-height: 1.25;
}
.lenz-platform-credit-management-checkout-redeemable-credits .offcanvas-cart-promotion-form {
  margin: 0;
}
.line-item-lenzcreditmanagementbuycredit-template-data {
  font-size: 0.75rem;
}
.line-item-lenzcreditmanagementbuycredit-template-data-headline {
  font-weight: bold;
}
.order-table-header-heading.heading-mollie-subscriptions {
  max-width: 350px;
}
.order-item-status-badge.order-item-status-badge-active {
  background-color: #0042a0;
  color: #fff;
  margin: 10px 0;
}
.order-item-status-badge.order-item-status-badge-canceled {
  background-color: #b30000;
  color: #fff;
  margin: 10px 0;
}
.order-item-status-badge.order-item-status-badge-paused {
  background-color: #595959;
  color: #fff;
  margin: 10px 0;
}
.order-item-status-badge.order-item-status-badge-skipped {
  background-color: #ffb100;
  color: #000;
  margin: 10px 0;
}
.order-item-status-badge.order-item-status-badge-resumed {
  background-color: #0042a0;
  color: #fff;
  margin: 10px 0;
}
.order-table-header-description {
  padding: 0 !important;
  display: block;
  font-weight: 400;
  margin-bottom: 1.5rem;
  width: 100%;
}
@supports (-webkit-appearance: -apple-pay-button) {
  .only-support-apple-pay {
    display: block !important;
  }
  .apple-pay-button-with-text {
    display: inline-block;
    appearance: -apple-pay-button;
    -apple-pay-button-type: buy;
  }
  .apple-pay-button-with-text > * {
    display: none;
  }
  .apple-pay-button-black-with-text {
    -apple-pay-button-style: black;
  }
  .apple-pay-button-white-with-text {
    -apple-pay-button-style: white;
  }
  .apple-pay-button-white-with-line-with-text {
    -apple-pay-button-style: white-outline;
  }
}
@supports not (-webkit-appearance: -apple-pay-button) {
  .apple-pay-button-with-text {
    --apple-pay-scale: 1;
    /* (height / 32) */
    display: inline-flex;
    justify-content: center;
    font-size: 12px;
    border-radius: 5px;
    padding: 0;
    box-sizing: border-box;
    min-width: 200px;
    min-height: 32px;
    max-height: 64px;
  }
  .apple-pay-button-black-with-text {
    background-color: black;
    color: white;
  }
  .apple-pay-button-white-with-text {
    background-color: white;
    color: black;
  }
  .apple-pay-button-white-with-line-with-text {
    background-color: white;
    color: black;
    border: 0.5px solid black;
  }
  .apple-pay-button-with-text.apple-pay-button-black-with-text > .logo {
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-color: black;
  }
  .apple-pay-button-with-text.apple-pay-button-white-with-text > .logo {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
  }
  .apple-pay-button-with-text.apple-pay-button-white-with-line-with-text > .logo {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
  }
  .apple-pay-button-with-text > .text {
    font-family: -apple-system;
    font-size: calc(1em * var(--apple-pay-scale));
    font-weight: 300;
    align-self: center;
    margin-right: calc(2px * var(--apple-pay-scale));
  }
  .apple-pay-button-with-text > .logo {
    width: calc(35px * var(--scale));
    height: 100%;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    background-position: 0 50%;
    margin-left: calc(2px * var(--apple-pay-scale));
    border: none;
  }
}
.mollie-components-credit-card {
  max-width: 465px;
}
.mollie-components-credit-card label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}
.mollie-components-credit-card .block-group {
  display: block;
  position: relative;
}
.mollie-components-credit-card .block-group::after {
  clear: both;
  content: "";
  display: block;
}
.mollie-components-credit-card .block-group .b1 {
  width: 48%;
  float: left;
  position: relative;
}
.mollie-components-credit-card .block-group .b2 {
  width: 48%;
  float: right;
}
.mollie-components-credit-card .intro-text {
  margin-top: 10px;
}
.mollie-components-credit-card .tag-line {
  margin-top: 10px;
}
.mollie-components-credit-card .tag-line .logo {
  display: inline-block;
  margin-top: -8px;
  max-width: 50px;
}
.mollie-components-credit-card .error-message {
  color: #ff233a;
  margin-bottom: 5px;
}
.mollie-components-credit-card .input--field.mollie {
  border-radius: 3px;
  min-height: 34px;
  margin-bottom: 5px;
  background: #fff;
  color: #262626;
  text-align: left;
  box-shadow: inset 0 0 0 0 transparent, 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: all 0.05s ease;
}
.mollie-components-credit-card .input--field.mollie.is-focused {
  box-shadow: inset 0 0 0 2px #07f, 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 6px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.mollie-components-credit-card .input--field.mollie.error {
  background-color: #fff0f0;
  box-shadow: 0 0 0 1px #f33, 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 6px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.mollie-components-credit-card .input--field.mollie:active {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 6px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 2px solid #07f;
}
.mollie-components-credit-card .block-group .mollie-credit-card-custom-checkbox label {
  font-weight: 400;
}
.mollie-components-credit-card .block-group .mollie-credit-card-custom-checkbox .custom-control-label::before {
  border-radius: 5px;
}
.mollie-credit-card-mandate-manage {
  margin-top: 50px;
  margin-bottom: 50px;
}
.mollie-credit-card-mandate-list .mollie-credit-card-mandate:last-child {
  margin-bottom: 15px;
}
.mollie-credit-card-mandate-remove-modal .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mollie-credit-card-mandate-remove-modal .modal-body p {
  margin-bottom: 8px;
  font-weight: 700;
}
.mollie-credit-card-mandate {
  margin-bottom: 25px;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-radio {
  margin-top: 13px;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-label {
  margin-bottom: 0;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item {
  margin-top: 4px;
  display: flex;
  column-gap: 8px;
  align-items: center;
  cursor: pointer;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item svg {
  top: 0;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item .mollie-credit-card-mandate-actions-item-text {
  color: #0042a0;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item:hover .mollie-credit-card-mandate-actions-item-text {
  color: #1f3e4f;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view {
  position: relative;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 210px;
  height: 95px;
  border-radius: 8px;
  background-color: #0042a0;
  margin-top: 12px;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view .mollie-credit-card-mandate-full-view-card-type {
  color: #fff;
  margin: 0;
  font-size: 20px;
  line-height: 20px;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view .mollie-credit-card-mandate-full-view-card-info {
  display: flex;
  flex-direction: column;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view .mollie-credit-card-mandate-full-view-card-info .mollie-credit-card-mandate-full-view-card-number {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 4px;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view .mollie-credit-card-mandate-full-view-card-info .mollie-credit-card-mandate-full-view-card-holder-name {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-compact-view-card-holder-name {
  color: #dee2e6;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: block;
}
.mollie-express-button.loading .loader {
  display: block;
  position: absolute;
}
.mollie-express-button.loading *:not(.loader) {
  opacity: 0.2;
}
.mollie-express-button .loader {
  display: none;
}
.modal-content .payment-method-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.modal-content .mollie-ideal-issuer {
  margin-top: 15px;
}
.modal-content .mollie-bancomat-pay {
  margin-top: 15px;
}
.modal-content .mollie-pos-terminals {
  margin-top: 15px;
}
.modal-content .payment-method-description {
  order: -1;
}
.confirm-payment .mollie-ideal-issuer {
  margin-top: 15px;
}
.confirm-payment .mollie-ideal-issuer .custom-select:invalid {
  border: 1px solid red;
}
.confirm-payment .mollie-bancomat-pay {
  margin-top: 15px;
}
.confirm-payment .mollie-pos-terminals {
  margin-top: 15px;
}
.confirm-payment .mollie-pos-terminals .custom-select:invalid {
  border: 1px solid red;
}
.account-payment .payment-method-description {
  order: -1;
}
.mollie-paypal-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  padding: 7px;
}
.paypal-button-pill {
  border-radius: 30px;
}
.paypal-button-rect {
  border-radius: 0;
}
.paypal-theme-gold {
  color: #000;
  background-color: #ffc439ff;
  border: 1px solid #fcc85b;
}
.paypal-theme-gold:hover {
  background-color: #fcc85b;
}
.paypal-theme-blue {
  color: #fff;
  background-color: #009cdeff;
  border: 1px solid #09adf3;
}
.paypal-theme-blue:hover {
  background-color: #09adf3;
}
.paypal-theme-silver {
  color: #000;
  background-color: #eeef;
  border: 1px solid #f6f6f6;
}
.paypal-theme-silver:hover {
  background-color: #f6f6f6;
}
.paypal-theme-white {
  color: #000;
  background-color: #fff;
  border: 1px solid #f3f3f3;
}
.paypal-theme-white:hover {
  background-color: #f3f3f3;
}
.paypal-theme-black {
  color: #fff;
  background-color: #000;
  border: 1px solid #555;
}
.paypal-theme-black:hover {
  background-color: #333;
}
.subscription-toggle-button-wrapper {
  padding: 0 !important;
}
.subscription-hide-btn {
  margin-bottom: 25px;
  float: right;
}
.subscription-hide-btn .subscription-hide-btn-text {
  display: block;
}
.subscription-hide-btn .subscription-view-btn-text {
  display: none;
}
.subscription-hide-btn.collapsed .subscription-hide-btn-text {
  display: none;
}
.subscription-hide-btn.collapsed .subscription-view-btn-text {
  display: block;
}
.subscription-item-detail {
  padding: 0 !important;
}
.btn-mollie-subscription-cancel {
  color: #b30000;
}
/* stylelint-disable selector-id-pattern, declaration-no-important */
.mollie-express-button.d-none, .js-apple-pay .d-none, .js-apple-pay-container .d-none, .mollie-pos-terminals .d-none, .mollie-components-credit-card .d-none, #mollieCreditCardMandateDeleteError .d-none, #mollieCreditCardMandateDeleteSuccess .d-none, .mollie-ideal-issuer .d-none {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* stylelint-enable selector-id-pattern, declaration-no-important */
.neti-next-cms-element-builder-dummy-element .config-elements {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 15px;
}
.neti-next-cms-element-builder-dummy-element .config-elements .config-element {
  display: flex;
  flex-direction: row;
  padding: 5px;
}
.neti-next-cms-element-builder-dummy-element .config-elements .config-element .config-element-name {
  width: 250px;
}
.neti-next-cms-element-builder-dummy-element .config-elements .config-element .config-element-value {
  flex: 1;
}
.neti-next-cms-element-builder-dummy-element .config-elements .config-element .config-element-value img {
  max-height: 100px;
}
.neti-next-cms-element-builder-dummy-element .config-elements .config-element .config-element-value .config-element-collection {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px;
}
.neti-cms-element-builder-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.neti-cms-element-builder-grid .neti-cms-element-builder-row {
  display: grid;
  gap: 15px;
}
.neti-cms-element-builder-grid .neti-cms-element-builder-row .neti-cms-element-builder-column {
  min-width: 100px;
}
@media (min-width: 768px) {
  .search-suggest-container {
    width: 700px;
    left: 50%;
    transform: translateX(-50%);
  }
  .search-suggest-container-width {
    width: 500px;
  }
}
.search-suggest-container .nav-tabs {
  border: none;
}
.blog-slider.has-border {
  border: 1px solid #ced8de;
  border-radius: 0.8rem;
}
.blog-slider.has-border {
  padding: 25px;
}
.blog-slider.has-nav {
  padding-left: 20px;
  padding-right: 20px;
}
.blog-slider.has-border.has-nav {
  padding-left: 40px;
  padding-right: 40px;
}
.blog-slider-container {
  padding-bottom: 1px;
}
.blog-slider-controls-prev, .blog-slider-controls-next {
  border: 0;
  background: none;
}
.blog-slider-controls-prev {
  left: -10px;
}
.blog-slider-controls-prev.has-border {
  left: 0;
}
.blog-slider-controls-next {
  right: -10px;
}
.blog-slider-controls-next.has-border {
  right: 0;
}
.blog-slider-box {
  height: 100%;
}
.blog-slider-variant-characteristics {
  min-height: 3em;
}
.blog-slider-variant-characteristics .blog-slider-variant-characteristics-text {
  overflow: hidden;
  line-height: 1.5em;
  height: 3em;
  text-align: justify;
  margin-right: -1em;
  padding-right: 1em;
  max-width: 95%;
  /* stylelint-disable */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* stylelint-enable */
  line-clamp: 2;
  text-overflow: ellipsis;
  font-size: 0.875rem;
}
.blog-slider-variant-characteristics .blog-slider-variant-characteristics-option {
  font-weight: 700;
}
.blog-slider-image-wrapper {
  height: 200px;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 180px;
  margin-bottom: 15px;
  position: relative;
}
.blog-slider-image-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-slider-image-link.is-cover {
  align-items: flex-start;
}
.blog-slider-image {
  display: block;
  max-width: 100%;
  max-height: 200px;
}
.blog-slider-image.is-standard, .blog-slider-image.is-cover, .blog-slider-image.is-contain {
  width: 100%;
  height: 100%;
}
.blog-slider-image.is-cover {
  object-fit: cover;
}
.blog-slider-image.is-contain {
  object-fit: contain;
}
.blog-slider-image.is-standard {
  object-fit: scale-down;
}
.blog-slider-image-placeholder {
  max-width: 180px;
  height: 100%;
}
.blog-slider-rating {
  margin-bottom: 10px;
  height: 25px;
}
/* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
.blog-slider-name {
  color: #1f3e4f;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  height: 44px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.blog-slider-name:hover {
  color: var(--text-color-brand-primary);
  text-decoration: none;
}
.blog-slider-description {
  height: 54px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
.blog-slider-price-info {
  margin-top: 10px;
}
.blog-slider-price-info .blog-slider-advanced-list-price-wrapper {
  font-weight: 400;
}
.blog-slider-price-unit {
  height: 36px;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
}
.blog-slider-unit-label {
  font-weight: 700;
}
.blog-slider-cheapest-price {
  min-height: 20px;
  font-size: 0.875rem;
  line-height: 20px;
  margin-bottom: 32px;
}
.blog-slider-cheapest-price .blog-slider-cheapest-price-price {
  font-weight: 700;
}
.blog-slider-cheapest-price.with-regulation-price, .blog-slider-cheapest-price.with-list-price {
  margin-bottom: 6px;
}
.blog-slider-cheapest-price.with-from-price {
  margin-bottom: 5px;
}
.blog-slider-price {
  color: #1f3e4f;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  overflow: hidden;
}
.blog-slider-price.with-list-price {
  color: #e52427;
}
.blog-slider-price .list-price {
  color: #1f3e4f;
  font-weight: 400;
  padding-left: 5px;
  font-size: 12px;
}
.blog-slider-price .list-price .list-price-price {
  text-decoration: line-through;
}
.blog-slider-price .regulation-price {
  color: #1f3e4f;
  font-weight: 400;
  padding-left: 5px;
  font-size: 12px;
  padding-left: 0;
}
.blog-slider-price .list-price-no-line-through .list-price-price {
  text-decoration: none;
}
.blog-slider-price .strikeprice-text {
  color: #1f3e4f;
  font-weight: 400;
  padding-left: 5px;
  font-size: 12px;
}
.blog-slider-action {
  margin-top: 20px;
}
.blog-slider-badges {
  position: absolute;
  top: 30px;
  left: -1px;
  z-index: 10;
}
.blog-slider-badges .badge {
  padding: 0 8px;
  height: 32px;
  margin: 0 0 8px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  border-radius: 0 3px 3px 0;
  border-color: transparent;
  font-size: 18px;
  letter-spacing: 0;
}
.blog-slider-box.box-image .blog-slider-image-wrapper {
  height: 332px;
}
.blog-slider-box.box-image .blog-slider-image {
  max-height: 332px;
}
.blog-slider-box.box-image .blog-slider-image.is-standard {
  height: 100%;
  object-fit: cover;
}
.blog-slider-price-wrapper {
  font-size: 18px;
}
.blog-slider-box {
  border-color: #ced8de;
  background-color: #fff;
}
.blog-slider-box .card-body {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
}
.blog-slider-name {
  font-weight: 600;
}
.btn-read {
  --bs-btn-color: #fbdbdb;
  --bs-btn-bg: #7e2337;
  --bs-btn-border-color: #7e2337;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #914455;
  --bs-btn-hover-border-color: #8b394b;
  --bs-btn-focus-shadow-rgb: 145, 63, 80;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #984f5f;
  --bs-btn-active-border-color: #8b394b;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #7e2337;
  --bs-btn-disabled-border-color: #7e2337;
}
.btn-read.disabled, .btn-read:disabled {
  opacity: 1;
  background: #eee;
  border-color: #eee;
  color: #dee2e6;
}
.blog-image, .blog-image-placeholder {
  object-fit: cover;
  width: 100%;
  height: 250px;
}
.blog-card .card-text {
  height: 85px;
  overflow: hidden;
}
.blog-card .card-footer {
  display: flex;
  align-items: center;
  background: none;
  padding: 0;
  margin-top: 25px;
}
.blog-card .card-footer .blog-author-avatar, .blog-card .card-footer .blog-image-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}
.blog-card .card-footer .blog-author-display-name {
  font-weight: 700;
  margin-bottom: 0;
}
.has-element-loader .cms-element-product-listing .blog-image-link span.icon {
  opacity: 0;
}
.has-element-loader .cms-element-product-listing .blog-date, .has-element-loader .cms-element-product-listing .blog-title a, .has-element-loader .cms-element-product-listing .blog-image-link {
  border-radius: 0.8rem;
  color: transparent;
  animation: skeletonShimmer 1.5s linear 0s infinite normal forwards running;
  background: linear-gradient(to right, #dee2e6 8%, #f8f9fa 18%, #dee2e6 28%);
  background-size: 800px 100px;
}
/**  Variables */
/**  Functions */
/**  Generated */
.theme-icon-3-dots, .theme-icon-accordion-down, .theme-icon-accordion-up, .theme-icon-alert, .theme-icon-alert-circle, .theme-icon-arrow-down, .theme-icon-arrow-left, .theme-icon-arrow-right, .theme-icon-arrow-up, .theme-icon-basket, .theme-icon-bin, .theme-icon-bite, .theme-icon-bite2, .theme-icon-calendar, .theme-icon-cart, .theme-icon-chat, .theme-icon-check, .theme-icon-check-green, .theme-icon-check-round, .theme-icon-check-round-green-dark, .theme-icon-check-round-green-light, .theme-icon-checkbox-white, .theme-icon-chevron-down, .theme-icon-chevron-left, .theme-icon-chevron-right, .theme-icon-chevron-round-down, .theme-icon-chevron-round-up, .theme-icon-chevron-up, .theme-icon-clock, .theme-icon-close, .theme-icon-coffee, .theme-icon-community, .theme-icon-copy, .theme-icon-cross, .theme-icon-cross-green, .theme-icon-document, .theme-icon-euro, .theme-icon-facebook, .theme-icon-facebook2, .theme-icon-filter, .theme-icon-franchisee, .theme-icon-globe, .theme-icon-graduation-cap, .theme-icon-graph, .theme-icon-info, .theme-icon-info-arrow, .theme-icon-instagram, .theme-icon-leaf, .theme-icon-link, .theme-icon-link2, .theme-icon-linkedin, .theme-icon-linkedin2, .theme-icon-location, .theme-icon-lock-closed, .theme-icon-lock-open, .theme-icon-mail, .theme-icon-mail-white, .theme-icon-menu, .theme-icon-minus, .theme-icon-more, .theme-icon-paperclip, .theme-icon-pencil, .theme-icon-phone, .theme-icon-play, .theme-icon-plus, .theme-icon-quote, .theme-icon-rating, .theme-icon-refresh, .theme-icon-search, .theme-icon-share, .theme-icon-slider, .theme-icon-spotify, .theme-icon-spotify2, .theme-icon-stars, .theme-icon-stats, .theme-icon-strava, .theme-icon-strava2, .theme-icon-tiktok, .theme-icon-tiktok2, .theme-icon-timer, .theme-icon-tooltip, .theme-icon-user, .theme-icon-user-chevron-down, .theme-icon-user-chevron-up, .theme-icon-user-white, .theme-icon-whatsapp, .theme-icon-x, .theme-icon-youtube {
  background: url("svg/sprite.css.svg") no-repeat;
}
.theme-icon-3-dots {
  background-position: 0 25.5060728745%;
}
.theme-icon-3-dots-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-accordion-down {
  background-position: 0 6.4935064935%;
}
.theme-icon-accordion-down-dims {
  width: 48px;
  height: 48px;
}
.theme-icon-accordion-up {
  background-position: 30.9803921569% 0;
}
.theme-icon-accordion-up-dims {
  width: 48px;
  height: 48px;
}
.theme-icon-alert {
  background-position: 56.9892473118% 50.1960784314%;
}
.theme-icon-alert-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-alert-circle {
  background-position: 98.5865724382% 45.5598455598%;
}
.theme-icon-alert-circle-dims {
  width: 20px;
  height: 20px;
}
.theme-icon-arrow-down {
  background-position: 11.8081180812% 25.5060728745%;
}
.theme-icon-arrow-down-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-arrow-left {
  background-position: 23.6162361624% 25.5060728745%;
}
.theme-icon-arrow-left-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-arrow-right {
  background-position: 0 38.4615384615%;
}
.theme-icon-arrow-right-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-arrow-up {
  background-position: 11.8081180812% 38.4615384615%;
}
.theme-icon-arrow-up-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-basket {
  background-position: 45.5197132616% 37.6470588235%;
}
.theme-icon-basket-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-bin {
  background-position: 17.2043010753% 5.8823529412%;
}
.theme-icon-bin-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-bite {
  background-position: 81.684981685% 77.1084337349%;
}
.theme-icon-bite-dims {
  width: 30px;
  height: 30px;
}
.theme-icon-bite2 {
  background-position: 69.9633699634% 64.2570281124%;
}
.theme-icon-bite2-dims {
  width: 30px;
  height: 30px;
}
.theme-icon-calendar {
  background-position: 23.6162361624% 38.4615384615%;
}
.theme-icon-calendar-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-cart {
  background-position: 17.2043010753% 15.2941176471%;
}
.theme-icon-cart-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-chat {
  background-position: 34.4086021505% 24.7058823529%;
}
.theme-icon-chat-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-check {
  background-position: 34.4086021505% 37.2549019608%;
}
.theme-icon-check-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-check-green {
  background-position: 45.8781362007% 49.8039215686%;
}
.theme-icon-check-green-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-check-round {
  background-position: 57.3476702509% 62.3529411765%;
}
.theme-icon-check-round-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-check-round-green-dark {
  background-position: 68.8172043011% 74.9019607843%;
}
.theme-icon-check-round-green-dark-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-check-round-green-light {
  background-position: 80.2867383513% 87.4509803922%;
}
.theme-icon-check-round-green-light-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-checkbox-white {
  background-position: 46.8634686347% 0;
}
.theme-icon-checkbox-white-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-chevron-down {
  background-position: 46.8634686347% 12.955465587%;
}
.theme-icon-chevron-down-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-chevron-left {
  background-position: 46.8634686347% 25.9109311741%;
}
.theme-icon-chevron-left-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-chevron-right {
  background-position: 0 51.4170040486%;
}
.theme-icon-chevron-right-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-chevron-round-down {
  background-position: 11.8081180812% 51.4170040486%;
}
.theme-icon-chevron-round-down-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-chevron-round-up {
  background-position: 23.6162361624% 51.4170040486%;
}
.theme-icon-chevron-round-up-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-chevron-up {
  background-position: 35.4243542435% 51.4170040486%;
}
.theme-icon-chevron-up-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-clock {
  background-position: 58.6715867159% 0;
}
.theme-icon-clock-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-close {
  background-position: 58.6715867159% 12.955465587%;
}
.theme-icon-close-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-coffee {
  background-position: 58.6715867159% 25.9109311741%;
}
.theme-icon-coffee-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-community {
  background-position: 58.6715867159% 38.8663967611%;
}
.theme-icon-community-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-copy {
  background-position: 0 64.3724696356%;
}
.theme-icon-copy-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-cross {
  background-position: 91.3978494624% 0;
}
.theme-icon-cross-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-cross-green {
  background-position: 11.8081180812% 64.3724696356%;
}
.theme-icon-cross-green-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-document {
  background-position: 23.6162361624% 64.3724696356%;
}
.theme-icon-document-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-euro {
  background-position: 35.4243542435% 64.3724696356%;
}
.theme-icon-euro-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-facebook {
  background-position: 91.3978494624% 9.4117647059%;
}
.theme-icon-facebook-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-facebook2 {
  background-position: 97.8947368421% 52.8735632184%;
}
.theme-icon-facebook2-dims {
  width: 18px;
  height: 18px;
}
.theme-icon-filter {
  background-position: 91.3978494624% 18.8235294118%;
}
.theme-icon-filter-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-franchisee {
  background-position: 47.2324723247% 64.3724696356%;
}
.theme-icon-franchisee-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-globe {
  background-position: 91.3978494624% 28.2352941176%;
}
.theme-icon-globe-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-graduation-cap {
  background-position: 91.3978494624% 37.6470588235%;
}
.theme-icon-graduation-cap-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-graph {
  background-position: 70.479704797% 0;
}
.theme-icon-graph-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-info {
  background-position: 70.479704797% 12.955465587%;
}
.theme-icon-info-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-info-arrow {
  background-position: 70.479704797% 25.9109311741%;
}
.theme-icon-info-arrow-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-instagram {
  background-position: 91.3978494624% 47.0588235294%;
}
.theme-icon-instagram-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-leaf {
  background-position: 91.3978494624% 56.4705882353%;
}
.theme-icon-leaf-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-link {
  background-position: 96.875% 78.0303030303%;
}
.theme-icon-link-dims {
  width: 15px;
  height: 15px;
}
.theme-icon-link2 {
  background-position: 97.212543554% 66.1596958175%;
}
.theme-icon-link2-dims {
  width: 16px;
  height: 16px;
}
.theme-icon-linkedin {
  background-position: 91.3978494624% 65.8823529412%;
}
.theme-icon-linkedin-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-linkedin2 {
  background-position: 97.8947368421% 59.7701149425%;
}
.theme-icon-linkedin2-dims {
  width: 18px;
  height: 18px;
}
.theme-icon-location {
  background-position: 91.3978494624% 75.2941176471%;
}
.theme-icon-location-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-lock-closed {
  background-position: 70.479704797% 38.8663967611%;
}
.theme-icon-lock-closed-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-lock-open {
  background-position: 70.479704797% 51.8218623482%;
}
.theme-icon-lock-open-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-mail {
  background-position: 0 77.3279352227%;
}
.theme-icon-mail-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-mail-white {
  background-position: 11.8081180812% 77.3279352227%;
}
.theme-icon-mail-white-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-menu {
  background-position: 23.6162361624% 77.3279352227%;
}
.theme-icon-menu-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-minus {
  background-position: 35.4243542435% 77.3279352227%;
}
.theme-icon-minus-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-more {
  background-position: 91.3978494624% 84.7058823529%;
}
.theme-icon-more-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-paperclip {
  background-position: 97.212543554% 72.2433460076%;
}
.theme-icon-paperclip-dims {
  width: 16px;
  height: 16px;
}
.theme-icon-pencil {
  background-position: 47.2324723247% 77.3279352227%;
}
.theme-icon-pencil-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-phone {
  background-position: 0 100%;
}
.theme-icon-phone-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-play {
  background-position: 8.6021505376% 100%;
}
.theme-icon-play-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-plus {
  background-position: 59.0405904059% 77.3279352227%;
}
.theme-icon-plus-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-quote {
  background-position: 82.2878228782% 0;
}
.theme-icon-quote-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-rating {
  background-position: 82.2878228782% 12.955465587%;
}
.theme-icon-rating-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-refresh {
  background-position: 82.2878228782% 25.9109311741%;
}
.theme-icon-refresh-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-search {
  background-position: 82.2878228782% 38.8663967611%;
}
.theme-icon-search-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-share {
  background-position: 99.2882562278% 37.3540856031%;
}
.theme-icon-share-dims {
  width: 22px;
  height: 22px;
}
.theme-icon-slider {
  background-position: 82.2878228782% 51.8218623482%;
}
.theme-icon-slider-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-spotify {
  background-position: 82.2878228782% 64.7773279352%;
}
.theme-icon-spotify-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-spotify2 {
  background-position: 0 90.2834008097%;
}
.theme-icon-spotify2-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-stars {
  background-position: 0 0;
}
.theme-icon-stars-dims {
  width: 79px;
  height: 15px;
}
.theme-icon-stats {
  background-position: 11.8081180812% 90.2834008097%;
}
.theme-icon-stats-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-strava {
  background-position: 23.6162361624% 90.2834008097%;
}
.theme-icon-strava-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-strava2 {
  background-position: 35.4243542435% 90.2834008097%;
}
.theme-icon-strava2-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-tiktok {
  background-position: 17.2043010753% 100%;
}
.theme-icon-tiktok-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-tiktok2 {
  background-position: 47.2324723247% 90.2834008097%;
}
.theme-icon-tiktok2-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-timer {
  background-position: 59.0405904059% 90.2834008097%;
}
.theme-icon-timer-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-tooltip {
  background-position: 70.8487084871% 90.2834008097%;
}
.theme-icon-tooltip-dims {
  width: 32px;
  height: 32px;
}
.theme-icon-user {
  background-position: 25.8064516129% 100%;
}
.theme-icon-user-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-user-chevron-down {
  background-position: 34.4086021505% 96.9581749049%;
}
.theme-icon-user-chevron-down-dims {
  width: 24px;
  height: 16px;
}
.theme-icon-user-chevron-up {
  background-position: 43.0107526882% 96.9581749049%;
}
.theme-icon-user-chevron-up-dims {
  width: 24px;
  height: 16px;
}
.theme-icon-user-white {
  background-position: 100% 0;
}
.theme-icon-user-white-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-whatsapp {
  background-position: 100% 9.4117647059%;
}
.theme-icon-whatsapp-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-x {
  background-position: 100% 18.8235294118%;
}
.theme-icon-x-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-youtube {
  background-position: 100% 28.2352941176%;
}
.theme-icon-youtube-dims {
  width: 24px;
  height: 24px;
}
.theme-icon-3-dots, .theme-icon-accordion-down, .theme-icon-accordion-up, .theme-icon-alert, .theme-icon-alert-circle, .theme-icon-arrow-down, .theme-icon-arrow-left, .theme-icon-arrow-right, .theme-icon-arrow-up, .theme-icon-basket, .theme-icon-bin, .theme-icon-bite, .theme-icon-bite2, .theme-icon-calendar, .theme-icon-cart, .theme-icon-chat, .theme-icon-check, .theme-icon-check-green, .theme-icon-check-round, .theme-icon-check-round-green-dark, .theme-icon-check-round-green-light, .theme-icon-checkbox-white, .theme-icon-chevron-down, .theme-icon-chevron-left, .theme-icon-chevron-right, .theme-icon-chevron-round-down, .theme-icon-chevron-round-up, .theme-icon-chevron-up, .theme-icon-clock, .theme-icon-close, .theme-icon-coffee, .theme-icon-community, .theme-icon-copy, .theme-icon-cross, .theme-icon-cross-green, .theme-icon-document, .theme-icon-euro, .theme-icon-facebook, .theme-icon-facebook2, .theme-icon-filter, .theme-icon-franchisee, .theme-icon-globe, .theme-icon-graduation-cap, .theme-icon-graph, .theme-icon-info, .theme-icon-info-arrow, .theme-icon-instagram, .theme-icon-leaf, .theme-icon-link, .theme-icon-link2, .theme-icon-linkedin, .theme-icon-linkedin2, .theme-icon-location, .theme-icon-lock-closed, .theme-icon-lock-open, .theme-icon-mail, .theme-icon-mail-white, .theme-icon-menu, .theme-icon-minus, .theme-icon-more, .theme-icon-paperclip, .theme-icon-pencil, .theme-icon-phone, .theme-icon-play, .theme-icon-plus, .theme-icon-quote, .theme-icon-rating, .theme-icon-refresh, .theme-icon-search, .theme-icon-share, .theme-icon-slider, .theme-icon-spotify, .theme-icon-spotify2, .theme-icon-stars, .theme-icon-stats, .theme-icon-strava, .theme-icon-strava2, .theme-icon-tiktok, .theme-icon-tiktok2, .theme-icon-timer, .theme-icon-tooltip, .theme-icon-user, .theme-icon-user-chevron-down, .theme-icon-user-chevron-up, .theme-icon-user-white, .theme-icon-whatsapp, .theme-icon-x, .theme-icon-youtube {
  background-image: url("/bundles/clienttheme/sprite.css.svg");
}
/**  Mixins */
/* stylelint-disable at-rule-empty-line-before */
@keyframes slide-animation {
  0%, 25% {
    transform: translateX(0);
  }
  33.33%, 58.33% {
    transform: translateX(-100%);
  }
  66.66%, 91.66% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
/* stylelint-disable selector-not-notation, no-descending-specificity */
/**  Utilities */
.dashed-border {
  position: relative;
}
.dashed-border::before {
  border-top: 1px dashed #ced8de;
  content: "";
  position: absolute;
  width: 100%;
}
.dashed-border > :first-child {
  z-index: 1;
  outline: 2rem solid #f1ead6;
}
.dashed-border > :first-child:not(:hover) {
  background-color: #f1ead6;
}
@media (min-width: 992px) {
  .dashed-border-lg {
    position: relative;
  }
  .dashed-border-lg::before {
    border-top: 1px dashed #ced8de;
    content: "";
    position: absolute;
    width: 100%;
  }
  .dashed-border-lg > :first-child {
    z-index: 1;
    outline: 2rem solid #f1ead6;
  }
  .dashed-border-lg > :first-child:not(:hover) {
    background-color: #f1ead6;
  }
}
.shadow-below {
  box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
}
.shadow-below-soft {
  box-shadow: 0 100px 80px 0 rgba(0, 0, 0, 0.02), 0 41.778px 33.422px 0 rgba(0, 0, 0, 0.01), 0 22.336px 17.869px 0 rgba(0, 0, 0, 0.01), 0 12.522px 10.017px 0 rgba(0, 0, 0, 0.01), 0 6.65px 5.32px 0 rgba(0, 0, 0, 0.01), 0 2.767px 2.214px 0 rgba(0, 0, 0, 0.01);
}
.shadow-around {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.04), 0 0 10px 0 rgba(0, 0, 0, 0.05), 0 0 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
}
/*  stylelint-disable declaration-no-important */
.justify-self-start {
  justify-self: flex-start !important;
}
.justify-self-end {
  justify-self: flex-end !important;
}
.justify-self-center {
  justify-self: center !important;
}
.justify-self-between {
  justify-self: space-between !important;
}
.justify-self-around {
  justify-self: space-around !important;
}
@media (min-width: 576px) {
  .justify-self-sm-start {
    justify-self: flex-start !important;
  }
  .justify-self-sm-end {
    justify-self: flex-end !important;
  }
  .justify-self-sm-center {
    justify-self: center !important;
  }
  .justify-self-sm-between {
    justify-self: space-between !important;
  }
  .justify-self-sm-around {
    justify-self: space-around !important;
  }
}
@media (min-width: 768px) {
  .justify-self-md-start {
    justify-self: flex-start !important;
  }
  .justify-self-md-end {
    justify-self: flex-end !important;
  }
  .justify-self-md-center {
    justify-self: center !important;
  }
  .justify-self-md-between {
    justify-self: space-between !important;
  }
  .justify-self-md-around {
    justify-self: space-around !important;
  }
}
@media (min-width: 992px) {
  .justify-self-lg-start {
    justify-self: flex-start !important;
  }
  .justify-self-lg-end {
    justify-self: flex-end !important;
  }
  .justify-self-lg-center {
    justify-self: center !important;
  }
  .justify-self-lg-between {
    justify-self: space-between !important;
  }
  .justify-self-lg-around {
    justify-self: space-around !important;
  }
}
@media (min-width: 1200px) {
  .justify-self-xl-start {
    justify-self: flex-start !important;
  }
  .justify-self-xl-end {
    justify-self: flex-end !important;
  }
  .justify-self-xl-center {
    justify-self: center !important;
  }
  .justify-self-xl-between {
    justify-self: space-between !important;
  }
  .justify-self-xl-around {
    justify-self: space-around !important;
  }
}
@media (min-width: 1400px) {
  .justify-self-xxl-start {
    justify-self: flex-start !important;
  }
  .justify-self-xxl-end {
    justify-self: flex-end !important;
  }
  .justify-self-xxl-center {
    justify-self: center !important;
  }
  .justify-self-xxl-between {
    justify-self: space-between !important;
  }
  .justify-self-xxl-around {
    justify-self: space-around !important;
  }
}
@media (min-width: 1600px) {
  .justify-self-xxxl-start {
    justify-self: flex-start !important;
  }
  .justify-self-xxxl-end {
    justify-self: flex-end !important;
  }
  .justify-self-xxxl-center {
    justify-self: center !important;
  }
  .justify-self-xxxl-between {
    justify-self: space-between !important;
  }
  .justify-self-xxxl-around {
    justify-self: space-around !important;
  }
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-bolder {
  font-weight: bolder !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-regular {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-extrabold {
  font-weight: 800 !important;
}
.fw-black {
  font-weight: 900 !important;
}
.grid-row-1-1 {
  grid-row: 1/1;
}
.grid-row-1-2 {
  grid-row: 1/2;
}
.grid-row-1-3 {
  grid-row: 1/3;
}
.grid-row-1-4 {
  grid-row: 1/4;
}
.grid-row-1-5 {
  grid-row: 1/5;
}
.grid-row-1-6 {
  grid-row: 1/6;
}
.grid-row-1-7 {
  grid-row: 1/7;
}
.grid-row-1-8 {
  grid-row: 1/8;
}
.grid-row-1-9 {
  grid-row: 1/9;
}
.grid-row-1-10 {
  grid-row: 1/10;
}
.grid-row-1-11 {
  grid-row: 1/11;
}
.grid-row-1-12 {
  grid-row: 1/12;
}
.grid-row-1-13 {
  grid-row: 1/13;
}
.grid-row-2-1 {
  grid-row: 2/1;
}
.grid-row-2-2 {
  grid-row: 2/2;
}
.grid-row-2-3 {
  grid-row: 2/3;
}
.grid-row-2-4 {
  grid-row: 2/4;
}
.grid-row-2-5 {
  grid-row: 2/5;
}
.grid-row-2-6 {
  grid-row: 2/6;
}
.grid-row-2-7 {
  grid-row: 2/7;
}
.grid-row-2-8 {
  grid-row: 2/8;
}
.grid-row-2-9 {
  grid-row: 2/9;
}
.grid-row-2-10 {
  grid-row: 2/10;
}
.grid-row-2-11 {
  grid-row: 2/11;
}
.grid-row-2-12 {
  grid-row: 2/12;
}
.grid-row-2-13 {
  grid-row: 2/13;
}
.grid-row-3-1 {
  grid-row: 3/1;
}
.grid-row-3-2 {
  grid-row: 3/2;
}
.grid-row-3-3 {
  grid-row: 3/3;
}
.grid-row-3-4 {
  grid-row: 3/4;
}
.grid-row-3-5 {
  grid-row: 3/5;
}
.grid-row-3-6 {
  grid-row: 3/6;
}
.grid-row-3-7 {
  grid-row: 3/7;
}
.grid-row-3-8 {
  grid-row: 3/8;
}
.grid-row-3-9 {
  grid-row: 3/9;
}
.grid-row-3-10 {
  grid-row: 3/10;
}
.grid-row-3-11 {
  grid-row: 3/11;
}
.grid-row-3-12 {
  grid-row: 3/12;
}
.grid-row-3-13 {
  grid-row: 3/13;
}
.grid-row-4-1 {
  grid-row: 4/1;
}
.grid-row-4-2 {
  grid-row: 4/2;
}
.grid-row-4-3 {
  grid-row: 4/3;
}
.grid-row-4-4 {
  grid-row: 4/4;
}
.grid-row-4-5 {
  grid-row: 4/5;
}
.grid-row-4-6 {
  grid-row: 4/6;
}
.grid-row-4-7 {
  grid-row: 4/7;
}
.grid-row-4-8 {
  grid-row: 4/8;
}
.grid-row-4-9 {
  grid-row: 4/9;
}
.grid-row-4-10 {
  grid-row: 4/10;
}
.grid-row-4-11 {
  grid-row: 4/11;
}
.grid-row-4-12 {
  grid-row: 4/12;
}
.grid-row-4-13 {
  grid-row: 4/13;
}
.grid-row-5-1 {
  grid-row: 5/1;
}
.grid-row-5-2 {
  grid-row: 5/2;
}
.grid-row-5-3 {
  grid-row: 5/3;
}
.grid-row-5-4 {
  grid-row: 5/4;
}
.grid-row-5-5 {
  grid-row: 5/5;
}
.grid-row-5-6 {
  grid-row: 5/6;
}
.grid-row-5-7 {
  grid-row: 5/7;
}
.grid-row-5-8 {
  grid-row: 5/8;
}
.grid-row-5-9 {
  grid-row: 5/9;
}
.grid-row-5-10 {
  grid-row: 5/10;
}
.grid-row-5-11 {
  grid-row: 5/11;
}
.grid-row-5-12 {
  grid-row: 5/12;
}
.grid-row-5-13 {
  grid-row: 5/13;
}
.grid-row-6-1 {
  grid-row: 6/1;
}
.grid-row-6-2 {
  grid-row: 6/2;
}
.grid-row-6-3 {
  grid-row: 6/3;
}
.grid-row-6-4 {
  grid-row: 6/4;
}
.grid-row-6-5 {
  grid-row: 6/5;
}
.grid-row-6-6 {
  grid-row: 6/6;
}
.grid-row-6-7 {
  grid-row: 6/7;
}
.grid-row-6-8 {
  grid-row: 6/8;
}
.grid-row-6-9 {
  grid-row: 6/9;
}
.grid-row-6-10 {
  grid-row: 6/10;
}
.grid-row-6-11 {
  grid-row: 6/11;
}
.grid-row-6-12 {
  grid-row: 6/12;
}
.grid-row-6-13 {
  grid-row: 6/13;
}
.grid-row-7-1 {
  grid-row: 7/1;
}
.grid-row-7-2 {
  grid-row: 7/2;
}
.grid-row-7-3 {
  grid-row: 7/3;
}
.grid-row-7-4 {
  grid-row: 7/4;
}
.grid-row-7-5 {
  grid-row: 7/5;
}
.grid-row-7-6 {
  grid-row: 7/6;
}
.grid-row-7-7 {
  grid-row: 7/7;
}
.grid-row-7-8 {
  grid-row: 7/8;
}
.grid-row-7-9 {
  grid-row: 7/9;
}
.grid-row-7-10 {
  grid-row: 7/10;
}
.grid-row-7-11 {
  grid-row: 7/11;
}
.grid-row-7-12 {
  grid-row: 7/12;
}
.grid-row-7-13 {
  grid-row: 7/13;
}
.grid-row-8-1 {
  grid-row: 8/1;
}
.grid-row-8-2 {
  grid-row: 8/2;
}
.grid-row-8-3 {
  grid-row: 8/3;
}
.grid-row-8-4 {
  grid-row: 8/4;
}
.grid-row-8-5 {
  grid-row: 8/5;
}
.grid-row-8-6 {
  grid-row: 8/6;
}
.grid-row-8-7 {
  grid-row: 8/7;
}
.grid-row-8-8 {
  grid-row: 8/8;
}
.grid-row-8-9 {
  grid-row: 8/9;
}
.grid-row-8-10 {
  grid-row: 8/10;
}
.grid-row-8-11 {
  grid-row: 8/11;
}
.grid-row-8-12 {
  grid-row: 8/12;
}
.grid-row-8-13 {
  grid-row: 8/13;
}
.grid-row-9-1 {
  grid-row: 9/1;
}
.grid-row-9-2 {
  grid-row: 9/2;
}
.grid-row-9-3 {
  grid-row: 9/3;
}
.grid-row-9-4 {
  grid-row: 9/4;
}
.grid-row-9-5 {
  grid-row: 9/5;
}
.grid-row-9-6 {
  grid-row: 9/6;
}
.grid-row-9-7 {
  grid-row: 9/7;
}
.grid-row-9-8 {
  grid-row: 9/8;
}
.grid-row-9-9 {
  grid-row: 9/9;
}
.grid-row-9-10 {
  grid-row: 9/10;
}
.grid-row-9-11 {
  grid-row: 9/11;
}
.grid-row-9-12 {
  grid-row: 9/12;
}
.grid-row-9-13 {
  grid-row: 9/13;
}
.grid-row-10-1 {
  grid-row: 10/1;
}
.grid-row-10-2 {
  grid-row: 10/2;
}
.grid-row-10-3 {
  grid-row: 10/3;
}
.grid-row-10-4 {
  grid-row: 10/4;
}
.grid-row-10-5 {
  grid-row: 10/5;
}
.grid-row-10-6 {
  grid-row: 10/6;
}
.grid-row-10-7 {
  grid-row: 10/7;
}
.grid-row-10-8 {
  grid-row: 10/8;
}
.grid-row-10-9 {
  grid-row: 10/9;
}
.grid-row-10-10 {
  grid-row: 10/10;
}
.grid-row-10-11 {
  grid-row: 10/11;
}
.grid-row-10-12 {
  grid-row: 10/12;
}
.grid-row-10-13 {
  grid-row: 10/13;
}
.grid-row-11-1 {
  grid-row: 11/1;
}
.grid-row-11-2 {
  grid-row: 11/2;
}
.grid-row-11-3 {
  grid-row: 11/3;
}
.grid-row-11-4 {
  grid-row: 11/4;
}
.grid-row-11-5 {
  grid-row: 11/5;
}
.grid-row-11-6 {
  grid-row: 11/6;
}
.grid-row-11-7 {
  grid-row: 11/7;
}
.grid-row-11-8 {
  grid-row: 11/8;
}
.grid-row-11-9 {
  grid-row: 11/9;
}
.grid-row-11-10 {
  grid-row: 11/10;
}
.grid-row-11-11 {
  grid-row: 11/11;
}
.grid-row-11-12 {
  grid-row: 11/12;
}
.grid-row-11-13 {
  grid-row: 11/13;
}
.grid-row-12-1 {
  grid-row: 12/1;
}
.grid-row-12-2 {
  grid-row: 12/2;
}
.grid-row-12-3 {
  grid-row: 12/3;
}
.grid-row-12-4 {
  grid-row: 12/4;
}
.grid-row-12-5 {
  grid-row: 12/5;
}
.grid-row-12-6 {
  grid-row: 12/6;
}
.grid-row-12-7 {
  grid-row: 12/7;
}
.grid-row-12-8 {
  grid-row: 12/8;
}
.grid-row-12-9 {
  grid-row: 12/9;
}
.grid-row-12-10 {
  grid-row: 12/10;
}
.grid-row-12-11 {
  grid-row: 12/11;
}
.grid-row-12-12 {
  grid-row: 12/12;
}
.grid-row-12-13 {
  grid-row: 12/13;
}
.grid-row-13-1 {
  grid-row: 13/1;
}
.grid-row-13-2 {
  grid-row: 13/2;
}
.grid-row-13-3 {
  grid-row: 13/3;
}
.grid-row-13-4 {
  grid-row: 13/4;
}
.grid-row-13-5 {
  grid-row: 13/5;
}
.grid-row-13-6 {
  grid-row: 13/6;
}
.grid-row-13-7 {
  grid-row: 13/7;
}
.grid-row-13-8 {
  grid-row: 13/8;
}
.grid-row-13-9 {
  grid-row: 13/9;
}
.grid-row-13-10 {
  grid-row: 13/10;
}
.grid-row-13-11 {
  grid-row: 13/11;
}
.grid-row-13-12 {
  grid-row: 13/12;
}
.grid-row-13-13 {
  grid-row: 13/13;
}
@media (min-width: 576px) {
  .grid-row-sm-1-1 {
    grid-row: 1/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-2 {
    grid-row: 1/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-3 {
    grid-row: 1/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-4 {
    grid-row: 1/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-5 {
    grid-row: 1/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-6 {
    grid-row: 1/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-7 {
    grid-row: 1/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-8 {
    grid-row: 1/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-9 {
    grid-row: 1/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-10 {
    grid-row: 1/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-11 {
    grid-row: 1/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-12 {
    grid-row: 1/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-1-13 {
    grid-row: 1/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-1 {
    grid-row: 2/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-2 {
    grid-row: 2/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-3 {
    grid-row: 2/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-4 {
    grid-row: 2/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-5 {
    grid-row: 2/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-6 {
    grid-row: 2/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-7 {
    grid-row: 2/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-8 {
    grid-row: 2/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-9 {
    grid-row: 2/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-10 {
    grid-row: 2/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-11 {
    grid-row: 2/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-12 {
    grid-row: 2/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-2-13 {
    grid-row: 2/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-1 {
    grid-row: 3/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-2 {
    grid-row: 3/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-3 {
    grid-row: 3/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-4 {
    grid-row: 3/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-5 {
    grid-row: 3/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-6 {
    grid-row: 3/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-7 {
    grid-row: 3/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-8 {
    grid-row: 3/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-9 {
    grid-row: 3/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-10 {
    grid-row: 3/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-11 {
    grid-row: 3/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-12 {
    grid-row: 3/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-3-13 {
    grid-row: 3/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-1 {
    grid-row: 4/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-2 {
    grid-row: 4/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-3 {
    grid-row: 4/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-4 {
    grid-row: 4/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-5 {
    grid-row: 4/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-6 {
    grid-row: 4/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-7 {
    grid-row: 4/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-8 {
    grid-row: 4/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-9 {
    grid-row: 4/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-10 {
    grid-row: 4/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-11 {
    grid-row: 4/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-12 {
    grid-row: 4/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-4-13 {
    grid-row: 4/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-1 {
    grid-row: 5/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-2 {
    grid-row: 5/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-3 {
    grid-row: 5/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-4 {
    grid-row: 5/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-5 {
    grid-row: 5/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-6 {
    grid-row: 5/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-7 {
    grid-row: 5/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-8 {
    grid-row: 5/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-9 {
    grid-row: 5/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-10 {
    grid-row: 5/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-11 {
    grid-row: 5/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-12 {
    grid-row: 5/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-5-13 {
    grid-row: 5/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-1 {
    grid-row: 6/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-2 {
    grid-row: 6/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-3 {
    grid-row: 6/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-4 {
    grid-row: 6/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-5 {
    grid-row: 6/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-6 {
    grid-row: 6/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-7 {
    grid-row: 6/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-8 {
    grid-row: 6/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-9 {
    grid-row: 6/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-10 {
    grid-row: 6/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-11 {
    grid-row: 6/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-12 {
    grid-row: 6/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-6-13 {
    grid-row: 6/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-1 {
    grid-row: 7/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-2 {
    grid-row: 7/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-3 {
    grid-row: 7/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-4 {
    grid-row: 7/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-5 {
    grid-row: 7/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-6 {
    grid-row: 7/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-7 {
    grid-row: 7/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-8 {
    grid-row: 7/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-9 {
    grid-row: 7/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-10 {
    grid-row: 7/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-11 {
    grid-row: 7/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-12 {
    grid-row: 7/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-7-13 {
    grid-row: 7/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-1 {
    grid-row: 8/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-2 {
    grid-row: 8/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-3 {
    grid-row: 8/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-4 {
    grid-row: 8/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-5 {
    grid-row: 8/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-6 {
    grid-row: 8/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-7 {
    grid-row: 8/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-8 {
    grid-row: 8/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-9 {
    grid-row: 8/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-10 {
    grid-row: 8/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-11 {
    grid-row: 8/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-12 {
    grid-row: 8/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-8-13 {
    grid-row: 8/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-1 {
    grid-row: 9/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-2 {
    grid-row: 9/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-3 {
    grid-row: 9/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-4 {
    grid-row: 9/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-5 {
    grid-row: 9/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-6 {
    grid-row: 9/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-7 {
    grid-row: 9/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-8 {
    grid-row: 9/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-9 {
    grid-row: 9/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-10 {
    grid-row: 9/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-11 {
    grid-row: 9/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-12 {
    grid-row: 9/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-9-13 {
    grid-row: 9/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-1 {
    grid-row: 10/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-2 {
    grid-row: 10/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-3 {
    grid-row: 10/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-4 {
    grid-row: 10/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-5 {
    grid-row: 10/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-6 {
    grid-row: 10/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-7 {
    grid-row: 10/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-8 {
    grid-row: 10/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-9 {
    grid-row: 10/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-10 {
    grid-row: 10/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-11 {
    grid-row: 10/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-12 {
    grid-row: 10/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-10-13 {
    grid-row: 10/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-1 {
    grid-row: 11/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-2 {
    grid-row: 11/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-3 {
    grid-row: 11/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-4 {
    grid-row: 11/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-5 {
    grid-row: 11/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-6 {
    grid-row: 11/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-7 {
    grid-row: 11/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-8 {
    grid-row: 11/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-9 {
    grid-row: 11/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-10 {
    grid-row: 11/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-11 {
    grid-row: 11/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-12 {
    grid-row: 11/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-11-13 {
    grid-row: 11/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-1 {
    grid-row: 12/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-2 {
    grid-row: 12/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-3 {
    grid-row: 12/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-4 {
    grid-row: 12/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-5 {
    grid-row: 12/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-6 {
    grid-row: 12/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-7 {
    grid-row: 12/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-8 {
    grid-row: 12/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-9 {
    grid-row: 12/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-10 {
    grid-row: 12/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-11 {
    grid-row: 12/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-12 {
    grid-row: 12/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-12-13 {
    grid-row: 12/13;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-1 {
    grid-row: 13/1;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-2 {
    grid-row: 13/2;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-3 {
    grid-row: 13/3;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-4 {
    grid-row: 13/4;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-5 {
    grid-row: 13/5;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-6 {
    grid-row: 13/6;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-7 {
    grid-row: 13/7;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-8 {
    grid-row: 13/8;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-9 {
    grid-row: 13/9;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-10 {
    grid-row: 13/10;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-11 {
    grid-row: 13/11;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-12 {
    grid-row: 13/12;
  }
}
@media (min-width: 576px) {
  .grid-row-sm-13-13 {
    grid-row: 13/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-1 {
    grid-row: 1/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-2 {
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-3 {
    grid-row: 1/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-4 {
    grid-row: 1/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-5 {
    grid-row: 1/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-6 {
    grid-row: 1/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-7 {
    grid-row: 1/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-8 {
    grid-row: 1/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-9 {
    grid-row: 1/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-10 {
    grid-row: 1/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-11 {
    grid-row: 1/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-12 {
    grid-row: 1/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-1-13 {
    grid-row: 1/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-1 {
    grid-row: 2/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-2 {
    grid-row: 2/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-3 {
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-4 {
    grid-row: 2/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-5 {
    grid-row: 2/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-6 {
    grid-row: 2/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-7 {
    grid-row: 2/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-8 {
    grid-row: 2/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-9 {
    grid-row: 2/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-10 {
    grid-row: 2/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-11 {
    grid-row: 2/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-12 {
    grid-row: 2/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-2-13 {
    grid-row: 2/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-1 {
    grid-row: 3/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-2 {
    grid-row: 3/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-3 {
    grid-row: 3/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-4 {
    grid-row: 3/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-5 {
    grid-row: 3/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-6 {
    grid-row: 3/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-7 {
    grid-row: 3/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-8 {
    grid-row: 3/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-9 {
    grid-row: 3/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-10 {
    grid-row: 3/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-11 {
    grid-row: 3/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-12 {
    grid-row: 3/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-3-13 {
    grid-row: 3/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-1 {
    grid-row: 4/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-2 {
    grid-row: 4/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-3 {
    grid-row: 4/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-4 {
    grid-row: 4/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-5 {
    grid-row: 4/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-6 {
    grid-row: 4/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-7 {
    grid-row: 4/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-8 {
    grid-row: 4/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-9 {
    grid-row: 4/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-10 {
    grid-row: 4/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-11 {
    grid-row: 4/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-12 {
    grid-row: 4/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-4-13 {
    grid-row: 4/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-1 {
    grid-row: 5/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-2 {
    grid-row: 5/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-3 {
    grid-row: 5/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-4 {
    grid-row: 5/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-5 {
    grid-row: 5/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-6 {
    grid-row: 5/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-7 {
    grid-row: 5/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-8 {
    grid-row: 5/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-9 {
    grid-row: 5/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-10 {
    grid-row: 5/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-11 {
    grid-row: 5/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-12 {
    grid-row: 5/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-5-13 {
    grid-row: 5/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-1 {
    grid-row: 6/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-2 {
    grid-row: 6/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-3 {
    grid-row: 6/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-4 {
    grid-row: 6/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-5 {
    grid-row: 6/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-6 {
    grid-row: 6/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-7 {
    grid-row: 6/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-8 {
    grid-row: 6/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-9 {
    grid-row: 6/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-10 {
    grid-row: 6/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-11 {
    grid-row: 6/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-12 {
    grid-row: 6/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-6-13 {
    grid-row: 6/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-1 {
    grid-row: 7/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-2 {
    grid-row: 7/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-3 {
    grid-row: 7/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-4 {
    grid-row: 7/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-5 {
    grid-row: 7/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-6 {
    grid-row: 7/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-7 {
    grid-row: 7/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-8 {
    grid-row: 7/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-9 {
    grid-row: 7/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-10 {
    grid-row: 7/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-11 {
    grid-row: 7/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-12 {
    grid-row: 7/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-7-13 {
    grid-row: 7/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-1 {
    grid-row: 8/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-2 {
    grid-row: 8/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-3 {
    grid-row: 8/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-4 {
    grid-row: 8/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-5 {
    grid-row: 8/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-6 {
    grid-row: 8/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-7 {
    grid-row: 8/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-8 {
    grid-row: 8/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-9 {
    grid-row: 8/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-10 {
    grid-row: 8/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-11 {
    grid-row: 8/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-12 {
    grid-row: 8/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-8-13 {
    grid-row: 8/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-1 {
    grid-row: 9/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-2 {
    grid-row: 9/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-3 {
    grid-row: 9/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-4 {
    grid-row: 9/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-5 {
    grid-row: 9/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-6 {
    grid-row: 9/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-7 {
    grid-row: 9/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-8 {
    grid-row: 9/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-9 {
    grid-row: 9/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-10 {
    grid-row: 9/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-11 {
    grid-row: 9/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-12 {
    grid-row: 9/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-9-13 {
    grid-row: 9/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-1 {
    grid-row: 10/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-2 {
    grid-row: 10/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-3 {
    grid-row: 10/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-4 {
    grid-row: 10/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-5 {
    grid-row: 10/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-6 {
    grid-row: 10/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-7 {
    grid-row: 10/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-8 {
    grid-row: 10/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-9 {
    grid-row: 10/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-10 {
    grid-row: 10/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-11 {
    grid-row: 10/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-12 {
    grid-row: 10/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-10-13 {
    grid-row: 10/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-1 {
    grid-row: 11/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-2 {
    grid-row: 11/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-3 {
    grid-row: 11/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-4 {
    grid-row: 11/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-5 {
    grid-row: 11/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-6 {
    grid-row: 11/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-7 {
    grid-row: 11/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-8 {
    grid-row: 11/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-9 {
    grid-row: 11/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-10 {
    grid-row: 11/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-11 {
    grid-row: 11/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-12 {
    grid-row: 11/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-11-13 {
    grid-row: 11/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-1 {
    grid-row: 12/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-2 {
    grid-row: 12/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-3 {
    grid-row: 12/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-4 {
    grid-row: 12/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-5 {
    grid-row: 12/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-6 {
    grid-row: 12/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-7 {
    grid-row: 12/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-8 {
    grid-row: 12/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-9 {
    grid-row: 12/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-10 {
    grid-row: 12/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-11 {
    grid-row: 12/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-12 {
    grid-row: 12/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-12-13 {
    grid-row: 12/13;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-1 {
    grid-row: 13/1;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-2 {
    grid-row: 13/2;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-3 {
    grid-row: 13/3;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-4 {
    grid-row: 13/4;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-5 {
    grid-row: 13/5;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-6 {
    grid-row: 13/6;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-7 {
    grid-row: 13/7;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-8 {
    grid-row: 13/8;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-9 {
    grid-row: 13/9;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-10 {
    grid-row: 13/10;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-11 {
    grid-row: 13/11;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-12 {
    grid-row: 13/12;
  }
}
@media (min-width: 768px) {
  .grid-row-md-13-13 {
    grid-row: 13/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-1 {
    grid-row: 1/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-2 {
    grid-row: 1/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-3 {
    grid-row: 1/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-4 {
    grid-row: 1/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-5 {
    grid-row: 1/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-6 {
    grid-row: 1/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-7 {
    grid-row: 1/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-8 {
    grid-row: 1/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-9 {
    grid-row: 1/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-10 {
    grid-row: 1/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-11 {
    grid-row: 1/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-12 {
    grid-row: 1/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-1-13 {
    grid-row: 1/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-1 {
    grid-row: 2/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-2 {
    grid-row: 2/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-3 {
    grid-row: 2/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-4 {
    grid-row: 2/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-5 {
    grid-row: 2/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-6 {
    grid-row: 2/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-7 {
    grid-row: 2/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-8 {
    grid-row: 2/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-9 {
    grid-row: 2/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-10 {
    grid-row: 2/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-11 {
    grid-row: 2/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-12 {
    grid-row: 2/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-2-13 {
    grid-row: 2/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-1 {
    grid-row: 3/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-2 {
    grid-row: 3/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-3 {
    grid-row: 3/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-4 {
    grid-row: 3/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-5 {
    grid-row: 3/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-6 {
    grid-row: 3/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-7 {
    grid-row: 3/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-8 {
    grid-row: 3/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-9 {
    grid-row: 3/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-10 {
    grid-row: 3/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-11 {
    grid-row: 3/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-12 {
    grid-row: 3/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-3-13 {
    grid-row: 3/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-1 {
    grid-row: 4/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-2 {
    grid-row: 4/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-3 {
    grid-row: 4/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-4 {
    grid-row: 4/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-5 {
    grid-row: 4/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-6 {
    grid-row: 4/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-7 {
    grid-row: 4/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-8 {
    grid-row: 4/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-9 {
    grid-row: 4/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-10 {
    grid-row: 4/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-11 {
    grid-row: 4/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-12 {
    grid-row: 4/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-4-13 {
    grid-row: 4/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-1 {
    grid-row: 5/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-2 {
    grid-row: 5/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-3 {
    grid-row: 5/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-4 {
    grid-row: 5/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-5 {
    grid-row: 5/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-6 {
    grid-row: 5/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-7 {
    grid-row: 5/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-8 {
    grid-row: 5/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-9 {
    grid-row: 5/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-10 {
    grid-row: 5/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-11 {
    grid-row: 5/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-12 {
    grid-row: 5/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-5-13 {
    grid-row: 5/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-1 {
    grid-row: 6/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-2 {
    grid-row: 6/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-3 {
    grid-row: 6/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-4 {
    grid-row: 6/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-5 {
    grid-row: 6/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-6 {
    grid-row: 6/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-7 {
    grid-row: 6/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-8 {
    grid-row: 6/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-9 {
    grid-row: 6/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-10 {
    grid-row: 6/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-11 {
    grid-row: 6/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-12 {
    grid-row: 6/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-6-13 {
    grid-row: 6/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-1 {
    grid-row: 7/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-2 {
    grid-row: 7/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-3 {
    grid-row: 7/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-4 {
    grid-row: 7/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-5 {
    grid-row: 7/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-6 {
    grid-row: 7/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-7 {
    grid-row: 7/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-8 {
    grid-row: 7/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-9 {
    grid-row: 7/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-10 {
    grid-row: 7/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-11 {
    grid-row: 7/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-12 {
    grid-row: 7/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-7-13 {
    grid-row: 7/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-1 {
    grid-row: 8/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-2 {
    grid-row: 8/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-3 {
    grid-row: 8/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-4 {
    grid-row: 8/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-5 {
    grid-row: 8/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-6 {
    grid-row: 8/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-7 {
    grid-row: 8/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-8 {
    grid-row: 8/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-9 {
    grid-row: 8/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-10 {
    grid-row: 8/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-11 {
    grid-row: 8/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-12 {
    grid-row: 8/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-8-13 {
    grid-row: 8/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-1 {
    grid-row: 9/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-2 {
    grid-row: 9/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-3 {
    grid-row: 9/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-4 {
    grid-row: 9/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-5 {
    grid-row: 9/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-6 {
    grid-row: 9/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-7 {
    grid-row: 9/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-8 {
    grid-row: 9/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-9 {
    grid-row: 9/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-10 {
    grid-row: 9/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-11 {
    grid-row: 9/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-12 {
    grid-row: 9/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-9-13 {
    grid-row: 9/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-1 {
    grid-row: 10/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-2 {
    grid-row: 10/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-3 {
    grid-row: 10/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-4 {
    grid-row: 10/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-5 {
    grid-row: 10/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-6 {
    grid-row: 10/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-7 {
    grid-row: 10/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-8 {
    grid-row: 10/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-9 {
    grid-row: 10/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-10 {
    grid-row: 10/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-11 {
    grid-row: 10/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-12 {
    grid-row: 10/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-10-13 {
    grid-row: 10/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-1 {
    grid-row: 11/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-2 {
    grid-row: 11/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-3 {
    grid-row: 11/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-4 {
    grid-row: 11/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-5 {
    grid-row: 11/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-6 {
    grid-row: 11/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-7 {
    grid-row: 11/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-8 {
    grid-row: 11/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-9 {
    grid-row: 11/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-10 {
    grid-row: 11/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-11 {
    grid-row: 11/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-12 {
    grid-row: 11/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-11-13 {
    grid-row: 11/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-1 {
    grid-row: 12/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-2 {
    grid-row: 12/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-3 {
    grid-row: 12/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-4 {
    grid-row: 12/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-5 {
    grid-row: 12/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-6 {
    grid-row: 12/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-7 {
    grid-row: 12/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-8 {
    grid-row: 12/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-9 {
    grid-row: 12/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-10 {
    grid-row: 12/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-11 {
    grid-row: 12/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-12 {
    grid-row: 12/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-12-13 {
    grid-row: 12/13;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-1 {
    grid-row: 13/1;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-2 {
    grid-row: 13/2;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-3 {
    grid-row: 13/3;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-4 {
    grid-row: 13/4;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-5 {
    grid-row: 13/5;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-6 {
    grid-row: 13/6;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-7 {
    grid-row: 13/7;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-8 {
    grid-row: 13/8;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-9 {
    grid-row: 13/9;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-10 {
    grid-row: 13/10;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-11 {
    grid-row: 13/11;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-12 {
    grid-row: 13/12;
  }
}
@media (min-width: 992px) {
  .grid-row-lg-13-13 {
    grid-row: 13/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-1 {
    grid-row: 1/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-2 {
    grid-row: 1/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-3 {
    grid-row: 1/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-4 {
    grid-row: 1/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-5 {
    grid-row: 1/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-6 {
    grid-row: 1/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-7 {
    grid-row: 1/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-8 {
    grid-row: 1/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-9 {
    grid-row: 1/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-10 {
    grid-row: 1/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-11 {
    grid-row: 1/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-12 {
    grid-row: 1/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-1-13 {
    grid-row: 1/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-1 {
    grid-row: 2/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-2 {
    grid-row: 2/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-3 {
    grid-row: 2/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-4 {
    grid-row: 2/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-5 {
    grid-row: 2/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-6 {
    grid-row: 2/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-7 {
    grid-row: 2/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-8 {
    grid-row: 2/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-9 {
    grid-row: 2/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-10 {
    grid-row: 2/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-11 {
    grid-row: 2/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-12 {
    grid-row: 2/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-2-13 {
    grid-row: 2/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-1 {
    grid-row: 3/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-2 {
    grid-row: 3/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-3 {
    grid-row: 3/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-4 {
    grid-row: 3/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-5 {
    grid-row: 3/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-6 {
    grid-row: 3/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-7 {
    grid-row: 3/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-8 {
    grid-row: 3/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-9 {
    grid-row: 3/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-10 {
    grid-row: 3/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-11 {
    grid-row: 3/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-12 {
    grid-row: 3/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-3-13 {
    grid-row: 3/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-1 {
    grid-row: 4/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-2 {
    grid-row: 4/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-3 {
    grid-row: 4/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-4 {
    grid-row: 4/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-5 {
    grid-row: 4/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-6 {
    grid-row: 4/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-7 {
    grid-row: 4/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-8 {
    grid-row: 4/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-9 {
    grid-row: 4/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-10 {
    grid-row: 4/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-11 {
    grid-row: 4/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-12 {
    grid-row: 4/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-4-13 {
    grid-row: 4/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-1 {
    grid-row: 5/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-2 {
    grid-row: 5/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-3 {
    grid-row: 5/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-4 {
    grid-row: 5/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-5 {
    grid-row: 5/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-6 {
    grid-row: 5/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-7 {
    grid-row: 5/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-8 {
    grid-row: 5/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-9 {
    grid-row: 5/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-10 {
    grid-row: 5/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-11 {
    grid-row: 5/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-12 {
    grid-row: 5/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-5-13 {
    grid-row: 5/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-1 {
    grid-row: 6/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-2 {
    grid-row: 6/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-3 {
    grid-row: 6/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-4 {
    grid-row: 6/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-5 {
    grid-row: 6/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-6 {
    grid-row: 6/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-7 {
    grid-row: 6/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-8 {
    grid-row: 6/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-9 {
    grid-row: 6/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-10 {
    grid-row: 6/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-11 {
    grid-row: 6/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-12 {
    grid-row: 6/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-6-13 {
    grid-row: 6/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-1 {
    grid-row: 7/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-2 {
    grid-row: 7/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-3 {
    grid-row: 7/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-4 {
    grid-row: 7/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-5 {
    grid-row: 7/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-6 {
    grid-row: 7/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-7 {
    grid-row: 7/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-8 {
    grid-row: 7/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-9 {
    grid-row: 7/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-10 {
    grid-row: 7/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-11 {
    grid-row: 7/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-12 {
    grid-row: 7/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-7-13 {
    grid-row: 7/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-1 {
    grid-row: 8/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-2 {
    grid-row: 8/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-3 {
    grid-row: 8/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-4 {
    grid-row: 8/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-5 {
    grid-row: 8/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-6 {
    grid-row: 8/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-7 {
    grid-row: 8/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-8 {
    grid-row: 8/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-9 {
    grid-row: 8/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-10 {
    grid-row: 8/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-11 {
    grid-row: 8/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-12 {
    grid-row: 8/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-8-13 {
    grid-row: 8/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-1 {
    grid-row: 9/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-2 {
    grid-row: 9/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-3 {
    grid-row: 9/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-4 {
    grid-row: 9/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-5 {
    grid-row: 9/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-6 {
    grid-row: 9/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-7 {
    grid-row: 9/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-8 {
    grid-row: 9/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-9 {
    grid-row: 9/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-10 {
    grid-row: 9/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-11 {
    grid-row: 9/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-12 {
    grid-row: 9/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-9-13 {
    grid-row: 9/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-1 {
    grid-row: 10/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-2 {
    grid-row: 10/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-3 {
    grid-row: 10/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-4 {
    grid-row: 10/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-5 {
    grid-row: 10/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-6 {
    grid-row: 10/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-7 {
    grid-row: 10/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-8 {
    grid-row: 10/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-9 {
    grid-row: 10/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-10 {
    grid-row: 10/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-11 {
    grid-row: 10/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-12 {
    grid-row: 10/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-10-13 {
    grid-row: 10/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-1 {
    grid-row: 11/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-2 {
    grid-row: 11/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-3 {
    grid-row: 11/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-4 {
    grid-row: 11/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-5 {
    grid-row: 11/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-6 {
    grid-row: 11/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-7 {
    grid-row: 11/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-8 {
    grid-row: 11/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-9 {
    grid-row: 11/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-10 {
    grid-row: 11/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-11 {
    grid-row: 11/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-12 {
    grid-row: 11/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-11-13 {
    grid-row: 11/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-1 {
    grid-row: 12/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-2 {
    grid-row: 12/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-3 {
    grid-row: 12/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-4 {
    grid-row: 12/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-5 {
    grid-row: 12/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-6 {
    grid-row: 12/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-7 {
    grid-row: 12/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-8 {
    grid-row: 12/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-9 {
    grid-row: 12/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-10 {
    grid-row: 12/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-11 {
    grid-row: 12/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-12 {
    grid-row: 12/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-12-13 {
    grid-row: 12/13;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-1 {
    grid-row: 13/1;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-2 {
    grid-row: 13/2;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-3 {
    grid-row: 13/3;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-4 {
    grid-row: 13/4;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-5 {
    grid-row: 13/5;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-6 {
    grid-row: 13/6;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-7 {
    grid-row: 13/7;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-8 {
    grid-row: 13/8;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-9 {
    grid-row: 13/9;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-10 {
    grid-row: 13/10;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-11 {
    grid-row: 13/11;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-12 {
    grid-row: 13/12;
  }
}
@media (min-width: 1200px) {
  .grid-row-xl-13-13 {
    grid-row: 13/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-1 {
    grid-row: 1/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-2 {
    grid-row: 1/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-3 {
    grid-row: 1/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-4 {
    grid-row: 1/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-5 {
    grid-row: 1/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-6 {
    grid-row: 1/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-7 {
    grid-row: 1/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-8 {
    grid-row: 1/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-9 {
    grid-row: 1/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-10 {
    grid-row: 1/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-11 {
    grid-row: 1/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-12 {
    grid-row: 1/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-1-13 {
    grid-row: 1/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-1 {
    grid-row: 2/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-2 {
    grid-row: 2/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-3 {
    grid-row: 2/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-4 {
    grid-row: 2/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-5 {
    grid-row: 2/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-6 {
    grid-row: 2/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-7 {
    grid-row: 2/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-8 {
    grid-row: 2/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-9 {
    grid-row: 2/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-10 {
    grid-row: 2/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-11 {
    grid-row: 2/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-12 {
    grid-row: 2/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-2-13 {
    grid-row: 2/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-1 {
    grid-row: 3/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-2 {
    grid-row: 3/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-3 {
    grid-row: 3/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-4 {
    grid-row: 3/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-5 {
    grid-row: 3/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-6 {
    grid-row: 3/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-7 {
    grid-row: 3/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-8 {
    grid-row: 3/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-9 {
    grid-row: 3/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-10 {
    grid-row: 3/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-11 {
    grid-row: 3/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-12 {
    grid-row: 3/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-3-13 {
    grid-row: 3/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-1 {
    grid-row: 4/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-2 {
    grid-row: 4/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-3 {
    grid-row: 4/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-4 {
    grid-row: 4/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-5 {
    grid-row: 4/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-6 {
    grid-row: 4/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-7 {
    grid-row: 4/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-8 {
    grid-row: 4/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-9 {
    grid-row: 4/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-10 {
    grid-row: 4/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-11 {
    grid-row: 4/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-12 {
    grid-row: 4/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-4-13 {
    grid-row: 4/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-1 {
    grid-row: 5/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-2 {
    grid-row: 5/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-3 {
    grid-row: 5/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-4 {
    grid-row: 5/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-5 {
    grid-row: 5/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-6 {
    grid-row: 5/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-7 {
    grid-row: 5/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-8 {
    grid-row: 5/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-9 {
    grid-row: 5/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-10 {
    grid-row: 5/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-11 {
    grid-row: 5/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-12 {
    grid-row: 5/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-5-13 {
    grid-row: 5/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-1 {
    grid-row: 6/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-2 {
    grid-row: 6/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-3 {
    grid-row: 6/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-4 {
    grid-row: 6/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-5 {
    grid-row: 6/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-6 {
    grid-row: 6/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-7 {
    grid-row: 6/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-8 {
    grid-row: 6/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-9 {
    grid-row: 6/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-10 {
    grid-row: 6/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-11 {
    grid-row: 6/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-12 {
    grid-row: 6/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-6-13 {
    grid-row: 6/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-1 {
    grid-row: 7/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-2 {
    grid-row: 7/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-3 {
    grid-row: 7/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-4 {
    grid-row: 7/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-5 {
    grid-row: 7/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-6 {
    grid-row: 7/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-7 {
    grid-row: 7/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-8 {
    grid-row: 7/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-9 {
    grid-row: 7/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-10 {
    grid-row: 7/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-11 {
    grid-row: 7/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-12 {
    grid-row: 7/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-7-13 {
    grid-row: 7/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-1 {
    grid-row: 8/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-2 {
    grid-row: 8/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-3 {
    grid-row: 8/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-4 {
    grid-row: 8/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-5 {
    grid-row: 8/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-6 {
    grid-row: 8/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-7 {
    grid-row: 8/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-8 {
    grid-row: 8/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-9 {
    grid-row: 8/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-10 {
    grid-row: 8/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-11 {
    grid-row: 8/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-12 {
    grid-row: 8/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-8-13 {
    grid-row: 8/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-1 {
    grid-row: 9/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-2 {
    grid-row: 9/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-3 {
    grid-row: 9/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-4 {
    grid-row: 9/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-5 {
    grid-row: 9/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-6 {
    grid-row: 9/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-7 {
    grid-row: 9/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-8 {
    grid-row: 9/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-9 {
    grid-row: 9/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-10 {
    grid-row: 9/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-11 {
    grid-row: 9/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-12 {
    grid-row: 9/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-9-13 {
    grid-row: 9/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-1 {
    grid-row: 10/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-2 {
    grid-row: 10/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-3 {
    grid-row: 10/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-4 {
    grid-row: 10/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-5 {
    grid-row: 10/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-6 {
    grid-row: 10/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-7 {
    grid-row: 10/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-8 {
    grid-row: 10/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-9 {
    grid-row: 10/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-10 {
    grid-row: 10/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-11 {
    grid-row: 10/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-12 {
    grid-row: 10/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-10-13 {
    grid-row: 10/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-1 {
    grid-row: 11/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-2 {
    grid-row: 11/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-3 {
    grid-row: 11/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-4 {
    grid-row: 11/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-5 {
    grid-row: 11/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-6 {
    grid-row: 11/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-7 {
    grid-row: 11/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-8 {
    grid-row: 11/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-9 {
    grid-row: 11/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-10 {
    grid-row: 11/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-11 {
    grid-row: 11/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-12 {
    grid-row: 11/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-11-13 {
    grid-row: 11/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-1 {
    grid-row: 12/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-2 {
    grid-row: 12/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-3 {
    grid-row: 12/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-4 {
    grid-row: 12/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-5 {
    grid-row: 12/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-6 {
    grid-row: 12/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-7 {
    grid-row: 12/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-8 {
    grid-row: 12/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-9 {
    grid-row: 12/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-10 {
    grid-row: 12/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-11 {
    grid-row: 12/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-12 {
    grid-row: 12/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-12-13 {
    grid-row: 12/13;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-1 {
    grid-row: 13/1;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-2 {
    grid-row: 13/2;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-3 {
    grid-row: 13/3;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-4 {
    grid-row: 13/4;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-5 {
    grid-row: 13/5;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-6 {
    grid-row: 13/6;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-7 {
    grid-row: 13/7;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-8 {
    grid-row: 13/8;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-9 {
    grid-row: 13/9;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-10 {
    grid-row: 13/10;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-11 {
    grid-row: 13/11;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-12 {
    grid-row: 13/12;
  }
}
@media (min-width: 1400px) {
  .grid-row-xxl-13-13 {
    grid-row: 13/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-1 {
    grid-row: 1/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-2 {
    grid-row: 1/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-3 {
    grid-row: 1/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-4 {
    grid-row: 1/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-5 {
    grid-row: 1/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-6 {
    grid-row: 1/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-7 {
    grid-row: 1/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-8 {
    grid-row: 1/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-9 {
    grid-row: 1/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-10 {
    grid-row: 1/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-11 {
    grid-row: 1/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-12 {
    grid-row: 1/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-1-13 {
    grid-row: 1/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-1 {
    grid-row: 2/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-2 {
    grid-row: 2/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-3 {
    grid-row: 2/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-4 {
    grid-row: 2/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-5 {
    grid-row: 2/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-6 {
    grid-row: 2/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-7 {
    grid-row: 2/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-8 {
    grid-row: 2/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-9 {
    grid-row: 2/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-10 {
    grid-row: 2/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-11 {
    grid-row: 2/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-12 {
    grid-row: 2/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-2-13 {
    grid-row: 2/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-1 {
    grid-row: 3/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-2 {
    grid-row: 3/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-3 {
    grid-row: 3/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-4 {
    grid-row: 3/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-5 {
    grid-row: 3/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-6 {
    grid-row: 3/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-7 {
    grid-row: 3/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-8 {
    grid-row: 3/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-9 {
    grid-row: 3/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-10 {
    grid-row: 3/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-11 {
    grid-row: 3/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-12 {
    grid-row: 3/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-3-13 {
    grid-row: 3/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-1 {
    grid-row: 4/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-2 {
    grid-row: 4/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-3 {
    grid-row: 4/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-4 {
    grid-row: 4/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-5 {
    grid-row: 4/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-6 {
    grid-row: 4/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-7 {
    grid-row: 4/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-8 {
    grid-row: 4/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-9 {
    grid-row: 4/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-10 {
    grid-row: 4/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-11 {
    grid-row: 4/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-12 {
    grid-row: 4/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-4-13 {
    grid-row: 4/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-1 {
    grid-row: 5/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-2 {
    grid-row: 5/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-3 {
    grid-row: 5/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-4 {
    grid-row: 5/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-5 {
    grid-row: 5/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-6 {
    grid-row: 5/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-7 {
    grid-row: 5/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-8 {
    grid-row: 5/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-9 {
    grid-row: 5/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-10 {
    grid-row: 5/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-11 {
    grid-row: 5/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-12 {
    grid-row: 5/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-5-13 {
    grid-row: 5/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-1 {
    grid-row: 6/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-2 {
    grid-row: 6/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-3 {
    grid-row: 6/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-4 {
    grid-row: 6/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-5 {
    grid-row: 6/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-6 {
    grid-row: 6/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-7 {
    grid-row: 6/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-8 {
    grid-row: 6/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-9 {
    grid-row: 6/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-10 {
    grid-row: 6/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-11 {
    grid-row: 6/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-12 {
    grid-row: 6/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-6-13 {
    grid-row: 6/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-1 {
    grid-row: 7/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-2 {
    grid-row: 7/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-3 {
    grid-row: 7/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-4 {
    grid-row: 7/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-5 {
    grid-row: 7/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-6 {
    grid-row: 7/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-7 {
    grid-row: 7/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-8 {
    grid-row: 7/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-9 {
    grid-row: 7/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-10 {
    grid-row: 7/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-11 {
    grid-row: 7/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-12 {
    grid-row: 7/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-7-13 {
    grid-row: 7/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-1 {
    grid-row: 8/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-2 {
    grid-row: 8/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-3 {
    grid-row: 8/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-4 {
    grid-row: 8/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-5 {
    grid-row: 8/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-6 {
    grid-row: 8/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-7 {
    grid-row: 8/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-8 {
    grid-row: 8/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-9 {
    grid-row: 8/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-10 {
    grid-row: 8/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-11 {
    grid-row: 8/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-12 {
    grid-row: 8/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-8-13 {
    grid-row: 8/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-1 {
    grid-row: 9/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-2 {
    grid-row: 9/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-3 {
    grid-row: 9/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-4 {
    grid-row: 9/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-5 {
    grid-row: 9/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-6 {
    grid-row: 9/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-7 {
    grid-row: 9/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-8 {
    grid-row: 9/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-9 {
    grid-row: 9/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-10 {
    grid-row: 9/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-11 {
    grid-row: 9/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-12 {
    grid-row: 9/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-9-13 {
    grid-row: 9/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-1 {
    grid-row: 10/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-2 {
    grid-row: 10/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-3 {
    grid-row: 10/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-4 {
    grid-row: 10/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-5 {
    grid-row: 10/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-6 {
    grid-row: 10/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-7 {
    grid-row: 10/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-8 {
    grid-row: 10/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-9 {
    grid-row: 10/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-10 {
    grid-row: 10/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-11 {
    grid-row: 10/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-12 {
    grid-row: 10/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-10-13 {
    grid-row: 10/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-1 {
    grid-row: 11/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-2 {
    grid-row: 11/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-3 {
    grid-row: 11/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-4 {
    grid-row: 11/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-5 {
    grid-row: 11/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-6 {
    grid-row: 11/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-7 {
    grid-row: 11/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-8 {
    grid-row: 11/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-9 {
    grid-row: 11/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-10 {
    grid-row: 11/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-11 {
    grid-row: 11/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-12 {
    grid-row: 11/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-11-13 {
    grid-row: 11/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-1 {
    grid-row: 12/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-2 {
    grid-row: 12/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-3 {
    grid-row: 12/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-4 {
    grid-row: 12/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-5 {
    grid-row: 12/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-6 {
    grid-row: 12/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-7 {
    grid-row: 12/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-8 {
    grid-row: 12/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-9 {
    grid-row: 12/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-10 {
    grid-row: 12/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-11 {
    grid-row: 12/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-12 {
    grid-row: 12/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-12-13 {
    grid-row: 12/13;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-1 {
    grid-row: 13/1;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-2 {
    grid-row: 13/2;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-3 {
    grid-row: 13/3;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-4 {
    grid-row: 13/4;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-5 {
    grid-row: 13/5;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-6 {
    grid-row: 13/6;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-7 {
    grid-row: 13/7;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-8 {
    grid-row: 13/8;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-9 {
    grid-row: 13/9;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-10 {
    grid-row: 13/10;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-11 {
    grid-row: 13/11;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-12 {
    grid-row: 13/12;
  }
}
@media (min-width: 1600px) {
  .grid-row-xxxl-13-13 {
    grid-row: 13/13;
  }
}
.g-row-gap-0 {
  grid-row-gap: 0;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-grab {
  cursor: grab;
}
.usp-list-check-round ul {
  padding-left: 0;
  list-style: none;
  padding-left: 40px;
  list-style: none;
}
.usp-list-check-round ul li {
  padding-left: 0;
}
.usp-list-check-round ul li > ul {
  list-style: none;
}
.usp-list-check-round ul li > ul > li {
  padding-left: 0;
}
.usp-list-check-round ul li > ul > li > ul {
  list-style: none;
}
.usp-list-check-round ul li {
  position: relative;
}
.usp-list-check-round ul li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/bundles/clienttheme/icon/default/check-round-green.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
  transform: scale(0.8);
  margin-left: -40px;
  position: absolute;
}
.usp-list-check-round ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.usp-list-check ul {
  padding-left: 0;
  list-style: none;
  padding-left: 35px;
  list-style: none;
}
.usp-list-check ul li {
  padding-left: 0;
}
.usp-list-check ul li > ul {
  list-style: none;
}
.usp-list-check ul li > ul > li {
  padding-left: 0;
}
.usp-list-check ul li > ul > li > ul {
  list-style: none;
}
.usp-list-check ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
}
.usp-list-check ul li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: -35px;
  position: absolute;
  background-color: currentColor;
  mask: url("/bundles/clienttheme/icon/default/check.svg") no-repeat center;
  mask-size: contain;
}
.collapsible {
  overflow: hidden;
  position: relative;
}
.collapsible::before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #f5f2f0);
  position: absolute;
  bottom: 0;
}
.collapsible.expanded {
  height: auto !important;
  overflow: visible;
}
.collapsible.expanded::before {
  display: none;
}
.collapsible.expanded ~ .read-more {
  display: none !important;
}
/**  Base */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body.noscroll {
  overflow: hidden;
}
.header-logo-picture, .footer-logo-picture {
  min-width: unset;
  max-width: unset;
}
.header-logo-picture > img, .footer-logo-picture > img {
  max-width: 90px;
}
.cookie-permission-container {
  font-size: 1rem;
}
.container-main {
  margin-block: 2.5rem;
  padding: 0;
}
.container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
  padding: 0 0.5rem;
  max-width: unset;
}
@media (min-width: 576px) {
  .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    padding: 0 3rem;
  }
}
@media (min-width: 992px) {
  .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    padding: 0 4rem;
  }
}
@media (min-width: 1200px) {
  .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    padding: 0 5rem;
  }
}
@media (min-width: 1400px) {
  .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    padding: 0;
    margin: 0 auto;
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    max-width: 1416px;
  }
}
.break-container {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%) !important;
}
.grid {
  --bs-gap: 0.25rem;
}
@media (min-width: 576px) {
  .grid {
    --bs-gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .grid {
    --bs-gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .grid {
    --bs-gap: 1.5rem;
  }
}
.row:not([class*="gx-"], [class*="gy-"]), .is-act-cartpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-checkoutregisterpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-confirmpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-ctl-accountorder .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-finishpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
  --bs-gutter-x: 0.5rem;
}
@media (min-width: 576px) {
  .row:not([class*="gx-"], [class*="gy-"]), .is-act-cartpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-checkoutregisterpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-confirmpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-ctl-accountorder .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-finishpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    --bs-gutter-x: 1.5rem;
  }
}
@media (min-width: 768px) {
  .row:not([class*="gx-"], [class*="gy-"]), .is-act-cartpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-checkoutregisterpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-confirmpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-ctl-accountorder .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-finishpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    --bs-gutter-x: 2rem;
  }
}
@media (min-width: 1200px) {
  .row:not([class*="gx-"], [class*="gy-"]), .is-act-cartpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-checkoutregisterpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-confirmpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-ctl-accountorder .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .is-act-finishpage .checkout .checkout-container:not([class*="gx-"], [class*="gy-"]), .container, .cms-section .boxed, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl, .cms-section .full-width, .cms-breadcrumb, .breadcrumb.cms-breadcrumb, .cms-section-default.boxed, .cms-section-default.full-width {
    --bs-gutter-x: 3rem;
  }
}
.border-separator {
  border-bottom: 2px dashed #ced8de;
}
.border-accent-separator {
  border-bottom: 2px dashed #ced8de;
}
.border-brown-separator {
  border-bottom: 2px dashed #a05e37;
}
/* stylelint-disable selector-not-notation */
body {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
@media (min-width: 1200px) {
  body {
    font-size: 1.125rem;
  }
}
/* prettier-ignore */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-bottom: 1.25rem;
  font-family: "Barlow Condensed", sans-serif, sans-serif;
  font-weight: 800;
  line-height: 0.9;
  /** Font rendering optimization */
  transform: translateZ(0);
  backface-visibility: hidden;
  font-synthesis: none;
  font-optical-sizing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}
/* prettier-ignore */
.h0 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.8;
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: -0.045rem;
  text-transform: uppercase;
  word-break: break-word;
}
@media (min-width: 992px) {
  .h0 {
    font-size: 4.5rem;
    letter-spacing: -0.045rem;
  }
}
@media (min-width: 1200px) {
  .h0 {
    font-size: 11.25rem;
    letter-spacing: -0.225rem;
  }
}
/* prettier-ignore */
h1, .h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.9;
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: -0.09rem;
  word-break: break-word;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 4.5rem;
    letter-spacing: -0.09rem;
  }
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 7.5rem;
    letter-spacing: -0.13rem;
  }
}
/* prettier-ignore */
h2, .h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.8;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: normal;
  text-transform: uppercase;
  word-break: break-word;
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 5.5rem;
  }
}
/* prettier-ignore */
h3, .h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: normal;
  word-break: break-word;
}
@media (min-width: 992px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 3rem;
  }
}
/* prettier-ignore */
h4, .h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: normal;
  word-break: normal;
}
@media (min-width: 992px) {
  h4, .h4 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 2rem;
  }
}
/* prettier-ignore */
h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: normal;
  word-break: normal;
}
@media (min-width: 992px) {
  h5, .h5 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  h5, .h5 {
    font-size: 1.25rem;
  }
}
/* prettier-ignore */
h6, .h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: normal;
  word-break: normal;
}
@media (min-width: 992px) {
  h6, .h6 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  h6, .h6 {
    font-size: 1rem;
  }
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline li {
  padding-left: 0;
}
.list-inline li > ul {
  list-style: none;
}
.list-inline li > ul > li {
  padding-left: 0;
}
.list-inline li > ul > li > ul {
  list-style: none;
}
.list-inline li {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 1.25rem 0 0;
}
.list-inline li:last-child {
  padding-right: 0;
}
.list-icon {
  padding-left: 0;
  list-style: none;
  padding-left: 40px;
}
.list-icon li {
  padding-left: 0;
}
.list-icon li > ul {
  list-style: none;
}
.list-icon li > ul > li {
  padding-left: 0;
}
.list-icon li > ul > li > ul {
  list-style: none;
}
.list-icon li {
  position: relative;
}
.list-icon li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/bundles/clienttheme/icon/default/check.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
  transform: scale(0.625);
  margin-left: -35px;
  position: absolute;
}
.list-icon-large {
  padding-left: 0;
  list-style: none;
  padding-left: 50px;
}
.list-icon-large li {
  padding-left: 0;
}
.list-icon-large li > ul {
  list-style: none;
}
.list-icon-large li > ul > li {
  padding-left: 0;
}
.list-icon-large li > ul > li > ul {
  list-style: none;
}
.list-icon-large li {
  position: relative;
}
.list-icon-large li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/bundles/clienttheme/icon/default/check.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
  transform: scale(1);
  margin-left: -50px;
  position: absolute;
}
ul > li > a:not([class]), ol > li > a:not([class]) {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
ul > li > a:not([class])::after, ol > li > a:not([class])::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
ul > li > a:not([class]):hover, ol > li > a:not([class]):hover {
  text-decoration: none;
}
ul > li > a:not([class]):hover::after, ol > li > a:not([class]):hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
ul > li > a:not([class]), ul > li > a:not([class]):hover, ol > li > a:not([class]), ol > li > a:not([class]):hover {
  color: #59c0cc;
}
.numbers {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 105%;
  letter-spacing: 0.00175rem;
}
.sidenote, .subinfo {
  font-family: "Barlow Condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.00175rem;
}
.quote {
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.8;
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: normal;
  text-transform: uppercase;
  word-break: break-word;
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .quote {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .quote {
    font-size: 5.5rem;
  }
}
small, .small {
  font-size: 0.875rem;
}
b, strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
pre {
  font-size: unset;
}
/* stylelint-disable */
a:not([href]):not([class]) {
  color: #1f3e4f;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: #1f3e4f;
  text-decoration: none;
  cursor: pointer;
}
a:not([href]):not([class]):active {
  text-decoration: none;
}
a:not([href]):not([class]):visited {
  text-decoration: none;
}
/* stylelint-enable */
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  /* stylelint-disable */
  /* stylelint-enable */
}
@media (min-width: 1200px) {
  p {
    font-size: 1.125rem;
  }
}
p.plg {
  font-size: 1.125rem;
}
@media (min-width: 1200px) {
  p.plg {
    font-size: 1.5rem;
  }
}
p.psm {
  font-size: 0.875rem;
}
@media (min-width: 1200px) {
  p.psm {
    font-size: 0.875rem;
  }
}
p b, p strong {
  font-weight: 600;
}
p a:not(.btn) {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
p a:not(.btn)::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
p a:not(.btn):hover {
  text-decoration: none;
}
p a:not(.btn):hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
p a:not(.btn), p a:not(.btn):hover {
  color: #59c0cc;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
.text-bg-primary {
  background-color: #59c0cc !important;
  color: #ffffff !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-primary .icon {
  color: #ffffff;
}
.text-bg-primary .accordion-item {
  background-color: #59c0cc !important;
  color: #ffffff !important;
}
.text-bg-primary a:not([class]), .text-bg-primary a:not([class]):hover {
  color: #ffffff !important;
}
.text-bg-primary a:not([class])::after, .text-bg-primary a:not([class]):hover::after {
  background-color: #ffffff !important;
}
.text-bg-secondary {
  background-color: #f191ae !important;
  color: #1f3e4f !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-secondary .icon {
  color: #1f3e4f;
}
.text-bg-secondary .accordion-item {
  background-color: #f191ae !important;
  color: #1f3e4f !important;
}
.text-bg-secondary a:not([class]), .text-bg-secondary a:not([class]):hover {
  color: #1f3e4f !important;
}
.text-bg-secondary a:not([class])::after, .text-bg-secondary a:not([class]):hover::after {
  background-color: #1f3e4f !important;
}
.text-bg-white {
  background-color: #ffffff !important;
  color: #1f3e4f !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-white .icon {
  color: #1f3e4f;
}
.text-bg-white .accordion-item {
  background-color: #ffffff !important;
  color: #1f3e4f !important;
}
.text-bg-white a:not([class]), .text-bg-white a:not([class]):hover {
  color: #1f3e4f !important;
}
.text-bg-white a:not([class])::after, .text-bg-white a:not([class]):hover::after {
  background-color: #1f3e4f !important;
}
.text-bg-black {
  background-color: #313131 !important;
  color: #ffffff !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-black .icon {
  color: #ffffff;
}
.text-bg-black .accordion-item {
  background-color: #313131 !important;
  color: #ffffff !important;
}
.text-bg-black a:not([class]), .text-bg-black a:not([class]):hover {
  color: #ffffff !important;
}
.text-bg-black a:not([class])::after, .text-bg-black a:not([class]):hover::after {
  background-color: #ffffff !important;
}
.text-bg-transparent {
  background-color: transparent !important;
  color: #1f3e4f !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-transparent .icon {
  color: #1f3e4f;
}
.text-bg-transparent .accordion-item {
  background-color: transparent !important;
  color: #1f3e4f !important;
}
.text-bg-transparent a:not([class]), .text-bg-transparent a:not([class]):hover {
  color: #1f3e4f !important;
}
.text-bg-transparent a:not([class])::after, .text-bg-transparent a:not([class]):hover::after {
  background-color: #1f3e4f !important;
}
.text-bg-offwhite {
  background-color: #f5f2f0 !important;
  color: #1f3e4f !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-offwhite .icon {
  color: #1f3e4f;
}
.text-bg-offwhite .accordion-item {
  background-color: #f5f2f0 !important;
  color: #1f3e4f !important;
}
.text-bg-offwhite a:not([class]), .text-bg-offwhite a:not([class]):hover {
  color: #1f3e4f !important;
}
.text-bg-offwhite a:not([class])::after, .text-bg-offwhite a:not([class]):hover::after {
  background-color: #1f3e4f !important;
}
.text-bg-green-strong, .text-bg-mint-strong {
  background-color: #3c6e64 !important;
  color: #acd7c0 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-green-strong .icon, .text-bg-mint-strong .icon {
  color: #acd7c0;
}
.text-bg-green-strong .accordion-item, .text-bg-mint-strong .accordion-item {
  background-color: #3c6e64 !important;
  color: #acd7c0 !important;
}
.text-bg-green-strong a:not([class]), .text-bg-green-strong a:not([class]):hover, .text-bg-mint-strong a:not([class]), .text-bg-mint-strong a:not([class]):hover {
  color: #acd7c0 !important;
}
.text-bg-green-strong a:not([class])::after, .text-bg-green-strong a:not([class]):hover::after, .text-bg-mint-strong a:not([class])::after, .text-bg-mint-strong a:not([class]):hover::after {
  background-color: #acd7c0 !important;
}
.text-bg-green-subtle, .text-bg-mint-subtle {
  background-color: #acd7c0 !important;
  color: #3c6e64 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-green-subtle .icon, .text-bg-mint-subtle .icon {
  color: #3c6e64;
}
.text-bg-green-subtle .accordion-item, .text-bg-mint-subtle .accordion-item {
  background-color: #acd7c0 !important;
  color: #3c6e64 !important;
}
.text-bg-green-subtle a:not([class]), .text-bg-green-subtle a:not([class]):hover, .text-bg-mint-subtle a:not([class]), .text-bg-mint-subtle a:not([class]):hover {
  color: #3c6e64 !important;
}
.text-bg-green-subtle a:not([class])::after, .text-bg-green-subtle a:not([class]):hover::after, .text-bg-mint-subtle a:not([class])::after, .text-bg-mint-subtle a:not([class]):hover::after {
  background-color: #3c6e64 !important;
}
.text-bg-blue-strong, .text-bg-sky-strong {
  background-color: #2d3e50 !important;
  color: #bee2e7 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-blue-strong .icon, .text-bg-sky-strong .icon {
  color: #bee2e7;
}
.text-bg-blue-strong .accordion-item, .text-bg-sky-strong .accordion-item {
  background-color: #2d3e50 !important;
  color: #bee2e7 !important;
}
.text-bg-blue-strong a:not([class]), .text-bg-blue-strong a:not([class]):hover, .text-bg-sky-strong a:not([class]), .text-bg-sky-strong a:not([class]):hover {
  color: #bee2e7 !important;
}
.text-bg-blue-strong a:not([class])::after, .text-bg-blue-strong a:not([class]):hover::after, .text-bg-sky-strong a:not([class])::after, .text-bg-sky-strong a:not([class]):hover::after {
  background-color: #bee2e7 !important;
}
.text-bg-blue-subtle, .text-bg-sky-subtle {
  background-color: #59c0cc !important;
  color: #2d3e50 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-blue-subtle .icon, .text-bg-sky-subtle .icon {
  color: #2d3e50;
}
.text-bg-blue-subtle .accordion-item, .text-bg-sky-subtle .accordion-item {
  background-color: #59c0cc !important;
  color: #2d3e50 !important;
}
.text-bg-blue-subtle a:not([class]), .text-bg-blue-subtle a:not([class]):hover, .text-bg-sky-subtle a:not([class]), .text-bg-sky-subtle a:not([class]):hover {
  color: #2d3e50 !important;
}
.text-bg-blue-subtle a:not([class])::after, .text-bg-blue-subtle a:not([class]):hover::after, .text-bg-sky-subtle a:not([class])::after, .text-bg-sky-subtle a:not([class]):hover::after {
  background-color: #2d3e50 !important;
}
.text-bg-blue-subtle-light, .text-bg-sky-subtle-light {
  background-color: #bee2e7 !important;
  color: #2d3e50 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-blue-subtle-light .icon, .text-bg-sky-subtle-light .icon {
  color: #2d3e50;
}
.text-bg-blue-subtle-light .accordion-item, .text-bg-sky-subtle-light .accordion-item {
  background-color: #bee2e7 !important;
  color: #2d3e50 !important;
}
.text-bg-blue-subtle-light a:not([class]), .text-bg-blue-subtle-light a:not([class]):hover, .text-bg-sky-subtle-light a:not([class]), .text-bg-sky-subtle-light a:not([class]):hover {
  color: #2d3e50 !important;
}
.text-bg-blue-subtle-light a:not([class])::after, .text-bg-blue-subtle-light a:not([class]):hover::after, .text-bg-sky-subtle-light a:not([class])::after, .text-bg-sky-subtle-light a:not([class]):hover::after {
  background-color: #2d3e50 !important;
}
.text-bg-brown-strong, .text-bg-sand-strong {
  background-color: #a05e37 !important;
  color: #f1ead6 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-brown-strong .icon, .text-bg-sand-strong .icon {
  color: #f1ead6;
}
.text-bg-brown-strong .accordion-item, .text-bg-sand-strong .accordion-item {
  background-color: #a05e37 !important;
  color: #f1ead6 !important;
}
.text-bg-brown-strong a:not([class]), .text-bg-brown-strong a:not([class]):hover, .text-bg-sand-strong a:not([class]), .text-bg-sand-strong a:not([class]):hover {
  color: #f1ead6 !important;
}
.text-bg-brown-strong a:not([class])::after, .text-bg-brown-strong a:not([class]):hover::after, .text-bg-sand-strong a:not([class])::after, .text-bg-sand-strong a:not([class]):hover::after {
  background-color: #f1ead6 !important;
}
.text-bg-brown-subtle, .text-bg-sand-subtle {
  background-color: #d8c8b4 !important;
  color: #a05e37 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-brown-subtle .icon, .text-bg-sand-subtle .icon {
  color: #a05e37;
}
.text-bg-brown-subtle .accordion-item, .text-bg-sand-subtle .accordion-item {
  background-color: #d8c8b4 !important;
  color: #a05e37 !important;
}
.text-bg-brown-subtle a:not([class]), .text-bg-brown-subtle a:not([class]):hover, .text-bg-sand-subtle a:not([class]), .text-bg-sand-subtle a:not([class]):hover {
  color: #a05e37 !important;
}
.text-bg-brown-subtle a:not([class])::after, .text-bg-brown-subtle a:not([class]):hover::after, .text-bg-sand-subtle a:not([class])::after, .text-bg-sand-subtle a:not([class]):hover::after {
  background-color: #a05e37 !important;
}
.text-bg-brown-subtle-light, .text-bg-sand-subtle-light {
  background-color: #f1ead6 !important;
  color: #a05e37 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-brown-subtle-light .icon, .text-bg-sand-subtle-light .icon {
  color: #a05e37;
}
.text-bg-brown-subtle-light .accordion-item, .text-bg-sand-subtle-light .accordion-item {
  background-color: #f1ead6 !important;
  color: #a05e37 !important;
}
.text-bg-brown-subtle-light a:not([class]), .text-bg-brown-subtle-light a:not([class]):hover, .text-bg-sand-subtle-light a:not([class]), .text-bg-sand-subtle-light a:not([class]):hover {
  color: #a05e37 !important;
}
.text-bg-brown-subtle-light a:not([class])::after, .text-bg-brown-subtle-light a:not([class]):hover::after, .text-bg-sand-subtle-light a:not([class])::after, .text-bg-sand-subtle-light a:not([class]):hover::after {
  background-color: #a05e37 !important;
}
.text-bg-pink-strong, .text-bg-rose-strong {
  background-color: #7e2337 !important;
  color: #fbdbdb !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-pink-strong .icon, .text-bg-rose-strong .icon {
  color: #fbdbdb;
}
.text-bg-pink-strong .accordion-item, .text-bg-rose-strong .accordion-item {
  background-color: #7e2337 !important;
  color: #fbdbdb !important;
}
.text-bg-pink-strong a:not([class]), .text-bg-pink-strong a:not([class]):hover, .text-bg-rose-strong a:not([class]), .text-bg-rose-strong a:not([class]):hover {
  color: #fbdbdb !important;
}
.text-bg-pink-strong a:not([class])::after, .text-bg-pink-strong a:not([class]):hover::after, .text-bg-rose-strong a:not([class])::after, .text-bg-rose-strong a:not([class]):hover::after {
  background-color: #fbdbdb !important;
}
.text-bg-pink-subtle, .text-bg-rose-subtle {
  background-color: #f191ae !important;
  color: #7e2337 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-pink-subtle .icon, .text-bg-rose-subtle .icon {
  color: #7e2337;
}
.text-bg-pink-subtle .accordion-item, .text-bg-rose-subtle .accordion-item {
  background-color: #f191ae !important;
  color: #7e2337 !important;
}
.text-bg-pink-subtle a:not([class]), .text-bg-pink-subtle a:not([class]):hover, .text-bg-rose-subtle a:not([class]), .text-bg-rose-subtle a:not([class]):hover {
  color: #7e2337 !important;
}
.text-bg-pink-subtle a:not([class])::after, .text-bg-pink-subtle a:not([class]):hover::after, .text-bg-rose-subtle a:not([class])::after, .text-bg-rose-subtle a:not([class]):hover::after {
  background-color: #7e2337 !important;
}
.text-bg-pink-subtle-light, .text-bg-rose-subtle-light {
  background-color: #fbdbdb !important;
  color: #7e2337 !important;
  /* stylelint-disable */
  /* stylelint-enable */
}
.text-bg-pink-subtle-light .icon, .text-bg-rose-subtle-light .icon {
  color: #7e2337;
}
.text-bg-pink-subtle-light .accordion-item, .text-bg-rose-subtle-light .accordion-item {
  background-color: #fbdbdb !important;
  color: #7e2337 !important;
}
.text-bg-pink-subtle-light a:not([class]), .text-bg-pink-subtle-light a:not([class]):hover, .text-bg-rose-subtle-light a:not([class]), .text-bg-rose-subtle-light a:not([class]):hover {
  color: #7e2337 !important;
}
.text-bg-pink-subtle-light a:not([class])::after, .text-bg-pink-subtle-light a:not([class]):hover::after, .text-bg-rose-subtle-light a:not([class])::after, .text-bg-rose-subtle-light a:not([class]):hover::after {
  background-color: #7e2337 !important;
}
.bg-transparent {
  background-color: transparent;
}
.border-transparent {
  border: 1px solid transparent;
}
.foodmaker-divider {
  display: flex;
  align-items: center;
}
.foodmaker-divider::after {
  content: "";
  display: block;
  height: 1px;
  width: 14px;
  background-color: #adb5bd;
}
.icon {
  line-height: 0;
  color: #1f3e4f;
}
.icon > svg {
  width: unset;
  height: 100%;
}
.icon > svg > g {
  fill: currentColor;
  stroke: currentColor;
}
.icon > svg > use {
  fill: currentColor;
}
.icon.icon-fluid > svg {
  width: auto;
  height: 100%;
}
.icon.icon-filter-panel-item-toggle > svg {
  top: 0;
}
[class^="theme-icon"] {
  display: inline-block;
}
input.theme-icon-accordion-down {
  background-image: url("/bundles/clienttheme/icon/default/accordion-down.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-accordion-up {
  background-image: url("/bundles/clienttheme/icon/default/accordion-up.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-alert {
  background-image: url("/bundles/clienttheme/icon/default/alert.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-alert-circle {
  background-image: url("/bundles/clienttheme/icon/default/alert-circle.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-arrow-down {
  background-image: url("/bundles/clienttheme/icon/default/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-arrow-left {
  background-image: url("/bundles/clienttheme/icon/default/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-arrow-right {
  background-image: url("/bundles/clienttheme/icon/default/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-arrow-up {
  background-image: url("/bundles/clienttheme/icon/default/arrow-up.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-basket {
  background-image: url("/bundles/clienttheme/icon/default/basket.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-bin {
  background-image: url("/bundles/clienttheme/icon/default/bin.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-cart {
  background-image: url("/bundles/clienttheme/icon/default/cart.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-chat {
  background-image: url("/bundles/clienttheme/icon/default/chat.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-check {
  background-image: url("/bundles/clienttheme/icon/default/check.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-check-green {
  background-image: url("/bundles/clienttheme/icon/default/check-green.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-check-round {
  background-image: url("/bundles/clienttheme/icon/default/check-round.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-check-round-brown-strong {
  background-image: url("/bundles/clienttheme/icon/default/check-round-brown-strong.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-check-round-leaf-strong, .header-main .header__actions-col input.account-menu-btn.is-logged-in::before {
  background-image: url("/bundles/clienttheme/icon/default/check-round-leaf-strong.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-check-round-leaf-subtle {
  background-image: url("/bundles/clienttheme/icon/default/check-round-leaf-subtle.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-checkbox-white {
  background-image: url("/bundles/clienttheme/icon/default/checkbox-white.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-chevron-down {
  background-image: url("/bundles/clienttheme/icon/default/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-chevron-left {
  background-image: url("/bundles/clienttheme/icon/default/chevron-left.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-chevron-right {
  background-image: url("/bundles/clienttheme/icon/default/chevron-right.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-chevron-round-down {
  background-image: url("/bundles/clienttheme/icon/default/chevron-round-down.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-chevron-round-up {
  background-image: url("/bundles/clienttheme/icon/default/chevron-round-up.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-chevron-up {
  background-image: url("/bundles/clienttheme/icon/default/chevron-up.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-clock {
  background-image: url("/bundles/clienttheme/icon/default/clock.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-close {
  background-image: url("/bundles/clienttheme/icon/default/close.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-community {
  background-image: url("/bundles/clienttheme/icon/default/community.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-euro {
  background-image: url("/bundles/clienttheme/icon/default/euro.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-facebook {
  background-image: url("/bundles/clienttheme/icon/default/facebook.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-facebook2 {
  background-image: url("/bundles/clienttheme/icon/default/facebook2.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-filter {
  background-image: url("/bundles/clienttheme/icon/default/filter.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-franchisee {
  background-image: url("/bundles/clienttheme/icon/default/franchisee.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-graduation-cap {
  background-image: url("/bundles/clienttheme/icon/default/graduation-cap.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-info {
  background-image: url("/bundles/clienttheme/icon/default/info.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-instagram {
  background-image: url("/bundles/clienttheme/icon/default/instagram.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-link {
  background-image: url("/bundles/clienttheme/icon/default/link.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-link2 {
  background-image: url("/bundles/clienttheme/icon/default/link2.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-linkedin {
  background-image: url("/bundles/clienttheme/icon/default/linkedin.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-linkedin2 {
  background-image: url("/bundles/clienttheme/icon/default/linkedin2.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-location {
  background-image: url("/bundles/clienttheme/icon/default/location.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-mail {
  background-image: url("/bundles/clienttheme/icon/default/mail.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-mail-white {
  background-image: url("/bundles/clienttheme/icon/default/mail-white.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-menu {
  background-image: url("/bundles/clienttheme/icon/default/menu.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-minus {
  background-image: url("/bundles/clienttheme/icon/default/minus.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-more {
  background-image: url("/bundles/clienttheme/icon/default/more.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-paperclip {
  background-image: url("/bundles/clienttheme/icon/default/paperclip.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-pencil {
  background-image: url("/bundles/clienttheme/icon/default/pencil.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-phone {
  background-image: url("/bundles/clienttheme/icon/default/phone.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-play {
  background-image: url("/bundles/clienttheme/icon/default/play.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-plus {
  background-image: url("/bundles/clienttheme/icon/default/plus.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-rating {
  background-image: url("/bundles/clienttheme/icon/default/rating.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-refresh {
  background-image: url("/bundles/clienttheme/icon/default/refresh.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-search {
  background-image: url("/bundles/clienttheme/icon/default/search.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-share {
  background-image: url("/bundles/clienttheme/icon/default/share.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-slider {
  background-image: url("/bundles/clienttheme/icon/default/slider.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-stars-brown-strong {
  background-image: url("/bundles/clienttheme/icon/default/stars-brown-strong.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-stars-green-subtle {
  background-image: url("/bundles/clienttheme/icon/default/stars-green-subtle.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-stats {
  background-image: url("/bundles/clienttheme/icon/default/stats.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-user {
  background-image: url("/bundles/clienttheme/icon/default/user.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-user-chevron-down {
  background-image: url("/bundles/clienttheme/icon/default/user-chevron-down.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-user-chevron-up {
  background-image: url("/bundles/clienttheme/icon/default/user-chevron-up.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-user-white {
  background-image: url("/bundles/clienttheme/icon/default/user-white.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-whatsapp {
  background-image: url("/bundles/clienttheme/icon/default/whatsapp.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-x {
  background-image: url("/bundles/clienttheme/icon/default/x.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
input.theme-icon-youtube {
  background-image: url("/bundles/clienttheme/icon/default/youtube.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
}
/* prettier-ignore */
.btn, .active-campaign-form form[id^="_form_"] ._submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  text-decoration: none;
  text-transform: uppercase;
  padding: calc(0.75rem - 1px) 1.5rem;
}
.btn:focus-visible, .active-campaign-form form[id^="_form_"] ._submit:focus-visible {
  outline: revert;
}
.btn .label, .active-campaign-form form[id^="_form_"] ._submit .label {
  margin-bottom: 1px;
}
.btn .loader, .active-campaign-form form[id^="_form_"] ._submit .loader {
  --bs-spinner-border-width: 2px;
  color: inherit !important;
  margin-block: 3px;
}
@media (min-width: 992px) {
  .btn, .active-campaign-form form[id^="_form_"] ._submit {
    padding: calc(1rem - 1px) 1.5rem;
  }
}
@media (min-width: 1400px) {
  .btn, .active-campaign-form form[id^="_form_"] ._submit {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .btn.btn-sm, .active-campaign-form form[id^="_form_"] .btn-sm._submit, .active-campaign-form form[id^="_form_"] .btn-group-sm > ._submit.btn, .active-campaign-form form[id^="_form_"] .btn-group-sm > ._submit, .btn-group-sm > .btn {
    padding: calc(0.75rem - 1px) 1.5rem;
  }
}
.btn.btn-primary, .active-campaign-form form[id^="_form_"] .btn-primary._submit, .active-campaign-form form[id^="_form_"] ._submit, .active-campaign-form form[id^="_form_"] .btn._submit {
  --bs-btn-color: #313131;
  --bs-btn-bg: #59c0cc;
  --bs-btn-border-color: #59c0cc;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #39acb9;
  --bs-btn-hover-border-color: #39acb9;
  --bs-btn-focus-shadow-rgb: 83, 171, 181;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #80cfd8;
  --bs-btn-active-border-color: #80cfd8;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #59c0cc;
  --bs-btn-disabled-border-color: #59c0cc;
}
.btn.btn-primary.disabled, .active-campaign-form form[id^="_form_"] .btn-primary.disabled._submit, .active-campaign-form form[id^="_form_"] .disabled._submit, .active-campaign-form form[id^="_form_"] .btn.disabled._submit, .btn.btn-primary:disabled, .active-campaign-form form[id^="_form_"] .btn-primary._submit:disabled, .active-campaign-form form[id^="_form_"] ._submit:disabled, .active-campaign-form form[id^="_form_"] .btn._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-primary:hover, .active-campaign-form form[id^="_form_"] .btn-primary._submit:hover, .active-campaign-form form[id^="_form_"] ._submit:hover, .active-campaign-form form[id^="_form_"] .btn._submit:hover, .btn.btn-primary:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-primary._submit:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] ._submit:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn._submit:not(:disabled):not(.disabled):active, .btn.btn-primary:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-primary.active._submit:not(.disabled):not(:disabled), .active-campaign-form form[id^="_form_"] .active._submit:not(.disabled):not(:disabled), .active-campaign-form form[id^="_form_"] .btn.active._submit:not(.disabled):not(:disabled) {
  color: #313131;
}
.btn.btn-primary.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-primary.btn-icon._submit .icon, .active-campaign-form form[id^="_form_"] .btn-icon._submit .icon, .active-campaign-form form[id^="_form_"] .btn.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-primary.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-primary.btn-icon._submit .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-icon._submit .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn.btn-icon._submit .icon > svg > g, .btn.btn-primary.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-primary.btn-icon._submit .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-icon._submit .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn.btn-icon._submit .icon > svg > path {
  fill: #313131;
  stroke: #313131;
}
.btn.btn-secondary, .active-campaign-form form[id^="_form_"] .btn-secondary._submit {
  --bs-btn-color: #313131;
  --bs-btn-bg: #f191ae;
  --bs-btn-border-color: #f191ae;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #eb648d;
  --bs-btn-hover-border-color: #eb648d;
  --bs-btn-focus-shadow-rgb: 212, 131, 155;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f7becf;
  --bs-btn-active-border-color: #f7becf;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f191ae;
  --bs-btn-disabled-border-color: #f191ae;
}
.btn.btn-secondary.disabled, .active-campaign-form form[id^="_form_"] .btn-secondary.disabled._submit, .btn.btn-secondary:disabled, .active-campaign-form form[id^="_form_"] .btn-secondary._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-secondary:hover, .active-campaign-form form[id^="_form_"] .btn-secondary._submit:hover, .btn.btn-secondary:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-secondary._submit:not(:disabled):not(.disabled):active, .btn.btn-secondary:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-secondary.active._submit:not(.disabled):not(:disabled) {
  color: #313131;
}
.btn.btn-secondary.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-secondary.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-secondary.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-secondary.btn-icon._submit .icon > svg > g, .btn.btn-secondary.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-secondary.btn-icon._submit .icon > svg > path {
  fill: #313131;
  stroke: #313131;
}
.btn.btn-light, .active-campaign-form form[id^="_form_"] .btn-light._submit {
  --bs-btn-color: #313131;
  --bs-btn-bg: #f1ead6;
  --bs-btn-border-color: #f1ead6;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #e4d7b0;
  --bs-btn-hover-border-color: #e4d7b0;
  --bs-btn-focus-shadow-rgb: 212, 206, 189;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #fefdfc;
  --bs-btn-active-border-color: #fefdfc;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f1ead6;
  --bs-btn-disabled-border-color: #f1ead6;
}
.btn.btn-light.disabled, .active-campaign-form form[id^="_form_"] .btn-light.disabled._submit, .btn.btn-light:disabled, .active-campaign-form form[id^="_form_"] .btn-light._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-light:hover, .active-campaign-form form[id^="_form_"] .btn-light._submit:hover, .btn.btn-light:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-light._submit:not(:disabled):not(.disabled):active, .btn.btn-light:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-light.active._submit:not(.disabled):not(:disabled) {
  color: #313131;
}
.btn.btn-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-light.btn-icon._submit .icon > svg > g, .btn.btn-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-light.btn-icon._submit .icon > svg > path {
  fill: #313131;
  stroke: #313131;
}
.btn.btn-dark, .active-campaign-form form[id^="_form_"] .btn-dark._submit {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #313131;
  --bs-btn-border-color: #313131;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4b4b4b;
  --bs-btn-hover-border-color: #4b4b4b;
  --bs-btn-focus-shadow-rgb: 80, 80, 80;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #181818;
  --bs-btn-active-border-color: #181818;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #313131;
  --bs-btn-disabled-border-color: #313131;
}
.btn.btn-dark.disabled, .active-campaign-form form[id^="_form_"] .btn-dark.disabled._submit, .btn.btn-dark:disabled, .active-campaign-form form[id^="_form_"] .btn-dark._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-dark:hover, .active-campaign-form form[id^="_form_"] .btn-dark._submit:hover, .btn.btn-dark:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-dark._submit:not(:disabled):not(.disabled):active, .btn.btn-dark:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-dark.active._submit:not(.disabled):not(:disabled) {
  color: #ffffff;
}
.btn.btn-dark.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-dark.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-dark.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-dark.btn-icon._submit .icon > svg > g, .btn.btn-dark.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-dark.btn-icon._submit .icon > svg > path {
  fill: #ffffff;
  stroke: #ffffff;
}
.btn.btn-green-strong, .active-campaign-form form[id^="_form_"] .btn-green-strong._submit {
  --bs-btn-color: #acd7c0;
  --bs-btn-bg: #3c6e64;
  --bs-btn-border-color: #3c6e64;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2a4d46;
  --bs-btn-hover-border-color: #2a4d46;
  --bs-btn-focus-shadow-rgb: 77, 126, 114;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #4e8f82;
  --bs-btn-active-border-color: #4e8f82;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #3c6e64;
  --bs-btn-disabled-border-color: #3c6e64;
}
.btn.btn-green-strong.disabled, .active-campaign-form form[id^="_form_"] .btn-green-strong.disabled._submit, .btn.btn-green-strong:disabled, .active-campaign-form form[id^="_form_"] .btn-green-strong._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-green-strong:hover, .active-campaign-form form[id^="_form_"] .btn-green-strong._submit:hover, .btn.btn-green-strong:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-green-strong._submit:not(:disabled):not(.disabled):active, .btn.btn-green-strong:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-green-strong.active._submit:not(.disabled):not(:disabled) {
  color: #acd7c0;
}
.btn.btn-green-strong.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-green-strong.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-green-strong.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-green-strong.btn-icon._submit .icon > svg > g, .btn.btn-green-strong.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-green-strong.btn-icon._submit .icon > svg > path {
  fill: #acd7c0;
  stroke: #acd7c0;
}
.btn.btn-green-subtle, .active-campaign-form form[id^="_form_"] .btn-green-subtle._submit {
  --bs-btn-color: #3c6e64;
  --bs-btn-bg: #acd7c0;
  --bs-btn-border-color: #acd7c0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #8ac6a6;
  --bs-btn-hover-border-color: #8ac6a6;
  --bs-btn-focus-shadow-rgb: 155, 199, 178;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #cee8da;
  --bs-btn-active-border-color: #cee8da;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #acd7c0;
  --bs-btn-disabled-border-color: #acd7c0;
}
.btn.btn-green-subtle.disabled, .active-campaign-form form[id^="_form_"] .btn-green-subtle.disabled._submit, .btn.btn-green-subtle:disabled, .active-campaign-form form[id^="_form_"] .btn-green-subtle._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-green-subtle:hover, .active-campaign-form form[id^="_form_"] .btn-green-subtle._submit:hover, .btn.btn-green-subtle:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-green-subtle._submit:not(:disabled):not(.disabled):active, .btn.btn-green-subtle:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-green-subtle.active._submit:not(.disabled):not(:disabled) {
  color: #3c6e64;
}
.btn.btn-green-subtle.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-green-subtle.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-green-subtle.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-green-subtle.btn-icon._submit .icon > svg > g, .btn.btn-green-subtle.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-green-subtle.btn-icon._submit .icon > svg > path {
  fill: #3c6e64;
  stroke: #3c6e64;
}
.btn.btn-blue-strong, .active-campaign-form form[id^="_form_"] .btn-blue-strong._submit {
  --bs-btn-color: #bee2e7;
  --bs-btn-bg: #2d3e50;
  --bs-btn-border-color: #2d3e50;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1b252f;
  --bs-btn-hover-border-color: #1b252f;
  --bs-btn-focus-shadow-rgb: 67, 87, 103;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3f5771;
  --bs-btn-active-border-color: #3f5771;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #2d3e50;
  --bs-btn-disabled-border-color: #2d3e50;
}
.btn.btn-blue-strong.disabled, .active-campaign-form form[id^="_form_"] .btn-blue-strong.disabled._submit, .btn.btn-blue-strong:disabled, .active-campaign-form form[id^="_form_"] .btn-blue-strong._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-blue-strong:hover, .active-campaign-form form[id^="_form_"] .btn-blue-strong._submit:hover, .btn.btn-blue-strong:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-blue-strong._submit:not(:disabled):not(.disabled):active, .btn.btn-blue-strong:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-blue-strong.active._submit:not(.disabled):not(:disabled) {
  color: #bee2e7;
}
.btn.btn-blue-strong.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-blue-strong.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-blue-strong.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-blue-strong.btn-icon._submit .icon > svg > g, .btn.btn-blue-strong.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-blue-strong.btn-icon._submit .icon > svg > path {
  fill: #bee2e7;
  stroke: #bee2e7;
}
.btn.btn-blue-subtle, .active-campaign-form form[id^="_form_"] .btn-blue-subtle._submit {
  --bs-btn-color: #2d3e50;
  --bs-btn-bg: #59c0cc;
  --bs-btn-border-color: #59c0cc;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #39acb9;
  --bs-btn-hover-border-color: #39acb9;
  --bs-btn-focus-shadow-rgb: 82, 173, 185;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #80cfd8;
  --bs-btn-active-border-color: #80cfd8;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #59c0cc;
  --bs-btn-disabled-border-color: #59c0cc;
}
.btn.btn-blue-subtle.disabled, .active-campaign-form form[id^="_form_"] .btn-blue-subtle.disabled._submit, .btn.btn-blue-subtle:disabled, .active-campaign-form form[id^="_form_"] .btn-blue-subtle._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-blue-subtle:hover, .active-campaign-form form[id^="_form_"] .btn-blue-subtle._submit:hover, .btn.btn-blue-subtle:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-blue-subtle._submit:not(:disabled):not(.disabled):active, .btn.btn-blue-subtle:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-blue-subtle.active._submit:not(.disabled):not(:disabled) {
  color: #2d3e50;
}
.btn.btn-blue-subtle.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-blue-subtle.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-blue-subtle.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-blue-subtle.btn-icon._submit .icon > svg > g, .btn.btn-blue-subtle.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-blue-subtle.btn-icon._submit .icon > svg > path {
  fill: #2d3e50;
  stroke: #2d3e50;
}
.btn.btn-blue-subtle-light, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light._submit {
  --bs-btn-color: #2d3e50;
  --bs-btn-bg: #bee2e7;
  --bs-btn-border-color: #bee2e7;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #99d1d9;
  --bs-btn-hover-border-color: #99d1d9;
  --bs-btn-focus-shadow-rgb: 168, 201, 208;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #e3f3f5;
  --bs-btn-active-border-color: #e3f3f5;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #bee2e7;
  --bs-btn-disabled-border-color: #bee2e7;
}
.btn.btn-blue-subtle-light.disabled, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light.disabled._submit, .btn.btn-blue-subtle-light:disabled, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-blue-subtle-light:hover, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light._submit:hover, .btn.btn-blue-subtle-light:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light._submit:not(:disabled):not(.disabled):active, .btn.btn-blue-subtle-light:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light.active._submit:not(.disabled):not(:disabled) {
  color: #2d3e50;
}
.btn.btn-blue-subtle-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-blue-subtle-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light.btn-icon._submit .icon > svg > g, .btn.btn-blue-subtle-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-blue-subtle-light.btn-icon._submit .icon > svg > path {
  fill: #2d3e50;
  stroke: #2d3e50;
}
.btn.btn-brown-strong, .active-campaign-form form[id^="_form_"] .btn-brown-strong._submit {
  --bs-btn-color: #f1ead6;
  --bs-btn-bg: #a05e37;
  --bs-btn-border-color: #a05e37;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #7a482a;
  --bs-btn-hover-border-color: #7a482a;
  --bs-btn-focus-shadow-rgb: 172, 115, 79;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c17649;
  --bs-btn-active-border-color: #c17649;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #a05e37;
  --bs-btn-disabled-border-color: #a05e37;
}
.btn.btn-brown-strong.disabled, .active-campaign-form form[id^="_form_"] .btn-brown-strong.disabled._submit, .btn.btn-brown-strong:disabled, .active-campaign-form form[id^="_form_"] .btn-brown-strong._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-brown-strong:hover, .active-campaign-form form[id^="_form_"] .btn-brown-strong._submit:hover, .btn.btn-brown-strong:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-brown-strong._submit:not(:disabled):not(.disabled):active, .btn.btn-brown-strong:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-brown-strong.active._submit:not(.disabled):not(:disabled) {
  color: #f1ead6;
}
.btn.btn-brown-strong.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-brown-strong.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-brown-strong.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-brown-strong.btn-icon._submit .icon > svg > g, .btn.btn-brown-strong.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-brown-strong.btn-icon._submit .icon > svg > path {
  fill: #f1ead6;
  stroke: #f1ead6;
}
.btn.btn-brown-subtle, .active-campaign-form form[id^="_form_"] .btn-brown-subtle._submit {
  --bs-btn-color: #a05e37;
  --bs-btn-bg: #d8c8b4;
  --bs-btn-border-color: #d8c8b4;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #c7af92;
  --bs-btn-hover-border-color: #c7af92;
  --bs-btn-focus-shadow-rgb: 208, 184, 161;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #e9e1d6;
  --bs-btn-active-border-color: #e9e1d6;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #d8c8b4;
  --bs-btn-disabled-border-color: #d8c8b4;
}
.btn.btn-brown-subtle.disabled, .active-campaign-form form[id^="_form_"] .btn-brown-subtle.disabled._submit, .btn.btn-brown-subtle:disabled, .active-campaign-form form[id^="_form_"] .btn-brown-subtle._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-brown-subtle:hover, .active-campaign-form form[id^="_form_"] .btn-brown-subtle._submit:hover, .btn.btn-brown-subtle:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-brown-subtle._submit:not(:disabled):not(.disabled):active, .btn.btn-brown-subtle:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-brown-subtle.active._submit:not(.disabled):not(:disabled) {
  color: #a05e37;
}
.btn.btn-brown-subtle.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-brown-subtle.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-brown-subtle.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-brown-subtle.btn-icon._submit .icon > svg > g, .btn.btn-brown-subtle.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-brown-subtle.btn-icon._submit .icon > svg > path {
  fill: #a05e37;
  stroke: #a05e37;
}
.btn.btn-brown-subtle-light, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light._submit {
  --bs-btn-color: #a05e37;
  --bs-btn-bg: #f1ead6;
  --bs-btn-border-color: #f1ead6;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #e4d7b0;
  --bs-btn-hover-border-color: #e4d7b0;
  --bs-btn-focus-shadow-rgb: 229, 213, 190;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #fefdfc;
  --bs-btn-active-border-color: #fefdfc;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f1ead6;
  --bs-btn-disabled-border-color: #f1ead6;
}
.btn.btn-brown-subtle-light.disabled, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light.disabled._submit, .btn.btn-brown-subtle-light:disabled, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-brown-subtle-light:hover, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light._submit:hover, .btn.btn-brown-subtle-light:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light._submit:not(:disabled):not(.disabled):active, .btn.btn-brown-subtle-light:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light.active._submit:not(.disabled):not(:disabled) {
  color: #a05e37;
}
.btn.btn-brown-subtle-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-brown-subtle-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light.btn-icon._submit .icon > svg > g, .btn.btn-brown-subtle-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-brown-subtle-light.btn-icon._submit .icon > svg > path {
  fill: #a05e37;
  stroke: #a05e37;
}
.btn.btn-pink-strong, .active-campaign-form form[id^="_form_"] .btn-pink-strong._submit {
  --bs-btn-color: #fbdbdb;
  --bs-btn-bg: #7e2337;
  --bs-btn-border-color: #7e2337;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #561826;
  --bs-btn-hover-border-color: #561826;
  --bs-btn-focus-shadow-rgb: 145, 63, 80;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a62e48;
  --bs-btn-active-border-color: #a62e48;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #7e2337;
  --bs-btn-disabled-border-color: #7e2337;
}
.btn.btn-pink-strong.disabled, .active-campaign-form form[id^="_form_"] .btn-pink-strong.disabled._submit, .btn.btn-pink-strong:disabled, .active-campaign-form form[id^="_form_"] .btn-pink-strong._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-pink-strong:hover, .active-campaign-form form[id^="_form_"] .btn-pink-strong._submit:hover, .btn.btn-pink-strong:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-pink-strong._submit:not(:disabled):not(.disabled):active, .btn.btn-pink-strong:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-pink-strong.active._submit:not(.disabled):not(:disabled) {
  color: #fbdbdb;
}
.btn.btn-pink-strong.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-pink-strong.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-pink-strong.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-pink-strong.btn-icon._submit .icon > svg > g, .btn.btn-pink-strong.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-pink-strong.btn-icon._submit .icon > svg > path {
  fill: #fbdbdb;
  stroke: #fbdbdb;
}
.btn.btn-pink-subtle, .active-campaign-form form[id^="_form_"] .btn-pink-subtle._submit {
  --bs-btn-color: #7e2337;
  --bs-btn-bg: #f191ae;
  --bs-btn-border-color: #f191ae;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #eb648d;
  --bs-btn-hover-border-color: #eb648d;
  --bs-btn-focus-shadow-rgb: 224, 129, 156;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f7becf;
  --bs-btn-active-border-color: #f7becf;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f191ae;
  --bs-btn-disabled-border-color: #f191ae;
}
.btn.btn-pink-subtle.disabled, .active-campaign-form form[id^="_form_"] .btn-pink-subtle.disabled._submit, .btn.btn-pink-subtle:disabled, .active-campaign-form form[id^="_form_"] .btn-pink-subtle._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-pink-subtle:hover, .active-campaign-form form[id^="_form_"] .btn-pink-subtle._submit:hover, .btn.btn-pink-subtle:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-pink-subtle._submit:not(:disabled):not(.disabled):active, .btn.btn-pink-subtle:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-pink-subtle.active._submit:not(.disabled):not(:disabled) {
  color: #7e2337;
}
.btn.btn-pink-subtle.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-pink-subtle.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-pink-subtle.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-pink-subtle.btn-icon._submit .icon > svg > g, .btn.btn-pink-subtle.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-pink-subtle.btn-icon._submit .icon > svg > path {
  fill: #7e2337;
  stroke: #7e2337;
}
.btn.btn-pink-subtle-light, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light._submit {
  --bs-btn-color: #7e2337;
  --bs-btn-bg: #fbdbdb;
  --bs-btn-border-color: #fbdbdb;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f6adad;
  --bs-btn-hover-border-color: #f6adad;
  --bs-btn-focus-shadow-rgb: 232, 191, 194;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: white;
  --bs-btn-active-border-color: white;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fbdbdb;
  --bs-btn-disabled-border-color: #fbdbdb;
}
.btn.btn-pink-subtle-light.disabled, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light.disabled._submit, .btn.btn-pink-subtle-light:disabled, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light._submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.btn-pink-subtle-light:hover, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light._submit:hover, .btn.btn-pink-subtle-light:not(:disabled):not(.disabled):active, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light._submit:not(:disabled):not(.disabled):active, .btn.btn-pink-subtle-light:not(:disabled):not(.disabled).active, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light.active._submit:not(.disabled):not(:disabled) {
  color: #7e2337;
}
.btn.btn-pink-subtle-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-pink-subtle-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light.btn-icon._submit .icon > svg > g, .btn.btn-pink-subtle-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-pink-subtle-light.btn-icon._submit .icon > svg > path {
  fill: #7e2337;
  stroke: #7e2337;
}
.btn.btn-outline-primary, .active-campaign-form form[id^="_form_"] .btn-outline-primary._submit {
  --bs-btn-color: #59c0cc;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #59c0cc;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #59c0cc;
  --bs-btn-hover-border-color: #59c0cc;
  --bs-btn-focus-shadow-rgb: 89, 192, 204;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #2d8892;
  --bs-btn-active-border-color: #2d8892;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #59c0cc;
}
.btn.btn-outline-primary:focus, .active-campaign-form form[id^="_form_"] .btn-outline-primary._submit:focus {
  border: 1px solid #59c0cc;
}
.btn.btn-outline-primary:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-primary._submit:focus-visible {
  color: #ffffff;
}
.btn.btn-outline-primary:focus, .active-campaign-form form[id^="_form_"] .btn-outline-primary._submit:focus, .btn.btn-outline-primary.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-primary:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-primary._submit:focus > svg > g, .btn.btn-outline-primary:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-primary._submit:focus > svg > path, .btn.btn-outline-primary.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit .icon > svg > g, .btn.btn-outline-primary.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-primary:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-primary:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit:hover .icon > svg > path {
  fill: #ffffff;
  stroke: #ffffff;
}
.btn.btn-outline-primary:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-primary:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-primary:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-primary:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-primary.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #ffffff;
  stroke: #ffffff;
}
.btn.btn-outline-secondary, .active-campaign-form form[id^="_form_"] .btn-outline-secondary._submit {
  --bs-btn-color: #f191ae;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #f191ae;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #f191ae;
  --bs-btn-hover-border-color: #f191ae;
  --bs-btn-focus-shadow-rgb: 241, 145, 174;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #e5376b;
  --bs-btn-active-border-color: #e5376b;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f191ae;
}
.btn.btn-outline-secondary:focus, .active-campaign-form form[id^="_form_"] .btn-outline-secondary._submit:focus {
  border: 1px solid #f191ae;
}
.btn.btn-outline-secondary:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-secondary._submit:focus-visible {
  color: #ffffff;
}
.btn.btn-outline-secondary:focus, .active-campaign-form form[id^="_form_"] .btn-outline-secondary._submit:focus, .btn.btn-outline-secondary.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-secondary:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-secondary._submit:focus > svg > g, .btn.btn-outline-secondary:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-secondary._submit:focus > svg > path, .btn.btn-outline-secondary.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit .icon > svg > g, .btn.btn-outline-secondary.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-secondary:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-secondary:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit:hover .icon > svg > path {
  fill: #ffffff;
  stroke: #ffffff;
}
.btn.btn-outline-secondary:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-secondary:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-secondary:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-secondary:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-secondary.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #ffffff;
  stroke: #ffffff;
}
.btn.btn-outline-light, .active-campaign-form form[id^="_form_"] .btn-outline-light._submit {
  --bs-btn-color: #f1ead6;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #f1ead6;
  --bs-btn-hover-color: #313131;
  --bs-btn-hover-bg: #f1ead6;
  --bs-btn-hover-border-color: #f1ead6;
  --bs-btn-focus-shadow-rgb: 241, 234, 214;
  --bs-btn-active-color: #313131;
  --bs-btn-active-bg: #d7c38a;
  --bs-btn-active-border-color: #d7c38a;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f1ead6;
}
.btn.btn-outline-light:focus, .active-campaign-form form[id^="_form_"] .btn-outline-light._submit:focus {
  border: 1px solid #f1ead6;
}
.btn.btn-outline-light:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-light._submit:focus-visible {
  color: #313131;
}
.btn.btn-outline-light:focus, .active-campaign-form form[id^="_form_"] .btn-outline-light._submit:focus, .btn.btn-outline-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-light:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-light._submit:focus > svg > g, .btn.btn-outline-light:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-light._submit:focus > svg > path, .btn.btn-outline-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit .icon > svg > g, .btn.btn-outline-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-light:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-light:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit:hover .icon > svg > path {
  fill: #313131;
  stroke: #313131;
}
.btn.btn-outline-light:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-light:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-light:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-light:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-light.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #313131;
  stroke: #313131;
}
.btn.btn-outline-dark, .active-campaign-form form[id^="_form_"] .btn-outline-dark._submit {
  --bs-btn-color: #313131;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #313131;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #313131;
  --bs-btn-hover-border-color: #313131;
  --bs-btn-focus-shadow-rgb: 49, 49, 49;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #4b4b4b;
  --bs-btn-active-border-color: #4b4b4b;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #313131;
}
.btn.btn-outline-dark:focus, .active-campaign-form form[id^="_form_"] .btn-outline-dark._submit:focus {
  border: 1px solid #313131;
}
.btn.btn-outline-dark:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-dark._submit:focus-visible {
  color: #ffffff;
}
.btn.btn-outline-dark:focus, .active-campaign-form form[id^="_form_"] .btn-outline-dark._submit:focus, .btn.btn-outline-dark.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-dark:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-dark._submit:focus > svg > g, .btn.btn-outline-dark:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-dark._submit:focus > svg > path, .btn.btn-outline-dark.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit .icon > svg > g, .btn.btn-outline-dark.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-dark:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-dark:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit:hover .icon > svg > path {
  fill: #ffffff;
  stroke: #ffffff;
}
.btn.btn-outline-dark:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-dark:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-dark:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-dark:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-dark.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #ffffff;
  stroke: #ffffff;
}
.btn.btn-outline-green-strong, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong._submit {
  --bs-btn-color: #3c6e64;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #3c6e64;
  --bs-btn-hover-color: #acd7c0;
  --bs-btn-hover-bg: #3c6e64;
  --bs-btn-hover-border-color: #3c6e64;
  --bs-btn-focus-shadow-rgb: 60, 110, 100;
  --bs-btn-active-color: #acd7c0;
  --bs-btn-active-bg: #2a4d46;
  --bs-btn-active-border-color: #2a4d46;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #3c6e64;
}
.btn.btn-outline-green-strong:focus, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong._submit:focus {
  border: 1px solid #3c6e64;
}
.btn.btn-outline-green-strong:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong._submit:focus-visible {
  color: #acd7c0;
}
.btn.btn-outline-green-strong:focus, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong._submit:focus, .btn.btn-outline-green-strong.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-green-strong:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong._submit:focus > svg > g, .btn.btn-outline-green-strong:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong._submit:focus > svg > path, .btn.btn-outline-green-strong.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit .icon > svg > g, .btn.btn-outline-green-strong.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-green-strong:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-green-strong:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit:hover .icon > svg > path {
  fill: #acd7c0;
  stroke: #acd7c0;
}
.btn.btn-outline-green-strong:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-green-strong:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-green-strong:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-green-strong:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-strong.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #acd7c0;
  stroke: #acd7c0;
}
.btn.btn-outline-green-subtle, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle._submit {
  --bs-btn-color: #acd7c0;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #acd7c0;
  --bs-btn-hover-color: #3c6e64;
  --bs-btn-hover-bg: #acd7c0;
  --bs-btn-hover-border-color: #acd7c0;
  --bs-btn-focus-shadow-rgb: 172, 215, 192;
  --bs-btn-active-color: #3c6e64;
  --bs-btn-active-bg: #8ac6a6;
  --bs-btn-active-border-color: #8ac6a6;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #acd7c0;
}
.btn.btn-outline-green-subtle:focus, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle._submit:focus {
  border: 1px solid #acd7c0;
}
.btn.btn-outline-green-subtle:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle._submit:focus-visible {
  color: #3c6e64;
}
.btn.btn-outline-green-subtle:focus, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle._submit:focus, .btn.btn-outline-green-subtle.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-green-subtle:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle._submit:focus > svg > g, .btn.btn-outline-green-subtle:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle._submit:focus > svg > path, .btn.btn-outline-green-subtle.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit .icon > svg > g, .btn.btn-outline-green-subtle.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-green-subtle:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-green-subtle:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit:hover .icon > svg > path {
  fill: #3c6e64;
  stroke: #3c6e64;
}
.btn.btn-outline-green-subtle:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-green-subtle:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-green-subtle:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-green-subtle:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-green-subtle.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #3c6e64;
  stroke: #3c6e64;
}
.btn.btn-outline-blue-strong, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong._submit {
  --bs-btn-color: #2d3e50;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #2d3e50;
  --bs-btn-hover-color: #bee2e7;
  --bs-btn-hover-bg: #2d3e50;
  --bs-btn-hover-border-color: #2d3e50;
  --bs-btn-focus-shadow-rgb: 45, 62, 80;
  --bs-btn-active-color: #bee2e7;
  --bs-btn-active-bg: #1b252f;
  --bs-btn-active-border-color: #1b252f;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #2d3e50;
}
.btn.btn-outline-blue-strong:focus, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong._submit:focus {
  border: 1px solid #2d3e50;
}
.btn.btn-outline-blue-strong:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong._submit:focus-visible {
  color: #bee2e7;
}
.btn.btn-outline-blue-strong:focus, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong._submit:focus, .btn.btn-outline-blue-strong.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-blue-strong:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong._submit:focus > svg > g, .btn.btn-outline-blue-strong:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong._submit:focus > svg > path, .btn.btn-outline-blue-strong.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit .icon > svg > g, .btn.btn-outline-blue-strong.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-blue-strong:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-blue-strong:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit:hover .icon > svg > path {
  fill: #bee2e7;
  stroke: #bee2e7;
}
.btn.btn-outline-blue-strong:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-blue-strong:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-blue-strong:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-blue-strong:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-strong.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #bee2e7;
  stroke: #bee2e7;
}
.btn.btn-outline-blue-subtle, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle._submit {
  --bs-btn-color: #59c0cc;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #59c0cc;
  --bs-btn-hover-color: #2d3e50;
  --bs-btn-hover-bg: #59c0cc;
  --bs-btn-hover-border-color: #59c0cc;
  --bs-btn-focus-shadow-rgb: 89, 192, 204;
  --bs-btn-active-color: #2d3e50;
  --bs-btn-active-bg: #39acb9;
  --bs-btn-active-border-color: #39acb9;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #59c0cc;
}
.btn.btn-outline-blue-subtle:focus, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle._submit:focus {
  border: 1px solid #59c0cc;
}
.btn.btn-outline-blue-subtle:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle._submit:focus-visible {
  color: #2d3e50;
}
.btn.btn-outline-blue-subtle:focus, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle._submit:focus, .btn.btn-outline-blue-subtle.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-blue-subtle:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle._submit:focus > svg > g, .btn.btn-outline-blue-subtle:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle._submit:focus > svg > path, .btn.btn-outline-blue-subtle.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit .icon > svg > g, .btn.btn-outline-blue-subtle.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-blue-subtle:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-blue-subtle:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit:hover .icon > svg > path {
  fill: #2d3e50;
  stroke: #2d3e50;
}
.btn.btn-outline-blue-subtle:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-blue-subtle:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-blue-subtle:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-blue-subtle:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #2d3e50;
  stroke: #2d3e50;
}
.btn.btn-outline-blue-subtle-light, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light._submit {
  --bs-btn-color: #bee2e7;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #bee2e7;
  --bs-btn-hover-color: #2d3e50;
  --bs-btn-hover-bg: #bee2e7;
  --bs-btn-hover-border-color: #bee2e7;
  --bs-btn-focus-shadow-rgb: 190, 226, 231;
  --bs-btn-active-color: #2d3e50;
  --bs-btn-active-bg: #99d1d9;
  --bs-btn-active-border-color: #99d1d9;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #bee2e7;
}
.btn.btn-outline-blue-subtle-light:focus, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light._submit:focus {
  border: 1px solid #bee2e7;
}
.btn.btn-outline-blue-subtle-light:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light._submit:focus-visible {
  color: #2d3e50;
}
.btn.btn-outline-blue-subtle-light:focus, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light._submit:focus, .btn.btn-outline-blue-subtle-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-blue-subtle-light:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light._submit:focus > svg > g, .btn.btn-outline-blue-subtle-light:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light._submit:focus > svg > path, .btn.btn-outline-blue-subtle-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit .icon > svg > g, .btn.btn-outline-blue-subtle-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-blue-subtle-light:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-blue-subtle-light:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit:hover .icon > svg > path {
  fill: #2d3e50;
  stroke: #2d3e50;
}
.btn.btn-outline-blue-subtle-light:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-blue-subtle-light:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-blue-subtle-light:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-blue-subtle-light:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-blue-subtle-light.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #2d3e50;
  stroke: #2d3e50;
}
.btn.btn-outline-brown-strong, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong._submit {
  --bs-btn-color: #a05e37;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #a05e37;
  --bs-btn-hover-color: #f1ead6;
  --bs-btn-hover-bg: #a05e37;
  --bs-btn-hover-border-color: #a05e37;
  --bs-btn-focus-shadow-rgb: 160, 94, 55;
  --bs-btn-active-color: #f1ead6;
  --bs-btn-active-bg: #7a482a;
  --bs-btn-active-border-color: #7a482a;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #a05e37;
}
.btn.btn-outline-brown-strong:focus, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong._submit:focus {
  border: 1px solid #a05e37;
}
.btn.btn-outline-brown-strong:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong._submit:focus-visible {
  color: #f1ead6;
}
.btn.btn-outline-brown-strong:focus, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong._submit:focus, .btn.btn-outline-brown-strong.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-brown-strong:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong._submit:focus > svg > g, .btn.btn-outline-brown-strong:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong._submit:focus > svg > path, .btn.btn-outline-brown-strong.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit .icon > svg > g, .btn.btn-outline-brown-strong.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-brown-strong:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-brown-strong:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit:hover .icon > svg > path {
  fill: #f1ead6;
  stroke: #f1ead6;
}
.btn.btn-outline-brown-strong:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-brown-strong:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-brown-strong:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-brown-strong:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-strong.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #f1ead6;
  stroke: #f1ead6;
}
.btn.btn-outline-brown-subtle, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle._submit {
  --bs-btn-color: #d8c8b4;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #d8c8b4;
  --bs-btn-hover-color: #a05e37;
  --bs-btn-hover-bg: #d8c8b4;
  --bs-btn-hover-border-color: #d8c8b4;
  --bs-btn-focus-shadow-rgb: 216, 200, 180;
  --bs-btn-active-color: #a05e37;
  --bs-btn-active-bg: #c7af92;
  --bs-btn-active-border-color: #c7af92;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #d8c8b4;
}
.btn.btn-outline-brown-subtle:focus, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle._submit:focus {
  border: 1px solid #d8c8b4;
}
.btn.btn-outline-brown-subtle:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle._submit:focus-visible {
  color: #a05e37;
}
.btn.btn-outline-brown-subtle:focus, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle._submit:focus, .btn.btn-outline-brown-subtle.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-brown-subtle:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle._submit:focus > svg > g, .btn.btn-outline-brown-subtle:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle._submit:focus > svg > path, .btn.btn-outline-brown-subtle.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit .icon > svg > g, .btn.btn-outline-brown-subtle.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-brown-subtle:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-brown-subtle:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit:hover .icon > svg > path {
  fill: #a05e37;
  stroke: #a05e37;
}
.btn.btn-outline-brown-subtle:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-brown-subtle:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-brown-subtle:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-brown-subtle:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #a05e37;
  stroke: #a05e37;
}
.btn.btn-outline-brown-subtle-light, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light._submit {
  --bs-btn-color: #f1ead6;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #f1ead6;
  --bs-btn-hover-color: #a05e37;
  --bs-btn-hover-bg: #f1ead6;
  --bs-btn-hover-border-color: #f1ead6;
  --bs-btn-focus-shadow-rgb: 241, 234, 214;
  --bs-btn-active-color: #a05e37;
  --bs-btn-active-bg: #e4d7b0;
  --bs-btn-active-border-color: #e4d7b0;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f1ead6;
}
.btn.btn-outline-brown-subtle-light:focus, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light._submit:focus {
  border: 1px solid #f1ead6;
}
.btn.btn-outline-brown-subtle-light:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light._submit:focus-visible {
  color: #a05e37;
}
.btn.btn-outline-brown-subtle-light:focus, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light._submit:focus, .btn.btn-outline-brown-subtle-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-brown-subtle-light:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light._submit:focus > svg > g, .btn.btn-outline-brown-subtle-light:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light._submit:focus > svg > path, .btn.btn-outline-brown-subtle-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit .icon > svg > g, .btn.btn-outline-brown-subtle-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-brown-subtle-light:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-brown-subtle-light:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit:hover .icon > svg > path {
  fill: #a05e37;
  stroke: #a05e37;
}
.btn.btn-outline-brown-subtle-light:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-brown-subtle-light:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-brown-subtle-light:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-brown-subtle-light:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-brown-subtle-light.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #a05e37;
  stroke: #a05e37;
}
.btn.btn-outline-pink-strong, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong._submit {
  --bs-btn-color: #7e2337;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #7e2337;
  --bs-btn-hover-color: #fbdbdb;
  --bs-btn-hover-bg: #7e2337;
  --bs-btn-hover-border-color: #7e2337;
  --bs-btn-focus-shadow-rgb: 126, 35, 55;
  --bs-btn-active-color: #fbdbdb;
  --bs-btn-active-bg: #561826;
  --bs-btn-active-border-color: #561826;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #7e2337;
}
.btn.btn-outline-pink-strong:focus, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong._submit:focus {
  border: 1px solid #7e2337;
}
.btn.btn-outline-pink-strong:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong._submit:focus-visible {
  color: #fbdbdb;
}
.btn.btn-outline-pink-strong:focus, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong._submit:focus, .btn.btn-outline-pink-strong.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-pink-strong:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong._submit:focus > svg > g, .btn.btn-outline-pink-strong:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong._submit:focus > svg > path, .btn.btn-outline-pink-strong.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit .icon > svg > g, .btn.btn-outline-pink-strong.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-pink-strong:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-pink-strong:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit:hover .icon > svg > path {
  fill: #fbdbdb;
  stroke: #fbdbdb;
}
.btn.btn-outline-pink-strong:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-pink-strong:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-pink-strong:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-pink-strong:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-strong.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #fbdbdb;
  stroke: #fbdbdb;
}
.btn.btn-outline-pink-subtle, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle._submit {
  --bs-btn-color: #f191ae;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #f191ae;
  --bs-btn-hover-color: #7e2337;
  --bs-btn-hover-bg: #f191ae;
  --bs-btn-hover-border-color: #f191ae;
  --bs-btn-focus-shadow-rgb: 241, 145, 174;
  --bs-btn-active-color: #7e2337;
  --bs-btn-active-bg: #eb648d;
  --bs-btn-active-border-color: #eb648d;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f191ae;
}
.btn.btn-outline-pink-subtle:focus, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle._submit:focus {
  border: 1px solid #f191ae;
}
.btn.btn-outline-pink-subtle:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle._submit:focus-visible {
  color: #7e2337;
}
.btn.btn-outline-pink-subtle:focus, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle._submit:focus, .btn.btn-outline-pink-subtle.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-pink-subtle:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle._submit:focus > svg > g, .btn.btn-outline-pink-subtle:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle._submit:focus > svg > path, .btn.btn-outline-pink-subtle.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit .icon > svg > g, .btn.btn-outline-pink-subtle.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-pink-subtle:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-pink-subtle:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit:hover .icon > svg > path {
  fill: #7e2337;
  stroke: #7e2337;
}
.btn.btn-outline-pink-subtle:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-pink-subtle:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-pink-subtle:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-pink-subtle:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #7e2337;
  stroke: #7e2337;
}
.btn.btn-outline-pink-subtle-light, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light._submit {
  --bs-btn-color: #fbdbdb;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #fbdbdb;
  --bs-btn-hover-color: #7e2337;
  --bs-btn-hover-bg: #fbdbdb;
  --bs-btn-hover-border-color: #fbdbdb;
  --bs-btn-focus-shadow-rgb: 251, 219, 219;
  --bs-btn-active-color: #7e2337;
  --bs-btn-active-bg: #f6adad;
  --bs-btn-active-border-color: #f6adad;
  --bs-btn-active-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04), 0 12px 10px 0 rgba(0, 0, 0, 0.05), 0 22px 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #fbdbdb;
}
.btn.btn-outline-pink-subtle-light:focus, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light._submit:focus {
  border: 1px solid #fbdbdb;
}
.btn.btn-outline-pink-subtle-light:focus-visible, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light._submit:focus-visible {
  color: #7e2337;
}
.btn.btn-outline-pink-subtle-light:focus, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light._submit:focus, .btn.btn-outline-pink-subtle-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-outline-pink-subtle-light:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light._submit:focus > svg > g, .btn.btn-outline-pink-subtle-light:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light._submit:focus > svg > path, .btn.btn-outline-pink-subtle-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit .icon > svg > g, .btn.btn-outline-pink-subtle-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-outline-pink-subtle-light:hover.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit:hover .icon > svg > g, .btn.btn-outline-pink-subtle-light:hover.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit:hover .icon > svg > path {
  fill: #7e2337;
  stroke: #7e2337;
}
.btn.btn-outline-pink-subtle-light:active.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit:active .icon > svg > g, .btn.btn-outline-pink-subtle-light:active.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit:active .icon > svg > path, .btn.btn-outline-pink-subtle-light:focus-visible.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit:focus-visible .icon > svg > g, .btn.btn-outline-pink-subtle-light:focus-visible.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-outline-pink-subtle-light.btn-icon._submit:focus-visible .icon > svg > path {
  fill: #7e2337;
  stroke: #7e2337;
}
.btn.btn-link, .active-campaign-form form[id^="_form_"] .btn-link._submit, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all, .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-light, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn-light, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-link, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link, .filter-panel-active-container .btn.filter-reset-all, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-weight: 400;
  border: none;
  padding: 0;
  margin-top: 4px;
  border-radius: 0;
  line-height: 24px;
  color: #1f3e4f;
}
.btn.btn-link::after, .active-campaign-form form[id^="_form_"] .btn-link._submit::after, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all::after, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all::after, .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-light::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn-light::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-link::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link::after, .filter-panel-active-container .btn.filter-reset-all::after, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit::after, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
.btn.btn-link:hover, .active-campaign-form form[id^="_form_"] .btn-link._submit:hover, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all:hover, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all:hover, .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all:hover, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-light:hover, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn-light:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light:hover, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-link:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link:hover, .filter-panel-active-container .btn.filter-reset-all:hover, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:hover, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:hover, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:hover, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:hover {
  text-decoration: none;
}
.btn.btn-link:hover::after, .active-campaign-form form[id^="_form_"] .btn-link._submit:hover::after, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all:hover::after, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all:hover::after, .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all:hover::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-light:hover::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn-light:hover::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light:hover::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-link:hover::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link:hover::after, .filter-panel-active-container .btn.filter-reset-all:hover::after, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:hover::after, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:hover::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:hover::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:hover::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:hover::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.btn.btn-link:focus, .active-campaign-form form[id^="_form_"] .btn-link._submit:focus, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all:focus, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all:focus, .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all:focus, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-light:focus, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn-light:focus, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light:focus, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-link:focus, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link:focus, .filter-panel-active-container .btn.filter-reset-all:focus, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:focus, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:focus, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:focus, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:focus, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:focus, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:focus, .btn.btn-link.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-link.btn-icon._submit .icon, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon._submit.btn.filter-reset-all .icon, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon._submit.filter-reset-all .icon, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.filter-reset-all .icon, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn.btn-light .icon, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn-light .icon, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.btn-light .icon, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn.btn-link .icon, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.btn-link .icon, .filter-panel-active-container .btn.btn-icon.filter-reset-all .icon, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .btn-icon.filter-reset-all._submit .icon, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon.filter-reset-all._submit .icon, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-icon.btn-light .icon, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon.btn-light._submit .icon, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon.btn-light._submit .icon, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-icon.btn-link .icon {
  height: unset;
}
.btn.btn-link:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-link._submit:focus > svg > g, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all:focus > svg > g, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all:focus > svg > g, .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all:focus > svg > g, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-light:focus > svg > g, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn-light:focus > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light:focus > svg > g, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-link:focus > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link:focus > svg > g, .filter-panel-active-container .btn.filter-reset-all:focus > svg > g, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:focus > svg > g, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:focus > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:focus > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:focus > svg > g, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:focus > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:focus > svg > g, .btn.btn-link:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-link._submit:focus > svg > path, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all:focus > svg > path, .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all:focus > svg > path, .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all:focus > svg > path, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-light:focus > svg > path, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn-light:focus > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light:focus > svg > path, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header ._submit.btn.btn-link:focus > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link:focus > svg > path, .filter-panel-active-container .btn.filter-reset-all:focus > svg > path, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:focus > svg > path, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:focus > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light:focus > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit:focus > svg > path, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit:focus > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link:focus > svg > path, .btn.btn-link.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-link.btn-icon._submit .icon > svg > g, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon._submit.btn.filter-reset-all .icon > svg > g, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon._submit.filter-reset-all .icon > svg > g, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.filter-reset-all .icon > svg > g, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn.btn-light .icon > svg > g, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn-light .icon > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.btn-light .icon > svg > g, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn.btn-link .icon > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.btn-link .icon > svg > g, .filter-panel-active-container .btn.btn-icon.filter-reset-all .icon > svg > g, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .btn-icon.filter-reset-all._submit .icon > svg > g, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon.filter-reset-all._submit .icon > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-icon.btn-light .icon > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon.btn-light._submit .icon > svg > g, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon.btn-light._submit .icon > svg > g, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-icon.btn-link .icon > svg > g, .btn.btn-link.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-link.btn-icon._submit .icon > svg > path, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon._submit.btn.filter-reset-all .icon > svg > path, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon._submit.filter-reset-all .icon > svg > path, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.filter-reset-all .icon > svg > path, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn.btn-light .icon > svg > path, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn-light .icon > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.btn-light .icon > svg > path, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon._submit.btn.btn-link .icon > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon._submit.btn.btn-link .icon > svg > path, .filter-panel-active-container .btn.btn-icon.filter-reset-all .icon > svg > path, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .btn-icon.filter-reset-all._submit .icon > svg > path, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .btn-icon.filter-reset-all._submit .icon > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-icon.btn-light .icon > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-icon.btn-light._submit .icon > svg > path, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-icon.btn-light._submit .icon > svg > path, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-icon.btn-link .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-link-light, .active-campaign-form form[id^="_form_"] .btn-link-light._submit {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-weight: 400;
  border: none;
  padding: 0;
  margin-top: 4px;
  border-radius: 0;
  line-height: 24px;
  color: #f5f2f0;
}
.btn.btn-link-light::after, .active-campaign-form form[id^="_form_"] .btn-link-light._submit::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
.btn.btn-link-light:hover, .active-campaign-form form[id^="_form_"] .btn-link-light._submit:hover {
  text-decoration: none;
}
.btn.btn-link-light:hover::after, .active-campaign-form form[id^="_form_"] .btn-link-light._submit:hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.btn.btn-link-light:focus, .active-campaign-form form[id^="_form_"] .btn-link-light._submit:focus, .btn.btn-link-light.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-link-light.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-link-light:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-link-light._submit:focus > svg > g, .btn.btn-link-light:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-link-light._submit:focus > svg > path, .btn.btn-link-light.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-link-light.btn-icon._submit .icon > svg > g, .btn.btn-link-light.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-link-light.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-link-dark, .active-campaign-form form[id^="_form_"] .btn-link-dark._submit {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-weight: 400;
  border: none;
  padding: 0;
  margin-top: 4px;
  border-radius: 0;
  line-height: 24px;
  color: #1f3e4f;
}
.btn.btn-link-dark::after, .active-campaign-form form[id^="_form_"] .btn-link-dark._submit::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
.btn.btn-link-dark:hover, .active-campaign-form form[id^="_form_"] .btn-link-dark._submit:hover {
  text-decoration: none;
}
.btn.btn-link-dark:hover::after, .active-campaign-form form[id^="_form_"] .btn-link-dark._submit:hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.btn.btn-link-dark:focus, .active-campaign-form form[id^="_form_"] .btn-link-dark._submit:focus, .btn.btn-link-dark.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-link-dark.btn-icon._submit .icon {
  height: unset;
}
.btn.btn-link-dark:focus > svg > g, .active-campaign-form form[id^="_form_"] .btn-link-dark._submit:focus > svg > g, .btn.btn-link-dark:focus > svg > path, .active-campaign-form form[id^="_form_"] .btn-link-dark._submit:focus > svg > path, .btn.btn-link-dark.btn-icon .icon > svg > g, .active-campaign-form form[id^="_form_"] .btn-link-dark.btn-icon._submit .icon > svg > g, .btn.btn-link-dark.btn-icon .icon > svg > path, .active-campaign-form form[id^="_form_"] .btn-link-dark.btn-icon._submit .icon > svg > path {
  fill: currentColor;
  stroke: currentColor;
}
.btn.btn-icon, .active-campaign-form form[id^="_form_"] .btn-icon._submit {
  overflow: visible;
}
.btn.btn-icon .icon, .active-campaign-form form[id^="_form_"] .btn-icon._submit .icon {
  width: unset;
  color: unset;
  margin-left: 0.4em;
}
.btn.btn-icon.icon-left .icon, .active-campaign-form form[id^="_form_"] .btn-icon.icon-left._submit .icon {
  margin-left: 0;
  margin-right: 0.4em;
}
.btn .label, .active-campaign-form form[id^="_form_"] ._submit .label {
  margin-bottom: 1px;
}
.btn .label--short, .active-campaign-form form[id^="_form_"] ._submit .label--short {
  display: initial;
}
@media (min-width: 576px) {
  .btn .label--short, .active-campaign-form form[id^="_form_"] ._submit .label--short {
    display: none;
  }
}
.btn .label--full, .active-campaign-form form[id^="_form_"] ._submit .label--full {
  display: none;
}
@media (min-width: 576px) {
  .btn .label--full, .active-campaign-form form[id^="_form_"] ._submit .label--full {
    display: initial;
  }
}
button:focus-visible {
  outline: revert;
}
.no-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.input-group > button {
  padding: 0.75rem 1.5rem;
}
.form-check {
  display: flex;
  align-items: center;
}
.form-check .valid-feedback, .form-check .invalid-feedback {
  flex-basis: 100%;
  padding-left: 0.25rem;
}
.form-check-label {
  display: flex;
  align-items: center;
}
.form-check-input {
  margin-top: 2px;
  /* stylelint-disable no-descending-specificity */
}
.form-check-input + .form-check-label, .form-check-input + .custom-control-label, .form-check-input + .invalid-feedback {
  padding-left: 0.75rem;
}
.form-required-label {
  color: #f80000;
}
.valid-feedback, .invalid-feedback {
  font-size: 0.875rem;
}
.invalid-feedback {
  margin-top: 0;
}
.was-validated .form-control:invalid, .was-validated .form-control.is-invalid, .was-validated .form-control:valid, .was-validated .form-control.is-valid {
  background-position: calc(100% - 15px) 50%;
}
.form-control:focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
}
.table td, .table th {
  background-color: transparent !important;
}
[type="button"] {
  appearance: unset;
}
picture > img {
  display: block;
}
.scroll-up-container > .scroll-up-button {
  display: none;
}
.loader-spinner {
  width: 38px;
  height: 38px;
  border: 4px solid #59c0cc;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slide-animation-1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
  150% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--1 {
  animation: slide-animation-1 3s infinite;
}
@keyframes slide-animation-2 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-200%);
  }
  125% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--2 {
  animation: slide-animation-2 6s infinite;
}
@keyframes slide-animation-3 {
  0% {
    transform: translateX(0);
  }
  16.6666666667% {
    transform: translateX(0);
  }
  33.3333333333% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%);
  }
  66.6666666667% {
    transform: translateX(-200%);
  }
  83.3333333333% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-300%);
  }
  116.6666666667% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--3 {
  animation: slide-animation-3 9s infinite;
}
@keyframes slide-animation-4 {
  0% {
    transform: translateX(0);
  }
  12.5% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  37.5% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  62.5% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  87.5% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-400%);
  }
  112.5% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--4 {
  animation: slide-animation-4 12s infinite;
}
@keyframes slide-animation-5 {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(-200%);
  }
  50% {
    transform: translateX(-200%);
  }
  60% {
    transform: translateX(-300%);
  }
  70% {
    transform: translateX(-300%);
  }
  80% {
    transform: translateX(-400%);
  }
  90% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(-500%);
  }
  110% {
    transform: translateX(-500%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--5 {
  animation: slide-animation-5 15s infinite;
}
@keyframes slide-animation-6 {
  0% {
    transform: translateX(0);
  }
  8.3333333333% {
    transform: translateX(0);
  }
  16.6666666667% {
    transform: translateX(-100%);
  }
  25% {
    transform: translateX(-100%);
  }
  33.3333333333% {
    transform: translateX(-200%);
  }
  41.6666666667% {
    transform: translateX(-200%);
  }
  50% {
    transform: translateX(-300%);
  }
  58.3333333333% {
    transform: translateX(-300%);
  }
  66.6666666667% {
    transform: translateX(-400%);
  }
  75% {
    transform: translateX(-400%);
  }
  83.3333333333% {
    transform: translateX(-500%);
  }
  91.6666666667% {
    transform: translateX(-500%);
  }
  100% {
    transform: translateX(-600%);
  }
  108.3333333333% {
    transform: translateX(-600%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--6 {
  animation: slide-animation-6 18s infinite;
}
@keyframes slide-animation-7 {
  0% {
    transform: translateX(0);
  }
  7.1428571429% {
    transform: translateX(0);
  }
  14.2857142857% {
    transform: translateX(-100%);
  }
  21.4285714286% {
    transform: translateX(-100%);
  }
  28.5714285714% {
    transform: translateX(-200%);
  }
  35.7142857143% {
    transform: translateX(-200%);
  }
  42.8571428571% {
    transform: translateX(-300%);
  }
  50% {
    transform: translateX(-300%);
  }
  57.1428571429% {
    transform: translateX(-400%);
  }
  64.2857142857% {
    transform: translateX(-400%);
  }
  71.4285714286% {
    transform: translateX(-500%);
  }
  78.5714285714% {
    transform: translateX(-500%);
  }
  85.7142857143% {
    transform: translateX(-600%);
  }
  92.8571428571% {
    transform: translateX(-600%);
  }
  100% {
    transform: translateX(-700%);
  }
  107.1428571429% {
    transform: translateX(-700%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--7 {
  animation: slide-animation-7 21s infinite;
}
@keyframes slide-animation-8 {
  0% {
    transform: translateX(0);
  }
  6.25% {
    transform: translateX(0);
  }
  12.5% {
    transform: translateX(-100%);
  }
  18.75% {
    transform: translateX(-100%);
  }
  25% {
    transform: translateX(-200%);
  }
  31.25% {
    transform: translateX(-200%);
  }
  37.5% {
    transform: translateX(-300%);
  }
  43.75% {
    transform: translateX(-300%);
  }
  50% {
    transform: translateX(-400%);
  }
  56.25% {
    transform: translateX(-400%);
  }
  62.5% {
    transform: translateX(-500%);
  }
  68.75% {
    transform: translateX(-500%);
  }
  75% {
    transform: translateX(-600%);
  }
  81.25% {
    transform: translateX(-600%);
  }
  87.5% {
    transform: translateX(-700%);
  }
  93.75% {
    transform: translateX(-700%);
  }
  100% {
    transform: translateX(-800%);
  }
  106.25% {
    transform: translateX(-800%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--8 {
  animation: slide-animation-8 24s infinite;
}
@keyframes slide-animation-9 {
  0% {
    transform: translateX(0);
  }
  5.5555555556% {
    transform: translateX(0);
  }
  11.1111111111% {
    transform: translateX(-100%);
  }
  16.6666666667% {
    transform: translateX(-100%);
  }
  22.2222222222% {
    transform: translateX(-200%);
  }
  27.7777777778% {
    transform: translateX(-200%);
  }
  33.3333333333% {
    transform: translateX(-300%);
  }
  38.8888888889% {
    transform: translateX(-300%);
  }
  44.4444444444% {
    transform: translateX(-400%);
  }
  50% {
    transform: translateX(-400%);
  }
  55.5555555556% {
    transform: translateX(-500%);
  }
  61.1111111111% {
    transform: translateX(-500%);
  }
  66.6666666667% {
    transform: translateX(-600%);
  }
  72.2222222222% {
    transform: translateX(-600%);
  }
  77.7777777778% {
    transform: translateX(-700%);
  }
  83.3333333333% {
    transform: translateX(-700%);
  }
  88.8888888889% {
    transform: translateX(-800%);
  }
  94.4444444444% {
    transform: translateX(-800%);
  }
  100% {
    transform: translateX(-900%);
  }
  105.5555555556% {
    transform: translateX(-900%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--9 {
  animation: slide-animation-9 27s infinite;
}
@keyframes slide-animation-10 {
  0% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-100%);
  }
  15% {
    transform: translateX(-100%);
  }
  20% {
    transform: translateX(-200%);
  }
  25% {
    transform: translateX(-200%);
  }
  30% {
    transform: translateX(-300%);
  }
  35% {
    transform: translateX(-300%);
  }
  40% {
    transform: translateX(-400%);
  }
  45% {
    transform: translateX(-400%);
  }
  50% {
    transform: translateX(-500%);
  }
  55% {
    transform: translateX(-500%);
  }
  60% {
    transform: translateX(-600%);
  }
  65% {
    transform: translateX(-600%);
  }
  70% {
    transform: translateX(-700%);
  }
  75% {
    transform: translateX(-700%);
  }
  80% {
    transform: translateX(-800%);
  }
  85% {
    transform: translateX(-800%);
  }
  90% {
    transform: translateX(-900%);
  }
  95% {
    transform: translateX(-900%);
  }
  100% {
    transform: translateX(-1000%);
  }
  105% {
    transform: translateX(-1000%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--10 {
  animation: slide-animation-10 30s infinite;
}
@keyframes slide-animation-11 {
  0% {
    transform: translateX(0);
  }
  4.5454545455% {
    transform: translateX(0);
  }
  9.0909090909% {
    transform: translateX(-100%);
  }
  13.6363636364% {
    transform: translateX(-100%);
  }
  18.1818181818% {
    transform: translateX(-200%);
  }
  22.7272727273% {
    transform: translateX(-200%);
  }
  27.2727272727% {
    transform: translateX(-300%);
  }
  31.8181818182% {
    transform: translateX(-300%);
  }
  36.3636363636% {
    transform: translateX(-400%);
  }
  40.9090909091% {
    transform: translateX(-400%);
  }
  45.4545454545% {
    transform: translateX(-500%);
  }
  50% {
    transform: translateX(-500%);
  }
  54.5454545455% {
    transform: translateX(-600%);
  }
  59.0909090909% {
    transform: translateX(-600%);
  }
  63.6363636364% {
    transform: translateX(-700%);
  }
  68.1818181818% {
    transform: translateX(-700%);
  }
  72.7272727273% {
    transform: translateX(-800%);
  }
  77.2727272727% {
    transform: translateX(-800%);
  }
  81.8181818182% {
    transform: translateX(-900%);
  }
  86.3636363636% {
    transform: translateX(-900%);
  }
  90.9090909091% {
    transform: translateX(-1000%);
  }
  95.4545454545% {
    transform: translateX(-1000%);
  }
  100% {
    transform: translateX(-1100%);
  }
  104.5454545455% {
    transform: translateX(-1100%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--11 {
  animation: slide-animation-11 33s infinite;
}
@keyframes slide-animation-12 {
  0% {
    transform: translateX(0);
  }
  4.1666666667% {
    transform: translateX(0);
  }
  8.3333333333% {
    transform: translateX(-100%);
  }
  12.5% {
    transform: translateX(-100%);
  }
  16.6666666667% {
    transform: translateX(-200%);
  }
  20.8333333333% {
    transform: translateX(-200%);
  }
  25% {
    transform: translateX(-300%);
  }
  29.1666666667% {
    transform: translateX(-300%);
  }
  33.3333333333% {
    transform: translateX(-400%);
  }
  37.5% {
    transform: translateX(-400%);
  }
  41.6666666667% {
    transform: translateX(-500%);
  }
  45.8333333333% {
    transform: translateX(-500%);
  }
  50% {
    transform: translateX(-600%);
  }
  54.1666666667% {
    transform: translateX(-600%);
  }
  58.3333333333% {
    transform: translateX(-700%);
  }
  62.5% {
    transform: translateX(-700%);
  }
  66.6666666667% {
    transform: translateX(-800%);
  }
  70.8333333333% {
    transform: translateX(-800%);
  }
  75% {
    transform: translateX(-900%);
  }
  79.1666666667% {
    transform: translateX(-900%);
  }
  83.3333333333% {
    transform: translateX(-1000%);
  }
  87.5% {
    transform: translateX(-1000%);
  }
  91.6666666667% {
    transform: translateX(-1100%);
  }
  95.8333333333% {
    transform: translateX(-1100%);
  }
  100% {
    transform: translateX(-1200%);
  }
  104.1666666667% {
    transform: translateX(-1200%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--12 {
  animation: slide-animation-12 36s infinite;
}
@keyframes slide-animation-13 {
  0% {
    transform: translateX(0);
  }
  3.8461538462% {
    transform: translateX(0);
  }
  7.6923076923% {
    transform: translateX(-100%);
  }
  11.5384615385% {
    transform: translateX(-100%);
  }
  15.3846153846% {
    transform: translateX(-200%);
  }
  19.2307692308% {
    transform: translateX(-200%);
  }
  23.0769230769% {
    transform: translateX(-300%);
  }
  26.9230769231% {
    transform: translateX(-300%);
  }
  30.7692307692% {
    transform: translateX(-400%);
  }
  34.6153846154% {
    transform: translateX(-400%);
  }
  38.4615384615% {
    transform: translateX(-500%);
  }
  42.3076923077% {
    transform: translateX(-500%);
  }
  46.1538461538% {
    transform: translateX(-600%);
  }
  50% {
    transform: translateX(-600%);
  }
  53.8461538462% {
    transform: translateX(-700%);
  }
  57.6923076923% {
    transform: translateX(-700%);
  }
  61.5384615385% {
    transform: translateX(-800%);
  }
  65.3846153846% {
    transform: translateX(-800%);
  }
  69.2307692308% {
    transform: translateX(-900%);
  }
  73.0769230769% {
    transform: translateX(-900%);
  }
  76.9230769231% {
    transform: translateX(-1000%);
  }
  80.7692307692% {
    transform: translateX(-1000%);
  }
  84.6153846154% {
    transform: translateX(-1100%);
  }
  88.4615384615% {
    transform: translateX(-1100%);
  }
  92.3076923077% {
    transform: translateX(-1200%);
  }
  96.1538461538% {
    transform: translateX(-1200%);
  }
  100% {
    transform: translateX(-1300%);
  }
  103.8461538462% {
    transform: translateX(-1300%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--13 {
  animation: slide-animation-13 39s infinite;
}
@keyframes slide-animation-14 {
  0% {
    transform: translateX(0);
  }
  3.5714285714% {
    transform: translateX(0);
  }
  7.1428571429% {
    transform: translateX(-100%);
  }
  10.7142857143% {
    transform: translateX(-100%);
  }
  14.2857142857% {
    transform: translateX(-200%);
  }
  17.8571428571% {
    transform: translateX(-200%);
  }
  21.4285714286% {
    transform: translateX(-300%);
  }
  25% {
    transform: translateX(-300%);
  }
  28.5714285714% {
    transform: translateX(-400%);
  }
  32.1428571429% {
    transform: translateX(-400%);
  }
  35.7142857143% {
    transform: translateX(-500%);
  }
  39.2857142857% {
    transform: translateX(-500%);
  }
  42.8571428571% {
    transform: translateX(-600%);
  }
  46.4285714286% {
    transform: translateX(-600%);
  }
  50% {
    transform: translateX(-700%);
  }
  53.5714285714% {
    transform: translateX(-700%);
  }
  57.1428571429% {
    transform: translateX(-800%);
  }
  60.7142857143% {
    transform: translateX(-800%);
  }
  64.2857142857% {
    transform: translateX(-900%);
  }
  67.8571428571% {
    transform: translateX(-900%);
  }
  71.4285714286% {
    transform: translateX(-1000%);
  }
  75% {
    transform: translateX(-1000%);
  }
  78.5714285714% {
    transform: translateX(-1100%);
  }
  82.1428571429% {
    transform: translateX(-1100%);
  }
  85.7142857143% {
    transform: translateX(-1200%);
  }
  89.2857142857% {
    transform: translateX(-1200%);
  }
  92.8571428571% {
    transform: translateX(-1300%);
  }
  96.4285714286% {
    transform: translateX(-1300%);
  }
  100% {
    transform: translateX(-1400%);
  }
  103.5714285714% {
    transform: translateX(-1400%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--14 {
  animation: slide-animation-14 42s infinite;
}
@keyframes slide-animation-15 {
  0% {
    transform: translateX(0);
  }
  3.3333333333% {
    transform: translateX(0);
  }
  6.6666666667% {
    transform: translateX(-100%);
  }
  10% {
    transform: translateX(-100%);
  }
  13.3333333333% {
    transform: translateX(-200%);
  }
  16.6666666667% {
    transform: translateX(-200%);
  }
  20% {
    transform: translateX(-300%);
  }
  23.3333333333% {
    transform: translateX(-300%);
  }
  26.6666666667% {
    transform: translateX(-400%);
  }
  30% {
    transform: translateX(-400%);
  }
  33.3333333333% {
    transform: translateX(-500%);
  }
  36.6666666667% {
    transform: translateX(-500%);
  }
  40% {
    transform: translateX(-600%);
  }
  43.3333333333% {
    transform: translateX(-600%);
  }
  46.6666666667% {
    transform: translateX(-700%);
  }
  50% {
    transform: translateX(-700%);
  }
  53.3333333333% {
    transform: translateX(-800%);
  }
  56.6666666667% {
    transform: translateX(-800%);
  }
  60% {
    transform: translateX(-900%);
  }
  63.3333333333% {
    transform: translateX(-900%);
  }
  66.6666666667% {
    transform: translateX(-1000%);
  }
  70% {
    transform: translateX(-1000%);
  }
  73.3333333333% {
    transform: translateX(-1100%);
  }
  76.6666666667% {
    transform: translateX(-1100%);
  }
  80% {
    transform: translateX(-1200%);
  }
  83.3333333333% {
    transform: translateX(-1200%);
  }
  86.6666666667% {
    transform: translateX(-1300%);
  }
  90% {
    transform: translateX(-1300%);
  }
  93.3333333333% {
    transform: translateX(-1400%);
  }
  96.6666666667% {
    transform: translateX(-1400%);
  }
  100% {
    transform: translateX(-1500%);
  }
  103.3333333333% {
    transform: translateX(-1500%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--15 {
  animation: slide-animation-15 45s infinite;
}
@keyframes slide-animation-16 {
  0% {
    transform: translateX(0);
  }
  3.125% {
    transform: translateX(0);
  }
  6.25% {
    transform: translateX(-100%);
  }
  9.375% {
    transform: translateX(-100%);
  }
  12.5% {
    transform: translateX(-200%);
  }
  15.625% {
    transform: translateX(-200%);
  }
  18.75% {
    transform: translateX(-300%);
  }
  21.875% {
    transform: translateX(-300%);
  }
  25% {
    transform: translateX(-400%);
  }
  28.125% {
    transform: translateX(-400%);
  }
  31.25% {
    transform: translateX(-500%);
  }
  34.375% {
    transform: translateX(-500%);
  }
  37.5% {
    transform: translateX(-600%);
  }
  40.625% {
    transform: translateX(-600%);
  }
  43.75% {
    transform: translateX(-700%);
  }
  46.875% {
    transform: translateX(-700%);
  }
  50% {
    transform: translateX(-800%);
  }
  53.125% {
    transform: translateX(-800%);
  }
  56.25% {
    transform: translateX(-900%);
  }
  59.375% {
    transform: translateX(-900%);
  }
  62.5% {
    transform: translateX(-1000%);
  }
  65.625% {
    transform: translateX(-1000%);
  }
  68.75% {
    transform: translateX(-1100%);
  }
  71.875% {
    transform: translateX(-1100%);
  }
  75% {
    transform: translateX(-1200%);
  }
  78.125% {
    transform: translateX(-1200%);
  }
  81.25% {
    transform: translateX(-1300%);
  }
  84.375% {
    transform: translateX(-1300%);
  }
  87.5% {
    transform: translateX(-1400%);
  }
  90.625% {
    transform: translateX(-1400%);
  }
  93.75% {
    transform: translateX(-1500%);
  }
  96.875% {
    transform: translateX(-1500%);
  }
  100% {
    transform: translateX(-1600%);
  }
  103.125% {
    transform: translateX(-1600%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--16 {
  animation: slide-animation-16 48s infinite;
}
@keyframes slide-animation-17 {
  0% {
    transform: translateX(0);
  }
  2.9411764706% {
    transform: translateX(0);
  }
  5.8823529412% {
    transform: translateX(-100%);
  }
  8.8235294118% {
    transform: translateX(-100%);
  }
  11.7647058824% {
    transform: translateX(-200%);
  }
  14.7058823529% {
    transform: translateX(-200%);
  }
  17.6470588235% {
    transform: translateX(-300%);
  }
  20.5882352941% {
    transform: translateX(-300%);
  }
  23.5294117647% {
    transform: translateX(-400%);
  }
  26.4705882353% {
    transform: translateX(-400%);
  }
  29.4117647059% {
    transform: translateX(-500%);
  }
  32.3529411765% {
    transform: translateX(-500%);
  }
  35.2941176471% {
    transform: translateX(-600%);
  }
  38.2352941176% {
    transform: translateX(-600%);
  }
  41.1764705882% {
    transform: translateX(-700%);
  }
  44.1176470588% {
    transform: translateX(-700%);
  }
  47.0588235294% {
    transform: translateX(-800%);
  }
  50% {
    transform: translateX(-800%);
  }
  52.9411764706% {
    transform: translateX(-900%);
  }
  55.8823529412% {
    transform: translateX(-900%);
  }
  58.8235294118% {
    transform: translateX(-1000%);
  }
  61.7647058824% {
    transform: translateX(-1000%);
  }
  64.7058823529% {
    transform: translateX(-1100%);
  }
  67.6470588235% {
    transform: translateX(-1100%);
  }
  70.5882352941% {
    transform: translateX(-1200%);
  }
  73.5294117647% {
    transform: translateX(-1200%);
  }
  76.4705882353% {
    transform: translateX(-1300%);
  }
  79.4117647059% {
    transform: translateX(-1300%);
  }
  82.3529411765% {
    transform: translateX(-1400%);
  }
  85.2941176471% {
    transform: translateX(-1400%);
  }
  88.2352941176% {
    transform: translateX(-1500%);
  }
  91.1764705882% {
    transform: translateX(-1500%);
  }
  94.1176470588% {
    transform: translateX(-1600%);
  }
  97.0588235294% {
    transform: translateX(-1600%);
  }
  100% {
    transform: translateX(-1700%);
  }
  102.9411764706% {
    transform: translateX(-1700%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--17 {
  animation: slide-animation-17 51s infinite;
}
@keyframes slide-animation-18 {
  0% {
    transform: translateX(0);
  }
  2.7777777778% {
    transform: translateX(0);
  }
  5.5555555556% {
    transform: translateX(-100%);
  }
  8.3333333333% {
    transform: translateX(-100%);
  }
  11.1111111111% {
    transform: translateX(-200%);
  }
  13.8888888889% {
    transform: translateX(-200%);
  }
  16.6666666667% {
    transform: translateX(-300%);
  }
  19.4444444444% {
    transform: translateX(-300%);
  }
  22.2222222222% {
    transform: translateX(-400%);
  }
  25% {
    transform: translateX(-400%);
  }
  27.7777777778% {
    transform: translateX(-500%);
  }
  30.5555555556% {
    transform: translateX(-500%);
  }
  33.3333333333% {
    transform: translateX(-600%);
  }
  36.1111111111% {
    transform: translateX(-600%);
  }
  38.8888888889% {
    transform: translateX(-700%);
  }
  41.6666666667% {
    transform: translateX(-700%);
  }
  44.4444444444% {
    transform: translateX(-800%);
  }
  47.2222222222% {
    transform: translateX(-800%);
  }
  50% {
    transform: translateX(-900%);
  }
  52.7777777778% {
    transform: translateX(-900%);
  }
  55.5555555556% {
    transform: translateX(-1000%);
  }
  58.3333333333% {
    transform: translateX(-1000%);
  }
  61.1111111111% {
    transform: translateX(-1100%);
  }
  63.8888888889% {
    transform: translateX(-1100%);
  }
  66.6666666667% {
    transform: translateX(-1200%);
  }
  69.4444444444% {
    transform: translateX(-1200%);
  }
  72.2222222222% {
    transform: translateX(-1300%);
  }
  75% {
    transform: translateX(-1300%);
  }
  77.7777777778% {
    transform: translateX(-1400%);
  }
  80.5555555556% {
    transform: translateX(-1400%);
  }
  83.3333333333% {
    transform: translateX(-1500%);
  }
  86.1111111111% {
    transform: translateX(-1500%);
  }
  88.8888888889% {
    transform: translateX(-1600%);
  }
  91.6666666667% {
    transform: translateX(-1600%);
  }
  94.4444444444% {
    transform: translateX(-1700%);
  }
  97.2222222222% {
    transform: translateX(-1700%);
  }
  100% {
    transform: translateX(-1800%);
  }
  102.7777777778% {
    transform: translateX(-1800%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--18 {
  animation: slide-animation-18 54s infinite;
}
@keyframes slide-animation-19 {
  0% {
    transform: translateX(0);
  }
  2.6315789474% {
    transform: translateX(0);
  }
  5.2631578947% {
    transform: translateX(-100%);
  }
  7.8947368421% {
    transform: translateX(-100%);
  }
  10.5263157895% {
    transform: translateX(-200%);
  }
  13.1578947368% {
    transform: translateX(-200%);
  }
  15.7894736842% {
    transform: translateX(-300%);
  }
  18.4210526316% {
    transform: translateX(-300%);
  }
  21.0526315789% {
    transform: translateX(-400%);
  }
  23.6842105263% {
    transform: translateX(-400%);
  }
  26.3157894737% {
    transform: translateX(-500%);
  }
  28.9473684211% {
    transform: translateX(-500%);
  }
  31.5789473684% {
    transform: translateX(-600%);
  }
  34.2105263158% {
    transform: translateX(-600%);
  }
  36.8421052632% {
    transform: translateX(-700%);
  }
  39.4736842105% {
    transform: translateX(-700%);
  }
  42.1052631579% {
    transform: translateX(-800%);
  }
  44.7368421053% {
    transform: translateX(-800%);
  }
  47.3684210526% {
    transform: translateX(-900%);
  }
  50% {
    transform: translateX(-900%);
  }
  52.6315789474% {
    transform: translateX(-1000%);
  }
  55.2631578947% {
    transform: translateX(-1000%);
  }
  57.8947368421% {
    transform: translateX(-1100%);
  }
  60.5263157895% {
    transform: translateX(-1100%);
  }
  63.1578947368% {
    transform: translateX(-1200%);
  }
  65.7894736842% {
    transform: translateX(-1200%);
  }
  68.4210526316% {
    transform: translateX(-1300%);
  }
  71.0526315789% {
    transform: translateX(-1300%);
  }
  73.6842105263% {
    transform: translateX(-1400%);
  }
  76.3157894737% {
    transform: translateX(-1400%);
  }
  78.9473684211% {
    transform: translateX(-1500%);
  }
  81.5789473684% {
    transform: translateX(-1500%);
  }
  84.2105263158% {
    transform: translateX(-1600%);
  }
  86.8421052632% {
    transform: translateX(-1600%);
  }
  89.4736842105% {
    transform: translateX(-1700%);
  }
  92.1052631579% {
    transform: translateX(-1700%);
  }
  94.7368421053% {
    transform: translateX(-1800%);
  }
  97.3684210526% {
    transform: translateX(-1800%);
  }
  100% {
    transform: translateX(-1900%);
  }
  102.6315789474% {
    transform: translateX(-1900%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--19 {
  animation: slide-animation-19 57s infinite;
}
@keyframes slide-animation-20 {
  0% {
    transform: translateX(0);
  }
  2.5% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(-100%);
  }
  7.5% {
    transform: translateX(-100%);
  }
  10% {
    transform: translateX(-200%);
  }
  12.5% {
    transform: translateX(-200%);
  }
  15% {
    transform: translateX(-300%);
  }
  17.5% {
    transform: translateX(-300%);
  }
  20% {
    transform: translateX(-400%);
  }
  22.5% {
    transform: translateX(-400%);
  }
  25% {
    transform: translateX(-500%);
  }
  27.5% {
    transform: translateX(-500%);
  }
  30% {
    transform: translateX(-600%);
  }
  32.5% {
    transform: translateX(-600%);
  }
  35% {
    transform: translateX(-700%);
  }
  37.5% {
    transform: translateX(-700%);
  }
  40% {
    transform: translateX(-800%);
  }
  42.5% {
    transform: translateX(-800%);
  }
  45% {
    transform: translateX(-900%);
  }
  47.5% {
    transform: translateX(-900%);
  }
  50% {
    transform: translateX(-1000%);
  }
  52.5% {
    transform: translateX(-1000%);
  }
  55% {
    transform: translateX(-1100%);
  }
  57.5% {
    transform: translateX(-1100%);
  }
  60% {
    transform: translateX(-1200%);
  }
  62.5% {
    transform: translateX(-1200%);
  }
  65% {
    transform: translateX(-1300%);
  }
  67.5% {
    transform: translateX(-1300%);
  }
  70% {
    transform: translateX(-1400%);
  }
  72.5% {
    transform: translateX(-1400%);
  }
  75% {
    transform: translateX(-1500%);
  }
  77.5% {
    transform: translateX(-1500%);
  }
  80% {
    transform: translateX(-1600%);
  }
  82.5% {
    transform: translateX(-1600%);
  }
  85% {
    transform: translateX(-1700%);
  }
  87.5% {
    transform: translateX(-1700%);
  }
  90% {
    transform: translateX(-1800%);
  }
  92.5% {
    transform: translateX(-1800%);
  }
  95% {
    transform: translateX(-1900%);
  }
  97.5% {
    transform: translateX(-1900%);
  }
  100% {
    transform: translateX(-2000%);
  }
  102.5% {
    transform: translateX(-2000%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-animation--20 {
  animation: slide-animation-20 60s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.23);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce-slide-in {
  0% {
    transform: translateX(100%);
  }
  60% {
    transform: translateX(-5%);
  }
  80% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(-8px);
  }
}
@keyframes bounce-slide-in-bottom {
  0% {
    transform: translateY(100%);
  }
  60% {
    transform: translateY(-5%);
  }
  80% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-slide-out {
  0% {
    transform: translateX(-8px);
  }
  20% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes bounce-slide-out-bottom {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(100%);
  }
}
/**  Components */
.accordion .accordion-header, .accordion .accordion-button {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
}
@media (min-width: 1200px) {
  .accordion .accordion-header, .accordion .accordion-button {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .accordion .accordion-header, .accordion .accordion-button {
    font-size: 1.25rem;
  }
}
.accordion.accordion-flush .accordion-item {
  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  border-bottom: 0;
  font-size: 1rem;
}
.account-menu .account-menu-header {
  padding: 0;
  color: #1f3e4f;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199.98px) {
  .account-menu .account-menu-header {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .account-menu .account-menu-header {
    margin-bottom: 0;
  }
}
.account-menu .account-menu-dropdown {
  margin-top: 1.625rem !important;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  min-width: 340px;
  border: none;
}
.account-menu .account-menu-dropdown .offcanvas-close {
  display: none !important;
}
.account-menu .account-menu-dropdown .account-aside-list-group ul > li:last-child a {
  margin-bottom: 0.25rem;
}
.account-menu .account-menu-login {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
  padding: 1rem 0;
}
.account-menu .account-menu-login .account-menu-login-button, .account-menu .account-menu-login .account-register-login-button {
  font-size: 1rem;
}
.account-menu .account-menu-register .account-menu-or-separator::before, .account-menu .account-menu-register .account-menu-or-separator::after {
  content: "";
  position: absolute;
  display: block;
  width: 43%;
  height: 1px;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.1);
}
.account-menu .account-menu-register .account-menu-or-separator::before {
  left: 0;
}
.account-menu .account-menu-register .account-menu-or-separator::after {
  right: 0;
}
.account-content-aside, .account-menu-dropdown, .account-menu-offcanvas {
  /* stylelint-disable no-descending-specificity */
}
.account-content-aside .offcanvas-close, .account-menu-dropdown .offcanvas-close, .account-menu-offcanvas .offcanvas-close {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.account-content-aside .offcanvas-close::after, .account-menu-dropdown .offcanvas-close::after, .account-menu-offcanvas .offcanvas-close::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
.account-content-aside .offcanvas-close:hover, .account-menu-dropdown .offcanvas-close:hover, .account-menu-offcanvas .offcanvas-close:hover {
  text-decoration: none;
}
.account-content-aside .offcanvas-close:hover::after, .account-menu-dropdown .offcanvas-close:hover::after, .account-menu-offcanvas .offcanvas-close:hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.account-content-aside .offcanvas-close::after, .account-menu-dropdown .offcanvas-close::after, .account-menu-offcanvas .offcanvas-close::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.account-content-aside .offcanvas-close:hover::after, .account-menu-dropdown .offcanvas-close:hover::after, .account-menu-offcanvas .offcanvas-close:hover::after {
  transform-origin: left center 0;
  transform: scaleX(1);
}
.account-content-aside .offcanvas-close:hover, .account-menu-dropdown .offcanvas-close:hover, .account-menu-offcanvas .offcanvas-close:hover {
  color: #59c0cc;
}
.account-content-aside .account-aside-item, .account-content-aside .account-aside-btn, .account-menu-dropdown .account-aside-item, .account-menu-dropdown .account-aside-btn, .account-menu-offcanvas .account-aside-item, .account-menu-offcanvas .account-aside-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  margin: 0.5rem 0;
  padding: 0;
  text-transform: uppercase;
  width: auto;
}
.account-content-aside .account-aside-item::after, .account-content-aside .account-aside-btn::after, .account-menu-dropdown .account-aside-item::after, .account-menu-dropdown .account-aside-btn::after, .account-menu-offcanvas .account-aside-item::after, .account-menu-offcanvas .account-aside-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
.account-content-aside .account-aside-item:hover, .account-content-aside .account-aside-btn:hover, .account-menu-dropdown .account-aside-item:hover, .account-menu-dropdown .account-aside-btn:hover, .account-menu-offcanvas .account-aside-item:hover, .account-menu-offcanvas .account-aside-btn:hover {
  text-decoration: none;
}
.account-content-aside .account-aside-item:hover::after, .account-content-aside .account-aside-btn:hover::after, .account-menu-dropdown .account-aside-item:hover::after, .account-menu-dropdown .account-aside-btn:hover::after, .account-menu-offcanvas .account-aside-item:hover::after, .account-menu-offcanvas .account-aside-btn:hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.account-content-aside .account-aside-item::after, .account-content-aside .account-aside-btn::after, .account-menu-dropdown .account-aside-item::after, .account-menu-dropdown .account-aside-btn::after, .account-menu-offcanvas .account-aside-item::after, .account-menu-offcanvas .account-aside-btn::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.account-content-aside .account-aside-item:hover::after, .account-content-aside .account-aside-btn:hover::after, .account-menu-dropdown .account-aside-item:hover::after, .account-menu-dropdown .account-aside-btn:hover::after, .account-menu-offcanvas .account-aside-item:hover::after, .account-menu-offcanvas .account-aside-btn:hover::after {
  transform-origin: left center 0;
  transform: scaleX(1);
}
.account-content-aside .account-aside-item:focus, .account-content-aside .account-aside-item:active, .account-content-aside .account-aside-btn:focus, .account-content-aside .account-aside-btn:active, .account-menu-dropdown .account-aside-item:focus, .account-menu-dropdown .account-aside-item:active, .account-menu-dropdown .account-aside-btn:focus, .account-menu-dropdown .account-aside-btn:active, .account-menu-offcanvas .account-aside-item:focus, .account-menu-offcanvas .account-aside-item:active, .account-menu-offcanvas .account-aside-btn:focus, .account-menu-offcanvas .account-aside-btn:active {
  background-color: unset;
}
.account-content-aside .account-aside-btn, .account-menu-dropdown .account-aside-btn, .account-menu-offcanvas .account-aside-btn {
  font-size: 1rem;
}
.account-content-aside .account-aside-btn:hover, .account-menu-dropdown .account-aside-btn:hover, .account-menu-offcanvas .account-aside-btn:hover {
  color: #59c0cc;
}
.account-content-aside .account-aside-btn::after, .account-menu-dropdown .account-aside-btn::after, .account-menu-offcanvas .account-aside-btn::after {
  bottom: -1px;
}
.account-content-aside .account-aside-btn .icon-log-out, .account-menu-dropdown .account-aside-btn .icon-log-out, .account-menu-offcanvas .account-aside-btn .icon-log-out {
  width: 20px;
}
.account-content-aside .account-aside-btn .icon-log-out svg > use, .account-menu-dropdown .account-aside-btn .icon-log-out svg > use, .account-menu-offcanvas .account-aside-btn .icon-log-out svg > use {
  stroke: none;
}
.account-content-aside .account-aside-footer, .account-menu-dropdown .account-aside-footer, .account-menu-offcanvas .account-aside-footer {
  padding: 0.5rem 0;
  margin-top: 1rem;
}
.account-content-aside .account-menu-inner .account-aside-item, .account-menu-dropdown .account-menu-inner .account-aside-item, .account-menu-offcanvas .account-menu-inner .account-aside-item {
  display: inline-flex;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
}
.account-content-aside .account-menu-inner .account-aside-item .icon, .account-menu-dropdown .account-menu-inner .account-aside-item .icon, .account-menu-offcanvas .account-menu-inner .account-aside-item .icon {
  transform: scale(0.8);
  margin-right: -0.5rem;
}
.account-content-aside .account-menu-inner .account-aside-item.is-active, .account-menu-dropdown .account-menu-inner .account-aside-item.is-active, .account-menu-offcanvas .account-menu-inner .account-aside-item.is-active {
  color: #59c0cc;
  font-weight: 400;
  width: auto;
}
.account-content-aside .account-menu-inner .account-aside-item.is-active .icon, .account-menu-dropdown .account-menu-inner .account-aside-item.is-active .icon, .account-menu-offcanvas .account-menu-inner .account-aside-item.is-active .icon {
  display: none;
}
.account-content-aside .account-menu-inner .account-aside-item:hover .icon, .account-menu-dropdown .account-menu-inner .account-aside-item:hover .icon, .account-menu-offcanvas .account-menu-inner .account-aside-item:hover .icon {
  color: #59c0cc;
}
.account-menu-dropdown .account-menu-inner {
  margin-top: 0.5rem;
}
.account-menu-offcanvas .account-menu .account-menu-header {
  margin-bottom: 1.25rem;
}
.alert.alert-dismissible {
  padding-right: 0.5rem;
}
.alert.alert-dismissible .alert-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alert.alert-dismissible .btn-close {
  --bs-btn-close-bg: url("/bundles/clienttheme/icon/default/close.svg");
  --bs-btn-close-color: $color-leaf-strong;
  position: static;
}
.alert.alert-dismissible .btn-close:focus {
  box-shadow: none;
}
.alert .icon {
  margin-right: 0.5rem;
  flex-shrink: 0;
  color: inherit;
}
.alert .icon svg {
  top: 0;
}
.alert .icon use {
  fill: currentColor;
}
.flashbags .alert .icon {
  color: inherit;
}
.alert-primary {
  --bs-alert-border-color: #59c0cc;
  --bs-alert-bg: #eafdfe;
  --bs-alert-color: #59c0cc;
}
.alert-secondary {
  --bs-alert-border-color: #f191ae;
  --bs-alert-bg: #fff3f7;
  --bs-alert-color: #f191ae;
}
.alert-success {
  --bs-alert-border-color: #28a745;
  --bs-alert-bg: #e4fce8;
  --bs-alert-color: #28a745;
}
.alert-info {
  --bs-alert-border-color: #17a2b8;
  --bs-alert-bg: #e2fbfe;
  --bs-alert-color: #17a2b8;
}
.alert-warning {
  --bs-alert-border-color: #ffc107;
  --bs-alert-bg: #fff9e6;
  --bs-alert-color: #ffc107;
}
.alert-danger {
  --bs-alert-border-color: #f80000;
  --bs-alert-bg: #ffe5e5;
  --bs-alert-color: #f80000;
}
.alert-light {
  --bs-alert-border-color: #f1ead6;
  --bs-alert-bg: #fffdfa;
  --bs-alert-color: #f1ead6;
}
.alert-dark {
  --bs-alert-border-color: #313131;
  --bs-alert-bg: #f2e2e2;
  --bs-alert-color: #313131;
}
.alert-accent-primary {
  --bs-alert-border-color: #ced8de;
  --bs-alert-bg: #f8fbfe;
  --bs-alert-color: #ced8de;
}
.alert-accent-secondary {
  --bs-alert-border-color: #78929d;
  --bs-alert-bg: #edf6fa;
  --bs-alert-color: #78929d;
}
.gallery-slider-row {
  margin-bottom: 0;
}
.base-slider-controls-prev, .base-slider-controls-next {
  width: unset;
  height: unset;
  line-height: unset;
  border-color: transparent !important;
  background-color: var(--bs-btn-bg);
  padding: 1rem;
}
.base-slider-controls-prev:hover, .base-slider-controls-next:hover {
  background-color: var(--bs-btn-hover-bg);
}
.base-slider-controls-prev:active, .base-slider-controls-prev:focus, .base-slider-controls-next:active, .base-slider-controls-next:focus {
  background-color: var(--bs-btn-active-bg);
}
.base-slider-controls-prev .icon, .base-slider-controls-next .icon {
  margin: 0;
}
.base-slider .gallery-slider-container {
  margin-bottom: 2rem;
}
.base-slider .gallery-slider-item, .base-slider .gallery-slider-single-image {
  aspect-ratio: 1;
}
.base-slider .gallery-slider-image:hover {
  cursor: zoom-in;
}
.base-slider .gallery-slider-controls .base-slider-controls-prev, .base-slider .gallery-slider-controls .base-slider-controls-next {
  position: static;
  transform: none;
}
.base-slider .base-slider-dots {
  margin-block: 1rem 1.5rem;
  text-align: center;
  width: auto;
}
@media (min-width: 768px) {
  .base-slider .base-slider-dots {
    margin-block: 1rem;
  }
}
.base-slider .base-slider-dots .base-slider-dot {
  background-color: #ded4ba;
  border: 1px solid transparent;
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 0.25rem;
  padding: 0;
}
.base-slider .base-slider-dots .base-slider-dot:hover, .base-slider .base-slider-dots .base-slider-dot.tns-nav-active {
  background-color: #7e2337;
}
@media (min-width: 576px) {
  .base-slider .base-slider-dots .base-slider-dot {
    width: 1rem;
    height: 1rem;
  }
}
@media (min-width: 992px) {
  .base-slider .base-slider-dots .base-slider-dot {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .base-slider .base-slider-dots .base-slider-dot {
    width: 1rem;
    height: 1rem;
  }
}
.base-slider.has-dots-outside {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .base-slider.has-dots-outside {
    padding-bottom: 0;
  }
}
.base-slider.has-dots-outside .base-slider-dots {
  position: absolute;
  bottom: 0;
}
.base-slider.has-nav-outside {
  padding-inline: 0;
}
@media (min-width: 768px) {
  .base-slider.has-nav-outside {
    margin-bottom: 2.5rem;
  }
}
.base-slider.has-nav-outside .gallery-slider-item-container {
  padding-inline: 0;
}
.zoom-modal .btn-close {
  --bs-btn-close-color: #7e2337;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237e2337'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
.zoom-modal .gallery-slider-item {
  width: 100%;
}
.zoom-modal .gallery-slider-thumbnails .gallery-slider-thumbnails-image {
  object-fit: contain;
}
.zoom-modal .image-zoom-container .gallery-slider-image {
  object-fit: cover;
}
.cms-breadcrumb .breadcrumb-item a, .breadcrumb.cms-breadcrumb .breadcrumb-item a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.cms-breadcrumb .breadcrumb-item a::after, .breadcrumb.cms-breadcrumb .breadcrumb-item a::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
.cms-breadcrumb .breadcrumb-item a:hover, .breadcrumb.cms-breadcrumb .breadcrumb-item a:hover {
  text-decoration: none;
}
.cms-breadcrumb .breadcrumb-item a:hover::after, .breadcrumb.cms-breadcrumb .breadcrumb-item a:hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.cms-breadcrumb .breadcrumb-item a::after, .breadcrumb.cms-breadcrumb .breadcrumb-item a::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.cms-breadcrumb .breadcrumb-item a:hover::after, .breadcrumb.cms-breadcrumb .breadcrumb-item a:hover::after {
  transform-origin: left center 0;
  transform: scaleX(1);
}
.cms-breadcrumb .breadcrumb-item.active-item, .breadcrumb.cms-breadcrumb .breadcrumb-item.active-item {
  color: rgba(31, 62, 79, 0.5);
}
.cms-breadcrumb .icon, .breadcrumb.cms-breadcrumb .icon {
  width: 14px;
  margin-inline: 0.25rem;
  position: relative;
  bottom: -1px;
}
.carousel-item.grid.active {
  display: grid;
  grid-row: 1 / 2;
}
.grid.carousel-item-next.carousel-item-start, .grid.carousel-item-prev.carousel-item-end {
  display: grid;
  grid-row: 1 / 2;
}
.vertical-carousel {
  grid-auto-flow: row;
  grid-auto-rows: 350px;
  max-height: 350px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
@media (min-width: 992px) {
  .vertical-carousel {
    grid-auto-rows: 340px;
    max-height: 340px;
  }
}
.vertical-carousel-item {
  align-items: flex-end;
  grid-template-columns: repeat(var(--bs-columns, 11), 1fr);
  scroll-snap-align: start;
}
.vertical-carousel__thumbnails {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}
@media (min-width: 992px) {
  .vertical-carousel__thumbnails {
    gap: 18px;
  }
}
.vertical-carousel__thumbnails .thumbnail {
  border-radius: 50%;
  cursor: pointer;
  height: 3.5rem;
  opacity: 0.3;
  overflow: hidden;
  width: 3.5rem;
}
.vertical-carousel__thumbnails .thumbnail.active {
  opacity: 1;
}
.vertical-carousel__thumbnails .thumbnail .initial {
  height: 100%;
}
.cms-section {
  overflow: clip;
}
.cms-section .cms-block {
  overflow: visible;
  transform: none;
  transition: transform 200ms ease-in-out;
}
.cms-section .cms-block.is-open {
  transform: rotate(-2deg);
}
.cms-section .cms-block .cms-block-client:not(.footer-top) {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .cms-section .cms-block .cms-block-client:not(.footer-top) {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.cms-section .cms-block:first-child .cms-block-client {
  margin-top: 0;
}
@media (min-width: 768px) {
  .cms-section .cms-block:first-child .cms-block-client {
    margin-top: 0;
  }
}
body:not(.is-act-home) .cms-breadcrumb + .cms-page .cms-section:nth-of-type(1) .cms-block:nth-of-type(1) .cms-block-client {
  margin-top: 2.5rem;
}
.cms-element-product-listing .cms-listing-row {
  margin-right: 0;
  margin-left: 0;
}
.cms-element-product-listing .cms-listing-col {
  padding: 0;
}
.filter-multi-select-count {
  display: none;
}
.filter-multi-select-list-item {
  margin-bottom: 0.75rem;
  padding: 0;
}
.filter-multi-select-list-item:last-of-type {
  margin-bottom: 0;
}
.filter-multi-select-list-item .filter-multi-select-checkbox {
  border-color: #59c0cc;
}
.filter-multi-select-item-label {
  font-size: 0.875rem;
  padding: 0 1rem;
  width: auto;
}
.filter-range-dropdown {
  margin: 0;
}
.filter-range-container {
  padding: 0;
}
.filter-range-container .filter-range-unit {
  right: auto;
  left: 0;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  .cms-block-sidebar-filter .cms-block-container {
    padding: 0 !important;
  }
}
.btn.filter-panel-wrapper-toggle, .active-campaign-form form[id^="_form_"] .filter-panel-wrapper-toggle._submit {
  font-weight: 600;
  padding: 1rem 1.5rem;
  position: absolute;
}
@media (min-width: 992px) {
  .btn.filter-panel-wrapper-toggle, .active-campaign-form form[id^="_form_"] .filter-panel-wrapper-toggle._submit {
    position: static;
  }
}
.filter-panel-title {
  display: block;
  margin-bottom: 1rem;
}
.filter-panel-item {
  margin-bottom: 2.5rem;
}
.filter-panel-item-dropdown {
  max-height: unset;
}
.filter-panel-active-container {
  padding-block: 0.5rem;
  align-items: flex-start;
  min-height: 3.75rem;
}
.filter-panel-active-container + .filter-panel-item {
  margin-top: 2.5rem;
}
.filter-panel-active-container .filter-active {
  padding: 0 0.75rem;
  text-transform: none;
}
.filter-panel-active-container .filter-active .filter-active-remove {
  color: #ffffff;
  padding-left: 15px;
}
.filter-panel-active-container .btn.filter-reset-all, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit {
  display: block;
  font-size: 0.875rem;
  margin: 0;
  text-transform: none;
}
.filter-panel-active-container .btn.filter-reset-all:hover, .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit:hover, .active-campaign-form form[id^="_form_"] .filter-panel-active-container .filter-reset-all._submit:hover {
  background-color: transparent;
}
.filter-panel-wrapper-toggle {
  gap: 0.75rem;
  width: max-content;
}
.filter-panel-wrapper-toggle.btn .icon, .active-campaign-form form[id^="_form_"] .filter-panel-wrapper-toggle._submit .icon {
  color: inherit;
}
.line-item {
  padding: 1.5rem 0;
  border-bottom: 2px dotted #ced8de;
  list-style: none;
}
.line-item-label {
  color: inherit;
}
.line-item-row {
  width: 100%;
  margin-inline: 0;
}
.line-item-row .line-item-ordernumber, .line-item-row .line-item-product-number, .line-item-row .line-item-delivery-date {
  font-size: 0.875rem;
}
.line-item-info {
  margin-bottom: 0;
}
.line-item-info .line-item-details {
  padding: 0 0.5rem;
  flex: 1 1 auto;
}
.line-item-package-unit {
  color: rgba(31, 62, 79, 0.5);
}
.line-item-quantity {
  order: 3;
  /* stylelint-disable no-descending-specificity */
}
@media (max-width: 767.98px) {
  .line-item-quantity {
    flex-basis: 50%;
  }
}
@media (min-width: 768px) {
  .line-item-quantity {
    align-self: auto;
  }
}
.line-item-quantity .line-item-quantity-label {
  display: none;
  width: unset;
  padding-inline: 0;
}
.line-item-quantity .line-item-quantity-select-wrapper {
  width: 100%;
  max-width: 140px;
  padding-inline: 0;
}
.line-item-quantity .quantity-selector-group-input {
  padding-block: calc(0.5rem - 1px);
}
.line-item-quantity .quantity-selector-group-input:focus {
  background-color: #bee2e7;
}
.line-item-quantity .input-group {
  border: 3px solid transparent;
  outline: 1px solid #ced8de;
}
.line-item-quantity .btn, .line-item-quantity .active-campaign-form form[id^="_form_"] ._submit, .active-campaign-form form[id^="_form_"] .line-item-quantity ._submit, .line-item-quantity .quantity-selector-group-input {
  background-color: transparent;
  border: 0;
}
.line-item-quantity .btn:hover, .line-item-quantity .active-campaign-form form[id^="_form_"] ._submit:hover, .active-campaign-form form[id^="_form_"] .line-item-quantity ._submit:hover, .line-item-quantity .quantity-selector-group-input:hover {
  background-color: #59c0cc;
}
.line-item-quantity .btn:focus, .line-item-quantity .active-campaign-form form[id^="_form_"] ._submit:focus, .active-campaign-form form[id^="_form_"] .line-item-quantity ._submit:focus, .line-item-quantity .quantity-selector-group-input:focus {
  border: none;
}
.line-item-quantity .btn svg, .line-item-quantity .active-campaign-form form[id^="_form_"] ._submit svg, .active-campaign-form form[id^="_form_"] .line-item-quantity ._submit svg, .line-item-quantity .quantity-selector-group-input svg {
  top: 0;
}
.line-item-unit-price.is-shown {
  order: 4;
  justify-content: flex-start;
  display: none;
}
@media (min-width: 768px) {
  .line-item-unit-price.is-shown {
    order: 0;
    display: flex;
  }
}
.line-item-total-price {
  order: 5;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .line-item-total-price {
    flex-basis: 50%;
  }
}
@media (max-width: 575.98px) {
  .line-item-total-price-value {
    align-self: center;
  }
}
.line-item-unit-price-info, .line-item-tax-rate {
  color: rgba(31, 62, 79, 0.5);
}
.line-item-remove .btn, .line-item-remove .active-campaign-form form[id^="_form_"] ._submit, .active-campaign-form form[id^="_form_"] .line-item-remove ._submit {
  padding: 1rem;
  background-color: transparent;
  border-color: #ced8de;
}
.line-item-remove .btn:hover, .line-item-remove .active-campaign-form form[id^="_form_"] ._submit:hover, .active-campaign-form form[id^="_form_"] .line-item-remove ._submit:hover {
  border-color: #59c0cc;
}
.line-item-remove .btn:hover .icon, .line-item-remove .active-campaign-form form[id^="_form_"] ._submit:hover .icon, .active-campaign-form form[id^="_form_"] .line-item-remove ._submit:hover .icon {
  color: #59c0cc;
}
@media (max-width: 767.98px) {
  .is-act-cartpage .line-item-unit-price {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .is-act-cartpage .line-item-total-price {
    padding-right: 0.5rem;
  }
}
.is-act-confirmpage .line-item-tax-price-label, .is-act-confirmpage .line-item-tax-price-label br, .is-act-finishpage .line-item-tax-price-label, .is-act-finishpage .line-item-tax-price-label br {
  display: none;
}
@media (max-width: 767.98px) {
  .is-act-confirmpage .line-item-tax-price, .is-act-confirmpage .line-item-total-price, .is-act-finishpage .line-item-tax-price, .is-act-finishpage .line-item-total-price {
    justify-content: flex-end;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .is-act-confirmpage .line-item-quantity, .is-act-confirmpage .line-item-tax-price, .is-act-confirmpage .line-item-total-price, .is-act-finishpage .line-item-quantity, .is-act-finishpage .line-item-tax-price, .is-act-finishpage .line-item-total-price {
    width: 33.3333333333%;
  }
}
@media (max-width: 767.98px) {
  .is-act-confirmpage .line-item-total-price-value, .is-act-finishpage .line-item-total-price-value {
    align-self: auto;
  }
}
.is-act-confirmpage .line-item-quantity-label, .is-act-confirmpage .line-item-unit-price-label, .is-act-confirmpage .line-item-total-price-label, .is-act-confirmpage .line-item-tax-price-label, .is-act-finishpage .line-item-quantity-label, .is-act-finishpage .line-item-unit-price-label, .is-act-finishpage .line-item-total-price-label, .is-act-finishpage .line-item-tax-price-label {
  margin-bottom: 0.25rem;
}
.is-act-confirmpage .line-item-remove, .is-act-finishpage .line-item-remove {
  display: none;
}
.modal {
  --bs-modal-width: 800px;
}
.main-navigation-dropdown {
  top: 6.75rem !important;
}
.main-navigation-dropdown .main-navigation-dropdown-wrapper {
  padding: 0.5rem;
  padding-inline-start: 1.5rem;
  max-height: 500px;
  /* supports resolution 1280 x 720 */
  overflow-y: auto;
  overscroll-behavior: contain;
}
.main-navigation-dropdown .main-navigation-dropdown-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 2.5rem;
  mask-image: linear-gradient(to bottom, transparent, #ffffff);
  background: #ffffff;
  border-radius: 0.4rem;
}
@media (min-width: 1200px) {
  .main-navigation-dropdown .main-navigation-dropdown-wrapper::after {
    width: calc(100% - 13rem);
  }
}
@media (min-width: 1400px) {
  .main-navigation-dropdown .main-navigation-dropdown-wrapper::after {
    width: calc(100% - 3rem);
  }
}
.main-navigation-dropdown .nav-item {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.1s;
  cursor: pointer;
}
.main-navigation-dropdown .nav-item .nav-item-text {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.5rem;
}
.main-navigation-dropdown .nav-item .icon {
  opacity: 0;
}
.main-navigation-dropdown .nav-item:focus {
  outline: revert;
}
.main-navigation-dropdown .nav-item:hover, .main-navigation-dropdown .nav-item.active, .main-navigation-dropdown .nav-item.is-open {
  text-decoration: none;
  background: #bee2e7;
  color: #2d3e50;
}
.main-navigation-dropdown .nav-item:hover .icon, .main-navigation-dropdown .nav-item.active .icon, .main-navigation-dropdown .nav-item.is-open .icon {
  opacity: 1;
}
.main-navigation-dropdown .nav-item.active {
  background: #bee2e7;
}
.main-navigation-dropdown .nav-item.active:hover {
  background: #99d1d9 !important;
}
.main-navigation-dropdown .navigation-flyout-categories.is-level-0 {
  display: grid;
  grid-template-rows: repeat(20, auto);
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 0.5rem;
  margin-left: -0.75rem;
  margin-bottom: 2rem;
}
.main-navigation-dropdown .navigation-flyout-categories.is-level-1 {
  display: block;
}
.main-navigation-dropdown .navigation-flyout__header:not(.nav-link) {
  cursor: default;
}
.main-navigation-dropdown .navigation-flyout__header:not(.nav-link):hover {
  background: transparent;
  color: inherit;
}
.main-navigation-dropdown .navigation-flyout__header-link {
  color: inherit;
}
.main-navigation-dropdown .navigation-flyout__header-link:hover {
  color: #59c0cc;
}
.navigation-offcanvas-container {
  display: flex;
}
.navigation-offcanvas-container > * {
  flex-grow: 1;
  flex-basis: 100%;
}
.navigation-offcanvas {
  height: 100%;
  bottom: unset;
}
.navigation-offcanvas .navigation-offcanvas-list {
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
}
.navigation-offcanvas .navigation-offcanvas-link {
  height: 50px;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(31, 62, 79, 0.4);
  font-size: 1rem;
}
.navigation-offcanvas .navigation-offcanvas-link .icon {
  width: 18px;
  position: relative;
  bottom: -1px;
}
.navigation-offcanvas .navigation-offcanvas-link.is-current-category {
  text-transform: lowercase;
}
.navigation-offcanvas .navigation-offcanvas-link.is-current-category .navigation-offcanvas-link-label::first-letter {
  text-transform: uppercase;
}
.navigation-offcanvas .navigation-offcanvas-link.is-home-link, .navigation-offcanvas .navigation-offcanvas-link.is-back-link {
  margin-inline: 1.5rem;
  font-size: 1.125rem;
  border: none;
}
.navigation-offcanvas .navigation-offcanvas-link.is-home-link .icon > svg > g, .navigation-offcanvas .navigation-offcanvas-link.is-back-link .icon > svg > g {
  stroke-width: 3px;
}
.navigation-offcanvas .navigation-offcanvas-list-item:last-child .navigation-offcanvas-link {
  border: none;
}
.navigation-offcanvas .offcanvas-body {
  overflow-x: hidden;
}
.navigation-offcanvas-content .navigation-offcanvas-link.active {
  font-weight: 600;
  color: #59c0cc;
}
.navigation-offcanvas-content .navigation-offcanvas-link.active .icon {
  color: #59c0cc;
}
.header-main .main-navigation-menu {
  position: static;
}
.header-main .main-navigation-link-inner {
  position: relative;
}
.header-main .main-navigation-link-inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: right center 0;
  transform: scaleX(0);
}
.header-main .main-navigation-link {
  color: currentColor;
  white-space: nowrap;
}
.header-main .main-navigation-link .icon {
  margin-left: 2px;
  width: 1rem;
}
.header-main .main-navigation-link .icon svg > g {
  stroke-width: 3px;
}
.header-main .main-navigation-link:hover .main-navigation-link-inner::after {
  transform-origin: left center 0;
  transform: scaleX(1);
}
.header-main .main-navigation-link:hover, .header-main .main-navigation-link.active, .header-main .main-navigation-link.is-open {
  color: #59c0cc;
}
.header-main .main-navigation-link:hover .icon, .header-main .main-navigation-link.active .icon, .header-main .main-navigation-link.is-open .icon {
  color: #59c0cc;
}
.header-main .main-navigation-link.is-open .icon {
  transform: rotate(180deg);
  transform-origin: center;
}
.offcanvas:not(#bitesize-offcanvas) {
  color: inherit;
}
.offcanvas:not(#bitesize-offcanvas) .offcanvas-header {
  padding: 0.5rem 0.25rem;
  border-bottom: 2px dotted #ced8de;
}
.offcanvas:not(#bitesize-offcanvas) .offcanvas-header .icon {
  color: currentColor;
}
.offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-link._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.filter-reset-all, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all, .filter-panel-active-container .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .active-campaign-form form[id^="_form_"] ._submit.btn-light, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn-light, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-link._submit, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .filter-panel-active-container .btn.filter-reset-all, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .filter-panel-active-container .filter-reset-all._submit, .filter-panel-active-container .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.filter-reset-all, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light {
  background: inherit;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  padding: 0.5rem 1rem;
  width: 100%;
}
.offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-light._submit::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-link::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-link._submit::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.btn.filter-reset-all::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .filter-panel-active-container .active-campaign-form form[id^="_form_"] ._submit.filter-reset-all::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .filter-panel-active-container ._submit.filter-reset-all::after, .filter-panel-active-container .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.filter-reset-all::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-light::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] .active-campaign-form form[id^="_form_"] ._submit.btn-light::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn-light::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .active-campaign-form form[id^="_form_"] ._submit.btn.btn-link::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn-link._submit::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .filter-panel-active-container .btn.filter-reset-all::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .filter-panel-active-container .active-campaign-form form[id^="_form_"] .filter-reset-all._submit::after, .active-campaign-form form[id^="_form_"] .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .filter-panel-active-container .filter-reset-all._submit::after, .filter-panel-active-container .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.filter-reset-all::after, .offcanvas:not(#bitesize-offcanvas) .offcanvas-header .btn.btn-light::after {
  display: none;
}
.offcanvas:not(#bitesize-offcanvas) .offcanvas-close .icon-close {
  width: 20px;
  padding-bottom: 3px;
}
.cart-offcanvas {
  --bs-offcanvas-padding-x: 2rem;
  --bs-offcanvas-padding-y: 2rem;
}
.cart-offcanvas .offcanvas-header .btn.btn-light, .cart-offcanvas .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit, .active-campaign-form form[id^="_form_"] .cart-offcanvas .offcanvas-header .btn-light._submit {
  background: inherit;
  gap: 0.5rem;
  justify-content: flex-start;
  padding: 0;
  width: 100%;
}
.cart-offcanvas .offcanvas-header .btn.btn-light .icon, .cart-offcanvas .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit .icon, .active-campaign-form form[id^="_form_"] .cart-offcanvas .offcanvas-header .btn-light._submit .icon {
  transform: scale(0.5);
}
.cart-offcanvas .offcanvas-header .btn.btn-light::after, .cart-offcanvas .offcanvas-header .active-campaign-form form[id^="_form_"] .btn-light._submit::after, .active-campaign-form form[id^="_form_"] .cart-offcanvas .offcanvas-header .btn-light._submit::after {
  display: none;
}
.cart-offcanvas .offcanvas-header .alert {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cart-offcanvas .offcanvas-cart-header {
  margin: 0 auto;
  max-width: 100%;
}
.cart-offcanvas .offcanvas-cart-header > div {
  padding: 0;
}
.cart-offcanvas .offcanvas-cart-header-count {
  letter-spacing: 0;
}
.cart-offcanvas .offcanvas-body {
  padding-top: 0;
}
.cart-offcanvas .offcanvas-body .loader {
  position: absolute;
  top: calc(50% - 0.75rem);
  left: calc(50% - 0.75rem);
}
.cart-offcanvas .offcanvas-cart-items {
  padding: 0 0 0.5rem;
  margin: 0 0 1rem;
  border-bottom: 2px dotted #ced8de;
}
.cart-offcanvas .offcanvas-summary {
  overflow: hidden;
  margin: 0;
}
.cart-offcanvas .offcanvas-summary .summary-label, .cart-offcanvas .offcanvas-summary .shipping-label {
  text-transform: uppercase;
}
.cart-offcanvas .offcanvas-cart-tax {
  font-size: 1rem;
  margin-block: 1rem;
}
.cart-offcanvas .offcanvas-cart-promotion-form {
  margin-bottom: 1.5rem;
  /* stylelint-disable no-descending-specificity */
}
.cart-offcanvas .offcanvas-cart-promotion-form .icon {
  color: #1f3e4f;
}
.cart-offcanvas .flashbags .alert {
  margin: 0;
}
.cart-offcanvas .flashbags .alert.alert-success {
  font-weight: 500;
}
.cart-offcanvas .is-offcanvas .line-item-info {
  margin-bottom: 1rem;
}
.cart-offcanvas .is-offcanvas .line-item-details {
  width: 66.6666666667%;
}
.cart-offcanvas .is-offcanvas .line-item-remove {
  width: 16.6666666667%;
  align-self: flex-start;
}
.cart-offcanvas .is-offcanvas .line-item-img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  padding: 0.25rem;
  border: 1px solid #ced8de;
  border-radius: 0.4rem;
}
.cart-offcanvas .is-offcanvas .line-item-quantity {
  width: 40%;
}
.cart-offcanvas .is-offcanvas .line-item-quantity .line-item-quantity-select-wrapper {
  width: 100%;
}
.cart-offcanvas .is-offcanvas .line-item-total-price {
  width: 60%;
}
.cart-offcanvas .is-offcanvas .line-item-total-price-value {
  font-weight: 500;
}
.cart-offcanvas .is-offcanvas .line-item-unit-price {
  display: none;
}
.offcanvas.offcanvas-filter {
  top: 0;
  bottom: 0;
  height: 100%;
}
.offcanvas.offcanvas-filter .filter-panel-offcanvas-header .filter-panel-offcanvas-close {
  display: block;
  cursor: pointer;
}
.pagination {
  justify-content: center;
}
@media (min-width: 992px) {
  .pagination {
    justify-content: flex-end;
  }
}
.product-box.box-image .product-image-wrapper {
  height: 235px;
}
.product-box.box-image .product-image {
  max-height: 235px;
}
.product-box .card-body .product-info {
  gap: 0.5rem;
  padding: 2rem 2rem;
}
.product-name {
  font-size: 1rem;
  height: auto;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  text-transform: uppercase;
}
.product-price {
  font-size: 1rem;
  font-weight: 500;
  min-height: unset;
}
.product-action {
  flex: 0 0 auto;
}
.btn-buy .icon-plus {
  color: var(--bs-btn-color);
}
.product-badges .badge {
  --bs-badge-padding-x: 0.75rem;
  --bs-badge-font-size: 0.75rem;
  --bs-badge-font-weight: 500;
  height: 26px;
  line-height: 26px;
}
.product-badges .badge-topseller {
  background-color: #59c0cc !important;
}
.cms-element-vimeo-video {
  overflow: hidden;
  border-radius: 1rem;
}
.cms-element-product-listing-actions {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .cms-element-product-listing-actions {
    margin-bottom: 4rem;
  }
}
.cms-element-product-listing-actions .sorting {
  display: flex;
  align-items: center;
  width: max-content;
}
.cms-element-product-listing-actions .sorting label {
  left: -1rem;
}
.cms-element-product-listing-actions .sorting select {
  background-image: url("/bundles/clienttheme/icon/default/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
  background-size: 20px;
  background-position: top 50% right 0;
  border: 0;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0;
  padding: 0.5rem 2rem 0.5rem 0;
  text-align: right;
}
.cms-element-product-listing-actions .sorting select:active, .cms-element-product-listing-actions .sorting select:focus, .cms-element-product-listing-actions .sorting select:hover {
  border: 0;
  box-shadow: none;
}
.cms-element-product-listing-actions .sorting select:active, .cms-element-product-listing-actions .sorting select:focus {
  background-image: url("/bundles/clienttheme/icon/default/chevron-up.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
  background-position: top 50% right 0;
}
.cms-block-product-listing .cms-block-container {
  padding-top: 0 !important;
}
@media (min-width: 768px) {
  .cms-block-product-listing .cms-block-container {
    padding-top: initial;
  }
}
.cms-element-form {
  margin-block: 1.25rem;
}
.cms-element-form .card-title {
  text-transform: uppercase;
}
.cms-element-form .privacy-notice {
  margin-top: 2rem;
}
@media (max-width: 575.98px) {
  .video-two-columns-block__row {
    grid-column-gap: 0.5rem;
    grid-auto-flow: column;
    grid-auto-columns: 226px;
    overflow: scroll;
    scrollbar-width: none;
  }
}
.video-two-columns-block__clickarea {
  grid-row-gap: 0;
}
@media (max-width: 575.98px) {
  .video-two-columns-block__clickarea {
    scroll-snap-align: center;
    width: 226px;
  }
}
@media (max-width: 575.98px) {
  .video-two-columns-block__picture img {
    aspect-ratio: 1;
  }
}
.video-two-columns-block__button {
  outline: 4px solid rgba(60, 110, 100, 0.3);
  z-index: 1;
  width: 56px;
  height: 56px;
}
@media (min-width: 992px) {
  .video-two-columns-block__button {
    width: 96px;
    height: 96px;
  }
}
@media (max-width: 767.98px) {
  .video-two-columns-block__button svg {
    transform: scale(0.6);
  }
}
.video-two-columns-block__button svg path {
  fill: #d1e7dd;
}
.modal-dialog--video {
  max-width: 900px;
}
.video-block__video-container {
  aspect-ratio: 2.25;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.video-block__iframe-container {
  display: none;
}
.video-block__iframe-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  pointer-events: none;
  border: 0;
}
.video-block__iframe-overlay {
  display: none;
  z-index: 100;
  pointer-events: auto;
}
.video-block__play-text {
  font-size: 40px;
  line-height: 30px;
}
@media (min-width: 768px) {
  .video-block__play-text {
    font-size: 88px;
    line-height: 70px;
  }
}
.video-block__controls {
  left: 1.25rem;
  z-index: 100;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .video-block__controls {
    left: 6rem;
  }
}
.video-block__duration, .video-block__title {
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .video-block__duration, .video-block__title {
    font-size: 1.5rem;
  }
}
.video-block__duration.is-hidden, .video-block__title.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-block__overlay-img {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .video-block__overlay-img {
    max-width: 200px;
    max-height: 200px;
  }
}
@media (min-width: 992px) {
  .video-block__overlay-img {
    max-width: 300px;
    max-height: 300px;
  }
}
.cafes-nearby-block__description {
  color: #7e2337;
}
@media (max-width: 991.98px) {
  .cafes-nearby-block__content {
    padding-top: calc(125vw - 1.5rem);
  }
}
.cafes-nearby-block__images {
  top: 0;
}
@media (min-width: 992px) {
  .cafes-nearby-block__images {
    bottom: 0;
    top: auto;
  }
}
.cafes-nearby-block__image {
  aspect-ratio: 1;
  display: block;
}
.cafes-nearby-block__image--1 {
  transform: translateX(-25%);
}
@media (min-width: 992px) {
  .cafes-nearby-block__image--1 {
    transform: translateY(110px);
  }
}
@media (max-width: 991.98px) {
  .cafes-nearby-block__image--2 {
    transform: translate(60%, -80px);
  }
}
.active-campaign-form {
  /*
    We use !important and ugly, bloated specificity here
    to override activecampaign inline styles and minimize CLS
    */
}
.active-campaign-form form[id^="_form_"][id*="_form_"][id$="_"]:not(#morespecificity1, #morespecificity2, #morespecificity3) {
  background-color: #ffffff !important;
  margin: 2rem auto !important;
  padding: 2rem !important;
  border-radius: 1rem !important;
  border: 0 !important;
  max-width: 100% !important;
}
.active-campaign-form form[id^="_form_"][id*="_form_"][id$="_"]:not(#morespecificity1, #morespecificity2, #morespecificity3) textarea, .active-campaign-form form[id^="_form_"][id*="_form_"][id$="_"]:not(#morespecificity1, #morespecificity2, #morespecificity3) select, .active-campaign-form form[id^="_form_"][id*="_form_"][id$="_"]:not(#morespecificity1, #morespecificity2, #morespecificity3) input {
  padding: 0.5rem;
  border: 1px solid #ced8de;
  border-radius: 0.8rem;
}
.active-campaign-form form[id^="_form_"][id*="_form_"][id$="_"]:not(#morespecificity1, #morespecificity2, #morespecificity3) label {
  font-weight: 400 !important;
  font-size: 1rem;
  font-size-adjust: unset;
}
.active-campaign-form form[id^="_form_"] {
  /* stylelint-disable no-descending-specificity */
  /* stylelint-enable no-descending-specificity */
}
.active-campaign-form form[id^="_form_"] ._form_element {
  margin-block: 0.5rem;
}
.active-campaign-form form[id^="_form_"] ._form_element:first-of-type {
  margin-block-start: 0;
}
.active-campaign-form form[id^="_form_"] ._form_element:last-of-type {
  margin-block-end: 0;
}
.active-campaign-form form[id^="_form_"] ._form-label {
  margin-bottom: 3px;
}
.active-campaign-form form[id^="_form_"] .field-required {
  color: #f80000;
  margin-left: 0.25rem;
}
.active-campaign-form form[id^="_form_"] .iti {
  position: relative;
  display: flex;
  width: 100%;
}
.active-campaign-form form[id^="_form_"] .iti__selected-country {
  width: 50px;
  padding: 0.5rem;
  background-color: #f8f9fa;
  border: 1px solid #ced8de;
  border-right: 0;
  border-radius: 0.8rem 0 0 0.8rem;
}
.active-campaign-form form[id^="_form_"] .iti__selected-country:hover, .active-campaign-form form[id^="_form_"] .iti__selected-country:focus {
  background-color: #e9ecef;
}
.active-campaign-form form[id^="_form_"] .iti__selected-country .iti__a11y-text {
  display: none;
}
.active-campaign-form form[id^="_form_"] .iti__tel-input {
  flex: 1;
  border-radius: 0 0.8rem 0.8rem 0 !important;
  border-left: 0 !important;
}
.active-campaign-form form[id^="_form_"] .iti__dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 2;
  margin-top: 0.25rem;
  border: 1px solid #ced8de;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.active-campaign-form form[id^="_form_"] .iti__dropdown-content.iti__hide {
  display: none;
}
.active-campaign-form form[id^="_form_"] .iti__dropdown-content .iti__a11y-text {
  display: none;
  padding: 0.5rem;
}
.active-campaign-form form[id^="_form_"] .iti__dropdown-content:has(.iti__country-list:empty) .iti__a11y-text {
  display: block;
}
.active-campaign-form form[id^="_form_"] .iti__search-input {
  padding: 0.5rem;
  border: 0;
  border-bottom: 1px solid #ced8de;
}
.active-campaign-form form[id^="_form_"] .iti__search-input:focus {
  outline: 0;
}
.active-campaign-form form[id^="_form_"] .iti__country-list {
  margin-bottom: 0;
  max-height: 180px;
  overflow-y: auto;
}
.active-campaign-form form[id^="_form_"] .iti__country-list:not(:empty) {
  padding: 10px 5px 5px;
}
.active-campaign-form form[id^="_form_"] .iti__country {
  display: flex;
  list-style: none;
  padding: 0.5rem;
}
.active-campaign-form form[id^="_form_"] .iti__country:hover, .active-campaign-form form[id^="_form_"] .iti__country.iti__highlight {
  background-color: #f8f9fa;
  cursor: pointer;
}
.active-campaign-form form[id^="_form_"] .iti__dial-code {
  margin-left: 0.25rem;
}
.active-campaign-form form[id^="_form_"] textarea, .active-campaign-form form[id^="_form_"] select, .active-campaign-form form[id^="_form_"] input {
  display: block;
  width: 100%;
  background-color: transparent;
  color: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.active-campaign-form form[id^="_form_"] textarea::placeholder, .active-campaign-form form[id^="_form_"] select::placeholder, .active-campaign-form form[id^="_form_"] input::placeholder {
  color: rgba(31, 62, 79, 0.5);
}
.active-campaign-form form[id^="_form_"] textarea:focus, .active-campaign-form form[id^="_form_"] select:focus, .active-campaign-form form[id^="_form_"] input:focus {
  border-color: #0042a0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(89, 192, 204, 0.25);
  outline: 0;
}
.active-campaign-form form[id^="_form_"] textarea._has_error, .active-campaign-form form[id^="_form_"] select._has_error, .active-campaign-form form[id^="_form_"] input._has_error {
  border-color: #f80000 !important;
  padding-right: calc(1.5 * 1em + 0.438rem * 2);
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 32 32' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='%23f80000' stroke='%23f80000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill-rule='evenodd'%3e%3cpath d='m16 5.5-12.5 21 7.851-.219L28.5 26.5c-1.386-1.72-2.846-3.869-4.382-6.45C22.582 17.47 19.876 12.62 16 5.5Z' fill='none'/%3e%3cpath d='M16 22v.2M16 14l.005 4' fill='none'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(1.5 * 0.25em + (0.438rem * 0.5)) center;
  background-size: calc(1.5 * 0.5em + 0.438rem) calc(1.5 * 0.5em + 0.438rem);
}
.active-campaign-form form[id^="_form_"] textarea._has_error:focus, .active-campaign-form form[id^="_form_"] select._has_error:focus, .active-campaign-form form[id^="_form_"] input._has_error:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 0, 0, 0.35);
}
.active-campaign-form form[id^="_form_"] textarea {
  resize: vertical;
  min-height: 100px;
  border-bottom-right-radius: 0 !important;
}
.active-campaign-form form[id^="_form_"] textarea._has_error {
  background-position: top calc(0.438rem + 0.25em) right 15px;
}
.active-campaign-form form[id^="_form_"] select {
  appearance: none;
  background-image: url("/bundles/clienttheme/icon/default/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.5625rem center;
  background-size: 20px;
  padding-right: calc(0.5625rem * 3);
}
.active-campaign-form form[id^="_form_"] select._has_error {
  border-color: #f80000 !important;
  padding-right: calc(calc(1.5 * 1em + 0.438rem * 2) + 0.5625rem * 3);
  background-image: url("/bundles/clienttheme/icon/default/chevron-down.svg"), url("data:image/svg+xml,%3csvg viewBox='0 0 32 32' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='%23f80000' stroke='%23f80000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill-rule='evenodd'%3e%3cpath d='m16 5.5-12.5 21 7.851-.219L28.5 26.5c-1.386-1.72-2.846-3.869-4.382-6.45C22.582 17.47 19.876 12.62 16 5.5Z' fill='none'/%3e%3cpath d='M16 22v.2M16 14l.005 4' fill='none'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5625rem center, right calc(calc(1.5 * 0.25em + (0.438rem * 0.5)) + 0.5625rem * 3) center;
  background-size: 20px, calc(1.5 * 0.5em + 0.438rem) calc(1.5 * 0.5em + 0.438rem);
}
.active-campaign-form form[id^="_form_"] ._button-wrapper {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
.active-campaign-form form[id^="_form_"] ._submit {
  min-width: 200px;
  margin-left: auto;
}
.active-campaign-form form[id^="_form_"] ._error {
  display: none;
  color: #f80000;
  font-size: 0.875rem;
  margin-top: 3px;
}
.active-campaign-form form[id^="_form_"] ._form_error {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #f80000;
  font-size: 0.875rem;
}
.active-campaign-form form[id^="_form_"] ._form_error::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 32 32' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='%23f80000' stroke='%23f80000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill-rule='evenodd'%3e%3cpath d='m16 5.5-12.5 21 7.851-.219L28.5 26.5c-1.386-1.72-2.846-3.869-4.382-6.45C22.582 17.47 19.876 12.62 16 5.5Z' fill='none'/%3e%3cpath d='M16 22v.2M16 14l.005 4' fill='none'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
.active-campaign-form form[id^="_form_"] ._form-thank-you {
  text-align: center;
}
.active-campaign-form form[id^="_form_"] ._form-thank-you:not(:empty) {
  margin-top: 1.25rem;
}
.active-campaign-form__loader {
  background-color: #ffffff;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 1rem;
}
.active-campaign-form__loader .loader-field {
  margin-bottom: 1.25rem;
}
.active-campaign-form__loader .loader-field:last-of-type {
  margin-bottom: 1.5rem;
}
.active-campaign-form__loader .loader-label, .active-campaign-form__loader .loader-input, .active-campaign-form__loader .loader-textarea, .active-campaign-form__loader .loader-button {
  border-radius: 0.8rem;
  color: transparent;
  animation: skeleton-shimmer 1.5s linear 0s infinite normal forwards running;
  background: linear-gradient(to right, #e9ecef 8%, white 18%, #e9ecef 28%);
  background-size: 1000px 100px;
}
@keyframes skeleton-shimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
.active-campaign-form__loader .loader-label {
  width: 30%;
  height: 20px;
  margin-bottom: 3px;
}
.active-campaign-form__loader .loader-input, .active-campaign-form__loader .loader-textarea {
  width: 100%;
}
.active-campaign-form__loader .loader-input {
  height: calc(0.438rem * 2 + 1.5em);
}
.active-campaign-form__loader .loader-textarea {
  height: 120px;
}
.active-campaign-form__loader .loader-button {
  width: 50%;
  height: 48px;
  margin-left: auto;
}
.bitesize__icon-content {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
  .bitesize__icon-content .icon {
    transform: scale(0.8);
  }
}
.bitesize__icon-content .icon.icon-info {
  opacity: 1;
  color: #acd7c0;
  transition: all 0.2s ease-in-out;
}
.bitesize__icon-content .icon.icon-info-arrow {
  opacity: 0;
  color: #2d3e50;
  transition: all 0.2s ease-in-out;
}
.bitesize__icon-wrapper .icon.icon-tooltip {
  color: #3c6e64;
  height: 38px;
  width: 38px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .bitesize__icon-wrapper .icon.icon-tooltip {
    height: 50px;
    width: 50px;
  }
}
.bitesize__trigger {
  animation: pulse 2s infinite;
  left: -1rem;
  top: -1rem;
  transition: all 0.2s ease-in-out;
  will-change: transform;
}
@media (min-width: 768px) {
  .bitesize__trigger {
    left: -1.25rem;
    top: -1.25rem;
  }
}
.bitesize__trigger.is-open, .bitesize__trigger:hover {
  animation: none;
}
.bitesize__trigger.is-open .bitesize__icon-content .icon-info, .bitesize__trigger:hover .bitesize__icon-content .icon-info {
  opacity: 0;
  transform: rotate(45deg);
}
.bitesize__trigger.is-open .bitesize__icon-content .icon-info-arrow, .bitesize__trigger:hover .bitesize__icon-content .icon-info-arrow {
  opacity: 1;
  transform: rotate(45deg);
}
.bitesize__trigger.is-open .bitesize__icon-wrapper .icon-tooltip, .bitesize__trigger:hover .bitesize__icon-wrapper .icon-tooltip {
  color: #59c0cc;
  transform: rotate(45deg);
}
.bitesize__offcanvas {
  --bs-offcanvas-padding-y: 30px;
  --bs-offcanvas-padding-x: 30px;
  --bs-offcanvas-transition: transform 200ms ease-in-out;
  --bs-offcanvas-width: 560px;
  background-color: #3c6e64;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #acd7c0;
}
@media (min-width: 768px) {
  .bitesize__offcanvas {
    border-radius: 0.5rem;
    margin: 0.5rem 0;
    padding: 5rem;
  }
}
.bitesize__offcanvas + .offcanvas-backdrop {
  background-color: transparent;
  z-index: 1050;
}
@media (max-width: 767.98px) {
  .bitesize__offcanvas + .offcanvas-backdrop {
    height: 50vh;
  }
}
@media (min-width: 768px) {
  .bitesize__offcanvas + .offcanvas-backdrop {
    width: calc(100vw - 568px);
  }
}
.bitesize__offcanvas:not(.hiding) {
  transform: translateY(100%);
}
@media (min-width: 768px) {
  .bitesize__offcanvas:not(.hiding) {
    transform: translateX(100%);
  }
}
.bitesize__offcanvas:not(.show) {
  transition: none;
}
.bitesize__offcanvas .offcanvas-title {
  margin-bottom: 0;
}
.bitesize__offcanvas .offcanvas-image {
  max-width: 350px;
  top: 0;
  transform: none;
  transition: transform 200ms ease-in-out 200ms;
}
@media (min-width: 768px) {
  .bitesize__offcanvas .offcanvas-image {
    bottom: 2.5rem;
    left: 0;
    top: auto;
  }
}
.bitesize__offcanvas.show {
  animation: bounce-slide-in-bottom 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@media (min-width: 768px) {
  .bitesize__offcanvas.show {
    animation-name: bounce-slide-in;
  }
}
.bitesize__offcanvas.show:not(.hiding) .offcanvas-image {
  transform: translateY(calc(-100% + 40px));
  transition-delay: 0s;
}
@media (min-width: 768px) {
  .bitesize__offcanvas.show:not(.hiding) .offcanvas-image {
    transform: translateX(calc(-100% + 40px));
  }
}
.bitesize__offcanvas.hiding {
  animation: bounce-slide-out-bottom 400ms ease-in forwards;
}
@media (min-width: 768px) {
  .bitesize__offcanvas.hiding {
    animation-name: bounce-slide-out;
  }
}
.bitesize__offcanvas .offcanvas-header {
  align-items: flex-start;
  padding-bottom: 0;
}
.bitesize__offcanvas .offcanvas-body {
  flex-grow: 0;
  margin-top: auto;
  padding-top: 0;
}
.bitesize__offcanvas .btn-close {
  --bs-btn-close-bg: url("/bundles/clienttheme/icon/default/cross-green.svg");
  --bs-btn-close-color: $color-green-subtle;
  --bs-btn-close-opacity: 1;
  width: 25px;
  height: 25px;
  margin: 0 0 0 auto;
  padding: 0.5rem 0;
}
.bitesize__offcanvas .btn-close:focus {
  box-shadow: none;
}
.bitesize--picture .bitesize .bitesize__trigger {
  left: 0.5rem;
  top: 0.5rem;
}
@media (min-width: 768px) {
  .bitesize--picture .bitesize .bitesize__trigger {
    left: -1.5rem;
    top: -1.5rem;
  }
}
.steps-block .steps-block__items {
  position: relative;
  overflow: auto hidden;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .steps-block .steps-block__items {
    position: static;
    overflow: visible;
  }
}
.steps-block h2, .steps-block .h2 {
  color: inherit;
}
.steps-block .steps-block__title {
  color: inherit;
}
.steps-block .steps-block__item {
  width: 288px;
  color: inherit;
}
@media (min-width: 992px) {
  .steps-block .steps-block__item {
    width: auto;
  }
}
.steps-block .steps-block__item__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  max-width: 240px;
}
.steps-block .steps-block__item__subtitle {
  text-align: center;
}
.steps-block .steps-block__cta__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  color: inherit;
  font-size: 2rem;
}
.steps-block .steps-block__cta__picture {
  bottom: -1rem;
  right: -8rem;
  transform: translateY(30%);
  max-height: 100%;
}
.steps-block .steps-block__cta__image {
  width: 288px;
}
.steps-block .steps-block__cta .btn, .steps-block .steps-block__cta .active-campaign-form form[id^="_form_"] ._submit, .active-campaign-form form[id^="_form_"] .steps-block .steps-block__cta ._submit {
  margin-top: auto;
}
.cms-block-client-cms-elements-hero-banner {
  position: static !important;
}
@media (min-width: 1200px) {
  .cms-block-client-cms-elements-hero-banner {
    margin-bottom: 5rem;
  }
}
.cms-block-client-cms-elements-hero-banner .cms-block-container {
  position: static !important;
}
.hero-banner {
  height: calc(100vh - 170px);
}
.hero-banner__picture {
  inset: 0;
  height: calc(100vh - 0.5rem);
  position: absolute;
  overflow: hidden;
  border-radius: 0.4rem;
  border-bottom-right-radius: 0;
  mask: linear-gradient(#000000, #000000), url("/bundles/clienttheme/icon/default/bite2.svg") no-repeat bottom right;
  mask-composite: exclude;
  mask-size: 74px;
}
@media (min-width: 1200px) {
  .hero-banner__picture {
    height: calc(100vh - 1rem);
  }
}
.hero-banner__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .hero-banner__image {
    max-height: unset;
    object-position: 30%;
  }
}
@media (min-width: 1600px) {
  .hero-banner__image {
    object-fit: scale-down;
    object-position: top;
  }
}
.header-main.headroom.headroom--pinned.headroom--not-top ~ .content-main .cms-page .hero-banner {
  height: calc(100vh - 210px);
}
.cms-block-client-cms-elements-hero-home {
  position: static !important;
}
@media (min-width: 1200px) {
  .cms-block-client-cms-elements-hero-home {
    margin-bottom: 5rem;
  }
}
.cms-block-client-cms-elements-hero-home .cms-block-container {
  position: static !important;
}
.hero-home {
  height: calc(100vh - 162px);
}
.hero-home video {
  height: 100vh;
  inset: 0;
  position: absolute;
}
.hero-home__cta {
  width: max-content;
}
.hero-home__title {
  position: relative;
}
.header-main.headroom.headroom--pinned.headroom--not-top ~ .content-main .cms-page .hero-home {
  height: calc(100vh - 222px);
}
@supports (animation-timeline: auto) {
  @property --usp-banner-scroll-position {
    syntax: "<number>";
    inherits: true;
    initial-value: 0;
  }
  @property --usp-banner-scroll-position-delayed {
    syntax: "<number>";
    inherits: true;
    initial-value: 0;
  }
  @keyframes usp-banner-adjust-pos {
    to {
      --usp-banner-scroll-position: 1;
      --usp-banner-scroll-position-delayed: 1;
    }
  }
}
.usp-banner {
  --animation-start: 0;
  --animation-end: 100;
}
@media (min-width: 992px) {
  @supports (animation-timeline: auto) {
    .usp-banner {
      animation: usp-banner-adjust-pos linear both;
      animation-timeline: view(block);
    }
  }
}
.usp-banner__usps {
  padding-left: 0;
  list-style: none;
  padding-left: 0;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 2.5rem;
}
.usp-banner__usps li {
  padding-left: 0;
}
.usp-banner__usps li > ul {
  list-style: none;
}
.usp-banner__usps li > ul > li {
  padding-left: 0;
}
.usp-banner__usps li > ul > li > ul {
  list-style: none;
}
.usp-banner__usps li {
  position: relative;
}
.usp-banner__usps li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/bundles/clienttheme/icon/default/check.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
  transform: scale(1);
  margin-left: -20px;
  position: absolute;
}
@media (min-width: 768px) {
  .usp-banner__usps {
    flex-direction: row;
    gap: 4rem;
  }
}
.usp-banner__usps li {
  font-size: 1rem;
}
.usp-banner__usps li::before {
  background-color: transparent;
  background-position: 0 0;
  left: -1rem;
}
.usp-banner__image {
  transition: --usp-banner-scroll-position-delayed 120ms ease-out;
  /* prettier-ignore */
  transform: translateY(calc(((var(--animation-end) * var(--usp-banner-scroll-position-delayed)) + var(--animation-start)) * 1px));
}
.usp-banner__image.animation-control-100 {
  --animation-end: 100;
}
.usp-banner__image.animation-control-75 {
  --animation-end: 75;
}
.usp-banner__image.animation-control-50 {
  --animation-end: 50;
}
.usp-banner__image.animation-control-25 {
  --animation-end: 25;
}
@media (prefers-reduced-motion) {
  .usp-banner__image {
    transform: none;
  }
}
.usp-banner__image img {
  width: auto;
  height: 100%;
}
@media (min-width: 1200px) {
  .usp-banner__image img {
    width: 100%;
    height: auto;
    max-width: 450px;
  }
}
.brand-story {
  grid-template-rows: auto auto 170px auto;
}
@media (max-width: 991.98px) {
  .brand-story {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%) !important;
  }
}
@media (min-width: 992px) {
  .brand-story {
    grid-template-rows: 150px 1fr auto auto auto 35px;
  }
}
@media (max-width: 991.98px) {
  .brand-story__right-column:has(.brand-story__content) {
    grid-row: 1 / 2;
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 991.98px) {
  .brand-story__left-column:has(.brand-story__media) {
    grid-row: 2 / 4;
    margin-bottom: 0 !important;
  }
}
.brand-story__image {
  aspect-ratio: 540 / 610;
}
.brand-story__image-additional.image-additional-1 {
  transform: translate(55px, -50%);
}
@media (min-width: 576px) {
  .brand-story__image-additional.image-additional-1 {
    transform: translate(120px, -25%);
  }
}
@media (min-width: 768px) {
  .brand-story__image-additional.image-additional-1 {
    transform: translate(50%, -25%);
  }
}
@media (min-width: 1200px) {
  .brand-story__image-additional.image-additional-1 {
    transform: none;
  }
}
.brand-story__image-additional.image-additional-2 img {
  transform: translateX(60px);
  object-fit: contain;
}
@media (min-width: 992px) {
  .brand-story__image-additional.image-additional-2 img {
    transform: none;
  }
}
.brand-story__image-additional.image-additional-3 {
  transform: translate(-25px, 40px);
}
@media (min-width: 992px) {
  .brand-story__image-additional.image-additional-3 {
    transform: translateX(-50px);
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .brand-story--centered {
    grid-template-rows: auto;
    align-items: center;
  }
}
@media (max-width: 991.98px) {
  .brand-story--centered .brand-story__right-column:has(.brand-story__content), .brand-story--centered .brand-story__left-column:has(.brand-story__media) {
    grid-row: auto;
    margin-bottom: 2rem !important;
  }
}
.brand-story__text {
  font-weight: 300;
}
.ambassadors-slider {
  overflow: visible;
}
.ambassadors-slider__slider {
  grid-auto-flow: column;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-right: 50vw;
  margin-right: -50vw;
  scrollbar-width: none;
}
.ambassadors-slider__slider::-webkit-scrollbar {
  display: none;
}
.ambassadors-slider__slider article {
  width: 288px;
  scroll-snap-align: start;
  min-height: 320px;
}
.ambassadors-slider__nav .btn.disabled, .ambassadors-slider__nav .active-campaign-form form[id^="_form_"] .disabled._submit, .active-campaign-form form[id^="_form_"] .ambassadors-slider__nav .disabled._submit {
  box-shadow: none;
  opacity: 0.4;
  cursor: not-allowed;
}
.ambassadors-slider__image {
  max-height: 420px;
  object-position: top;
}
.ambassadors-slider__button {
  margin-top: -5rem;
}
.ambassadors-slider__button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991.98px) {
  .quote-block .quote-icon .icon-quote {
    scale: 0.6;
  }
}
.quote-block .quote {
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
}
@media (min-width: 992px) {
  .quote-block .quote {
    -webkit-line-clamp: 4;
  }
}
@media (min-width: 992px) {
  .quote-block .profile-info {
    height: 3.5rem;
  }
}
/**  Layout-related sections */
.header-main {
  z-index: 10;
  position: relative;
}
.header-main .header__row {
  padding-block: 1rem;
}
@media (min-width: 1200px) {
  .header-main .header__logo-col {
    flex: 0 0 auto;
    width: auto;
  }
}
.header-main .header__logo-col .header-logo-main-link {
  aspect-ratio: 1;
}
.header-main .header__actions-col .header-actions-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  border-radius: 0.4rem;
  border-top-right-radius: 0;
  mask: linear-gradient(#000000, #000000), url("/bundles/clienttheme/icon/default/bite.svg") no-repeat top right;
  mask-composite: exclude;
  mask-size: 40px;
  z-index: -1;
}
@media (min-width: 1200px) {
  .header-main .header__actions-col .header-actions-wrapper.search-active .account-menu, .header-main .header__actions-col .header-actions-wrapper.search-active .header-cart {
    z-index: -1;
  }
}
.header-main .header__actions-col .header-actions-wrapper > div > .btn, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > ._submit, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > ._submit {
  border-color: transparent;
}
.header-main .header__actions-col .header-actions-wrapper > div > .btn.is-active, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > .is-active._submit, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > .is-active._submit, .header-main .header__actions-col .header-actions-wrapper > div > .btn.show, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > .show._submit, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > .show._submit, .header-main .header__actions-col .header-actions-wrapper > div > .btn:hover, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > ._submit:hover, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > ._submit:hover {
  color: #59c0cc;
}
.header-main .header__actions-col .header-actions-wrapper > div > .btn.is-active .icon, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > .is-active._submit .icon, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > .is-active._submit .icon, .header-main .header__actions-col .header-actions-wrapper > div > .btn.show .icon, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > .show._submit .icon, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > .show._submit .icon, .header-main .header__actions-col .header-actions-wrapper > div > .btn:hover .icon, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > ._submit:hover .icon, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > ._submit:hover .icon {
  color: #59c0cc;
}
.header-main .header__actions-col .header-actions-wrapper > div > .btn.is-active:hover, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > .is-active._submit:hover, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > .is-active._submit:hover, .header-main .header__actions-col .header-actions-wrapper > div > .btn.show:hover, .header-main .header__actions-col .active-campaign-form form[id^="_form_"] .header-actions-wrapper > div > .show._submit:hover, .active-campaign-form form[id^="_form_"] .header-main .header__actions-col .header-actions-wrapper > div > .show._submit:hover {
  border-color: #59c0cc;
}
.header-main .header__actions-col .header-actions-wrapper .account-menu-btn.show::before, .header-main .header__actions-col .header-actions-wrapper .account-menu-btn:hover::before {
  background-image: url("/bundles/clienttheme/icon/default/check-round-leaf-subtle.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 1rem;
  background-position: unset;
}
.header-main .header__actions-col .header-cart-btn {
  overflow: visible;
}
.header-main .header__actions-col .header-cart-btn .badge {
  font-size: 0.875rem;
  font-weight: 600;
  padding-inline: 6px;
  padding-bottom: 2px;
  position: absolute;
  white-space: nowrap;
  min-width: unset;
}
@media (min-width: 576px) {
  .header-main .header__actions-col .header-cart-btn .badge {
    display: initial;
  }
}
.header-main .header__actions-col .account-menu-btn {
  /* stylelint-disable no-descending-specificity */
}
.header-main .header__actions-col .account-menu-btn.is-logged-in::before {
  content: "";
  display: inline-block;
  transform: scale(0.4);
  position: absolute;
  bottom: 9px;
  left: -2px;
  z-index: 1;
}
@media (min-width: 1200px) {
  .header-main .header__actions-col .account-menu-btn.is-logged-in::before {
    transform: scale(0.5);
    right: 40px;
    bottom: 10px;
    left: unset;
  }
}
@media (min-width: 1200px) {
  .header-main .header__actions-col .account-menu-btn.is-logged-in.is-active::before {
    background-image: url("/bundles/clienttheme/icon/default/check-round-leaf-subtle.svg");
    background-repeat: no-repeat;
    background-position: top 50% right 1rem;
    background-position: unset;
  }
}
.header-main .header__actions-col .account-menu-btn .icon {
  transform: scale(1.25);
}
.header-minimal .header-minimal-row {
  display: grid;
  grid-auto-flow: column;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .header-minimal .header-minimal-row {
    display: flex;
  }
}
.header-minimal .header-minimal-row .header-logo-picture {
  margin: 0;
}
.header-minimal .header-minimal-row .header-minimal-back-to-shop-button {
  color: #59c0cc;
}
.header-minimal .header-minimal-row .header-minimal-back-to-shop-button:hover {
  color: #ffffff;
}
.header-main.headroom {
  transition: transform 0.2s ease-in-out;
}
.header-main.headroom.headroom--unpinned {
  transform: translateY(-100%);
}
.header-main.headroom.headroom--pinned.headroom--not-top {
  transform: translateY(0);
  /* Fixed header styles for desktop */
}
.header-main.headroom.headroom--pinned.headroom--not-top .top-bar__row {
  display: none;
}
.header-main.headroom.headroom--pinned.headroom--not-top ~ .content-main {
  margin-top: 178px;
}
.header-main.headroom.headroom--pinned.headroom--not-top .header__actions-col .header-actions-wrapper {
  background-color: #ffffff;
  border-radius: 0.5rem;
}
.header-main.headroom.headroom--pinned.headroom--not-top .header__actions-col .header-actions-wrapper::before {
  display: none;
}
.header-main.headroom.headroom--pinned.headroom--not-top .header__nav-col .main-navigation-menu, .header-main.headroom.headroom--pinned.headroom--not-top .header__actions-col .header-actions-wrapper {
  border: 1px solid #e9ecef;
}
.header-main.headroom.headroom--pinned.headroom--not-top .header__nav-col .main-navigation-dropdown-wrapper, .header-main.headroom.headroom--pinned.headroom--not-top .header__actions-col .account-menu-dropdown {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.04), 0 0 10px 0 rgba(0, 0, 0, 0.05), 0 0 18px 0 rgba(0, 0, 0, 0.06), 0 42px 34px 0 rgba(0, 0, 0, 0.06), 0 100px 80px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}
@media (min-width: 992px) {
  .header-main.headroom.headroom--pinned.headroom--not-top ~ .content-main .account-content-aside .account-aside {
    top: 121px;
  }
}
@media (min-width: 1200px) {
  .header-main.headroom.headroom--pinned.headroom--not-top ~ .content-main {
    margin-top: 163px;
  }
  .header-main.headroom.headroom--pinned.headroom--not-top ~ .content-main .checkout .checkout-aside {
    top: 145px;
  }
  .header-main.headroom.headroom--pinned.headroom--not-top .header__logo-col {
    opacity: 1;
  }
  .header-main.headroom.headroom--pinned.headroom--not-top .header__logo-col .header-logo-main-link {
    display: initial;
  }
}
.header-language-widget .header-actions-btn {
  border: none;
}
.header-language-widget .header-actions-btn:hover .icon {
  color: #59c0cc;
}
.header-language-widget .language-menu {
  margin-top: 1.625rem !important;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border: none;
}
.header-language-widget .language-menu .dropdown-item {
  color: #1f3e4f;
  background: none;
}
.header-language-widget .language-menu .dropdown-item.active {
  font-weight: 700;
}
.header-language-widget .language-menu .dropdown-item:not(.active):hover {
  color: #59c0cc;
}
.footer-top__container {
  min-height: 400px;
}
@media (min-width: 992px) {
  .footer-top__container {
    min-height: 500px;
  }
}
.footer-top__container--middle {
  position: relative;
}
.footer-top__form-wrapper .alert {
  margin-top: 1.25rem;
  margin-bottom: 0;
  display: none !important;
}
.footer-top__input::placeholder {
  color: #bee2e7;
}
.footer-top__input:focus {
  border-color: #bee2e7;
}
.footer-top__picture {
  position: absolute;
  bottom: -10px;
  right: -20px;
}
.footer-top__image {
  height: 260px;
  transform: scaleX(-1);
}
.footer__container {
  margin-bottom: -2rem;
}
@media (min-width: 768px) {
  .footer__container {
    margin-bottom: -5rem;
  }
}
@media (min-width: 1200px) {
  .footer__container {
    margin-bottom: -7rem;
  }
}
.footer__bottom {
  grid-row-gap: 7rem;
  position: relative;
}
.footer__bottom .footer-service-menu-list, .footer__bottom .footer-navigation-menu-list {
  gap: 1.25rem;
}
.footer__bottom .footer-service-menu-link, .footer__bottom .footer-navigation-menu-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.footer__bottom .footer-service-menu-link::after, .footer__bottom .footer-navigation-menu-link::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
.footer__bottom .footer-service-menu-link:hover, .footer__bottom .footer-navigation-menu-link:hover {
  text-decoration: none;
}
.footer__bottom .footer-service-menu-link:hover::after, .footer__bottom .footer-navigation-menu-link:hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.footer__bottom .footer-service-menu-link::after, .footer__bottom .footer-navigation-menu-link::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.footer__bottom .footer-service-menu-link:hover::after, .footer__bottom .footer-navigation-menu-link:hover::after {
  transform-origin: left center 0;
  transform: scaleX(1);
}
.footer__bottom .footer__spotify-col .label + .icon {
  transform: scale(0.6);
}
@media (min-width: 992px) {
  .footer__bottom .footer__spotify-col .label + .icon {
    transform: scale(0.7);
  }
}
.footer__bottom .footer__socials-col {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 992px) {
  .footer__bottom .footer__socials-col {
    position: static;
  }
}
.footer__bottom .footer__socials-col .btn:active, .footer__bottom .footer__socials-col .active-campaign-form form[id^="_form_"] ._submit:active, .active-campaign-form form[id^="_form_"] .footer__bottom .footer__socials-col ._submit:active {
  border-color: transparent;
}
.footer__bottom .footer__navigation-menu-col {
  margin-top: 7rem;
}
/**  Page-specific styles */
@media (min-width: 992px) {
  .account-content-aside .account-aside {
    position: sticky;
    top: 1rem;
  }
}
@media (min-width: 1200px) {
  .account-content-aside .account-aside {
    margin-right: 1rem;
  }
}
@media (min-width: 1400px) {
  .account-content-aside .account-aside {
    margin-right: 2.5rem;
  }
}
.account-content-aside .account-aside-header {
  font-size: 1.5rem;
}
.account-content-aside .account-aside-header, .account-content-aside .account-aside-footer {
  padding: 0.5rem 1rem;
}
.account-content-aside .account-aside .account-aside-widget {
  padding-inline: 0.5rem;
}
.account-content-aside .account-aside .account-aside-widget.address-select-widget .btn, .account-content-aside .account-aside .account-aside-widget.address-select-widget .active-campaign-form form[id^="_form_"] ._submit, .active-campaign-form form[id^="_form_"] .account-content-aside .account-aside .account-aside-widget.address-select-widget ._submit {
  max-width: 100%;
}
.account-content-aside .account-menu-inner {
  padding: 1rem;
  box-shadow: 0 100px 80px 0 rgba(0, 0, 0, 0.02), 0 41.778px 33.422px 0 rgba(0, 0, 0, 0.01), 0 22.336px 17.869px 0 rgba(0, 0, 0, 0.01), 0 12.522px 10.017px 0 rgba(0, 0, 0, 0.01), 0 6.65px 5.32px 0 rgba(0, 0, 0, 0.01), 0 2.767px 2.214px 0 rgba(0, 0, 0, 0.01);
}
@media (min-width: 1400px) {
  .account-content-aside .account-menu-inner {
    padding: 2rem;
  }
}
.account-content-aside .account-menu-inner .account-aside-list-group {
  padding-inline: 1rem;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .account-content-aside .account-menu-inner .account-aside-list-group .account-aside-item {
    width: auto;
  }
}
.account-welcome {
  padding-top: 0;
}
.account-welcome h1, .account-welcome .h1 {
  margin-top: 0;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .account-welcome h1, .account-welcome .h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 0.8;
    margin-top: 0;
    margin-bottom: 1.25rem;
    letter-spacing: normal;
    text-transform: uppercase;
    word-break: break-word;
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .account-welcome h1, .account-welcome .h1 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .account-welcome h1, .account-welcome .h1 {
    font-size: 5.5rem;
  }
}
.is-ctl-checkout .footer-minimal .footer-bottom, .is-ctl-checkout .footer-minimal .footer-bottom p, .is-ctl-checkout .footer-minimal .footer-bottom a {
  color: #1f3e4f;
}
.content-main .checkout {
  padding-top: 2.5rem;
}
.content-main .checkout .checkout-product-table {
  margin-bottom: 0;
}
.content-main .checkout .checkout-product-table .card-body {
  padding: 0;
}
.content-main .checkout .cart-table-header {
  margin-bottom: 0;
}
.content-main .checkout .checkout-container {
  margin-right: 0;
  margin-left: 0;
}
.content-main .checkout .checkout-container .checkout-main, .content-main .checkout .checkout-container .checkout-aside-container, .content-main .checkout .checkout-container .checkout-additional {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 576px) {
  .content-main .checkout .checkout-container .checkout-main, .content-main .checkout .checkout-container .checkout-aside-container, .content-main .checkout .checkout-container .checkout-additional {
    padding: 2rem;
  }
}
@media (min-width: 1200px) {
  .content-main .checkout .checkout-container .checkout-main, .content-main .checkout .checkout-container .checkout-aside-container, .content-main .checkout .checkout-container .checkout-additional {
    margin-bottom: 0;
    height: min-content;
  }
}
@media (min-width: 1400px) {
  .content-main .checkout .checkout-container .checkout-main, .content-main .checkout .checkout-container .checkout-aside-container, .content-main .checkout .checkout-container .checkout-additional {
    padding: 3.5rem;
  }
}
.content-main .checkout .checkout-container .checkout-main {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
  width: 100%;
  margin-left: 0;
  padding-bottom: 0;
}
.content-main .checkout .checkout-container:not(.checkout-finish-container) .checkout-main {
  border-radius: 1rem;
}
.content-main .checkout .checkout-container .checkout-additional {
  grid-column: 1 / 8;
  width: 100%;
  padding-top: 2.5rem;
  margin: 0;
  border-radius: 0 0 1rem 1rem;
}
.content-main .checkout .checkout-container .checkout-aside {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
  width: 100%;
  height: min-content;
  margin-left: 0;
  position: sticky;
  top: 2.5rem;
}
.content-main .checkout .checkout-container .checkout-aside .checkout-aside-container {
  border: 0;
}
.content-main .checkout .checkout-aside-summary {
  padding: 0;
  background-color: transparent;
}
.content-main .checkout .checkout-aside-summary .checkout-aside-summary-header {
  margin-top: 0;
  margin-bottom: 2rem;
}
.content-main .checkout .checkout-aside-summary .checkout-aside-summary-list-container {
  padding-top: 7px;
}
.content-main .checkout .checkout-aside-summary .checkout-aside-summary-list .summary-net {
  display: none;
}
.content-main .checkout .checkout-aside-summary .checkout-aside-summary-list .checkout-aside-summary-total, .content-main .checkout .checkout-aside-summary .checkout-aside-summary-list .checkout-aside-summary-total-rounded {
  text-transform: uppercase;
}
.content-main .checkout .checkout-aside-action .btn .loader, .content-main .checkout .checkout-aside-action .active-campaign-form form[id^="_form_"] ._submit .loader, .active-campaign-form form[id^="_form_"] .content-main .checkout .checkout-aside-action ._submit .loader {
  margin-right: 0.5rem;
}
.is-act-cartpage .checkout .checkout-main {
  margin-bottom: 0;
}
.is-act-cartpage .checkout-aside-container {
  position: static;
}
.is-act-cartpage .cart-table-header, .is-act-cartpage .cart-shipping-costs-container, .is-act-cartpage .cart-add-product-container {
  display: none;
}
.quantity-selector-group .form-control {
  border-color: #59c0cc;
}
.quantity-selector-group .icon {
  transform: scale(0.8);
}
.is-act-checkoutregisterpage .register-card {
  margin-block: 2rem;
}
.is-act-checkoutregisterpage .register-card .card-title {
  margin-bottom: 1rem;
  padding-bottom: 10px;
}
.is-act-checkoutregisterpage .register-card .card-body {
  padding: 0;
}
.is-act-checkoutregisterpage .privacy-notice label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  line-height: 0.9;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: #1f3e4f;
}
.is-act-checkoutregisterpage .checkout-aside-summary-list {
  margin-bottom: 0;
}
.is-act-checkoutregisterpage .checkout-aside-products {
  padding: 0;
}
.is-act-checkoutregisterpage .register-form .row > *, .is-act-checkoutregisterpage .register-form .is-act-cartpage .checkout .checkout-container > *, .is-act-cartpage .checkout .is-act-checkoutregisterpage .register-form .checkout-container > *, .is-act-checkoutregisterpage .register-form .checkout .checkout-container > *, .is-act-checkoutregisterpage .checkout .register-form .checkout-container > *, .is-act-checkoutregisterpage .register-form .is-act-confirmpage .checkout .checkout-container > *, .is-act-confirmpage .checkout .is-act-checkoutregisterpage .register-form .checkout-container > *, .is-act-checkoutregisterpage .register-form .is-ctl-accountorder .checkout .checkout-container > *, .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .register-form .checkout-container > *, .is-act-checkoutregisterpage .register-form .is-act-finishpage .checkout .checkout-container > *, .is-act-finishpage .checkout .is-act-checkoutregisterpage .register-form .checkout-container > * {
  margin-block: 0.5rem;
}
.is-act-checkoutregisterpage .register-submit {
  margin: 2rem 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .is-act-checkoutregisterpage .register-submit {
    width: 50%;
  }
}
.is-act-checkoutregisterpage .login-card .card-body {
  padding: 0;
}
.is-act-confirmpage .confirm-main-header {
  margin-top: 0;
}
.is-act-confirmpage .confirm-tos, .is-act-confirmpage .confirm-address {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ced8de;
}
.is-act-confirmpage .confirm-tos, .is-act-confirmpage .confirm-shipping-address, .is-act-confirmpage .confirm-billing-address {
  padding-bottom: 2rem;
}
.is-act-confirmpage .confirm-tos .form-check {
  margin-top: 1rem;
}
.is-act-confirmpage .confirm-tos .checkout-confirm-tos-label a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #59c0cc;
}
.is-act-confirmpage .confirm-tos .checkout-confirm-tos-label a::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform-origin: left center 0;
  transform: scaleX(1);
}
.is-act-confirmpage .confirm-tos .checkout-confirm-tos-label a:hover {
  text-decoration: none;
}
.is-act-confirmpage .confirm-tos .checkout-confirm-tos-label a:hover::after {
  transform-origin: right center 0;
  transform: scaleX(0);
}
.is-act-confirmpage .confirm-shipping-address, .is-act-confirmpage .confirm-billing-address {
  margin-bottom: 0;
}
.is-act-confirmpage .confirm-shipping .shipping-methods {
  margin-top: 1.5rem;
}
.is-act-confirmpage .confirm-shipping .shipping-method + .shipping-method {
  margin-top: 1rem;
}
.is-act-confirmpage .confirm-payment .payment-methods {
  margin-top: 1.5rem;
}
.is-act-confirmpage .confirm-payment .payment-method + .payment-method {
  margin-top: 1rem;
}
.is-act-confirmpage .confirm-payment .mollie-ideal-issuer {
  margin-top: 0.5rem;
  max-width: 66%;
}
.is-act-confirmpage .address, .is-act-confirmpage p {
  margin-top: 1rem;
  margin-bottom: 0;
}
.is-act-confirmpage .form-check-input + .form-check-label, .is-act-confirmpage .form-check-input + .custom-control-label {
  padding-left: 0.75rem;
}
.is-act-confirmpage .confirm-product .card-body {
  padding: 0;
  margin-bottom: 0;
}
.is-act-confirmpage .confirm-product .cart-header-info {
  width: 50%;
}
@media (max-width: 767.98px) {
  .is-act-confirmpage .confirm-product .cart-table-header {
    display: block;
  }
  .is-act-confirmpage .confirm-product .cart-header-row > div {
    display: none;
  }
  .is-act-confirmpage .confirm-product .cart-header-row .cart-header-info {
    display: block;
  }
}
.is-act-confirmpage .checkout-card .card-body {
  position: relative;
  padding: 0;
}
.is-act-confirmpage .checkout-card .card-title {
  font-size: 1.125rem;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 1200px) {
  .is-act-confirmpage .checkout-card .card-title {
    font-size: 1.5rem;
  }
}
.is-act-confirmpage .checkout-card .card-actions {
  margin-top: auto;
  padding-top: 1.25rem;
}
.is-act-confirmpage .checkout-card .card-actions .btn, .is-act-confirmpage .checkout-card .card-actions .active-campaign-form form[id^="_form_"] ._submit, .active-campaign-form form[id^="_form_"] .is-act-confirmpage .checkout-card .card-actions ._submit {
  border-color: transparent;
}
.is-act-confirmpage .js-pseudo-modal .card-body {
  padding: 0;
}
.is-act-confirmpage .js-pseudo-modal .card-actions {
  margin-top: 1.25rem;
}
.is-act-confirmpage .js-pseudo-modal .btn-close {
  outline: none;
}
.is-act-confirmpage .js-pseudo-modal .address-editor-list-wrapper {
  margin-top: 1.5rem;
}
.is-act-confirmpage .flashbags .alert {
  margin-bottom: 1.25rem;
}
.is-act-finishpage .finish-header, .is-act-finishpage .finish-ordernumber, .is-act-finishpage .finish-teaser {
  text-align: start;
}
.is-act-finishpage .finish-content {
  margin-bottom: 0;
}
.is-act-finishpage .finish-address .card-body, .is-act-finishpage .finish-order-details .card-body {
  padding: 0;
}
.is-act-finishpage .finish-address .card-title, .is-act-finishpage .finish-order-details .card-title {
  padding-bottom: 0;
  margin-bottom: 1rem;
}
.is-act-finishpage .checkout-product-table .card-body {
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .is-act-finishpage .checkout-product-table .cart-table-header {
    display: block;
  }
  .is-act-finishpage .checkout-product-table .cart-header-row > div {
    display: none;
  }
  .is-act-finishpage .checkout-product-table .cart-header-row .cart-header-info {
    display: block;
  }
}
/* stylelint-disable no-descending-specificity */
.is-ctl-product {
  background-color: #f1ead6 !important;
  color: #7e2337 !important;
  /* stylelint-disable */
  /* stylelint-enable */
  --bs-heading-color: $pink-dark;
  --bs-link-color: $pink-dark;
  --bs-link-color-rgb: $pink-dark;
}
.is-ctl-product .icon {
  color: #7e2337;
}
.is-ctl-product .accordion-item {
  background-color: #f1ead6 !important;
  color: #7e2337 !important;
}
.is-ctl-product a:not([class]), .is-ctl-product a:not([class]):hover {
  color: #7e2337 !important;
}
.is-ctl-product a:not([class])::after, .is-ctl-product a:not([class]):hover::after {
  background-color: #7e2337 !important;
}
.is-ctl-product .navigation-offcanvas .navigation-offcanvas-link {
  color: #7e2337;
}
.is-ctl-product .magnifier-zoom-image {
  display: none;
}
.product-detail-breadcrumb .icon {
  transform: scale(0.8);
}
.product-detail-breadcrumb .label {
  text-transform: lowercase;
}
.product-detail-breadcrumb .label::first-letter {
  text-transform: uppercase;
}
.product-detail-name {
  color: inherit;
}
.product-detail-usps {
  padding-left: 0;
  list-style: none;
  padding-left: 35px;
  list-style: none;
}
.product-detail-usps li {
  padding-left: 0;
}
.product-detail-usps li > ul {
  list-style: none;
}
.product-detail-usps li > ul > li {
  padding-left: 0;
}
.product-detail-usps li > ul > li > ul {
  list-style: none;
}
.product-detail-usps li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
}
.product-detail-usps li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: -35px;
  position: absolute;
  background-color: currentColor;
  mask: url("/bundles/clienttheme/icon/default/check.svg") no-repeat center;
  mask-size: contain;
}
.product-detail-usps li {
  margin-bottom: 0;
}
.product-detail-add-to-cart .quantity-selector-group .form-control {
  border-color: #7e2337;
  aspect-ratio: 1;
}
.product-detail-add-to-cart .quantity-selector-group .icon {
  color: currentColor;
  transform: scale(0.8);
}
.product-detail-add-to-cart .product-detail-price {
  color: inherit;
  font-size: 1rem;
  font-weight: 400;
}
.product-detail__accordion {
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}
@media (min-width: 768px) {
  .product-detail__accordion {
    max-width: 400px;
  }
}
.product-detail__accordion .accordion-button::after {
  display: none;
}
.product-detail__accordion .accordion-button[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}
.product-detail__nutrients__header .row, .product-detail__nutrients__header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__body .row, .product-detail__nutrients__body .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .product-detail__nutrients__body .checkout-container, .product-detail__nutrients__body .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .product-detail__nutrients__body .checkout-container, .product-detail__nutrients__body .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .product-detail__nutrients__body .checkout-container, .product-detail__nutrients__body .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .product-detail__nutrients__body .checkout-container, .product-detail__nutrients__body .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .product-detail__nutrients__body .checkout-container {
  border-bottom: 1px dashed rgba(126, 35, 55, 0.4);
  margin-inline: 0;
}
.product-detail__nutrients__header .row > *:nth-child(1), .product-detail__nutrients__header .is-act-cartpage .checkout .checkout-container > *:nth-child(1), .is-act-cartpage .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(1), .product-detail__nutrients__header .is-act-checkoutregisterpage .checkout .checkout-container > *:nth-child(1), .is-act-checkoutregisterpage .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(1), .product-detail__nutrients__header .is-act-confirmpage .checkout .checkout-container > *:nth-child(1), .is-act-confirmpage .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(1), .product-detail__nutrients__header .is-ctl-accountorder .checkout .checkout-container > *:nth-child(1), .is-ctl-accountorder .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(1), .product-detail__nutrients__header .is-act-finishpage .checkout .checkout-container > *:nth-child(1), .is-act-finishpage .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(1), .product-detail__nutrients__body .row > *:nth-child(1), .product-detail__nutrients__body .is-act-cartpage .checkout .checkout-container > *:nth-child(1), .is-act-cartpage .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(1), .product-detail__nutrients__body .is-act-checkoutregisterpage .checkout .checkout-container > *:nth-child(1), .is-act-checkoutregisterpage .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(1), .product-detail__nutrients__body .is-act-confirmpage .checkout .checkout-container > *:nth-child(1), .is-act-confirmpage .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(1), .product-detail__nutrients__body .is-ctl-accountorder .checkout .checkout-container > *:nth-child(1), .is-ctl-accountorder .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(1), .product-detail__nutrients__body .is-act-finishpage .checkout .checkout-container > *:nth-child(1), .is-act-finishpage .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(1) {
  padding-left: 0;
}
.product-detail__nutrients__header .row > *:nth-child(2), .product-detail__nutrients__header .is-act-cartpage .checkout .checkout-container > *:nth-child(2), .is-act-cartpage .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(2), .product-detail__nutrients__header .is-act-checkoutregisterpage .checkout .checkout-container > *:nth-child(2), .is-act-checkoutregisterpage .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(2), .product-detail__nutrients__header .is-act-confirmpage .checkout .checkout-container > *:nth-child(2), .is-act-confirmpage .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(2), .product-detail__nutrients__header .is-ctl-accountorder .checkout .checkout-container > *:nth-child(2), .is-ctl-accountorder .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(2), .product-detail__nutrients__header .is-act-finishpage .checkout .checkout-container > *:nth-child(2), .is-act-finishpage .checkout .product-detail__nutrients__header .checkout-container > *:nth-child(2), .product-detail__nutrients__body .row > *:nth-child(2), .product-detail__nutrients__body .is-act-cartpage .checkout .checkout-container > *:nth-child(2), .is-act-cartpage .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(2), .product-detail__nutrients__body .is-act-checkoutregisterpage .checkout .checkout-container > *:nth-child(2), .is-act-checkoutregisterpage .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(2), .product-detail__nutrients__body .is-act-confirmpage .checkout .checkout-container > *:nth-child(2), .is-act-confirmpage .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(2), .product-detail__nutrients__body .is-ctl-accountorder .checkout .checkout-container > *:nth-child(2), .is-ctl-accountorder .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(2), .product-detail__nutrients__body .is-act-finishpage .checkout .checkout-container > *:nth-child(2), .is-act-finishpage .checkout .product-detail__nutrients__body .checkout-container > *:nth-child(2) {
  padding-right: 0;
}
.product-detail__nutrients__header .row, .product-detail__nutrients__header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .product-detail__nutrients__header .checkout-container, .product-detail__nutrients__header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .product-detail__nutrients__header .checkout-container {
  border-bottom-style: solid;
}
